__id__
int64
3.09k
19,722B
blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
256
content_id
stringlengths
40
40
detected_licenses
list
license_type
stringclasses
3 values
repo_name
stringlengths
5
109
repo_url
stringlengths
24
128
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
42
visit_date
timestamp[ns]
revision_date
timestamp[ns]
committer_date
timestamp[ns]
github_id
int64
6.65k
581M
star_events_count
int64
0
1.17k
fork_events_count
int64
0
154
gha_license_id
stringclasses
16 values
gha_fork
bool
2 classes
gha_event_created_at
timestamp[ns]
gha_created_at
timestamp[ns]
gha_updated_at
timestamp[ns]
gha_pushed_at
timestamp[ns]
gha_size
int64
0
5.76M
gha_stargazers_count
int32
0
407
gha_forks_count
int32
0
119
gha_open_issues_count
int32
0
640
gha_language
stringlengths
1
16
gha_archived
bool
2 classes
gha_disabled
bool
1 class
content
stringlengths
9
4.53M
src_encoding
stringclasses
18 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
year
int64
1.97k
2.01k
17,154,099,418,189
f1f8d33e4bdb705ac59eb92edc810d70183275b2
4cb06a6674d1dca463d5d9a5f471655d9b38c0a1
/cnl272/assignment6/problemA.py
c295e47f9dea8f853766c04b7796e3d51201dbcb
[]
no_license
nyucusp/gx5003-fall2013
https://github.com/nyucusp/gx5003-fall2013
1fb98e603d27495704503954f06a800b90303b4b
b7c1e2ddb7540a995037db06ce7273bff30a56cd
refs/heads/master
2021-01-23T07:03:52.834758
2013-12-26T23:52:55
2013-12-26T23:52:55
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import matplotlib.pyplot as plt myflie = open('labeled_data.csv','r') header = myflie.readline() zipcodes = [] population = [] incidents = [] for line in myflie: temp_data = line.split(",") zipcodes.append(temp_data[0]) population.append(int(float(temp_data[1]))) incidents.append(int(float(temp_data[2]))) myflie.close() # Scatter Diagram of Zip Code V.S. Incidents fig, ax = plt.subplots() graph = fig.add_subplot(1,1,1) graph.plot(zipcodes,incidents,'.',ms=5,color='orange', label = 'Number of Incidents') plt.xlabel("Zip Code", fontsize = 14) plt.title("Zip Code V.S. Incidents", fontsize = 15) plt.ylabel("Incidents", fontsize=14) plt.grid(which = 'both', color = '0.85', linestyle = '-') plt.legend(loc = 'upper right') plt.savefig('ProblemA Zip Code V.S. Incidents.png') plt.show() #Scatter Diagram of Population V.S. Incidents fig, ax = plt.subplots() graph = fig.add_subplot(1,1,1) graph.plot(population,incidents,'.',ms=5,color='Green', label = 'Number of Incidents') plt.xlabel("Population", fontsize = 14) plt.title("Population V.S. Incidents", fontsize = 15) plt.ylabel("Incidents", fontsize=14) plt.grid(which = 'both', color = '0.85', linestyle = '-') plt.legend(loc = 'upper right') plt.savefig('ProblemA Population V.S. Incidents.png') plt.show()
UTF-8
Python
false
false
2,013
2,972,117,373,673
e4e4bd212e92d0f7f2211cab0e3d5adc87b5e16f
da234f076c596a162d8545c609eb1c6a450fa61a
/kobosync.py
572465d3cd4dc0dde3c9766978d112ad3a637b9d
[ "GPL-2.0-only" ]
non_permissive
purplebeanie/kobosync1
https://github.com/purplebeanie/kobosync1
871908029e2fd533417baa5051bcd51545b41517
74d56ed849c29a152a8f492926e3d2df61aa3ded
refs/heads/master
2021-03-12T20:44:20.935095
2014-05-02T02:16:45
2014-05-02T02:16:45
19,339,416
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python """kobosync.py: Script for syncing kobo Bookmarks to Evernote.""" __author__ = "Eric Fernance" __copyright__ = "Copyright 2014. Eric Fernance" __credits__ = ["Eric Fernance"] __license__ = "GPL" __version__ = "0.1" __maintainer__ = "Eric Fernance" __email__ = "[email protected]" __status__ = "Development" import sqlite3 import sys import os import config from xml.sax.saxutils import escape from time import sleep ##allow imports from evernote sys.path.insert(0,os.path.dirname(os.path.abspath(__file__))+'/evernote/lib') import evernote.edam.userstore.constants as UserStoreConstants import evernote.edam.type.ttypes as Types import config from evernote.api.client import EvernoteClient from evernote.edam.notestore.ttypes import NoteFilter, NotesMetadataResultSpec import evernote.edam.error.ttypes as Errors client = None noteStore = None userStore = None user = None def connect_to_evernote(): """Connects to evernote and sets up the globals""" global client global noteStore global userStore global user try: client = EvernoteClient(token=config.evernote_dev_token,sandbox=False) userStore = client.get_user_store() noteStore = client.get_note_store() user = userStore.getUser() print 'Connected to Evernote' except Errors.EDAMSystemException, e: if e.errorCode == Errors.EDAMErrorCode.RATE_LIMIT_REACHED: print "Rate limit reached" print "Retry yout request in %d seconds" % e.rateLimitDuration sleep(e.rateLimitDuration) def sendtoevernote(row): """This function is used to send to evernote. It's just a testing implementation TODO: It needs to properly handle time outs rather than the ugly method it is using currently""" print 'sendrowtoevernote' #user logged in now let's see if the note exists? print 'Check if note: '+row[1]+' exists' filter = NoteFilter() filter.words = "kobosync-link="+row[1] spec=NotesMetadataResultSpec(includeTitle=True) ourNoteList = noteStore.findNotesMetadata(config.evernote_dev_token,filter,0,1,spec) #we only want to return 1 if len(ourNoteList.notes) > 0: print 'note exists' else: print 'note desn\'t exist create' note = Types.Note() note.title = row[0] note.content = '<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd">' note.content += '<en-note>' if (row[2] is not None): note.content += '<p><b>TEXT</b></p><p>'+escape(row[2].encode('ascii','ignore'))+'</p>' if (row[3] is not None): print row[3].encode('ascii','ignore') note.content += '<p><b>ANNOTATION</b></p><p>'+escape(row[3].encode('ascii','ignore'))+'</p>' note.content += '<p>kobosync-link='+row[1]+'</p>' note.content += '</en-note>' try: note = noteStore.createNote(note) except Errors.EDAMSystemException, e: if e.errorCode == Errors.EDAMErrorCode.RATE_LIMIT_REACHED: print "Rate limit Reached" print "Retry your request in %d seconds" % e.rateLimitDuration sleep(e.rateLimitDuration) def main(): print 'hello from kobosync - I will be importing bookmarks from '+config.kobo_db_loc print 'I will be using evernote dev token '+config.evernote_dev_token print 'I will be using evernote note store '+config.evernote_notestore print 'I am using the sourceurl: in the filter to match existing records' while noteStore == None: connect_to_evernote() conn = sqlite3.connect(config.kobo_db_loc) c=conn.cursor() for row in c.execute("select content.BookTitle,Bookmark.BookmarkID,Bookmark.Text,Bookmark.Annotation from Bookmark join content on content.ContentID = Bookmark.ContentID"): sendtoevernote(row) if __name__ == "__main__": main()
UTF-8
Python
false
false
2,014
1,056,561,965,849
3f4ec85ad4cf0ff0247c6ec03df7b3c3764e3b92
9d102d428631261083d0772b1b576a862a84bf3f
/cookbook/conversor.py
6b13b4d53dc54d80dd0c35884a6dbc8c0da8581e
[ "MIT" ]
permissive
matheus/learn-python
https://github.com/matheus/learn-python
151d0d71bf3c6037a9892c57a7ab4fe8cfe00905
026ec56402894341c4620379de79cc210d22b95a
refs/heads/master
2016-03-06T02:54:56.339669
2014-02-06T09:29:35
2014-02-06T09:29:35
15,235,408
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# conversor.py from distutils.core import setup import py2exe setup(console=["plantao.py"])
UTF-8
Python
false
false
2,014
10,505,490,048,421
ff445a24c883de5f589f6c146042624cbf5c63b8
fb563a22ffacf04f6bbb385bc227c6995ff48e68
/MountainHacks/wsgi.py
a51768d782a4a656a87cdd81c9106cd45fa24979
[]
no_license
MountainHacks/MountainHacks-BackEnd
https://github.com/MountainHacks/MountainHacks-BackEnd
fcfac129616a5e654abc08f9e4f2c8ab3481ed07
d0aa361a6540a07d27b9ae760e55f391d448d68a
refs/heads/master
2016-09-06T13:34:41.350455
2014-11-22T17:28:20
2014-11-22T17:28:20
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
__author__ = 'Derek Argueta' __email__ = '[email protected]' import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "MountainHacks.settings") from django.core.wsgi import get_wsgi_application application = get_wsgi_application()
UTF-8
Python
false
false
2,014
6,081,673,704,455
e903f8e3f6159f10d2ec27467c1b0518ac36079a
d0d81e58fec8727aebf6fe314800ba81dbcb02d1
/archive/cosmo-src/test-functional/test_windmill/test_new_user/test_pim/test_canvas/__init__.py
980f62ef12b9f8d2dbe2bad386f914c3d21e875c
[]
no_license
hzbarcea/cosmo
https://github.com/hzbarcea/cosmo
c89c5836e6a5e16b7af78415d5cae0b2e558b972
0b3e15c356cdb37f5a6630d19c184e069c5f956d
refs/heads/master
2021-01-25T08:48:49.223416
2013-04-04T22:24:45
2013-04-04T22:24:45
7,753,480
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
cal_cavas_setup_json = """{"params": {"timeout": 40000, "id": "cosmoViewToggleCalViewSelector"}, "method": "waits.forElement"} {"params": {"id": "cosmoViewToggleCalViewSelector"}, "method": "click"}""" from windmill.authoring import RunJsonFile def setup_module(module): RunJsonFile('calcanva_setup.json', lines=cal_cavas_setup_json.splitlines())()
UTF-8
Python
false
false
2,013
15,607,911,172,480
be965af4c8de4e3a5b7076675489c47c2232cd52
a268c99602ad79d5896b7511a471689c08b0a8ae
/hyperopt/criteria.py
a16820f1cbb7dee3ec573000ecd2189fac1d492a
[ "BSD-3-Clause" ]
permissive
dwf/hyperopt
https://github.com/dwf/hyperopt
0c3c5f7b469fb4b8d1eebf740d4e8d954365254a
c2c9eaa07915d2415bfa67da9dc2cf1ff861845b
refs/heads/master
2021-01-12T21:06:50.171970
2014-01-13T01:02:58
2014-01-13T01:02:58
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
"""Criteria for Bayesian optimization """ import numpy as np import scipy.stats def EI_numeric(samples, thresh): """Expected improvement over threshold from samples """ samples = samples - thresh return samples[samples > 0].sum() / float(len(samples)) def EI(mean, var, thresh): """Expected improvement of Gaussian over threshold """ sigma = np.sqrt(var) score = (mean - thresh) / sigma n = scipy.stats.norm return sigma * (score * n.cdf(score) + n.pdf(score)) def logEI(mean, var, thresh): """Return log(EI(mean, var, thresh)) This formula avoids underflow in cdf for thresh >= mean + 37 * sqrt(var) """ sigma = np.sqrt(var) score = (mean - thresh) / sigma n = scipy.stats.norm if score < 0: pdf = n.logpdf(score) r = np.exp(np.log(-score) + n.logcdf(score) - pdf) return np.log(sigma) + pdf + np.log1p(-r) else: return np.log(sigma) + np.log(score * n.cdf(score) + n.pdf(score)) def UCB(mean, var, zscore): return mean - np.sqrt(var) * zscore # -- flake8
UTF-8
Python
false
false
2,014
858,993,473,326
13129b84d624e4934f4b8f9692673d768f40ffcf
0e0aac2c305eb6adf57d80b5bbea0244609b891b
/web/RestaurantBeeperWeb/restaurant/admin.py
4dc62da758260c1ca3f78a53e186c487ce2ad118
[]
no_license
kaelspencer/RestaurantBeeper
https://github.com/kaelspencer/RestaurantBeeper
3617d61a6d759bfc99a8a94b696e711e9398faba
2cf7388d6491457acb6e063a1a102c4cbdbb764d
refs/heads/master
2021-01-18T21:30:33.108559
2013-01-14T05:40:51
2013-01-14T05:40:51
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.contrib import admin from restaurant.models import Restaurant, Visitor admin.site.register(Restaurant) admin.site.register(Visitor)
UTF-8
Python
false
false
2,013
4,595,615,025,326
e63e76069284c564df2892c121e3b2fd17b1a74b
ab426af6e78a5b3ddd149476c174b64577eb8b6f
/dual_palindrome.py
2411b41847567560791e80d91262151ae011eda4
[]
no_license
ehudt/euler
https://github.com/ehudt/euler
e56babfbd431985d50094dab31f9ef92d0b010d1
501d1de635d34d09d2ef72f81adf4bfe392c35e7
refs/heads/master
2016-09-03T06:54:14.090905
2013-06-29T21:56:22
2013-06-29T21:56:22
7,996,593
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
def int2bin(n): if n == 0: return '0' output = [] while n > 0: output.append(str(n % 2)) n /= 2 return str(''.join(output[::-1])) def isPalindrome(s): return s == s[::-1] accum = 0 for i in xrange(1000000): if isPalindrome(str(i)) and isPalindrome(int2bin(i)): accum += i print accum
UTF-8
Python
false
false
2,013
3,496,103,402,752
19731863980beac5a4ee1f7a976c7cb3dbfe306f
692b113e48660972910ab72df19408af333d8906
/pycheck/test/test_checkjson.py
f658dab6826a51da2ee1cfc1516d3a7184514384
[ "MIT" ]
permissive
lauft/pyCheck
https://github.com/lauft/pyCheck
260dd00ec9c0b3ef7f9370750282969b1b0ca421
ae4107bfa66474afafaff3c964bf81641d0a023a
refs/heads/master
2020-05-18T17:06:39.313801
2014-12-12T15:20:07
2014-12-12T15:20:07
23,404,397
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
__author__ = 'lauft' import unittest import os import pycheck.checkjson class CheckJsonFileTestCase(unittest.TestCase): """CheckJsonFile test case""" def setUp(self): """ :return: """ self.validTestFile = "valid_composer.json" self.invalidTestFile = "invalid_composer.json" self.testFileEmptyArray = "empty_array.json" self.testFileArray = "array.json" self.testFileEmptyObject = "empty_object.json" self.testFileObject = "object.json" self.nonExistentFile = "this/path/does/not/exist" def tearDown(self): """ :return: """ def test_fails_on_invalid_path(self): """ :return: """ self.assertTrue(pycheck.checkjson.CheckJson(self.nonExistentFile).failed) def test_fails_on_invalid_file(self): """ :return: """ self.assertTrue(pycheck.checkjson.CheckJson(self.invalidTestFile).failed) def test_passes_on_empty_array(self): """ A file with an empty array is a valid JSON file :return: """ self.assertFalse(pycheck.checkjson.CheckJson(self.testFileEmptyArray).failed) def test_passes_on_array(self): """ A file with an array is valid JSON file :return: """ self.assertFalse(pycheck.checkjson.CheckJson(self.testFileArray).failed) def test_passes_on_emtpy_object(self): """ A file with an empty object is a valid JSON file :return: """ self.assertFalse(pycheck.checkjson.CheckJson(self.testFileEmptyObject).failed) def test_passes_on_object(self): """ A file with an object is a valid JSON file :return: """ self.assertFalse(pycheck.checkjson.CheckJson(self.testFileObject).failed) def test_does_contain_member(self): """ A member is a name/value pair within a JSON object :return: """ self.assertTrue( pycheck.checkjson.CheckJson(self.testFileObject).does_contain_member('foo'), 'Test file contains key "foo" - not found!' ) self.assertFalse( pycheck.checkjson.CheckJson(self.testFileObject).does_contain_member('bar'), 'Test file does not contain key "bar" - however found!' )
UTF-8
Python
false
false
2,014
9,534,827,417,788
3d712b736a27d7502ca4a2afd92677971a25c06c
af82cc31fdd7375924947c9d86a7e501b779d1b0
/schedule.py
efbd861c8ebf22ea25153b8935eb180fb8b7b743
[]
no_license
boxysean/hope9-schedule
https://github.com/boxysean/hope9-schedule
7b49e120573eacff9d7befdae796cc9a950a4f34
a5740e0fb308b810f6b9b416b5edc39239e8b2f9
refs/heads/master
2021-01-22T11:59:11.650659
2012-06-26T05:31:26
2012-06-26T05:31:26
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import yaml from datetime import datetime import random y = yaml.load(open("hope9.yaml")) room_offset = {} room_offset["Dennis"] = 300 room_offset["Sassaman"] = 600 room_offset["Nutt"] = 900 min_time = 1e10 max_time = -1e10 width = 300 height = 100 for s in y["schedule"]: min_time = min(s["start"], min_time) max_time = max(s["end"], max_time) t = min_time while t < max_time: print "<div style=\"position: absolute; left: 0; top: %d; height: %d; width: %d; background-color: #%06x\">%s</div>" % ((t - min_time) / 50 + height, height, width, random.randint(0, 256*256*256), datetime.fromtimestamp(t)) t += 60*60 def print_room(room): print "<div style=\"position: absolute; left: %d; top: 0; height: %d; width: %d; background-color: #%06x\">%s</div>" % (room_offset[room], height, width, random.randint(0, 256*256*256), room) print_room("Dennis") print_room("Sassaman") print_room("Nutt") for s in y["schedule"]: print "<div style=\"position: absolute; left: %d; top: %d; height: %d; width: %d; background-color: #%06x\">%s</div>" % (room_offset[s["room"]], (s["start"] - min_time) / 50 + height, height, width, random.randint(0, 256*256*256), s["title"])
UTF-8
Python
false
false
2,012
3,418,793,989,778
2102d1e6d0f398fd4efd4af2c0145afc8ae6de44
bd64d2f59d0efb2cb8655177be4c336775e7eb5f
/mayatools/context.py
2a741d9c0e581159fba8225f756bc4ea55ed3ab0
[]
no_license
mikeboers/mayatools
https://github.com/mikeboers/mayatools
a8285dcb04fa333f47e2b38134ec82f3c0babc91
1c6441a440f5b06d326714a891057bb5525470c7
refs/heads/master
2023-08-17T13:06:08.384075
2014-11-12T00:43:39
2014-11-12T00:43:39
26,512,152
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
""" Context managers for restoring state after running requested tools. These are generally quite useful for creating tools which must modify state that is normally under control of the user. By using these, the state will be set back to what the user left it at. For example, several of Maya's tools work easiest when they are operating on the current selection, but that selection is not something that we want to expose to the user of our higher level tool. """ import contextlib import functools from uitools.qt import QtGui, QtCore from maya import cmds, mel @contextlib.contextmanager def attrs(*args, **kwargs): """Change some attributes, and reset them when leaving the context. :param args: Mappings of attributes to values. :param kwargs: More attributes and values. :returns: A dictionary of the original values will be bound to the target of the with statement. Changed to that dictionary will be applied. This is very for tools that must modify global state:: >>> with mayatools.context.attrs({'defaultRenderGlobals.imageFormat': 8}): ... # Playblast with confidence that the render globals will be reset. """ # Collect all the arguments. for arg in args: kwargs.update(arg) existing = {} try: # Set all of the requested attributes. for name, value in kwargs.iteritems(): existing[name] = cmds.getAttr(name) kw = {} if isinstance(value, basestring): kw['type'] = 'string' cmds.setAttr(name, value, **kw) yield existing finally: # Reset them back to normal. for name, value in existing.iteritems(): kw = {} if isinstance(value, basestring): kw['type'] = 'string' cmds.setAttr(name, value, **kw) def command(func, *args, **kwargs): """A context manager that uses the standard query interface. Pass any values via keyword arguments and their original values will be saved via ``func(*args, query=True, yourAttribute=True)``, and finally restored via ``func(*args, yourAttribute=original)`` or ``func(*args, edit=True, yourAttribute=original)`` if you also specify ``edit=True``. :param func: A callable, or name of a Maya command. :param args: Positional arguments for the given ``func``. :param kwargs: Values to set within the context. ``edit`` is special and marks if values should be set with an ``edit`` flag or not. A dictionary of the original values will be bound to the target of the with statement. Changed to that dictionary will be applied. If you are already using a query pattern like:: >>> current_time_unit = cmds.currentUnit(time) >>> cmds.currentUnit(time='film') >>> >>> try: ... # Do something. ... finally: ... cmds.currentUnit(time=current_time_unit) then you can use this manager directly:: >>> with command(cmds.currentUnit, time='film') as originals: ... # Do something. or as a context manager factory:: >>> currentUnit = command(cmds.currentUnit) >>> with currentUnit(time='film') as originals: ... # Do something. If your command requires the ``edit`` keyword, pass it to this function:: >>> with ctx.command(cmds.camera, my_camera, edit=True, overscan=1): ... # Do something with the camera. """ if args or kwargs: return _command(func, *args, **kwargs) else: return functools.partial(_command, func) @contextlib.contextmanager def _command(func, *args, **kwargs): if isinstance(func, basestring): func = getattr(cmds, func) edit = bool(kwargs.pop('edit', None)) existing = {} try: # Set the requested parameters. for name, value in kwargs.iteritems(): existing[name] = func(*args, query=True, **{name: True}) if edit: func(*args, edit=True, **{name: value}) else: func(*args, **{name: value}) yield existing finally: # Reset them back to normal. for name, value in existing.iteritems(): if edit: func(*args, edit=True, **{name: value}) else: func(*args, **{name: value}) @contextlib.contextmanager def selection(*args, **kwargs): """A context manager that resets selections after exiting. :param args: Passed to ``cmds.select``. :param kwargs: Passed to ``cmds.select``. A list of the original selection will be bound to the target of the with statement. Changes to that list will be applied. Example:: >>> with selection(clear=True): ... # Do something with an empty selection, but restore the user's ... # selection when we are done. """ existing = cmds.ls(selection=True, long=True) or [] try: if args or kwargs: cmds.select(*args, **kwargs) yield existing finally: if existing: cmds.select(existing, replace=True) else: cmds.select(clear=True) @contextlib.contextmanager def delete(*to_delete, **kwargs): """A context manager that deletes nodes after exiting. :param args: Passed to ``cmds.delete``. :param kwargs: Passed to ``cmds.delete``. A list of the nodes to delete will be bound to the target of the with statement. Changes to that list will be applied. Example:: >>> with delete() as to_delete: ... # Create temporary nodes and register them in to_delete. This is useful when creating temporary nodes, and registering them for deletion after the context is exited, even if the process failed. """ # Make it mutable. to_delete = list(to_delete) try: yield to_delete finally: if to_delete: cmds.delete(*to_delete) _suspend_depth = 0 @contextlib.contextmanager def suspend_refresh(): """A context mananger that stops the graph from running or the view updating. Can be nested, where only the outermost context manager will resume refresing. :: >>> with suspend_refresh(): ... do_something_with_high_drawing_cost() .. seealso:: There are caveats with disabling the refresh cycle. Be sure to read about :cmds:`refresh`. """ global _suspend_depth try: if not _suspend_depth: cmds.refresh(suspend=True) _suspend_depth += 1 yield finally: _suspend_depth -= 1 if not _suspend_depth: cmds.refresh(suspend=False) class progress(object): """A context manager to assist with the global progress bar. :param str status: The status message. :param int max: The maximum value. :param int min: The minimum value. :param bool cancellable: If the process is cancellable. If the process is cancellable, you must periodically check :meth:`.was_cancelled` to see if the user did cancel the action. You must be more defensive in your programming than normal since this must allow the main event loop to process user events. :: with progress("Testing", max=100, cancellable=True) as p: for i in range(100): if p.was_cancelled(): cmds.warn('You cancelled the process!') break time.sleep(0.02) p.update(i, 'Testing %d of 100' % (i + 1)) """ def __init__(self, status, max=100, min=0, cancellable=False): self._status = status self._min = min self._max = max self._cancellable = cancellable self._was_cancelled = False def step(self, size=1): """Increment the value.""" cmds.progressBar(self._bar, edit=True, step=size) def update(self, value=None, status=None, min=None, max=None): """Update the value and status.""" self._status = status or self._status self._min = min or self._min self._max = max or self._max kwargs = {'progress': value} if value is not None else {} cmds.progressBar(self._bar, edit=True, status=self._status, minValue=self._min, maxValue=self._max, **kwargs ) def was_cancelled(self, max_time=0.01): """Check if the user requested the action be cancelled. :param float max_time: The maximum number of seconds to spend in the main event loop checking for user actions. :returns bool: True if the user requested the action be cancelled. """ if not self._cancellable: return False if self._was_cancelled: return self._was_cancelled # Allow the main thread to process events for just a little bit so that # it may catch the escape key. QtGui.QApplication.instance().processEvents(QtCore.QEventLoop.ExcludeSocketNotifiers, max_time) self._was_cancelled = cmds.progressBar(self._bar, query=True, isCancelled=True) return self._was_cancelled def show(self): """Show the progress bar.""" main_bar = mel.eval('$tmp = $gMainProgressBar') self._bar = cmds.progressBar(main_bar, edit=True, beginProgress=True, status=self._status, minValue=self._min, maxValue=self._max, isInterruptable=self._cancellable, ) def hide(self): """Hide the progress bar.""" cmds.progressBar(self._bar, edit=True, endProgress=True) def __enter__(self): self.show() return self def __exit__(self, *args): self.hide()
UTF-8
Python
false
false
2,014
16,724,602,660,982
33f69b5f39f3101dc73910584ba7d6d38a105f33
0ee3a0b594ca30f2710f421529aa0eb61e03a4e6
/mibs/pycopia/mibs/CISCO_ATM_SWITCH_FR_IWF_MIB_OID.py
5af0927af9b8aedb956bb17b1d5e625bce71719c
[ "LGPL-2.0-or-later", "MIT", "BSD-3-Clause", "LGPL-2.1-only" ]
non_permissive
xiangke/pycopia
https://github.com/xiangke/pycopia
d9f89678d837bd0b3f6cc105ecd670a4c2a4338a
0f655f0c80ff601a0ac28531eca9b4d7c604eceb
refs/heads/master
2020-05-18T12:04:09.833880
2008-11-11T07:45:45
2008-11-11T07:45:45
75,153
5
1
null
null
null
null
null
null
null
null
null
null
null
null
null
# python # This file is generated by a program (mib2py). import CISCO_ATM_SWITCH_FR_IWF_MIB OIDMAP = { '1.3.6.1.4.1.9.9.112': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSwitchFrIwfMIB, '1.3.6.1.4.1.9.9.112.1': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSwitchFrIwfMIBObjects, '1.3.6.1.4.1.9.9.112.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrTraffic, '1.3.6.1.4.1.9.9.112.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrVC, '1.3.6.1.4.1.9.9.112.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrInterface, '1.3.6.1.4.1.9.9.112.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrCounts, '1.3.6.1.4.1.9.9.112.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfMapping, '1.3.6.1.4.1.9.9.112.3': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfMIBConformance, '1.3.6.1.4.1.9.9.112.3.1': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfMIBCompliances, '1.3.6.1.4.1.9.9.112.3.2': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfMIBGroups, '1.3.6.1.4.1.9.9.112.1.1.1.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrIndex, '1.3.6.1.4.1.9.9.112.1.1.1.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrCIR, '1.3.6.1.4.1.9.9.112.1.1.1.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrBc, '1.3.6.1.4.1.9.9.112.1.1.1.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrBe, '1.3.6.1.4.1.9.9.112.1.1.1.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrPIR, '1.3.6.1.4.1.9.9.112.1.1.1.1.6': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrServCategory, '1.3.6.1.4.1.9.9.112.1.1.1.1.7': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrAtmIndex, '1.3.6.1.4.1.9.9.112.1.1.1.1.8': CISCO_ATM_SWITCH_FR_IWF_MIB.casfTrafficDescrRowStatus, '1.3.6.1.4.1.9.9.112.1.2.1.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptDlci, '1.3.6.1.4.1.9.9.112.1.2.1.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptRxTrafficDescrRow, '1.3.6.1.4.1.9.9.112.1.2.1.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptTxTrafficDescrRow, '1.3.6.1.4.1.9.9.112.1.2.1.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptRxNegTrafficDescrRow, '1.3.6.1.4.1.9.9.112.1.2.1.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptTxNegTrafficDescrRow, '1.3.6.1.4.1.9.9.112.1.2.1.1.6': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptConnKind, '1.3.6.1.4.1.9.9.112.1.2.1.1.7': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptIwfType, '1.3.6.1.4.1.9.9.112.1.2.1.1.8': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptClpMode, '1.3.6.1.4.1.9.9.112.1.2.1.1.9': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptDeMode, '1.3.6.1.4.1.9.9.112.1.2.1.1.10': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptEfciMode, '1.3.6.1.4.1.9.9.112.1.2.1.1.11': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptUpcMode, '1.3.6.1.4.1.9.9.112.1.2.1.1.12': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptSpvcRemoteAddr, '1.3.6.1.4.1.9.9.112.1.2.1.1.13': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptSpvcRemoteType, '1.3.6.1.4.1.9.9.112.1.2.1.1.14': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptSpvcRemoteDlci, '1.3.6.1.4.1.9.9.112.1.2.1.1.15': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptSpvcRemoteVpi, '1.3.6.1.4.1.9.9.112.1.2.1.1.16': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptSpvcRemoteVci, '1.3.6.1.4.1.9.9.112.1.2.1.1.17': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptCreationTime, '1.3.6.1.4.1.9.9.112.1.2.1.1.18': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptRcvdSigStatus, '1.3.6.1.4.1.9.9.112.1.2.1.1.19': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcEndptRowStatus, '1.3.6.1.4.1.9.9.112.1.3.1.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiProtocol, '1.3.6.1.4.1.9.9.112.1.3.1.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiType, '1.3.6.1.4.1.9.9.112.1.3.1.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiUserN391, '1.3.6.1.4.1.9.9.112.1.3.1.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiUserN392, '1.3.6.1.4.1.9.9.112.1.3.1.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiUserN393, '1.3.6.1.4.1.9.9.112.1.3.1.1.6': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiUserT391, '1.3.6.1.4.1.9.9.112.1.3.1.1.7': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiNetN392, '1.3.6.1.4.1.9.9.112.1.3.1.1.8': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiNetN393, '1.3.6.1.4.1.9.9.112.1.3.1.1.9': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiNetT392, '1.3.6.1.4.1.9.9.112.1.3.1.1.10': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiEnquiryIns, '1.3.6.1.4.1.9.9.112.1.3.1.1.11': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiEnquiryOuts, '1.3.6.1.4.1.9.9.112.1.3.1.1.12': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiStatusIns, '1.3.6.1.4.1.9.9.112.1.3.1.1.13': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiStatusOuts, '1.3.6.1.4.1.9.9.112.1.3.1.1.14': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiStatusTimeouts, '1.3.6.1.4.1.9.9.112.1.3.1.1.15': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFrLmiStatusEnqTimeouts, '1.3.6.1.4.1.9.9.112.1.3.2.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfConfIfAtmAddress, '1.3.6.1.4.1.9.9.112.1.3.2.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfConfIfUpcIntent, '1.3.6.1.4.1.9.9.112.1.3.2.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfConfIfBcDefault, '1.3.6.1.4.1.9.9.112.1.4.1.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountReceivedFrames, '1.3.6.1.4.1.9.9.112.1.4.1.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountReceivedOctets, '1.3.6.1.4.1.9.9.112.1.4.1.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountReceivedFECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountReceivedBECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountReceivedDEs, '1.3.6.1.4.1.9.9.112.1.4.1.1.6': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountInDiscards, '1.3.6.1.4.1.9.9.112.1.4.1.1.7': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountOutDiscards, '1.3.6.1.4.1.9.9.112.1.4.1.1.8': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountSentFrames, '1.3.6.1.4.1.9.9.112.1.4.1.1.9': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountSentOctets, '1.3.6.1.4.1.9.9.112.1.4.1.1.10': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountSentFECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.11': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountSentBECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.12': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountSentDEs, '1.3.6.1.4.1.9.9.112.1.4.1.1.13': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountTaggedFECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.14': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountTaggedBECNs, '1.3.6.1.4.1.9.9.112.1.4.1.1.15': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcCountTaggedDEs, '1.3.6.1.4.1.9.9.112.1.4.2.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountInUnknownProts, '1.3.6.1.4.1.9.9.112.1.4.2.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountOutUnknownProts, '1.3.6.1.4.1.9.9.112.1.4.2.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountReassemblyTimeouts, '1.3.6.1.4.1.9.9.112.1.4.2.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountLengthErrors, '1.3.6.1.4.1.9.9.112.1.4.2.1.5': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountCrcErrors, '1.3.6.1.4.1.9.9.112.1.4.2.1.6': CISCO_ATM_SWITCH_FR_IWF_MIB.casfVcIwfCountTotalDiscardFrames, '1.3.6.1.4.1.9.9.112.1.5.1.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFAMapDlci, '1.3.6.1.4.1.9.9.112.1.5.1.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFAMapInternalAtmInterface, '1.3.6.1.4.1.9.9.112.1.5.1.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFAMapInternalAtmVpi, '1.3.6.1.4.1.9.9.112.1.5.1.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfFAMapInternalAtmVci, '1.3.6.1.4.1.9.9.112.1.5.2.1.1': CISCO_ATM_SWITCH_FR_IWF_MIB.casfAFMapAtmVpi, '1.3.6.1.4.1.9.9.112.1.5.2.1.2': CISCO_ATM_SWITCH_FR_IWF_MIB.casfAFMapAtmVci, '1.3.6.1.4.1.9.9.112.1.5.2.1.3': CISCO_ATM_SWITCH_FR_IWF_MIB.casfAFMapFrIndex, '1.3.6.1.4.1.9.9.112.1.5.2.1.4': CISCO_ATM_SWITCH_FR_IWF_MIB.casfAFMapFrDlci, '1.3.6.1.4.1.9.9.112.3.2.1': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfConfConnGroup, '1.3.6.1.4.1.9.9.112.3.2.2': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfLmiGroup, '1.3.6.1.4.1.9.9.112.3.2.3': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfConfIfGroup, '1.3.6.1.4.1.9.9.112.3.2.4': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfVcStatsGroup, '1.3.6.1.4.1.9.9.112.3.2.5': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfVcIwStatsGroup, '1.3.6.1.4.1.9.9.112.3.2.6': CISCO_ATM_SWITCH_FR_IWF_MIB.ciscoAtmSFrIwfMappingGroup, }
UTF-8
Python
false
false
2,008
10,728,828,346,787
50cc4691cc5e1713ea2cc759686e42e94f994d16
1d7af63d27ffb3da8c02013767cf76cbe0ad1848
/publish/decorators.py
c71672b265971c073963740671658045ff006965
[ "BSD-2-Clause" ]
permissive
kerin/django-publish
https://github.com/kerin/django-publish
db83b8c4d6f6c7d99469208223de2cbd3850667d
8f4c40a672bdcf77cbf08e3d86db0acf11cef6de
refs/heads/master
2020-12-25T16:25:51.586499
2011-10-03T11:06:23
2011-10-03T11:06:23
2,160,269
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
try: from functools import wraps except ImportError: from django.utils.functional import wraps # Python 2.4 fallback. from django.http import Http404 def staff_only_preview(view_func): def _checkstaff(request, *args, **kwargs): if request.user.is_active and request.user.is_staff: kwargs['preview'] = True return view_func(request, *args, **kwargs) raise Http404 return wraps(view_func)(_checkstaff)
UTF-8
Python
false
false
2,011
8,194,797,605,596
d9f808d6c764eadb633ac27ed386de05949465ca
3f6e278f09a0980bbe3473197a8511a10f8258be
/nest_graphite.py
47426cc49b0c9765cf4f54db011c524bf7a82139
[]
no_license
molekuul/nest_graphite
https://github.com/molekuul/nest_graphite
3e6a6724adebc17b5e8a714a08a62cd19fe6924d
564b3ac30f766fa8d706c447758424137e8b76fa
refs/heads/master
2020-04-26T13:43:25.128626
2013-02-19T04:50:49
2013-02-19T04:50:49
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python # nest_to_graphite.py -- python script to interface with the Nest Thermostat # and send obtained information to a graphite server # by Farid Saad, [email protected] # # The hard work of interfacing with the Nest borrowed # from Scott M Baker's Python Nest interface: https://github.com/smbaker/pynest # # # Licensing: # This is distributed unider the Creative Commons 3.0 Non-commecrial, # Attribution, Share-Alike license. You can use the code for noncommercial # purposes. You may NOT sell it. If you do use it, then you must make an # attribution to me (i.e. Include my name and thank me for the hours I spent # on this) # # Acknowledgements: # Scott Baker's pynest script does the hard work, which in turn acknowledges # Chris Burris's Siri Nest Proxy as being very helpful to learn the nest's # authentication and some bits of the protocol. import urllib import urllib2 import sys import re import socket import time import subprocess import yaml try: import json except ImportError: try: import simplejson as json except ImportError: print "No json library available. I recommend installing either python-json" print "or simpejson." sys.exit(-1) def is_number(v): try: float(v) return True except ValueError: return False class Nest: def __init__(self, username, password, serial=None, index=0, units="F"): self.username = username self.password = password self.serial = serial self.units = units self.index = index def loads(self, res): if hasattr(json, "loads"): res = json.loads(res) else: res = json.read(res) return res def login(self): data = urllib.urlencode({"username": self.username, "password": self.password}) req = urllib2.Request("https://home.nest.com/user/login", data, {"user-agent":"Nest/1.1.0.10 CFNetwork/548.0.4"}) res = urllib2.urlopen(req).read() res = self.loads(res) self.transport_url = res["urls"]["transport_url"] self.access_token = res["access_token"] self.userid = res["userid"] def get_status(self): req = urllib2.Request(self.transport_url + "/v2/mobile/user." + self.userid, headers={"user-agent":"Nest/1.1.0.10 CFNetwork/548.0.4", "Authorization":"Basic " + self.access_token, "X-nl-user-id": self.userid, "X-nl-protocol-version": "1"}) res = urllib2.urlopen(req).read() res = self.loads(res) self.structure_id = res["structure"].keys()[0] if (self.serial is None): self.device_id = res["structure"][self.structure_id]["devices"][self.index] self.serial = self.device_id.split(".")[1] self.status = res def temp_conv(self, temp): if (self.units == "F"): return temp*1.8 + 32.0 else: return temp def show_status(self): results = "" shared = self.status["shared"][self.serial] device = self.status["device"][self.serial] allvars = shared allvars.update(device) for k in sorted(allvars.keys()): results += k + ":" + str(allvars[k]) + "\n" return results def main(): config = yaml.load(open('settings.cfg','r').read()) n = Nest(config['user'], config['password'], config['serial'], config['index'], config['units']) n.login() n.get_status() data = n.show_status() #Open socket to graphite box s = socket.socket() s.connect((config['graphite_server'],config['graphite_port'])) prefix = config['graphite_prefix'] for line in data.split('\n'): match = re.split(':',line.rstrip(),maxsplit=1) if len(match)==2: label,value = match if (value == 'False'): value = 0 if (value == 'True'): value = 1 if is_number(value) and re.match("\w",label) is not None: if re.search("temp",label) is not None: value = n.temp_conv(float(value)) message = prefix + "." + label + " " + str(float(value)) + " " + str(int(time.time())) + "\n" #print message s.send(message) s.close() if __name__=="__main__": main()
UTF-8
Python
false
false
2,013
12,197,707,167,380
e0e344a0cf0131b429a8b685e02066d34495bf6e
82e36f1a91d0780155daede1a5eafaf7530118aa
/processes/customer/salesforce.py
516ea48ef93c5e8ce95aa86a145f7b455066c147
[]
no_license
realfms/backoffice_process_manager
https://github.com/realfms/backoffice_process_manager
fbccb4125c61db3c780c88e433202add00c0f8bc
859924de9815b51c2e75b22956f054e39da7cff2
refs/heads/master
2021-01-15T22:56:46.693545
2013-06-24T08:56:31
2013-06-24T08:56:31
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python #coding=utf-8 """ Copyright 2012 Telefonica Investigación y Desarrollo, S.A.U This file is part of Billing_PoC. Billing_PoC is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Billing_PoC 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Billing_PoC. If not, see http://www.gnu.org/licenses/. For those usages not covered by the GNU Affero General Public License please contact with::[email protected] """ ''' Created on 31/10/2012 @author: [email protected] ''' from common.salesforce.salesforce import get_customers def get_customer_details_from_sf(account_id): contact = get_customers(account_id) if not contact: return {} return { 'name' : unicode(contact.Name[0]), 'address' : unicode(contact.MailingStreet[0]), 'city' : unicode(contact.MailingCity[0]), 'postal_code': unicode(contact.MailingPostalCode[0]), 'email' : unicode(contact.Email[0]), 'country' : unicode(contact.MailingCountry[0]), 'tef_account': unicode(contact.TefAccount__c[0]) } def customer_details_from_sf(invoice_json): account_id = invoice_json['tef_account'] # Adding customer details invoice_json['customer'] = get_customer_details_from_sf(account_id) return (invoice_json, None)
UTF-8
Python
false
false
2,013
7,017,976,585,042
b9bf166aeacde5b2f64fac2424b3c3ce32c671ed
1d49975c74edbc3e9bd59998569075f2e320425e
/billboard/kino_sort.py
d3136fbed60b91e98b35c4ee1cd85bac0d231b1a
[]
no_license
chernyatiev/billboard
https://github.com/chernyatiev/billboard
431357f9ef9e8dd7374c3f31e0d7fe9bc47839e0
c9c425e7615752df4fb1d94885b53b7780814bb2
refs/heads/master
2016-08-07T22:41:41.856171
2012-07-11T06:47:34
2012-07-11T06:47:34
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- from __future__ import division import re from django.db.models import Q from billboard.models import Billboard dic={} for event in Billboard.objects.filter(Q(source__icontains='5zvezd')|Q(source__icontains='volga')): current_id=event.event_id #print current_id dict_cur={} wordss=re.findall(ur'[а-яa-z0-9]+',unicode(event.title).lower()) words=[] for word in wordss: if len(word)>=3: words.append(word) for current in Billboard.objects.filter(Q(source__icontains='5zvezd')|Q(source__icontains='volga')): if current.event_id!=current_id: dict_cur[current.event_id]=0 for word in words: if unicode(current.title).lower().find(word)!=-1: dict_cur[current.event_id]+=1 dic[event.event_id]=dict_cur for key in dic.keys(): for key1 in dic[key].keys(): print Billboard.objects.get(event_id=key).title," ", Billboard.objects.get(event_id=key1).title if dic[key][key1]>0:
UTF-8
Python
false
false
2,012
12,987,981,118,414
28d91f9a7100c03092b2056f3eac2bdd907b9104
98c6ea9c884152e8340605a706efefbea6170be5
/examples/data/Assignment_7/dbxand007/question1.py
90fc986d0450eafd25114d85ac5d669d0fab0ed8
[]
no_license
MrHamdulay/csc3-capstone
https://github.com/MrHamdulay/csc3-capstone
479d659e1dcd28040e83ebd9e3374d0ccc0c6817
6f0fa0fa1555ceb1b0fb33f25e9694e68b6a53d2
refs/heads/master
2021-03-12T21:55:57.781339
2014-09-22T02:22:22
2014-09-22T02:22:22
22,372,174
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
"""Cherise Dube 27 April 2014 Program to print out input strings with no duplicates""" strings_list=[] string=input("Enter strings (end with DONE):\n") #Creates a list with all input strings while string!='DONE': strings_list.append(string) string=input("") #Makes new string with no duplicates strings_list2=[] for i in strings_list: if i in strings_list2: continue else: strings_list2.append(i) #Prints strings with no duplicates print() print("Unique list:") for j in strings_list2: print(j)
UTF-8
Python
false
false
2,014
13,769,665,197,578
9a24771a2ed7564d50fe1a8de3145a95f485bd3d
ce02eed27293d16ce20fbaad17430c7d5e0b4786
/opengl/kamiken_opengl_0.0.1.py
5061a1c767bc14bdf8cae6c956e0edd547709f55
[]
no_license
Serkora/kamiken
https://github.com/Serkora/kamiken
9652fc6cfa6cbe376d016ebb217bc0a25900ea0a
b034dcbde9d208e6be01a2e8c08f670f95ec22ae
refs/heads/master
2021-01-19T00:16:03.219115
2014-12-07T14:41:25
2014-12-07T14:41:25
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4 # -*- coding: UTF-8 -*- ''' Kamiken OpenGl v0.0.1 ''' import pyglet import numpy as np import random from pyglet.gl import * from pyglet import image #<==for image calls from pyglet.window import key #<==for key constants from OpenGL.GLUT import * #<==Needed for GLUT calls ''' Переменные ''' BOARD_W = 5 BOARD_H = 1 MSG = 'KAMI~!!' TILE_SIZE = 300 FONT = 'Comic Sans MS' WINDOW_W = BOARD_W * TILE_SIZE + 2 * TILE_SIZE WINDOW_H = BOARD_H * TILE_SIZE + 2 * TILE_SIZE ''' Изображения ''' image = pyglet.resource.image( 'image5.png' ) r_stone = pyglet.resource.image( 'r_stone.png' ) #r_stone = pyglet.resource.image( 'NeHe.bmp' ) r_board = pyglet.resource.image( 'r_board.png' ) ''' Поле ''' #ALL_STONES = np.zeros([BOARD_W, BOARD_H]) #for i in range(BOARD_W): # for j in range(BOARD_H): # ALL_STONES[i,j] = random.randint(0,5) colors = { 'white' : (255, 255, 255, 0.3), 'red' : (255, 0, 0, 0.3), 'blue' : (0, 0, 255, 0.3), 'board' : (0.59, 0.54, 0.51, 0.3), 'r_stone': (243, 104, 18, 255), 'b_stone': (14, 193, 225, 255) } class Board(pyglet.window.Window): def __init__(self): config = Config(sample_buffers=1, samples=4, depth_size=5, double_buffer=True,) try: super(Board, self).__init__(resizable=True, config=config) except: super(Board, self).__init__(resizable=True) self.setup() def setup(self): self.width = 640 self.height = 480 self.xrot = self.yrot = self.zrot = 0.0 self.texture = None self.InitGL(self.width, self.height) pyglet.clock.schedule_interval(self.update, 1/60.0) # update at 60Hz self.LoadTextures() self.STONES = [] for i in range(BOARD_W): for j in range(BOARD_H): self.STONES.append([i,j]) def update(self,dt): image.blit(x=0, y=0) self.DrawGLScene() #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ def on_draw(self): image.blit(x=0, y=0) self.DrawGLScene() #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ def on_resize(self,w,h): self.ReSizeGLScene(w,h) def LoadTextures(self): self.texture = r_stone.get_texture() ix = r_stone.width iy = r_stone.height rawimage = r_stone.get_image_data() format = 'RGBA' pitch = rawimage.width * len(format) #replaced 'image' with 'myimage', as 'image' is in pyglet namespace myimage = rawimage.get_data(format, pitch) #comments in the original code # Create Texture # There does not seem to be support for this call or the version of PyOGL I have is broken. #glGenTextures(1, texture) #glBindTexture(GL_TEXTURE_2D, texture) # 2d texture (x and y size) #using pyglet image functions glEnable(self.texture.target) glBindTexture(self.texture.target, self.texture.id) glPixelStorei(GL_UNPACK_ALIGNMENT,1) glTexImage2D(GL_TEXTURE_2D, 0, 3, ix, iy, 0, GL_RGBA, GL_UNSIGNED_BYTE, myimage) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST) glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL) # A general OpenGL initialization function. Sets all of the initial parameters. def InitGL(self,Width, Height): # We call this right after our OpenGL window is created. #glClearColor(0.1, 0.1, 0.1, 0.0) # This Will Clear The Background Color To Black glClearDepth(1.0) # Enables Clearing Of The Depth Buffer glDepthFunc(GL_LESS) # The Type Of Depth Test To Do glEnable(GL_DEPTH_TEST) # Enables Depth Testing glShadeModel(GL_SMOOTH) # Enables Smooth Color Shading glMatrixMode(GL_PROJECTION) glLoadIdentity() # Reset The Projection Matrix # Calculate The Aspect Ratio Of The Window #(pyglet initializes the screen so we ignore this call) #gluPerspective(45.0, float(Width)/float(Height), 0.1, 100.0) glMatrixMode(GL_MODELVIEW) # The function called when our window is resized (which shouldn't happen if you enable fullscreen, below) def ReSizeGLScene(self,Width, Height): if Height == 0: # Prevent A Divide By Zero If The Window Is Too Small Height = 1 glViewport(0, 0, Width, Height) # Reset The Current Viewport And Perspective Transformation glMatrixMode(GL_PROJECTION) glLoadIdentity() gluPerspective(45.0, float(Width)/float(Height), 0.1, 100.0) glMatrixMode(GL_MODELVIEW) # The main drawing function. def DrawGLScene(self): glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT) # Clear The Screen And The Depth Buffer glLoadIdentity() # Reset The View glTranslatef(-5.0,-5.0,-20.0) # Move Into The Screen glRotatef(self.xrot,1.0,0.0,0.0) # Rotate The Cube On It's X Axis glRotatef(self.yrot,0.0,1.0,0.0) # Rotate The Cube On It's Y Axis glRotatef(self.zrot,0.0,0.0,1.0) # Rotate The Cube On It's Z Axis Move = 0.0 #using pyglet image reference glBindTexture(self.texture.target, self.texture.id) for i in range(BOARD_W): for j in range(BOARD_H): glLoadIdentity() glTranslatef(Move,-5.0,-20.0) # print(i,j) glBegin(GL_QUADS) # Start Drawing The Cube # Front Face (note that the texture's corners have to match the quad's corners) glTexCoord2f(0.0, 0.0); glVertex3f(-1.0, -1.0, 0.2) # Bottom Left Of The Texture and Quad glTexCoord2f(1.0, 0.0); glVertex3f( 1.0, -1.0, 0.2) # Bottom Right Of The Texture and Quad glTexCoord2f(1.0, 1.0); glVertex3f( 1.0, 1.0, 0.2) # Top Right Of The Texture and Quad glTexCoord2f(0.0, 1.0); glVertex3f(-1.0, 1.0, 0.2) # Top Left Of The Texture and Quad # Back Face glTexCoord2f(1.0, 0.0); glVertex3f(-1.0, -1.0, 0.2) # Bottom Right Of The Texture and Quad glTexCoord2f(1.0, 1.0); glVertex3f(-1.0, 1.0, 0.2) # Top Right Of The Texture and Quad glTexCoord2f(0.0, 1.0); glVertex3f( 1.0, 1.0, 0.2) # Top Left Of The Texture and Quad glTexCoord2f(0.0, 0.0); glVertex3f( 1.0, -1.0, 0.2) # Bottom Left Of The Texture and Quad # Top Face glTexCoord2f(0.0, 1.0); glVertex3f(-1.0, 1.0, 0.2) # Top Left Of The Texture and Quad glTexCoord2f(0.0, 0.0); glVertex3f(-1.0, 1.0, 0.2) # Bottom Left Of The Texture and Quad glTexCoord2f(1.0, 0.0); glVertex3f( 1.0, 1.0, 0.2) # Bottom Right Of The Texture and Quad glTexCoord2f(1.0, 1.0); glVertex3f( 1.0, 1.0, -0.2) # Top Right Of The Texture and Quad # Bottom Face glTexCoord2f(1.0, 1.0); glVertex3f(-1.0, -1.0, -0.2) # Top Right Of The Texture and Quad glTexCoord2f(0.0, 1.0); glVertex3f( 1.0, -1.0, -0.2) # Top Left Of The Texture and Quad glTexCoord2f(0.0, 0.0); glVertex3f( 1.0, -1.0, 0.2) # Bottom Left Of The Texture and Quad glTexCoord2f(1.0, 0.0); glVertex3f(-1.0, -1.0, 0.2) # Bottom Right Of The Texture and Quad # Right face glTexCoord2f(1.0, 0.0); glVertex3f( 1.0, -1.0, -0.2) # Bottom Right Of The Texture and Quad glTexCoord2f(1.0, 1.0); glVertex3f( 1.0, 1.0, -0.2) # Top Right Of The Texture and Quad glTexCoord2f(0.0, 1.0); glVertex3f( 1.0, 1.0, 0.2) # Top Left Of The Texture and Quad glTexCoord2f(0.0, 0.0); glVertex3f( 1.0, -1.0, 0.2) # Bottom Left Of The Texture and Quad # Left Face glTexCoord2f(0.0, 0.0); glVertex3f(-1.0, -1.0, -0.2) # Bottom Left Of The Texture and Quad glTexCoord2f(1.0, 0.0); glVertex3f(-1.0, -1.0, 0.2) # Bottom Right Of The Texture and Quad glTexCoord2f(1.0, 1.0); glVertex3f(-1.0, 1.0, 0.2) # Top Right Of The Texture and Quad glTexCoord2f(0.0, 1.0); glVertex3f(-1.0, 1.0, -0.2) # Top Left Of The Texture and Quad glEnd(); # Done Drawing The Cube Move += 2.3 + i self.xrot = self.xrot + 0.2 # X rotation self.yrot = self.yrot + 0.2 # Y rotation self.zrot = self.zrot + 0.2 # Z rotation def main(): global window # For now we just pass glutInit one empty argument. I wasn't sure what should or could be passed in (tuple, list, ...) # Once I find out the right stuff based on reading the PyOpenGL source, I'll address this. glutInit(()) # Select type of Display mode: # Double buffer # RGBA color # Alpha components supported # Depth buffer glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_ALPHA | GLUT_DEPTH) # get a 640 x 480 window glutInitWindowSize(640, 480) # the window starts at the upper left corner of the screen glutInitWindowPosition(0, 0) # Okay, like the C version we retain the window id to use when closing, but for those of you new # to Python (like myself), remember this assignment would make the variable local and not global # if it weren't for the global declaration at the start of main. window = glutCreateWindow("Jeff Molofee's GL Code Tutorial ... NeHe '99") # Register the drawing function with glut, BUT in Python land, at least using PyOpenGL, we need to # set the function pointer and invoke a function to actually register the callback, otherwise it # would be very much like the C version of the code. glutDisplayFunc (DrawGLScene) #we do a call from the self.on_draw() method # Uncomment this line to get full screen. #glutFullScreen() # When we are doing nothing, redraw the scene. glutIdleFunc(DrawGLScene) # Register the function called when our window is resized. glutReshapeFunc (ReSizeGLScene) #we do a call from the # Register the function called when the keyboard is pressed. glutKeyboardFunc (keyPressed) # Initialize our window. InitGL(640, 480) # Start Event Processing Engine glutMainLoop() def on_key_press(self, symbol, modifiers): if symbol == key.ESCAPE: window.close() if symbol == key.RETURN: window.set_fullscreen(True) if __name__ == "__main__": window = Board() pyglet.app.run()
UTF-8
Python
false
false
2,014
3,496,103,386,199
5024cd74c92053b00e46449989a4c86ff6f526b5
2acc048dba3fa05a25eaa05a02d2a30eb0358d20
/week1/week1.py
8b39ba50ef33e156a6cbfd84ff314c63d7c79080
[]
no_license
julie9612/Hackbright_ex
https://github.com/julie9612/Hackbright_ex
6a620969e3e44a8f4715eaef3fabf1d18e076aff
d8bfb2bee97a4750265039c92452d439398209f4
refs/heads/master
2016-09-06T04:18:25.719004
2013-07-09T01:54:51
2013-07-09T01:54:51
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# week1 ex import os import string import shutil src_dir = './files/' dst_dir = './test/' def make_dirs(folder): """ Create 26 directories in the current directory, one for each letter of the alphabet: """ for i in range(97,97+26): mypath= folder+str(chr(i))+"/" if not os.path.exists(mypath): os.makedirs(mypath) if not os.path.exists(folder+"etc"): os.makedirs(folder+"etc") """ Loop through all the files in the original_files directory, and organize each of those files into the directory that their name starts with. """ make_dirs(dst_dir) src_files = os.listdir(src_dir) for f in src_files: src_path=os.path.join(src_dir, f) if f[0] in string.letters: dst_path=os.path.join(dst_dir+f[0]+"/", f) else: dst_path=os.path.join(dst_dir+"etc/", f) shutil.copyfile(src_path, dst_path)
UTF-8
Python
false
false
2,013
1,073,741,834,352
2505e4f9220e5c6112fc8cdd5474a84c811d33be
6ac0e0c3e5ba442a08387a5a2319ab32253bbf5e
/tests/test_parser.py
9c6507d8ddda41b8793ce5d0e05a6b018f6e154a
[ "MIT" ]
permissive
dionyziz/llama
https://github.com/dionyziz/llama
b4c86c119a1dffbfb9324ad2e36203bba5a5f2ea
dac5abf631367f311dc4d38b7822df9072730fd1
refs/heads/master
2016-09-10T09:30:34.048834
2014-11-04T12:29:01
2014-11-04T12:29:01
19,610,813
1
0
null
false
2015-01-12T03:01:29
2014-05-09T12:47:33
2014-09-02T10:08:50
2014-11-04T12:29:02
2,314
1
2
12
Python
null
null
import unittest from compiler import ast, error, lex, parse # pylint: disable=no-member class TestModuleAPI(unittest.TestCase): """Test the API of the parse module.""" def test_parse(self): p1 = parse.Parser() parse.parse("").should.equal(p1.parse("")) mock = error.LoggerMock() p2 = parse.Parser(logger=mock) parse.parse("", logger=mock).should.equal(p2.parse("")) p3 = parse.Parser(start="type") parse.parse("int", start="type").should.equal(p3.parse("int")) def test_quiet_parse(self): mock = error.LoggerMock() p1 = parse.Parser(logger=mock) (parse.quiet_parse("")).should.equal(p1.parse("")) p2 = parse.Parser(start='type') (parse.quiet_parse("int", start='type')).should.equal(p2.parse("int")) class TestParserAPI(unittest.TestCase): """Test the API of the Parser class.""" def test_init(self): logger = error.LoggerMock() p1 = parse.Parser( debug=True, logger=logger, optimize=True, start="type", verbose=True ) p1.should.have.property("logger").being.equal(logger) class TestParserRules(unittest.TestCase): """Test the Parser's coverage of Llama grammar.""" @classmethod def setUpClass(cls): cls.one = parse.quiet_parse("1", "expr") cls.two = parse.quiet_parse("2", "expr") cls.true = parse.quiet_parse("true", "expr") cls.false = parse.quiet_parse("false", "expr") cls.unit = parse.quiet_parse("()", "expr") cls.xfunc = parse.quiet_parse("let x = 1", "letdef") cls.yfunc = parse.quiet_parse("let y = 2", "letdef") def _assert_parse_fails(self, expr, start="expr"): """ Assert that attempting to parse the expression from the given start will fail. """ p = parse.Parser(logger=error.LoggerMock(), start=start) p.parse(expr) p.logger.success.should.be.false # pylint: disable=pointless-statement def test_empty_program(self): parse.quiet_parse("").should.equal(ast.Program([])) def test_def_list(self): parse.quiet_parse("", "def_list").should.equal([]) parse.quiet_parse("let x = 1", "def_list").should.equal([self.xfunc]) parse.quiet_parse("let x = 1 let y = 2", "def_list").should.equal( [self.xfunc, self.yfunc] ) def test_letdef(self): parse.quiet_parse("let x = 1", "letdef").should.equal( ast.LetDef( [ast.FunctionDef("x", [], self.one)] ) ) parse.quiet_parse("let rec x = 1", "letdef").should.equal( ast.LetDef( [ast.FunctionDef("x", [], self.one)], True ) ) def test_function_def(self): parse.quiet_parse("let x = 1", "def").should.equal( ast.FunctionDef("x", [], self.one) ) parse.quiet_parse("let x y (z:int) = 1", "def").should.equal( ast.FunctionDef( "x", [ast.Param("y"), ast.Param("z", ast.Int())], self.one ) ) parse.quiet_parse("let x y z:int = 1", "def").should.equal( ast.FunctionDef( "x", [ast.Param("y"), ast.Param("z")], self.one, ast.Int() ) ) def test_param_list(self): parse.quiet_parse("", "param_list").should.equal([]) parse.quiet_parse("my_param", "param_list").should.equal( [ast.Param("my_param")] ) parse.quiet_parse("a b", "param_list").should.equal( [ast.Param("a"), ast.Param("b")] ) def test_param(self): parse.quiet_parse("my_parameter", "param").should.equal( ast.Param("my_parameter") ) parse.quiet_parse("(my_parameter: int)", "param").should.equal( ast.Param("my_parameter", ast.Int()) ) self._assert_parse_fails("my_parameter: int", "param") def test_builtin_type(self): for name, typecon in ast.builtin_types_map.items(): parse.quiet_parse(name, "type").should.equal(typecon()) def test_star_comma_seq(self): parse.quiet_parse("*", "star_comma_seq").should.equal(1) parse.quiet_parse("*, *, *", "star_comma_seq").should.equal(3) def test_array_type(self): array_node = ast.Array(ast.Int()) parse.quiet_parse("array of int", "type").should.equal(array_node) parse.quiet_parse("array [*, *] of int", "type").should.equal( ast.Array(ast.Int(), 2) ) def test_function_type(self): func_node = ast.Function(ast.Int(), ast.Float()) parse.quiet_parse("int -> float", "type").should.equal(func_node) def test_ref_type(self): ref_node = ast.Ref(ast.Int()) parse.quiet_parse("int ref", "type").should.equal(ref_node) def test_user_type(self): user_node = ast.User("mytype") parse.quiet_parse("mytype", "type").should.equal(user_node) def test_type_paren(self): parse.quiet_parse("(int)", "type").should.equal(ast.Int()) def test_const(self): parse.quiet_parse("5", "expr").should.equal( ast.ConstExpression(ast.Int(), 5) ) parse.quiet_parse("5.7", "expr").should.equal( ast.ConstExpression(ast.Float(), 5.7) ) parse.quiet_parse("'z'", "expr").should.equal( ast.ConstExpression(ast.Char(), "z") ) parse.quiet_parse('"z"', "expr").should.equal( ast.ConstExpression(ast.String(), ["z", '\0']) ) parse.quiet_parse("true", "expr").should.equal( ast.ConstExpression(ast.Bool(), True) ) parse.quiet_parse("()", "expr").should.equal( ast.ConstExpression(ast.Unit(), None) ) def test_constr(self): parse.quiet_parse("Node", "constr").should.equal( ast.Constructor("Node", []) ) parse.quiet_parse("Node of int", "constr").should.equal( ast.Constructor("Node", [ast.Int()]) ) def test_simple_variable_def(self): foo_var = ast.VariableDef("foo") parse.quiet_parse("mutable foo : int", "def").should.equal( ast.VariableDef("foo", ast.Ref(ast.Int())) ) parse.quiet_parse("mutable foo", "def").should.equal(foo_var) def test_array_variable_def(self): array_var = ast.ArrayVariableDef("foo", [self.two]) parse.quiet_parse("mutable foo [2]", "def").should.equal(array_var) parse.quiet_parse("mutable foo [2] : int", "def").should.equal( ast.ArrayVariableDef("foo", [self.two], ast.Array(ast.Int())) ) def test_while_expr(self): parse.quiet_parse("while true do () done", "expr").should.equal( ast.WhileExpression(self.true, self.unit) ) def test_if_expr(self): parse.quiet_parse("if true then 1 else 2", "expr").should.equal( ast.IfExpression(self.true, self.one, self.two) ) parse.quiet_parse("if true then ()", "expr").should.equal( ast.IfExpression(self.true, self.unit) ) def test_for_expr(self): parse.quiet_parse("for i = 1 to 2 do () done", "expr").should.equal( ast.ForExpression( "i", self.one, self.two, self.unit ) ) parse.quiet_parse( "for i = 2 downto 1 do () done", "expr" ).should.equal( ast.ForExpression( "i", self.two, self.one, self.unit, True ) ) def test_pattern(self): parse.quiet_parse("true", "pattern").should.equal(self.true) parse.quiet_parse("Red true", "pattern").should.equal( ast.Pattern("Red", [self.true]) ) parse.quiet_parse("(true)", "pattern").should.equal(self.true) parse.quiet_parse("foo", "pattern").should.equal( ast.GenidPattern("foo") ) parse.quiet_parse("true", "pattern").should.equal(self.true) parse.quiet_parse("false", "pattern").should.equal(self.false) parse.quiet_parse("'c'", "pattern").should.equal( ast.ConstExpression(ast.Char(), "c") ) parse.quiet_parse("42.0", "pattern").should.equal( ast.ConstExpression(ast.Float(), 42.0) ) parse.quiet_parse("+.42.0", "pattern").should.equal( ast.ConstExpression(ast.Float(), 42.0) ) parse.quiet_parse("-.42.0", "pattern").should.equal( ast.ConstExpression(ast.Float(), -42.0) ) parse.quiet_parse("42", "pattern").should.equal( ast.ConstExpression(ast.Int(), 42) ) parse.quiet_parse("+42", "pattern").should.equal( ast.ConstExpression(ast.Int(), 42) ) parse.quiet_parse("-42", "pattern").should.equal( ast.ConstExpression(ast.Int(), -42) ) def test_simple_pattern_seq(self): self._assert_parse_fails("", "simple_pattern_seq") red, blue = ast.Pattern("Red"), ast.Pattern("Blue") parse.quiet_parse("Red", "simple_pattern_seq").should.equal([red]) parse.quiet_parse("Red Blue", "simple_pattern_seq").should.equal( [red, blue] ) def test_match_expr(self): parse.quiet_parse( "match true with false -> 1 end", "expr" ).should.equal( ast.MatchExpression(self.true, [ast.Clause(self.false, self.one)]) ) def test_clause(self): parse.quiet_parse("true -> false", "clause").should.equal( ast.Clause(self.true, self.false) ) def test_clause_seq(self): self._assert_parse_fails("", "clause_seq") clause1 = ast.Clause(self.one, self.two) clause2 = ast.Clause(self.true, self.false) parse.quiet_parse( "1 -> 2 | true -> false", "clause_seq" ).should.equal( [clause1, clause2] ) def test_delete(self): parse.quiet_parse("delete p", "expr").should.equal( ast.DeleteExpression( ast.GenidExpression("p") ) ) def _check_binary_operator(self, operator): expr = "1 %s 2" % operator parsed = parse.quiet_parse(expr, "expr") parsed.should.be.an(ast.BinaryExpression) parsed.operator.should.equal(operator) parsed.leftOperand.should.equal(self.one) parsed.rightOperand.should.equal(self.two) def _check_unary_operator(self, operator): expr = "%s 1" % operator parsed = parse.quiet_parse(expr, "expr") parsed.should.be.an(ast.UnaryExpression) parsed.operator.should.equal(operator) parsed.operand.should.equal(self.one) def test_binary_expr(self): for operator in list(lex.binary_operators.keys()) + ["mod"]: self._check_binary_operator(operator) def test_unary_expr(self): for operator in list(lex.unary_operators.keys()) + ["not"]: self._check_unary_operator(operator) def test_begin_end_expr(self): parse.quiet_parse("begin 1 end", "expr").should.equal(self.one) def test_function_call_expr(self): parse.quiet_parse("f 1", "expr").should.equal( ast.FunctionCallExpression("f", [self.one]) ) def test_constructor_call_expr(self): parse.quiet_parse("Red 1", "expr").should.equal( ast.ConstructorCallExpression("Red", [self.one]) ) def test_simple_expr_seq(self): self._assert_parse_fails("", "simple_expr_seq") parse.quiet_parse("1", "simple_expr_seq").should.equal([self.one]) parse.quiet_parse("1 2", "simple_expr_seq").should.equal( [self.one, self.two] ) def test_dim_expr(self): parsed = parse.quiet_parse("dim name", "expr") parsed.should.be.an(ast.DimExpression) parsed.name.should.equal("name") parsed = parse.quiet_parse("dim 2 name", "expr") parsed.should.be.an(ast.DimExpression) parsed.name.should.equal("name") parsed.dimension.should.equal(2) def test_in_expr(self): in_expr = ast.LetInExpression(self.xfunc, self.one) parse.quiet_parse("let x = 1 in 1", "expr").should.equal(in_expr) def test_new(self): parse.quiet_parse("new int", "expr").should.equal( ast.NewExpression(ast.Int()) ) def test_expr_comma_seq(self): self._assert_parse_fails("", "expr_comma_seq") parse.quiet_parse("1", "expr_comma_seq").should.equal([self.one]) parse.quiet_parse("1, 2", "expr_comma_seq").should.equal( [self.one, self.two] ) def test_array_expr(self): parse.quiet_parse("a[1]", "expr").should.equal( ast.ArrayExpression("a", [self.one]) ) def test_paren_expr(self): parse.quiet_parse("(1)", "expr").should.equal(self.one) def test_conid_expr(self): parse.quiet_parse("Red", "expr").should.equal( ast.ConidExpression("Red") ) def test_genid_expr(self): parse.quiet_parse("f", "expr").should.equal(ast.GenidExpression("f")) def test_constr_pipe_seq(self): self._assert_parse_fails("", "constr_pipe_seq") parse.quiet_parse("Black | White", "constr_pipe_seq").should.equal( [ast.Constructor("Black"), ast.Constructor("White")] ) def test_tdef(self): parse.quiet_parse("color = Red", "tdef").should.equal( ast.TDef(ast.User("color"), [ast.Constructor("Red")]) ) parse.quiet_parse("int = Red", "tdef").should.equal( ast.TDef(ast.Int(), [ast.Constructor("Red")]) ) def test_tdef_and_seq(self): self._assert_parse_fails("", "tdef_and_seq") parse.quiet_parse( "color = Red and shoes = Slacks", "tdef_and_seq" ).should.equal( [ ast.TDef(ast.User("color"), [ast.Constructor("Red")]), ast.TDef(ast.User("shoes"), [ast.Constructor("Slacks")]) ] ) def test_typedef(self): parse.quiet_parse("type color = Red", "typedef").should.equal( [ast.TDef(ast.User("color"), [ast.Constructor("Red")])] ) def test_type_seq(self): self._assert_parse_fails("", "type_seq") parse.quiet_parse("int float", "type_seq").should.equal( [ast.Int(), ast.Float()] ) def _assert_equivalent(self, expr1, expr2=None, start="expr"): """ Assert that two expressions are parsed into equivalent ASTs. You can pass either two expressions (expr1, expr2) or a sequence of expression tuples as expr1, leaving expr2 to None. """ if expr2 is None: # sequence of expressions exprs = expr1 for expr1, expr2 in exprs: self._assert_equivalent(expr1, expr2, start) else: # self.assertEqual( # parse.quiet_parse(expr1, "expr"), # parse.quiet_parse(expr2, "expr"), # "'%s' must equal '%s'" % (expr1, expr2) # ) parsed1 = parse.quiet_parse(expr1, start) parsed2 = parse.quiet_parse(expr2, start) parsed1.should.equal(parsed2) def _assert_non_equivalent(self, expr1, expr2=None, start="expr"): """ Assert that two expressions are not parsed as equivalent ASTs. The API is similar to _assert_equivalent. """ if expr2 is None: # sequence of expressions exprs = expr1 for expr1, expr2 in exprs: self._assert_non_equivalent(expr1, expr2, start) else: parsed1 = parse.quiet_parse(expr1, start) parsed2 = parse.quiet_parse(expr2, start) parsed1.shouldnt.equal(parsed2) def test_precedence_new_bang(self): self._assert_equivalent("!new int", "!(new int)") def test_precedence_arrayexpr_bang(self): self._assert_equivalent("!a[0]", "!(a[0])") def test_precedence_bang_juxtaposition(self): self._assert_equivalent(( ("!f x", "(!f) x"), ("!F x", "(!F) x") )) def test_precedence_juxtaposition_sign(self): self._assert_equivalent(( ("+ f x", "+ (f x)"), ("+ F x", "+ (F x)"), ("- f x", "- (f x)"), ("- F x", "- (F x)"), ("+. f x", "+. (f x)"), ("+. F x", "+. (F x)"), ("-. f x", "-. (f x)"), ("-. F x", "-. (F x)"), ("not f x", "not (f x)"), ("not F x", "not (F x)"), ("delete f x", "delete (f x)"), ("delete F x", "delete (F x)") )) def test_precedence_sign_pow(self): self._assert_equivalent(( ("+1 ** 2", "(+1) ** 2"), ("1 ** +2", "1 ** (+2)"), ("-1 ** 2", "(-1) ** 2"), ("1 ** -2", "1 ** (-2)"), ("+.1 ** 2", "(+.1) ** 2"), ("1 ** +.2", "1 ** (+.2)"), ("-.1 ** 2", "(-.1) ** 2"), ("1 ** -.2", "1 ** (-.2)"), ("not true ** 2", "(not true) ** 2"), ("1 ** not false", "1 ** (not false)"), ("delete p ** 2", "(delete p) ** 2"), ("1 ** delete p", "1 ** (delete p)"), )) def test_precedence_pow_multiplicative(self): self._assert_equivalent(( ("1 ** 2 * 3", "(1 ** 2) * 3"), ("1 * 2 ** 3", "1 * (2 ** 3)"), ("1 ** 2 / 3", "(1 ** 2) / 3"), ("1 / 2 ** 3", "1 / (2 ** 3)"), ("1 ** 2 *. 3", "(1 ** 2) *. 3"), ("1 *. 2 ** 3", "1 *. (2 ** 3)"), ("1 ** 2 /. 3", "(1 ** 2) /. 3"), ("1 /. 2 ** 3", "1 /. (2 ** 3)"), ("1 ** 2 mod 3", "(1 ** 2) mod 3"), ("1 mod 2 ** 3", "1 mod (2 ** 3)"), )) def test_precedence_multiplicative_additive(self): self._assert_equivalent(( ("1 + 2 * 3", "1 + (2 * 3)"), ("1 * 2 + 3", "(1 * 2) + 3"), ("1 + 2 / 3", "1 + (2 / 3)"), ("1 / 2 + 3", "(1 / 2) + 3"), ("1 + 2 *. 3", "1 + (2 *. 3)"), ("1 *. 2 + 3", "(1 *. 2) + 3"), ("1 + 2 /. 3", "1 + (2 /. 3)"), ("1 /. 2 + 3", "(1 /. 2) + 3"), ("1 + 2 mod 3", "1 + (2 mod 3)"), ("1 mod 2 + 3", "(1 mod 2) + 3"), ("1 - 2 * 3", "1 - (2 * 3)"), ("1 * 2 - 3", "(1 * 2) - 3"), ("1 - 2 / 3", "1 - (2 / 3)"), ("1 / 2 - 3", "(1 / 2) - 3"), ("1 - 2 *. 3", "1 - (2 *. 3)"), ("1 *. 2 - 3", "(1 *. 2) - 3"), ("1 - 2 /. 3", "1 - (2 /. 3)"), ("1 /. 2 - 3", "(1 /. 2) - 3"), ("1 - 2 mod 3", "1 - (2 mod 3)"), ("1 mod 2 - 3", "(1 mod 2) - 3"), ("1 +. 2 * 3", "1 +. (2 * 3)"), ("1 * 2 +. 3", "(1 * 2) +. 3"), ("1 +. 2 / 3", "1 +. (2 / 3)"), ("1 / 2 +. 3", "(1 / 2) +. 3"), ("1 +. 2 *. 3", "1 +. (2 *. 3)"), ("1 *. 2 +. 3", "(1 *. 2) +. 3"), ("1 +. 2 /. 3", "1 +. (2 /. 3)"), ("1 /. 2 +. 3", "(1 /. 2) +. 3"), ("1 +. 2 mod 3", "1 +. (2 mod 3)"), ("1 mod 2 +. 3", "(1 mod 2) +. 3"), ("1 -. 2 * 3", "1 -. (2 * 3)"), ("1 * 2 -. 3", "(1 * 2) -. 3"), ("1 -. 2 / 3", "1 -. (2 / 3)"), ("1 / 2 -. 3", "(1 / 2) -. 3"), ("1 -. 2 *. 3", "1 -. (2 *. 3)"), ("1 *. 2 -. 3", "(1 *. 2) -. 3"), ("1 -. 2 /. 3", "1 -. (2 /. 3)"), ("1 /. 2 -. 3", "(1 /. 2) -. 3"), ("1 -. 2 mod 3", "1 -. (2 mod 3)"), ("1 mod 2 -. 3", "(1 mod 2) -. 3") )) def test_precedence_additive_commparison(self): self._assert_equivalent(( ("a + b = c", "(a + b) = c"), ("a = b + c", "a = (b + c)"), ("a - b = c", "(a - b) = c"), ("a = b - c", "a = (b - c)"), ("a +. b = c", "(a +. b) = c"), ("a = b +. c", "a = (b +. c)"), ("a -. b = c", "(a -. b) = c"), ("a = b -. c", "a = (b -. c)"), ("a + b <> c", "(a + b) <> c"), ("a <> b + c", "a <> (b + c)"), ("a - b <> c", "(a - b) <> c"), ("a <> b - c", "a <> (b - c)"), ("a +. b <> c", "(a +. b) <> c"), ("a <> b +. c", "a <> (b +. c)"), ("a -. b <> c", "(a -. b) <> c"), ("a <> b -. c", "a <> (b -. c)"), ("a + b > c", "(a + b) > c"), ("a > b + c", "a > (b + c)"), ("a - b > c", "(a - b) > c"), ("a > b - c", "a > (b - c)"), ("a +. b > c", "(a +. b) > c"), ("a > b +. c", "a > (b +. c)"), ("a -. b > c", "(a -. b) > c"), ("a > b -. c", "a > (b -. c)"), ("a + b < c", "(a + b) < c"), ("a < b + c", "a < (b + c)"), ("a - b < c", "(a - b) < c"), ("a < b - c", "a < (b - c)"), ("a +. b < c", "(a +. b) < c"), ("a < b +. c", "a < (b +. c)"), ("a -. b < c", "(a -. b) < c"), ("a < b -. c", "a < (b -. c)"), ("a + b <= c", "(a + b) <= c"), ("a <= b + c", "a <= (b + c)"), ("a - b <= c", "(a - b) <= c"), ("a <= b - c", "a <= (b - c)"), ("a +. b <= c", "(a +. b) <= c"), ("a <= b +. c", "a <= (b +. c)"), ("a -. b <= c", "(a -. b) <= c"), ("a <= b -. c", "a <= (b -. c)"), ("a + b >= c", "(a + b) >= c"), ("a >= b + c", "a >= (b + c)"), ("a - b >= c", "(a - b) >= c"), ("a >= b - c", "a >= (b - c)"), ("a +. b >= c", "(a +. b) >= c"), ("a >= b +. c", "a >= (b +. c)"), ("a -. b >= c", "(a -. b) >= c"), ("a >= b -. c", "a >= (b -. c)"), ("a + b == c", "(a + b) == c"), ("a == b + c", "a == (b + c)"), ("a - b == c", "(a - b) == c"), ("a == b - c", "a == (b - c)"), ("a +. b == c", "(a +. b) == c"), ("a == b +. c", "a == (b +. c)"), ("a -. b == c", "(a -. b) == c"), ("a == b -. c", "a == (b -. c)"), ("a + b != c", "(a + b) != c"), ("a != b + c", "a != (b + c)"), ("a - b != c", "(a - b) != c"), ("a != b - c", "a != (b - c)"), ("a +. b != c", "(a +. b) != c"), ("a != b +. c", "a != (b +. c)"), ("a -. b != c", "(a -. b) != c"), ("a != b -. c", "a != (b -. c)"), )) def test_precedence_comparison_band(self): self._assert_equivalent(( ("a && b = c", "a && (b = c)"), ("a = b && c", "(a = b) && c"), ("a && b <> c", "a && (b <> c)"), ("a <> b && c", "(a <> b) && c"), ("a && b > c", "a && (b > c)"), ("a > b && c", "(a > b) && c"), ("a && b < c", "a && (b < c)"), ("a < b && c", "(a < b) && c"), ("a && b <= c", "a && (b <= c)"), ("a <= b && c", "(a <= b) && c"), ("a && b >= c", "a && (b >= c)"), ("a >= b && c", "(a >= b) && c"), ("a && b == c", "a && (b == c)"), ("a == b && c", "(a == b) && c"), ("a && b != c", "a && (b != c)"), ("a != b && c", "(a != b) && c"), )) def test_precedence_band_bor(self): self._assert_equivalent(( ("a || b && c", "a || (b && c)"), ("a && b || c", "(a && b) || c"), )) def test_precedence_bor_assign(self): self._assert_equivalent(( ("a := b || c", "a := (b || c)"), ("a || b := c", "(a || b) := c"), )) def test_precedence_assign_ifthenelse(self): self._assert_equivalent(( ("if p then () else a := b", "if p then () else (a := b)"), ("if p then a := b", "if p then (a := b)"), )) def test_precedence_ifthenelse_semicolon(self): self._assert_equivalent(( ("if p then 1 else 2; 3", "(if p then 1 else 2); 3"), ("if p then 2; 3", "(if p then 2); 3"), )) def test_precedence_assign_semicolon(self): self._assert_equivalent(( ("a := b; c", "(a := b); c"), ("a; b := c", "a; (b := c)"), )) def test_precedence_semicolon_letin(self): self._assert_equivalent("let x = 0 in y; z", "let x = 0 in (y; z)") def test_associativity_arrayexpr(self): self._assert_parse_fails("a[0][0]") def test_associativity_pow(self): self._assert_equivalent("1 ** 2 ** 3", "1 ** (2 ** 3)") def test_associativity_multiplicative(self): self._assert_equivalent(( ("1 * 2 * 3", "(1 * 2) * 3"), ("1 * 2 / 3", "(1 * 2) / 3"), ("1 * 2 *. 3", "(1 * 2) *. 3"), ("1 * 2 /. 3", "(1 * 2) /. 3"), ("1 / 2 * 3", "(1 / 2) * 3"), ("1 / 2 / 3", "(1 / 2) / 3"), ("1 / 2 *. 3", "(1 / 2) *. 3"), ("1 / 2 /. 3", "(1 / 2) /. 3"), ("1 *. 2 * 3", "(1 *. 2) * 3"), ("1 *. 2 / 3", "(1 *. 2) / 3"), ("1 *. 2 *. 3", "(1 *. 2) *. 3"), ("1 *. 2 /. 3", "(1 *. 2) /. 3"), ("1 /. 2 * 3", "(1 /. 2) * 3"), ("1 /. 2 / 3", "(1 /. 2) / 3"), ("1 /. 2 *. 3", "(1 /. 2) *. 3"), ("1 /. 2 /. 3", "(1 /. 2) /. 3"), ("1 mod 2 * 3", "(1 mod 2) * 3"), ("1 mod 2 / 3", "(1 mod 2) / 3"), ("1 mod 2 *. 3", "(1 mod 2) *. 3"), ("1 mod 2 /. 3", "(1 mod 2) /. 3") )) def test_associativity_additive(self): self._assert_equivalent(( ("1 + 2 + 3", "(1 + 2) + 3"), ("1 + 2 - 3", "(1 + 2) - 3"), ("1 + 2 +. 3", "(1 + 2) +. 3"), ("1 + 2 -. 3", "(1 + 2) -. 3"), ("1 - 2 + 3", "(1 - 2) + 3"), ("1 - 2 - 3", "(1 - 2) - 3"), ("1 - 2 +. 3", "(1 - 2) +. 3"), ("1 - 2 -. 3", "(1 - 2) -. 3"), ("1 +. 2 + 3", "(1 +. 2) + 3"), ("1 +. 2 - 3", "(1 +. 2) - 3"), ("1 +. 2 +. 3", "(1 +. 2) +. 3"), ("1 +. 2 -. 3", "(1 +. 2) -. 3"), ("1 -. 2 + 3", "(1 -. 2) + 3"), ("1 -. 2 - 3", "(1 -. 2) - 3"), ("1 -. 2 +. 3", "(1 -. 2) +. 3"), ("1 -. 2 -. 3", "(1 -. 2) -. 3") )) def test_associativity_compariosn(self): self._assert_parse_fails("a = b = c") self._assert_parse_fails("a <> b <> c") self._assert_parse_fails("a > b > c") self._assert_parse_fails("a < b < c") self._assert_parse_fails("a <= b <= c") self._assert_parse_fails("a >= b >= c") self._assert_parse_fails("a == b == c") self._assert_parse_fails("a != b != c") def test_associativity_band(self): self._assert_equivalent("a && b && c", "(a && b) && c") def test_associativity_bor(self): self._assert_equivalent("a || b || c", "(a || b) || c") def test_associativity_assign(self): self._assert_parse_fails("a := b := c") def test_associativity_ifthenelse(self): self._assert_equivalent( "if p then if q then a else b", "if p then (if q then a else b)" ) def test_associativity_semicolon(self): self._assert_equivalent("x; y; z", "(x; y); z") def test_precedence_non_equiv(self): self._assert_non_equivalent("f -2", "f (-2)") def test_precedence_array_ref(self): self._assert_equivalent( "array of int ref", "array of (int ref)", start="type" ) def test_precedence_array_func(self): self._assert_equivalent( "array of int -> int", "(array of int) -> int", start="type" ) def test_precedence_func_ref(self): self._assert_equivalent( "int -> int ref", "int -> (int ref)", start="type" ) # NOTE: Test for array associativity deliberately ommitted, # as an array of array is considered an error in semantics, not syntax. def test_associativity_ref(self): self._assert_equivalent( "int ref ref", "(int ref) ref", start="type" ) def test_associativity_func(self): self._assert_equivalent( "int -> int -> int", "int -> (int -> int)", start="type" )
UTF-8
Python
false
false
2,014
10,247,792,010,747
4f06c00ff89aa8e2119051c6f88cd9bb8d094cff
d61e5d9a63bb81bef9473c34ab8eb13757f78159
/simplecloud/template/views.py
4a5750c91695bb0abe447ace9ed5a72a58194d73
[ "Apache-2.0" ]
permissive
lzufalcon/simplecloud
https://github.com/lzufalcon/simplecloud
2c3bfbb60ce9b2adaf5baec942a7fdb267ccd521
6cee961ece603ee772db3b62c9995569df40db6b
refs/heads/master
2020-05-27T12:23:46.329622
2013-08-11T09:08:32
2013-08-11T09:08:32
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- import os import hashlib from datetime import datetime from ..decorators import admin_required from flask import (Blueprint, render_template, current_app, request, flash, redirect, url_for) from flask.ext.login import login_required, current_user from flaskext.babel import gettext as _ from ..extensions import db from .models import Template from .forms import AddTemplateForm, AddVMForm from ..task import log_task from ..image import Image template = Blueprint('template', __name__, url_prefix='/templates') @template.route('/', methods=['GET', 'POST']) @login_required def index(): templates = Template.query.filter().all() form = AddVMForm(next=request.args.get('next')) form.template_id.choices = Template.get_templates_choices() if current_user.is_admin(): form = AddTemplateForm(next=request.args.get('next')) form.image_id.choices = Image.get_images_choices() if form.validate_on_submit(): template = Template() form.populate_obj(template) db.session.add(template) db.session.commit() log_task(_("Add Template %(name)s", name = template.name)) flash(_("Template %(name)s was added.", name = template.name), "success") return redirect(form.next.data or url_for('template.index')) elif form.is_submitted(): flash(_("Failed to add Template"), "error") return render_template('template/index.html', templates=templates, active=_('Templates'), form=form) # Delete Template Page @template.route('/delete/<int:template_id>', methods=['GET']) @login_required @admin_required def delete(template_id): template = Template.query.filter_by(id=template_id).first_or_404() # validate template coult be deleted current_app.logger.info("Try to delete template %d %s" % (template.id, str(template.vms))) if len(template.vms) > 0: errmsg = _("Couldn't delete template %(name)s with %(count)d vms using it.", name = template.name, count = len(template.vms)) current_app.logger.error(errmsg) flash(errmsg, 'error') return redirect(url_for("template.index")) db.session.delete(template) db.session.commit() message = _("Delete Template %(name)s (%(id)d)", name = template.name, id = template_id) log_task(message) flash(_('Template %(name)s was deleted.', name = template.name), 'success') return redirect(url_for('template.index'))
UTF-8
Python
false
false
2,013
8,478,265,453,383
bb19a1fd68388674fcde13c5f030268cb6256b3c
cc40c1c84171c35e9d4d15b16a2d2e83dda7af35
/code/test_pyechonest.py
6d8edffefb38a623317d2f6be9aec308c3167525
[]
no_license
Jiangshangmin/msd
https://github.com/Jiangshangmin/msd
4d9bdd2f0fcd181724641b6b37893432669998e0
5c210af56ed04ffa67f963045ac2a4dc0b9ab25d
HEAD
2019-01-20T13:17:18.781004
2013-08-01T20:23:57
2013-08-01T20:23:57
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python from pyechonest import config config.ECHO_NEST_API_KEY="ODF7R3CSWAICT8V7K" from pyechonest import artist bk = artist.Artist('bikini kill') print "Artists similar to: %s:" % (bk.name,) for similar_artist in bk.similar: print "\t%s" % (similar_artist.name,)
UTF-8
Python
false
false
2,013
4,509,715,666,688
83829f02236f876a89805cc2f33f97d3ae0098bd
96a7cc2f1df784ef1e63db89f79a0dcffdd32c98
/pyjade/ext/django/__init__.py
673826206ef0a83d4bae8fb0dab3ca4540a66aa8
[ "MIT" ]
permissive
holidare/pyjade
https://github.com/holidare/pyjade
1158c50fff885938355ed7997f226d9a6626fd77
3818e514c29f68b26f6e4ff757c7a73f8d53aec1
refs/heads/master
2021-01-16T02:29:52.860058
2013-02-20T14:12:07
2013-02-20T14:12:18
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from .compiler import Compiler from .loader import Loader
UTF-8
Python
false
false
2,013
10,857,677,328,811
b2aa25260b4f41661eebe3b1b6d7abeb0e903418
0355b382591267dc1f245063391f56d6ece872a4
/computer_interface/gui/__init__.py
a021158f809c874da303c94ec355dc9d4eede37c
[]
no_license
aelg/plogen
https://github.com/aelg/plogen
cd64d6de08f5f7aca892d8ea032173da15f7a24a
ecd1f52f36f4bdf0967838df9ad038524f203f81
refs/heads/master
2021-01-23T13:30:01.075644
2014-05-26T18:30:29
2014-05-26T18:30:29
3,281,681
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python import threading # Threading import pygame # For keyboard input from .bt import Cbt from .thread_safe_label import ThreadSafeLabel from .app import Capp from .robot import Crobot from constants import *
UTF-8
Python
false
false
2,014
16,535,624,102,054
cb6ddecfb517645b478531e866815d380d2c4fc8
5f0fbb2635d096a40740c5e9a73011818a8b4d0f
/collective/portlet/feedmixer/tests/test_utils.py
6825dded31e4fda1e4054cfce9756ea5d1a3bdd1
[]
no_license
collective/collective.portlet.feedmixer
https://github.com/collective/collective.portlet.feedmixer
a754f8d86ae172cdaca95f1aac4bcf94aec8b236
874322ed37cfa81818434f447af148ed312eb9f1
refs/heads/master
2023-03-22T12:29:15.753329
2012-02-20T16:02:33
2012-02-20T16:02:33
3,325,819
0
3
null
false
2014-09-01T14:03:59
2012-02-01T15:10:03
2014-02-16T13:40:05
2012-02-20T16:04:28
184
2
2
1
Python
null
null
import unittest from collective.portlet.feedmixer.interfaces import isUrlList class IsUrlListTests(unittest.TestCase): def testEmptyList(self): self.assertEqual(isUrlList(""), True) def testInvalidURL(self): self.assertEqual(isUrlList("www.jarn.com"), False) def testSingleHTTPURL(self): self.assertEqual(isUrlList("http://www.jarn.com/"), True) def testSingleHTTPSURL(self): self.assertEqual(isUrlList("https://www.jarn.com/"), True) def testSingleFeedURL(self): # This test needs Plone 3.0.3 or later self.assertEqual(isUrlList("feed://www.jarn.com/"), True) def testMultipleValidURLs(self): self.assertEqual( isUrlList("http://www.jarn.com/ http://simplon.biz"), True) def testValidAndInvalid(self): self.assertEqual( isUrlList("http://www.jarn.com/ simplon.biz"), False) def test_suite(): suite=unittest.TestSuite() suite.addTest(unittest.makeSuite(IsUrlListTests)) return suite
UTF-8
Python
false
false
2,012
9,852,654,990,766
0a337377f0439311fc5902725c676df6ae891956
9926fd2d6eae0354e5f45233ea3e5366c5465a54
/awsscripts/test.py
a83c9184afdf7917d38cbf597d75ce07f9f12e33
[]
no_license
picharmers/GPIO
https://github.com/picharmers/GPIO
86af80f74747cbb15ecca38b6f2e72a515820af7
56e683349439eb9baff52a4a2148a7a525720ce4
refs/heads/master
2021-01-20T10:14:05.465742
2014-04-20T17:27:19
2014-04-20T17:27:19
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python import os from S3Operations import S3Operations as s3ops s3 = s3ops() #s3.listBuckets() #s3.createBucket('traffic-logs') #s3.putString('test\ttest\t', os.path.join('traffic-logs')) s3.putFile('instrument-mapper.py', 'motown-emr')
UTF-8
Python
false
false
2,014
12,919,261,627,860
d7d6fe1f63718f5548abcb0c7dd65eb8af02ee9d
da842282184552e2ab9d5f466b95178275f97765
/escrutiniosocial/core/admin.py
d7f4892d7decd105e7f4d11f3773a0ee27c27ef6
[ "BSD-3-Clause" ]
permissive
joelalejandro/escrutiniosocial
https://github.com/joelalejandro/escrutiniosocial
2eb8c7cb1eeaace0ba16375b84ce70fba39dabc3
49630f7f7a0dd97d6909bcf05a4b441e553c73ff
refs/heads/master
2021-01-12T19:24:43.205949
2013-11-09T19:38:30
2013-11-09T19:38:30
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.contrib import admin from core.models import Eleccion, Opcion admin.site.register(Eleccion) admin.site.register(Opcion)
UTF-8
Python
false
false
2,013
9,088,150,805,966
7e3ef1384d0bc1d2bb113f19692fe9b63301283a
acf8fe77e599f8372adf4fc971012394715795d6
/flask/lib/python2.7/site-packages/enstaller/store/joined.py
2d89ea2024136295ede1fd52ec1856dfc1f7cc31
[]
no_license
shaheershantk/Blog-Engine-Using-Flask
https://github.com/shaheershantk/Blog-Engine-Using-Flask
3e2f1457a59f282c336bbb63ff48171f938f5108
450e76a8bde0bd702d995fa7bb746ed920917f98
refs/heads/master
2021-01-01T19:42:03.401554
2014-11-10T15:01:08
2014-11-10T15:01:08
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from base import AbstractStore class JoinedStore(AbstractStore): def __init__(self, repos): self.repos = repos def connect(self, auth=None): for repo in self.repos: repo.connect(auth) @property def is_connected(self): return all(repo.is_connected for repo in self.repos) def info(self): pass def get(self, key): for repo in self.repos: if repo.exists(key): return repo.get(key) raise KeyError(key) def get_data(self, key): for repo in self.repos: if repo.exists(key): return repo.get_data(key) raise KeyError(key) def get_metadata(self, key): for repo in self.repos: if repo.exists(key): return repo.get_metadata(key) raise KeyError(key) def exists(self, key): for repo in self.repos: if repo.exists(key): return True return False def query(self, **kwargs): index = {} for repo in reversed(self.repos): index.update(repo.query(**kwargs)) return index.iteritems()
UTF-8
Python
false
false
2,014
15,204,184,252,940
b8086557de9f1fb5fe1df67e6c069efc1fda7a5f
7c88903498c552f29ed79348dcaee7745666ec91
/minilight-python-refimp/testtriangle.py
a2288627278dd858d4202a8988d668061e837a91
[ "BSD-3-Clause" ]
permissive
chiiph/kfract
https://github.com/chiiph/kfract
cec780de54c5a3926cdb41f5fb6a035bdee5e560
e78b8d7989be29ec0fdde75900c2e63a019db3dd
refs/heads/master
2016-09-06T09:52:48.663653
2010-02-08T18:44:27
2010-02-08T18:44:27
436,068
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from triangle import Triangle from camera import Camera from random import random from math import pi, tan from vector3f import Vector3f #cam = Camera() tri = Triangle() vec1 = Vector3f(0.556, 0.401054805321, 0.40692763018) vec2 = Vector3f(-0.745565615449, 0.432850996024, -0.506726680076) print tri.get_intersection(vec1, vec2) tri.get_sample_point().echovec() print tri.area tri.tangent.echovec() tri.normal.echovec()
UTF-8
Python
false
false
2,010
1,906,965,484,805
30056ed840dabbe9e58e911817959b08360910e0
cbd4e775e4200750c2cd2c9b2a9980768ab41488
/redcliff/utils.py
a9d7d907e7dbfcefbe373e60d44bda8e06e20d32
[ "MIT" ]
permissive
dmedvinsky/redcliff
https://github.com/dmedvinsky/redcliff
aa1891331f839000c56efe6173b7617554577f3b
4522f775864ed6e03ef1c3111bab7fc3e47f7f7a
refs/heads/master
2020-04-09T17:51:45.518254
2012-05-28T12:24:38
2012-05-28T12:24:38
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from functools import reduce, wraps from itertools import chain from clint import textui as ui compose = lambda *fs: reduce(lambda f, g: lambda *a, **ka: f(g(*a, **ka)), fs) merge = lambda d1, d2: dict(chain([i for i in d1.items() if i[1] is not None], [i for i in d2.items() if i[1] is not None])) error = lambda x: ui.puts(ui.colored.red(x), stream=ui.STDERR) success = lambda x: ui.puts(ui.colored.green(x), stream=ui.STDOUT) def flip(f): @wraps(f) def g(*args, **kwargs): return f(*reversed(args), **kwargs) return g __all__ = [compose, flip, merge]
UTF-8
Python
false
false
2,012
6,416,681,143,456
ee4378cce616ee77901c9a135e80b77451f7a850
61f6488bd0c9bee478aa2c196d06c09d65d8f845
/geocoder/management/commands/geocode_zip.py
f47d08742199a847b13b1dcc49106e82bca199d2
[ "MIT" ]
permissive
greencoder/hopefullysunny-django
https://github.com/greencoder/hopefullysunny-django
4890b5d6984ca459496513e486d4b34220fab337
d62f3916aeaf29b0f201b1fcd7a4088cc5ba10c8
refs/heads/master
2016-09-05T20:38:54.811035
2014-01-07T00:22:38
2014-01-07T00:22:38
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import sys #from optparse import make_option import requests from django.core.management.base import BaseCommand, CommandError from django.conf import settings from geocoder.models import Zipcode class Command(BaseCommand): def handle(self, *args, **options): if not len(args) == 1: sys.exit("You must specify a zip code.") try: z = Zipcode.objects.get(postal_code=args[0]) sys.stdout.write("%s, %s, %s, %s\n" % (z.place_name, z.admin_code1, z.latitude, z.longitude)) except Zipcode.DoesNotExist: sys.stdout.write("Error geocoding zip code: %s\n" % args[0])
UTF-8
Python
false
false
2,014
14,431,090,146,530
978267357aa31cf92b15c59684b3e82533fb8f08
25158e2d62d49ee84a1108c2fbf0b3dae87a1059
/decompiler/magic.py
13c799dea9a0f80d58e0602a47d55cd4d4b024ea
[ "MIT" ]
permissive
daytwentynine/unrpyc
https://github.com/daytwentynine/unrpyc
b74557a4a72a96e182256f040049dd151592ae11
2739395ab0b78d463f8b2ef853ec2107c92a8e36
refs/heads/master
2021-01-17T23:15:14.369000
2014-12-13T21:22:21
2014-12-13T21:22:21
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# Copyright (c) 2014 CensoredUsername # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # This module uses magic to make it possible to unpickle files # even though the necessary modules cannot be imported import sys from types import ModuleType from pickle import Unpickler from cStringIO import StringIO # the main API def load(file): return FakeUnpickler(file).load() def loads(string): return load(StringIO(string)) def safe_load(file, safe_modules=()): return SafeUnpickler(file, safe_modules).load() def safe_loads(string, safe_modules=()): return safe_load(StringIO(string), safe_modules) def fake_package(name): # Mount a fake package tree. This means that any request to import # From a submodule of this package will be served a fake package. # Next to this any real module which would be somewhere # within this package will be ignored in favour of a fake one mod = FakePackage(name) sys.meta_path.append(mod) return mod # A dict of name: __bases__, {methodname: function} specials = {} # Fake class implementation class FakeClassType(type): # We create a new type for the fake classes so they can be compared with fakemodules # and will return true when they are located at the same path # this allows to define datastructures using the the objects autogenerated from # fake modules and then use these to test agains fake classes def __eq__(self, other): if not hasattr(other, "__name__"): return False if hasattr(other, "__module__"): return self.__module__ == other.__module and self.__name == other.__name__ else: return self.__module__ + "." + self.__name__ == other.__name__ def __hash__(self): return hash(self.__module__ + "." + self.__name__) def __instancecheck__(self, instance): return self.__subclasscheck__(instance.__class__) def __subclasscheck__(self, subclass): return (self.__eq__(subclass) or (bool(subclass.__bases__) and any(self.__subclasscheck__(base) for base in subclass.__bases__))) def FakeClass(name, module): # A fake class with special __new__ and __setstate__ methods which try to # Reslove creation without requiring any information except the pickled data parent, new_methods = specials.get(module + "." + name, ((object,), None)) methods = default_methods.copy() if new_methods: methods.update(new_methods) klass = FakeClassType(name, parent, methods) klass.__module__ = module return klass # General new and setstate methods for fake classes def _new(cls, *args): self = cls.__bases__[0].__new__(cls) if args: print "{} got __new__() arguments {} but does not know how to handle them".format(str(cls), str(args)) self._new_args = args return self def _setstate(self, state): slotstate = None if (isinstance(state, tuple) and len(state) == 2 and (state[0] is None or isinstance(state[0], dict)) and (state[1] is None or isinstance(state[1], dict))): state, slotstate = state if state: # Don't have to check for slotstate here since it's either None or a dict if not isinstance(state, dict): print "{} instance got __setstate__() arguments {} but does not know how to handle them".format(str(self.__class__), str(state)) self._setstate_args = state else: self.__dict__.update(state) if slotstate: self.__dict__.update(slotstate) default_methods = { "__new__": _new, "__setstate__": _setstate } # Fake module implementation class FakeModule(ModuleType): # A dynamically created module which adds itself to sys.modules, pretending to be a real one def __init__(self, name): super(FakeModule, self).__init__(name) sys.modules[name] = self def __repr__(self): return "<module '{}' (fake)>".format(self.__name__) def __setattr__(self, name, value): # If a fakemodule is removed we need to remove its entry from sys.modules if name in self.__dict__ and isinstance(self.__dict__[name], FakeModule) and not isinstance(value, FakeModule): self.__dict__[name]._remove() self.__dict__[name] = value def _remove(self): for i in self.__dict__: if isinstance(i, FakeModule): i._remove() del sys.modules[self.__name__] def __eq__(self, other): if not hasattr(other, "__name__"): return False othername = other.__name__ if hasattr(other, "__module__"): othername = other.__module__ + "." + other.__name__ return self.__name__ == othername def __hash__(self): return hash(self.__name__) def __instancecheck__(self, instance): return self.__subclasscheck__(instance.__class__) def __subclasscheck__(self, subclass): return (self.__eq__(subclass) or (bool(subclass.__bases__) and any(self.__subclasscheck__(base) for base in subclass.__bases__))) class FakePackage(FakeModule): # a dynamically created module which pretends it's a real one, and it will create any requested # submodule as another FakePackage __path__ = [] @classmethod def load_module(cls, fullname): return cls(fullname) def find_module(self, fullname, path=None): if fullname.startswith(self.__name__ + "."): return FakePackage else: return None def __getattr__(self, name): modname = self.__name__ + "." + name mod = sys.modules.get(modname, None) if mod is None: try: __import__(modname) except: mod = FakePackage(modname) else: mod = sys.modules[modname] return mod class FakeUnpickler(Unpickler): # An unpicler which, instead of failing after trying to import # A module, creates a fake module which serves fake objects def find_class(self, module, name): mod = sys.modules.get(module, None) if mod is None: try: __import__(module) except: mod = FakeModule(module) print "Created module {}".format(str(mod)) else: mod = sys.modules[module] klass = getattr(mod, name, None) if klass is None or isinstance(klass, FakeModule): klass = FakeClass(name, module) setattr(mod, name, klass) return klass class SafeUnpickler(Unpickler): # An unpickler which doesn't even attempt to import modules, # therefore not allowing the code execution vulnerabilities # which exist in the normal unpickle routines # e.g. a pickle which pretends that os.system is a class # and therefore must be instantiated with the argument "rm -rf" # In this class attribute we'll keep track of any created objects. # This cache is shared between SafeUnPickler instances created_classes = {} def __init__(self, file, safe_modules=()): Unpickler.__init__(self, file) # A set of modules which are safe to load self.safe_modules = set(safe_modules) def find_class(self, module, name): if module in self.safe_modules: __import__(module) mod = sys.modules[module] klass = getattr(mod, name) return klass else: fullpath = module + "." + name klass = self.created_classes.get(fullpath, None) if klass is None: klass = FakeClass(name, module) self.created_classes[fullpath] = klass return klass # special new and setstate methods for special classes def PyExprNew(cls, s, filename, linenumber): self = unicode.__new__(cls, s) self.filename = filename self.linenumber = linenumber return self def PyCodeSetstate(self, state): (_, self.source, self.location, self.mode) = state self.bytecode = None # there are two classes which require special treatment # renpy.ast.PyExpr because, for all purposes, it inherits from unicode # renpy.PyCode, because it uses setstate specials["renpy.ast.PyExpr"] = ((unicode,), {"__new__": PyExprNew}) specials["renpy.ast.PyCode"] = ((object,), {"__setstate__": PyCodeSetstate})
UTF-8
Python
false
false
2,014
1,236,950,615,865
872c1d9abb0d780096239b3015f545ec9e54ff2f
0581b3741529e60001462b7cb886dddf0e3d7ca1
/lib/plugin.py
58cd9d5ba5070a1e3da23afbccd4758d34b3fc86
[]
no_license
zszafran/torrent-traktor
https://github.com/zszafran/torrent-traktor
0f29e2dcd49c37b2fdcb38226271aaaa40043762
894584984feeada2adae0cc3fe140f794505c50c
refs/heads/master
2016-04-03T09:48:27.035621
2014-10-27T02:33:05
2014-10-27T02:33:05
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
"""""" import requests class PluginType(object): LISTING = 'listing' TRACKER = 'tracker' IRC = 'irc' class Plugin(object): def __init__(self, plugin_type=None, engine=None): self.plugin_type = plugin_type self.engine = engine self.config = {} self.session = requests.Session() def SetConfig(self, *unused_args, **kwargs): self.config.update(kwargs) def Start(self): pass
UTF-8
Python
false
false
2,014
2,138,893,717,862
a1474fe69632e4b9e64b82467e7b2d96847ea847
35b9c425c734d44400ac04505b17eb5d59d4d5b3
/melk/util/http.py
37af3df9850c1242c323d96b5f8ce79008538e6a
[ "GPL-2.0-only" ]
non_permissive
ltucker/melk.util
https://github.com/ltucker/melk.util
4c610a24b12098c69f940bd29aa99f5dc1d0c5a8
38453e70310c6ba7846dc81731bb743379885b70
refs/heads/master
2016-09-06T11:48:02.799428
2010-01-05T21:31:19
2010-01-13T15:05:45
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from httplib2 import Http as HttpBase from socket import gethostbyname from urlparse import urlparse import logging log = logging.getLogger(__name__) class ForbiddenHost(Exception): """ raised when e.g. trying to fetch a resource from a forbidden host """ pass # XXX this should be renamed as it has added more functionality class NoKeepaliveHttp(HttpBase): """ This is an httplib2 http that does not keep connections dangling around. Its constructor also accepts a 'blacklist' kwarg in which a list of blacklisted hosts can be passed. """ def __init__(self, *args, **kwargs): self.blacklist = kwargs.pop('blacklist', ()) HttpBase.__init__(self, *args, **kwargs) def request(self, *args, **kwargs): if self.blacklist: uri = args[0] ip = gethostbyname(urlparse(uri).hostname) for badhost in self.blacklist: if gethostbyname(badhost) == ip: raise ForbiddenHost('requests to %s are forbidden: %s' % (badhost, uri)) try: return HttpBase.request(self, *args, **kwargs) finally: self._close_everything() def _close_everything(self): for conn in self.connections.values(): conn.close() self.connections = {}
UTF-8
Python
false
false
2,010
3,736,621,577,972
383b94e0e12bcf6b5810d23118d4f52f2c9ba6dc
3f2493abe098d832b7116705c6ce6a03f5c5990a
/examples/basic.py
17d7081b569585ca4cbd7409180293371d00b170
[ "Apache-2.0" ]
permissive
vchahun/pyfst
https://github.com/vchahun/pyfst
9b43987800d30aa3bfee60bbd712ed3c0bc4708c
d9ac4e0b6999005e36a2a66431a3a97648e5e268
refs/heads/master
2021-01-25T03:49:43.599795
2013-10-10T16:58:13
2013-10-10T16:58:13
5,138,781
65
24
null
false
2021-11-02T10:34:35
2012-07-22T03:34:09
2021-09-30T03:18:50
2019-06-04T13:50:59
1,108
83
31
13
Python
false
false
from fst import StdVectorFst fst = StdVectorFst() fst.start = fst.add_state() fst.add_arc(0, 1, 1, 1, 0.5) fst.add_arc(0, 1, 2, 2, 1.5) fst.add_state() fst.add_arc(1, 2, 3, 3, 2.5) fst.add_state() fst[2].final = 3.5 fst.write('binary.fst')
UTF-8
Python
false
false
2,013
5,574,867,586,938
af090e182262070595d82af5c0d45461f9cb02f4
28576c22f2eeecfc67a0919254258737598f77a2
/python/hamcalc/construction/stairs/obj.py
087a7c33c68c1001f1da0719843ea64fd50f4e56
[]
no_license
slott56/HamCalc-2.1
https://github.com/slott56/HamCalc-2.1
5e3b40b302c13569806fe2f18734e639b17a988e
382724dfcad867ed8c4134a93a6bbc1c83dc306b
refs/heads/master
2020-04-25T21:55:51.298097
2013-07-16T13:24:33
2013-07-16T13:24:33
9,798,987
3
0
null
null
null
null
null
null
null
null
null
null
null
null
null
"""hamcalc.construction.stairs.obj Class definitions to implement stairs design. Note that these calculations only work in inches. The units, therefore, must all be converted from input to INCH and from INCH to desired output. The **Designers** involve a **Chain of Command** processing sequence where a stairwell designer may fall back to another designer. """ __version__ = "2.1" import math from hamcalc.lib import AttrDict from collections import Callable class Designer( Callable ): """The superclass for all designers.""" def __call__( self, **args ): """Create a design or use the fallback.""" self.args = AttrDict( args ) if self.condition(): return self.design() else: return self.fallback( **args ) def condition( self ): """A filter condition: can we provide a design?""" return True def design( self ): """Create the complete design, returning a :class:`AttrDict` with all the parameters. """ pass def _stringer( self, R, T, P ): """Compute the stringer details for a given design. :param R: rise :param T: run :param P: number of rungs, steps, ramps or treads :returns: X and Y """ X = math.sqrt( R**2 + T** 2 ) Y = X*P return X, Y class Unrestricted_Risers( Designer ): """A Designer for Unrestricted Risers; L must be None.""" def __init__( self ): super().__init__() self.fallback= Vertical_Ladder() def condition( self ): return 'L' not in self.args or self.args.L is None def design( self ): H, R = self.args.H, self.args.R N = int( H/R + .5 ) P = int(N-1) R = H/N while R < 5 and N-1 != 0: N -= 1 P = int(N-1) R = H/N T = 20-4*R/3 L = P*T A = math.degrees( math.atan2(R,T) ) if 17.35 <= A < 33: T = 25 + (33-A)/15.65 - 2*R X, Y = self._stringer( R, T, P ) return AttrDict(locals()) class Vertical_Ladder( Designer ): """A Designer for Vertical Ladders; L must be zero.""" def __init__( self ): super().__init__() self.fallback= Restricted_Risers() def condition( self ): return self.args.L == 0 def design( self ): H = self.args.H P = int( H/13.5 + .5 ) N = int(P - 1) TBR = (H-13.5*N)/2 A = 90 R = 0 R = 13.5 X = 0 Y = 0 L = 0 return AttrDict(locals()) class Restricted_Risers( Designer ): """A Designer for Restricted Risers; L and H define the structure.""" def __init__( self ): super().__init__() self.fallback= Step_Ramp() def condition( self ): if self.args.L is None: return A = math.degrees( math.atan2( self.args.H, self.args.L ) ) return A > 20.45 def design( self ): H, L = self.args.H, self.args.L A = math.degrees( math.atan2( H, L ) ) N = int(H // 5+1) R = H/N T = 20 - 4*R/3 while T*N-T <= L and R >= 5: N += 1 R = H / N T = 20 - 4*R/3 N -= 1 P = int(N-1) try: R = H/N except ZeroDivisionError as e: return vertical_ladder(H,L) T = 20 - 4*R/3 if R > 13.5 or T <= 0: return vertical_ladder(H,L) X, Y = self._stringer( R, T, P ) return AttrDict(locals()) class Step_Ramp( Designer ): """A Designer for Step Ramps; L and H define the structure.""" def __init__( self ): super().__init__() self.fallback= Inclined_Ramp() def condition( self ): if self.args.L is None: return N = int(self.args.H // 5) return N > 1 def design( self ): H, L = self.args.H, self.args.L A = math.degrees( math.atan2( H, L ) ) N = int(H // 5) P = int(N - 1) R = H / N T = L / P X, Y = self._stringer( R, T, P ) return AttrDict(locals()) class Inclined_Ramp( Designer ): """A Designer for Inclined Ramps; L and H define the structure.""" def design( self ): H, L = self.args.H, self.args.L A = math.degrees( math.atan2( H, L ) ) N = int(H // 5) P = R = T = 0 X, Y = self._stringer( R, T, P ) return AttrDict(locals()) def stair_design( H, L=None, R=None ): """A convenience function to provide the same API as the function implementation. This creates an instance of :class:`Unrestricted_Risers` and uses that to start the design process. This may fallback to any of the other designers. """ designer= Unrestricted_Risers() return designer( H=H, L=L, R=R )
UTF-8
Python
false
false
2,013
14,955,076,140,033
18fc103fa5896510cfe2d2b8e05ee60569e7c113
b0b49a1cd99538acf8ad46ab91ef8f4267106e23
/sesvis/views.py
f78e40920bd731c3d2d484fe113dc72a16913f52
[]
no_license
kgrieser/topicmodelvis
https://github.com/kgrieser/topicmodelvis
6a8ab9d6e7eb47c94b196fc09ff2eaf8589659a1
a2be2f9565e50254d4d979cc025e2beab6b3b245
refs/heads/master
2021-01-18T08:00:55.213159
2013-02-24T01:05:18
2013-02-24T01:05:18
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# Create your views here. from django.shortcuts import render_to_response, get_object_or_404 from django.template import Context, loader from django.http import HttpResponse from sesvis.models import * def corpora(request): available_corpora = sorted(Corpus.objects.all(), key=lambda x : x.name) t = loader.get_template('corpora.html') c = Context({ 'available_corpora': available_corpora, }) return HttpResponse(t.render(c)) def corpus(request, corpus_name): c = Corpus.objects.get(name=corpus_name) words_for_topic={} for t in c.topic_set.all(): words_for_topic[t] = t.best_k_words() subcorpus_names = [x.name for x in c.subcorpus_set.all()] return render_to_response('corpus.html', {'corpus': c, 'words_for_topic': words_for_topic, 'subcorpus_names':subcorpus_names}) def topic(request, corpus_name, corpus_topic_id): t = Topic.objects.get(corpus__name=corpus_name, corpus_topic_id=corpus_topic_id) best_words = t.best_k_words() best_documents = [x.title for x in t.best_k_documents()] return render_to_response('topic.html', {'corpus_name': corpus_name, 'corpus_topic_id': corpus_topic_id, 'best_words': best_words, 'best_documents': best_documents}) def subcorpus(request, corpus_name, subcorpus_name): return render_to_response('subcorpus.html', {'corpus_name': corpus_name, 'subcorpus_name': subcorpus_name}) def document(request, corpus_name, document_title): c = Corpus.objects.get(name=corpus_name) d = Document.objects.all().get(corpus__name=c,title=document_title) text = d.documentcontent.text return render_to_response('document.html', {'title': d.title,'text': text})
UTF-8
Python
false
false
2,013
5,050,881,588,532
72f1f5e1eccdee8cb8270bba7f4b3f10c669e6e4
3446bea3607fb62f1b6beb142f85463c2ef8f16e
/zettwerk/clickmap/browser/clickmap.py
e7d51fa60241e05627c0fa9b38b641ceba292cf1
[ "GPL-2.0-only" ]
non_permissive
collective/zettwerk.clickmap
https://github.com/collective/zettwerk.clickmap
43b31255007df0759ed9f7349d876ebf09bd6122
97c1f332fcac6040ae163e2c30bf7520bfa02d39
refs/heads/master
2023-06-26T14:38:07.428788
2013-10-18T12:22:43
2014-06-27T11:19:31
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from zope.formlib import form from plone.fieldsets.fieldsets import FormFieldsets from zope.component import adapts from zope.interface import implements from Products.CMFDefault.formlib.schema import ProxyFieldProperty from Products.CMFDefault.formlib.schema import SchemaAdapterBase from Products.CMFPlone.interfaces import IPloneSiteRoot from Products.CMFCore.utils import getToolByName from Products.CMFPlone.utils import safe_unicode from plone.app.controlpanel.form import ControlPanelForm from zope.app.form.browser import MultiSelectWidget from zope.app.form.browser import DisplayWidget from zettwerk.clickmap import clickmapMessageFactory as _ from zettwerk.clickmap.interfaces import IClickmap, IClickmapSettings, IClickmapOutput class ClickmapControlPanelAdapter(SchemaAdapterBase): adapts(IPloneSiteRoot) implements(IClickmap) def __init__(self, context): super(ClickmapControlPanelAdapter, self).__init__(context) self.portal = context clickmap_tool = getToolByName(self.portal, 'portal_clickmap') self.context = clickmap_tool output = ProxyFieldProperty(IClickmap['output']) setup = ProxyFieldProperty(IClickmap['setup']) reset = ProxyFieldProperty(IClickmap['reset']) enabled = ProxyFieldProperty(IClickmap['enabled']) pages = ProxyFieldProperty(IClickmap['pages']) output_width = ProxyFieldProperty(IClickmap['output_width']) right_align_threshold = ProxyFieldProperty(IClickmap['right_align_threshold']) output_height = ProxyFieldProperty(IClickmap['output_height']) def get_output_data(self): """ read the log data from the tool and prepare for output """ logger = self.context.logger if logger is None: return [] uids = logger.keys() catalog = getToolByName(self.portal, 'portal_catalog') returner = [] for uid in uids: uid_log = logger.get(uid) brains = catalog(UID=uid) ## check for old log data if not brains: self.context._remove_uid_from_log(uid) continue brain = brains[0] ## uid is unique returner.append({ 'url': brain.getURL(), 'title': brain['Title'], 'clicks': len(uid_log) }) return returner class ListPagesMultiSelectWidget(MultiSelectWidget): def __init__(self, field, request): super(ListPagesMultiSelectWidget, self).__init__( field, field.value_type.vocabulary, request ) class JSSetupWidget(DisplayWidget): """ integrate some js functionality, to setup the clickmap settings """ def __call__(self): setup_description = u"""This tries to check, if your layout uses a variable or a fixed width. Using a variable width, the current display witdh will be used as reference. Then you should also check the right-align threshold.""" return u'<a href="javascript:clickmapSetup()">%s</a><br />' \ u'<div class="formHelp">%s</div>' %(_(u"Click here for automatical setup"), _(setup_description)) class ResetWidget(DisplayWidget): """ a link to call the reset routine of the tool """ def __call__(self): return '<a href="javascript:confirmClickmapReset()">Click here</a> if you want to reset your already logged clicks.' class OutputWidget(DisplayWidget): """ list the logged pages as links to view the clickmap output """ def __call__(self): adapter = self.context.context returner = [] returner.append(u'<div class="formHelp">%s</div>' %(_("This list containes all available log data."))) returner.append(u'<ul>') for page in adapter.get_output_data(): returner.append(safe_unicode('<li><strong>%(title)s</strong>: view <a target="_blank" href="%(url)s?show_clickmap_output=true">authenticated</a> or view <a target="_blank" href="%(url)s/clickmap_anonym_view">anonymous</a> (Clicks: %(clicks)s)' %(page))) returner.append(u'</ul>') return u'\n'.join(returner) settings = FormFieldsets(IClickmapSettings) settings.id = 'settings' settings.label = _(u'Settings') output = FormFieldsets(IClickmapOutput) output.id = 'output' output.label = _(u'Output') class ClickmapControlPanel(ControlPanelForm): form_fields = FormFieldsets(settings, output) form_fields['pages'].custom_widget = ListPagesMultiSelectWidget form_fields['setup'].custom_widget = JSSetupWidget form_fields['setup'].for_display = True form_fields['reset'].custom_widget = ResetWidget form_fields['reset'].for_display = True form_fields['output'].custom_widget = OutputWidget form_fields['output'].for_display = True label = _(u"Zettwerk Clickmap") description = _(u'Important: by changing the width, height or threshold settings, already logged clicks might be not suitable any more. You should then reset the log.')
UTF-8
Python
false
false
2,013
8,349,416,430,798
74ae5ef49f0325d646121f2fa662e3047e7ffc96
b55f6dbd34519a34e00711728fad7b61495fe127
/reservation/views.py
78bc7f3aea862569bd88ef84862ede30f8186015
[]
no_license
intake34/django
https://github.com/intake34/django
c3788ade4b5742337cf368808b357655288ffce0
5c08c267754d388bedf992c38eaa874737c9bf40
refs/heads/master
2021-01-10T20:56:34.003856
2014-05-18T18:57:04
2014-05-18T18:57:04
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.shortcuts import render from django.contrib.auth import authenticate, login as auth_login , logout as auth_logout from django.contrib.auth.models import User import urlparse from reservation.models import Reservation , ReservationDesc def index(request): return render(request,'reservation/show.html',{'form': 'hey','username':request.user}) def register(request): if request.user.is_authenticated(): url = request.get_full_path() query = urlparse.urlparse(url).query params = urlparse.parse_qs(query) i=0 res = Reservation.objects.create(fromdate=params['fromdate'][0], todate=params['todate'][0],user_id=1) res.save() for param in params['id']: if (params['no_of_rooms'][i] != "0" ): n = ReservationDesc.objects.create(no_of_rooms=params['no_of_rooms'][i], room_id=param,res_id=res.id) n.save() i+=1 return render(request,'reservation/show.html',{'form': "your Reservation Completed :-)",'username':request.user}) else: return render(request,'reservation/show.html',{'form': "you need to sign in",'username':request.user})
UTF-8
Python
false
false
2,014
6,047,313,987,190
72d06e41ca4b8590ffd4a32f36c7d466c0e24a0a
39bdd20eb540f090cadfaa62713a214b73839c15
/dataview/maternity/charts.py
7aaa55d3e0dbc56390d5d9505dca64fc6932626a
[ "GPL-3.0-only", "GPL-3.0-or-later" ]
non_permissive
brunogirin/wthack12
https://github.com/brunogirin/wthack12
cabf5c913de13ad5b249f73fe8143ba40aef853e
5df01336a2fcab46639f7a310d7f28cfe4aeb4c7
refs/heads/master
2021-01-01T05:41:00.876215
2012-12-11T22:53:53
2012-12-11T22:53:53
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
''' Created on 9 Dec 2012 @author: bruno ''' class BarChart: def __init__(self, width, height, data): self.width = width self.height = height self.series_hspace = width / len(data) self.series_width = self.series_hspace * 0.8 self.series_pad = self.series_hspace * 0.1 self.bar_hspace = self.series_width / max([len(s[1]) for s in data]) self.bar_width = self.bar_hspace * 0.8 self.bar_pad = self.bar_hspace * 0.1 self.vmax = max([max([v[1] for v in s[1]]) for s in data]) self.bar_ratio = 0.8 * height / self.vmax self.legends = [{ 'legend': v, 'x': self.series_hspace * (i + 0.5), 'y': height * 0.95 } for i, v in enumerate([d[0] for d in data])] self.colours = ["red", "orangered", "orange", "yellow", "limegreen", "green", "cyan", "blue", "purple", "magenta"] self.bars = [ [{ 'x': i * self.series_hspace + self.series_pad + j * self.bar_hspace + self.bar_pad, 'y': self.height * 0.9 - v[1] * self.bar_ratio, 'width': self.bar_width, 'height': v[1] * self.bar_ratio, 'colour': self.colours[j], 'labelx': i * self.series_hspace + self.series_pad + (j + 0.5) * self.bar_hspace, 'labely': self.height * 0.85 - v[1] * self.bar_ratio, 'label': str(v[1]) } for j, v in enumerate(s[1])] for i, s in enumerate(data) ] self.floorline = { 'x1': 0, 'y1': height * 0.9, 'x2': width, 'y2': height * 0.9 }
UTF-8
Python
false
false
2,012
19,078,244,764,898
7c964a7b3f3d6ef27b9499599c549a9d8936bd01
622d5209457c0d0c05bf98c058372e332ed34b3b
/ndweixin/templatetags/mod_filter.py
fcbab3981fc469e4676542c3d855c70069df1cfc
[]
no_license
bighat4/NDMZ
https://github.com/bighat4/NDMZ
9808a69db258871be153748754989c7279978462
e681c1983f994a84e747a5bb6240470aa2dd86f0
refs/heads/master
2015-08-17T17:36:41
2014-12-05T13:39:49
2014-12-05T13:39:49
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
__author__ = 'adminsu' #!/usr/bin/env python #coding:utf-8 from django import template register = template.Library() def mod_filter(value,arg): return value%arg register.filter('mod_filter', mod_filter) def list_meizi(meizi): return {'meizi': meizi} register.inclusion_tag('list_meizi.html')(list_meizi)
UTF-8
Python
false
false
2,014
15,539,191,709,863
e19aa94c7064588514aa03bce1161e1920f1822a
6bc92a9afdc4d825eae6c06b8f43b55ab594c96c
/modules/domino/dependencies.py
4007c85ae4c3b6377920946fe02594dc26540c5f
[ "LGPL-2.0-or-later", "LGPL-2.1-only", "LGPL-2.1-or-later", "GPL-1.0-or-later", "GPL-3.0-only" ]
non_permissive
jennystone/imp
https://github.com/jennystone/imp
bda16e60d864aef948419119f49402d3bef31bf2
3fa5bc7d2a2a38e7b22ffeb6731a9331b9f7d13c
refs/heads/master
2021-01-14T12:44:14.955831
2013-11-04T22:36:22
2013-11-04T22:37:22
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
required_modules='display:algebra:statistics:core:container' # just to make sure IMP.rmf and the RMF dependency is scanned first optional_modules='rmf' required_dependencies='Boost.Graph' optional_dependencies='RMF:HDF5'
UTF-8
Python
false
false
2,013
3,676,492,052,466
983e59dc23c20843075a2d2dff65850dde5a3c27
64b90962f8337bab7fb39fde92bd763b02010bd2
/stocks/correlation.py
10d7ae4be8e46b4fbd3a9f97d2dfa2af75686f1d
[]
no_license
arktisklada/remote-projects
https://github.com/arktisklada/remote-projects
f0ced5e39b888d1becbd6bd799e04b6fc8616f78
936a64bdf7fa81aef03fe8a8e05d318e183430df
refs/heads/master
2020-04-23T21:19:37.435271
2013-11-27T07:11:11
2013-11-27T07:11:11
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python import pymongo, urllib2, datetime from bson.objectid import ObjectId import time from math import sqrt from optparse import OptionParser parser = OptionParser() parser.add_option("-l", "--limit", dest="limit", help="limit of days") parser.add_option("-f", "--symbol1", dest="symbol1", help="symbol to analyze") parser.add_option("-s", "--symbol2", dest="symbol2", help="symbol to analyze against") (options, args) = parser.parse_args() limit = int(options.limit) s1 = options.symbol1 s2 = options.symbol2 connection = pymongo.Connection() db = connection["stocks"] stocks = db["stocks"] history = db["history"] covar = db["covariance"] start_time = time.time() count = 0 cursor = stocks.find({"average_open" : {"$exists" : "true"}, "variance" : {"$exists" : "true"}, "symbol" : s1}).sort("symbol", 1) for item in cursor: symbol = item["symbol"] average = float(item["average_open"]) variance = float(item["variance"]) history_cursor = history.find({"symbol" : symbol}).sort("date", -1).limit(limit) cursor2 = stocks.find({"average_open" : {"$exists" : "true"}, "variance" : {"$exists" : "true"}, "symbol" : s2}).sort("symbol", 1) #.skip(count) for item2 in cursor2: symbol2 = item2["symbol"] average2 = float(item2["average_open"]) variance2 = float(item2["variance"]) history_cursor2 = history.find({"symbol" : symbol2}).sort("date", -1).limit(limit) covar = 0; length = 0; for a, b in zip(history_cursor, history_cursor2): covar += ((float(a['open']) - average) * (float(b['open']) - average2)) length += 1 covariance = covar / length print "Covariance: " + str(covariance) # print variance # print variance2 root = sqrt(variance) root2 = sqrt(variance2) # print root # print root2 print "Correlation: " + str(covariance / (root * root2)) # stocks.update({"symbol" : point['_id']}, {"$set" : {"variance" : point['value']}}) count += 1; print "Time elapsed: " + str(time.time() - start_time)
UTF-8
Python
false
false
2,013
16,466,904,625,361
178488f65d76812bb2f57bcb09defd566f73f825
c21f7fa5a230c90b3a1a7fdd3ccfc2bcc33c429b
/serveme.py
db7a55f99259a094bd6ad285608377286062db01
[]
no_license
erSitzt/pymmel
https://github.com/erSitzt/pymmel
fe21fec2b5a8fc16617663d677ef98a05a9aa47f
523ef18c47bb9bc4379ebb27b0eb48ecc972b5b4
refs/heads/master
2020-04-20T00:38:24.862693
2014-02-02T18:07:02
2014-02-02T18:07:02
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from SimpleHTTPServer import SimpleHTTPRequestHandler from BaseHTTPServer import HTTPServer from StringIO import StringIO import subprocess import os import threading import urlparse import cgi import re import urllib2 import pipes import tempfile import Queue import time #import alsaaudio class MyRequestHandler(SimpleHTTPRequestHandler): #mixer = alsaaudio.Mixer("PCM") playing = 0 #volume = mixer.getvolume()[0] #mute = mixer.getmute()[0] process = None tempplaylistfile = None def do_POST(self): """Respond to a POST request.""" # Extract and print the contents of the POST length = int(self.headers['Content-Length']) post_data = urlparse.parse_qs(self.rfile.read(length)) if post_data['action'][0] == "play": #self.startProcess(self,post_data['title'][0]) OMXThread.Actions.put({"play" : post_data['title'][0]}) elif post_data['action'][0] == "queue": print "Queue " + post_data['title'][0] OMXThread.Actions.put({"queue" : post_data['title'][0]}) elif post_data['action'][0] == "stop": OMXThread.Actions.put({"stop" : "dummy"}) elif post_data['action'][0] == "mute": OMXThread.Actions.put({"mute" : "dummy"}) elif post_data['action'][0] == "volup": OMXThread.Actions.put({"volup" : "dummy"}) elif post_data['action'][0] == "voldown": OMXThread.Actions.put({"voldown" : "dummy"}) elif post_data['action'][0] == "back": OMXThread.Actions.put({"back" : "dummy"}) elif post_data['action'][0] == "forward": OMXThread.Actions.put({"forward" : "dummy"}) elif post_data['action'][0] == "smallforward": OMXThread.Actions.put({"smallforward" : "dummy"}) elif post_data['action'][0] == "smallback": OMXThread.Actions.put({"smallback" : "dummy"}) self.send_response(200) self.send_header("Content-type", "text/html") self.end_headers() def send_head(self): """Common code for GET and HEAD commands. This sends the response code and MIME headers. Return value is either a file object (which has to be copied to the outputfile by the caller unless the command was HEAD, and must be closed by the caller under all circumstances), or None, in which case the caller has nothing further to do. """ path = self.translate_path(self.path) f = None if os.path.isdir(path): return self.list_directory(path) return f def list_directory(self, path): """Helper to produce a directory listing (absent index.html). Return value is either a file object, or None (indicating an error). In either case, the headers are sent, making the interface the same as for send_head(). """ try: list = os.listdir(path) except os.error: self.send_error(404, "No permission to list directory") return None list.sort(lambda a, b: cmp(a.lower(), b.lower())) self.path = urlparse.urlparse(self.path).path f = StringIO() f.write('<meta name="viewport" content="width=device-width, initial-scale=1.0">') f.write('<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">') f.write('<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">') f.write('<script src="//code.jquery.com/jquery-2.0.3.min.js"></script>') f.write('<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>') f.write('<script>$(document).ready(function(){\ $(".btn").click(function(){\ var clickedID = this.id;\ if (this.name == "play")\ {\ $.post( "/", { action: "play", title: this.id } );\ $("#nowplaying").html(this.id);\ }\ else if (this.name == "queue")\ {\ $.post( "/", { action: "queue", title: this.id } );\ }\ else if (this.name == "stop")\ {\ $(this).find("span").toggleClass("glyphicon glyphicon-pause glyphicon glyphicon-play");\ $.post( "/", { action: "stop" } );\ }\ else if (this.name == "mute")\ {\ $.post( "/", { action: "mute" } );\ }\ else if (this.name == "volup")\ {\ $.post( "/", { action: "volup" } );\ }\ else if (this.name == "voldown")\ {\ $.post( "/", { action: "voldown" } );\ }\ else if (this.name == "back")\ {\ $.post( "/", { action: "back" } );\ }\ else if (this.name == "forward")\ {\ $.post( "/", { action: "forward" } );\ }\ else if (this.name == "smallforward")\ {\ $.post( "/", { action: "smallforward" } );\ }\ else if (this.name == "smallback")\ {\ $.post( "/", { action: "smallback" } );\ }\ \ });\ })</script>') f.write("<title>Directory listing for %s</title>\n" % self.path) f.write('<div class="container">') f.write('<div class="row">') f.write('<div class="col-xs-12">') f.write('<div class="panel panel-default">') f.write('<div class="panel-heading"><span class="label label-default">%s</span></div>\n' % (self.path)) f.write('<div class="panel-body"><span class="badge"><span id="nowplaying">%s</span></span><div class="btn-group pull-right">\ <button type="button" name="back" class="btn btn-primary "><span class="glyphicon glyphicon-fast-backward" id="back"></span></button>\ <button type="button" name="smallback" class="btn btn-primary "><span class="glyphicon glyphicon-backward" id="smallback"></span></button>\ <button type="button" name="smallforward" class="btn btn-primary "><span class="glyphicon glyphicon-forward" id="smallforward"></span></button>\ <button type="button" name="forward" class="btn btn-primary "><span class="glyphicon glyphicon-fast-forward" id="forward"></span></button>\ <button type="button" name="stop" class="btn btn-primary "><span class="glyphicon glyphicon-stop" id="stop"></span></button>\ <button type="button" name="volup" class="btn btn-primary "><span class="glyphicon glyphicon-volume-up"></span></button>\ <button type="button" name="voldown" class="btn btn-primary "><span class="glyphicon glyphicon-volume-down"></span></button>\ <button type="button" name="mute" class="btn btn-primary"><span class="glyphicon glyphicon-volume-off"></span></button></div></div>' % (self.playing)) f.write('<ul class="list-group">\n') currentpath = urlparse.urlparse(self.path).path currentpath = re.sub("/$", "", currentpath) dirup, removed = os.path.split(currentpath) f.write('<b><a href="%s" class="list-group-item">.. up one directory</a></b>\n' % (dirup)) for name in list: if not name.startswith('.'): #print "PATH : " + path + " NAME : " + name fullname = os.path.join(path, name) displayname = linkname = name = cgi.escape(name) parsed_path = urlparse.urlparse(self.path) # Append / for directories or @ for symbolic links dir = False link = False if os.path.isdir(fullname): displayname = name + "/" linkname = name + "/" dir = True if os.path.islink(fullname): displayname = name + "@" link = True # Note: a link to a directory displays with @ and links with / if (dir or link): f.write('<a href="%s" class="list-group-item"><b>%s</b></a>\n' % (linkname, displayname)) else: if os.path.splitext(name)[-1].lower() in ('.mp3', '.mp4', '.mkv', '.mpg', '.avi', '.wmv'): if parsed_path.query: f.write('<li class="list-group-item"><span>%s</span><i class="glyphicon glyphicon-time></a><button type="button" id="mama" class="btn btn-default btn-xs pull-right">enqueue</button></li>\n' % (self.path, displayname)) else: #f.write('<a href="%s?play=%s" class="list-group-item">%s <span class="glyphicon glyphicon-time"></span></a><button type="button" class="btn btn-default btn-xs pull-right">enqueue</button>\n' % (self.path, fullname, displayname)) f.write('<li class="list-group-item">%s<div class="btn-group pull-right"><button type="button" name="play" id="%s" class="btn btn-success"><span class="glyphicon glyphicon-play"></span></button><button type="button" name="queue" id="%s" class="btn btn-default queue"><span class="glyphicon glyphicon-time"></span></button></div></li>\n' % (displayname, fullname, fullname)) f.write("</ul>\n") f.write("</div>\n") f.write("</div>\n") f.write("</div>\n") f.write("</div>\n") f.seek(0) self.send_response(200) self.send_header("Content-type", "text/html") self.end_headers() return f def teststartProcess(self, name, path): """ Starts a process in the background and writes a PID file returns integer: pid """ pathname, filename = os.path.split(path) MyRequestHandler.playing = filename #self.stopAllPlayers() if MyRequestHandler.process is not None: MyRequestHandler.process.poll() print "RETCODE2 : " + str(MyRequestHandler.process.returncode) if MyRequestHandler.process.returncode is None: MyRequestHandler.process.stdin.write('q') MyRequestHandler.process = None ext = os.path.splitext(path)[-1].lower() if ext in ('.mp4', '.mkv', '.mpg', '.avi', '.wmv', '.mp3', '.wav'): print "omxplayer " + path MyRequestHandler.process = subprocess.Popen(['/usr/bin/omxplayer' , path] , stdin=subprocess.PIPE, shell=False) return 1 def stopAllPlayers(self): os.system('pkill omxplayer.bin') class OMXThread(threading.Thread): Actions = Queue.Queue() Playlist = Queue.Queue() omxprocess = None def run(self): while True: if OMXThread.omxprocess is not None: OMXThread.omxprocess.poll() if OMXThread.omxprocess.returncode is not None: print "titel zu ende!" try: title = OMXThread.Playlist.get(False) except Queue.Empty: pass else: print title self.startProcess(title) OMXThread.Playlist.task_done() try: action = OMXThread.Actions.get(False) except Queue.Empty: pass else: print action if "play" in action: self.startProcess(action["play"]) elif "queue" in action: OMXThread.Playlist.put(action["queue"]) else: if OMXThread.omxprocess is not None: if "stop" in action: OMXThread.omxprocess.stdin.write('p') elif "mute" in action: OMXThread.omxprocess.stdin.write('-') elif "volup" in action: OMXThread.omxprocess.stdin.write('+') elif "voldown" in action: OMXThread.omxprocess.stdin.write('-') elif "back" in action: OMXThread.omxprocess.stdin.write("\x1B[B") elif "forward" in action: OMXThread.omxprocess.stdin.write("\x1B[A") elif "smallforward" in action: OMXThread.omxprocess.stdin.write("\x1B[C") elif "smallback" in action: OMXThread.omxprocess.stdin.write("\x1B[D") OMXThread.Actions.task_done() time.sleep(1) def startProcess(self, path): """ Starts a process in the background and writes a PID file returns integer: pid """ pathname, filename = os.path.split(path) MyRequestHandler.playing = filename #self.stopAllPlayers() if MyRequestHandler.process is not None: MyRequestHandler.process.poll() print "RETCODE2 : " + str(MyRequestHandler.process.returncode) if MyRequestHandler.process.returncode is None: MyRequestHandler.process.stdin.write('q') MyRequestHandler.process = None ext = os.path.splitext(path)[-1].lower() if ext in ('.mp4', '.mkv', '.mpg', '.avi', '.wmv', '.mp3', '.wav'): print "omxplayer " + path OMXThread.omxprocess = subprocess.Popen(['/usr/bin/omxplayer' , path] , stdin=subprocess.PIPE, shell=False) return 1 thread = OMXThread() thread.setDaemon(True) thread.start() server = HTTPServer(("0.0.0.0", 8001), MyRequestHandler) server.serve_forever()
UTF-8
Python
false
false
2,014
532,575,951,352
dcdb4068ae2c0c26c8cc8ad1bc2c18538c14ae76
047617ff3a44f46cf96e222e1b5b4a960e5b30a5
/char.py
e8c99f093da1f456e5267a08dd08d0007e2dfe77
[ "GPL-3.0-only", "GPL-3.0-or-later" ]
non_permissive
markwingerd/dft_old
https://github.com/markwingerd/dft_old
b014fc53b986560c007c4223dc97d3208aa0c470
f76a5440f4aca1454da40a6b7c44865b6f5dcf78
refs/heads/master
2021-01-10T19:24:53.968010
2013-03-02T18:46:39
2013-03-02T18:46:39
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # connectionmon.py - Views your network connections. # Copyright (C) 2013 Mark Wingerd <[email protected]> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General 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 General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import sys, os import pickle import xml.etree.ElementTree as ET from util import DataRetrieval class Character: def __init__(self, name): self.name = name self.skills = Skills() self.skill_level = {} # Used for module reqs self.skill_effect = {} # Used for modifying modules def show_skills(self): print self.skill_level def get_all_skills(self): return self.skills.get_names() def set_skill(self, skill, level): self.skill_level[skill] = level self.skill_effect[skill] = level * self.skills.skill_effect[skill] def get_skill_level(self, skill_name): """ Returns the skill level. If none found in the self.skill_level dict then return 0 as the level. """ if skill_name in self.skill_level: return self.skill_level[skill_name] else: return 0 def get_all_skills(self): """ Returns a dictionary of all known skills and the characters skill levels. """ output = {} # Gets all known skills and if Character has a level for them, apply it. for s in self.skills.get_names(): if s in self.skill_level: output[s] = self.skill_level[s] else: output[s] = 0 return output def get_parent_skills(self): return self.skills.get_parents() def get_children_skills(self, parent): return self.skills.get_children(parent) class CharacterLibrary: def __init__(self): self.character_data = DataRetrieval('characters.dat') self.character_list = self.character_data.data #self._load_characters('characters.dat') def get_character(self, char_name): """ Returns a the specified character instance. """ return self.character_list[char_name] def get_character_list(self): """ Returns a list of the names of all characters as a tuple. """ return tuple(self.character_list.keys()) def save_character(self, character): """ """ self.character_data.save_data(character) def delete_character(self, character): self.character_data.delete_data(character) class Skills: def __init__(self): # Dict of skills and their effects on stats {Skill_Name: Effect} self.skill_effect = {} self.file_name = self._get_file_loc('skills.xml') # THIS STILL USES THE OLDER VERSION TO RETRIEVE XML.... ITS TOO # DIFFERENT TO USE THE OTHER SHIT. FUCK. IL FIX IT LATER self._get_xml(self.file_name) def show_skills(self): print self.skill_effect def get_names(self): """ Returns a tuple of skill names. """ return tuple(self.skill_effect.keys()) def get_parents(self): """ Returns a list of all parents in the xml file. """ parent_list = [] xml_tree = ET.parse(self.file_name) parents = xml_tree.findall('.//*[@name]/..') for parent in parents: parent_list.append(parent.tag) return parent_list def get_children(self, target): """ Returns all the children of a given parent. """ children_list = [] xml_tree = ET.parse(self.file_name) parent = xml_tree.findall('.//%s/' % target) for child in parent: children_list.append(child.attrib['name']) return children_list def _get_file_loc(self, file_name): """ Will return the path to the desired file depending on whether this is an executable or in development. """ if getattr(sys, 'frozen', None): basedir = sys._MEIPASS + '/data/' else: basedir = os.path.dirname('data/') return os.path.join(basedir, file_name) def _get_xml(self, src): """ Extracts skill information from an xml file. """ xml_tree = ET.parse(src) xml_root = xml_tree.getroot() for skill in xml_root.findall('.//skill'): name = skill.get('name') effect = round(float(skill.find('effect').text), 3) self.skill_effect[name] = effect if __name__ == '__main__': pass #char1 = Character('Char1') #char1.set_skill('Shield Control',2) #char1.set_skill('Field Mechanics',4) #char2 = Character('Char2') #char2.set_skill('Weaponry',5) #char2.set_skill('Dropsuit Command',4) #char3 = Character('Char3') #char3.set_skill('Weaponry',5) #char3.set_skill('Dropsuit Command',4) char_lib = CharacterLibrary() #char_lib.save_character(char3) print char_lib.get_character_list() char = char_lib.get_character('Reimus') print char.get_all_skills() s = Skills() print s.get_parents() print s.get_children('engineering') #sk = Skills() #print sk.skill_effect
UTF-8
Python
false
false
2,013
19,301,583,060,553
a932913beea79cab49cda1516354b6e2dcc0ed73
44c52cce24f573d1c10397ffcd3f599fe4a061cf
/lib/ui/icons_rc.py
75d80536ab502d625da8af04575c24aa759de45b
[ "MIT" ]
permissive
wonkoderverstaendige/MausverPyler
https://github.com/wonkoderverstaendige/MausverPyler
f68802feea03ab5e5f5599afe3c6c8fed8aa7f35
0205411cdc49b645d30ea5a0509349695b02c56d
refs/heads/master
2016-09-10T04:18:18.431258
2014-03-29T16:21:38
2014-03-29T16:21:38
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- # Resource object code # # Created: So 23. Mrz 20:53:42 2014 # by: The Resource Compiler for PyQt (Qt v4.8.4) # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore qt_resource_data = "\ \x00\x00\x10\xe5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x10\x6b\x49\x44\x41\x54\x78\x5e\xed\x5d\x4b\xc8\x5d\ \x49\x11\xce\xfb\xfd\x7e\xbf\x9f\x6a\x1e\x26\x9a\x97\xc1\xc4\xd1\ \x10\xb3\x70\x46\x42\x7e\xd1\x48\x20\x2e\x06\x0c\x38\x18\x5d\xc4\ \x4d\x70\x31\x21\xe0\x22\xa8\x0c\xd9\x0c\x8a\xa2\xf8\x8a\x59\x48\ \x74\x40\x17\x0e\x82\x60\x14\x35\x04\x71\x31\xe6\x8e\x88\xc4\x31\ \x8c\xf8\xb8\x0c\x83\x33\x67\x99\x45\x62\xd5\xe5\xd4\x4f\xfd\x95\ \xaa\xae\xea\x73\x5f\xff\x7f\xed\x1f\x9a\xfb\xdf\x7b\xea\x74\x9f\ \xf3\x7d\x5f\x57\x57\xf7\xe9\xee\x33\x6d\x5a\xf9\x2b\x08\x14\x04\ \x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\x0a\ \x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\x0a\x02\ \x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\x0a\x02\x05\ \x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\x0a\x02\x05\x81\ \x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\x0a\x02\x05\x81\x82\ \x40\x41\xa0\x20\x50\x10\x18\x0d\x04\xe6\xce\x9d\xfb\x7b\x48\x2f\ \xf4\xfb\x6e\x16\x2e\x5c\xf8\xda\xe2\xc5\x8b\x3f\xdd\xef\x72\xa6\ \x6a\xfe\x0b\x16\x2c\x78\x66\xfe\xfc\xf9\x95\x95\xe0\x78\x65\xa5\ \xd4\x79\x2e\x1e\xcb\x96\x2d\xbb\xc7\x32\xf8\xac\x7b\x42\x43\x83\ \x75\xeb\xd6\xbd\x02\x02\xa8\x30\x81\x18\x3e\xdc\x30\x9b\x91\x3d\ \xed\xf0\xe1\xc3\x1f\xe3\x44\xa6\x08\xf7\x8e\xf1\x7c\x5c\xc0\x56\ \xae\x5c\xd9\x92\x0a\x82\x02\x9e\x76\x4f\xcc\x34\x58\xbe\x7c\x79\ \x7b\xc9\x92\x25\x15\x4f\x8b\x16\x2d\xda\x9b\x99\xcd\xc8\x9a\x1f\ \x38\x70\x60\x0c\x79\x90\xe4\x42\x65\xc1\x0a\xe3\x26\x79\x1e\x71\ \xea\x02\xc6\x05\x40\x99\x50\x81\xbd\x24\x68\xc5\x8a\x15\xed\xa5\ \x4b\x97\x56\x32\xd5\x82\x58\xe1\x5e\xe8\x88\x1b\xa0\x00\x24\xfe\ \x92\x78\xe0\xa3\x92\x49\x13\x07\x17\x83\x0b\xdb\xaa\x55\xab\x5a\ \x5a\xc1\xbc\x20\x20\x6d\xb9\x9b\x91\x63\x00\x42\x6b\x43\x73\x53\ \xf1\xc4\xc5\x00\xbf\xb7\x21\x8b\x19\xdd\x96\x33\x55\xcf\x47\x01\ \x70\x32\x35\xb2\x23\xbf\xf1\x3c\x90\x57\x17\x0f\x12\x00\xab\xf5\ \xe3\x2a\xa3\x36\x1b\x3f\x81\xac\xae\x08\x82\x72\xda\xd0\x0c\x54\ \x3c\x49\x41\xe0\x77\x28\xe7\x9e\x7b\xd1\x23\x68\x40\x02\x90\x24\ \x73\x0e\x52\xff\x5b\x9e\xc1\x85\x0a\x05\x20\xc9\xa7\x82\x78\x7b\ \x4d\xb5\x15\x48\xfa\xa3\x9b\xa9\x62\xb0\x7a\xf5\xea\x36\x34\x03\ \x95\x96\x0c\x61\xfc\xa2\x49\x39\x53\xf5\x1c\x08\x02\xc7\x88\x44\ \x49\xb4\x8c\x9d\xe4\x77\x69\x4f\xf9\x20\xaf\x2e\x1e\x40\x4c\x47\ \x00\xb2\x70\x2a\x84\x11\x3f\xee\xbe\x6b\xc2\x7e\xe2\x66\xce\x0c\ \xd6\xac\x59\xd3\x06\xb1\x55\x3c\x05\xc5\xf0\xf5\x9c\x72\xa6\xaa\ \x2d\x0a\x80\x13\xe9\x91\xae\x1d\xe7\xe7\x13\x9f\x2e\x1e\x28\x00\ \x4e\x7e\x80\xf8\x71\x37\x5e\x13\xf8\x55\xb7\x10\x30\x80\x6e\x60\ \x1b\xca\xaa\x64\x92\xa2\xc0\xef\x5c\x18\xe4\x1d\x40\x88\x97\x22\ \xe5\x4c\x55\x1b\x12\x80\x24\x56\x0b\x9c\x8d\x40\x7a\xbc\x87\x45\ \x42\x40\x5e\x5d\x3c\x50\x00\xdc\xe5\x27\x6a\xfc\x04\x62\x38\x71\ \x48\x2a\x7c\x4f\x0e\xf2\xac\x5f\xbf\xbe\x0d\x5e\xa0\xb2\x92\x25\ \x0c\x29\x06\x08\x26\xc7\xdc\x9b\x9a\x82\x06\x28\x00\x59\xf9\x34\ \x2e\x8c\xb8\x69\xbc\x77\xc5\x05\x84\xbc\xba\x50\x00\x21\x1d\x01\ \xe0\x89\xb2\x40\xaa\x7d\x44\x82\xac\xad\x9c\x34\x22\x16\x6c\x4e\ \x68\x85\x6e\xd8\xb0\xa1\xbd\x76\xed\xda\xca\x4a\x5c\x18\x3c\x5f\ \xab\xc9\x80\x6b\x7b\xb7\x7b\x73\x53\xc8\x00\x05\x20\x6b\xb6\x46\ \xb6\xf5\x1b\x3f\x97\x44\x10\x16\x40\x0e\xf9\x1a\xe9\x44\x1e\x27\ \x17\x7e\xdb\xc1\xf1\xdf\xb8\x71\x63\x1b\x9a\x81\x4a\x4b\x52\x14\ \x9e\x18\xb8\x57\x80\x6b\x1f\x89\x31\x04\x2e\x00\x49\xb2\x0c\x92\ \x53\x3d\x29\x12\x02\x89\xc0\xad\x03\x40\x48\x8b\xd7\x7c\xab\xd6\ \x13\xf1\x9c\x1c\x4e\x9c\x24\x16\x5c\x7e\x05\xe9\xad\x4d\x9b\x36\ \xcd\xc7\x8b\x80\xcf\x76\xfd\x1b\xfe\xae\x26\x9e\x87\x10\xd3\x78\ \xd3\x41\xd7\x41\x9e\x01\xc5\x00\xcd\xc2\x1b\xee\x8d\x4e\x72\x03\ \x14\x00\x11\xaf\x11\x1e\x0c\x98\x3b\x81\x3a\xf7\x06\xee\x6d\x93\ \x00\xf0\xc4\x14\xf9\x1a\xf1\x9c\x30\x8d\x54\x70\xfb\x55\x9d\xee\ \x6d\xd9\xb2\xe5\x75\xf6\x9d\x7e\x1f\xff\x94\xe7\x6b\x62\xd0\x3c\ \x83\x10\xc2\xab\xee\x0d\x4f\x52\x83\xa3\x47\x8f\x76\x04\x20\xc9\ \xb7\xba\xce\xf4\xbb\x35\xb6\x42\x22\x70\x6f\x17\x80\x6f\x71\xe5\ \xf1\xf6\x5e\xd6\x7a\xad\xc6\x4b\xe2\x24\xc9\xe0\xfa\xab\x48\xe2\ \xe7\xf1\x3c\x53\x42\xd0\x62\x85\xda\x23\xfc\xdc\xbd\xf1\x49\x66\ \x80\x02\xe0\x64\x7a\xc4\xcb\xe3\x74\xae\x1c\x69\x75\x6f\x93\x04\ \xc0\x6b\x3f\xd5\x2a\x04\x58\xb6\xef\x44\x08\x27\x89\x93\xa7\x91\ \x0d\xee\xbf\x4a\x25\x79\x8e\x27\x06\x12\x62\xc0\x23\xbc\xe8\x02\ \x30\x49\x0c\xb8\x00\x38\xb9\x5a\x37\x99\x7b\x3d\xad\xcb\x4c\x22\ \x40\x2f\xe0\xde\x1e\x17\x00\x66\x96\x43\xbe\x45\xbc\x45\xf6\xe6\ \xcd\x9b\x2b\x9e\x2c\x3b\x2e\x08\x2a\x43\xf3\x0a\x52\x08\x5a\x7c\ \x50\x03\xf4\x79\x17\x88\x21\x1b\xa0\x00\x64\xad\x4e\x91\x1f\x11\ \x41\x48\x00\x00\x70\x0b\x6b\x7f\x8a\x7c\x59\xeb\x89\x14\x4e\x14\ \x27\x53\x12\x9d\xfb\x9d\xe7\xd5\x8d\x18\x64\x17\x12\xee\xf3\x23\ \x43\xe6\xd9\x2c\x9e\x04\xa0\x91\xde\x64\xf0\x8c\xbc\x80\x7b\xbf\ \x52\x00\xbc\xdd\xc7\x1a\xe6\x91\xdf\x84\x78\x08\x08\x2b\x4c\x11\ \x61\x50\xfe\x29\x21\xd0\x35\x66\x78\x84\x3d\x2e\x30\x03\x36\xd0\ \x04\xa0\x8d\x9c\xa6\xc4\x20\x03\x43\x14\x81\x7b\x1b\x9a\x00\x78\ \xbb\x8f\xe0\x92\xfb\x95\x35\x3f\x42\x3e\x91\x1d\xfd\xd4\x44\xa1\ \x79\x04\x2d\x4e\x88\x08\x81\x83\x04\x2e\x72\x99\x0b\xd0\x80\x0c\ \x8e\x1f\x3f\x3e\x26\x47\x57\x07\x26\x00\x72\xff\x91\xda\x4f\x35\ \x91\x48\xb1\x6a\xb1\x24\x7c\xeb\xd6\xad\x55\x2a\x49\xfb\x5c\x21\ \x90\x48\x23\x22\x10\xcf\x1b\x5e\x07\x8e\xa7\x0f\x88\x67\xb3\x18\ \x2e\x80\x08\xf1\x56\x0f\x88\x0b\x3c\xec\x01\xb8\x00\x22\xb5\x3f\ \x45\x7e\x2e\xf1\x52\x14\xfc\x7c\x4b\x5c\xb2\x59\xb0\x02\xc5\x68\ \x93\x50\xf7\x80\xee\x0e\x53\x04\x24\x80\x5c\xf2\xeb\xe7\x30\xe3\ \xc1\x7b\x4f\x04\x40\xc0\x49\xf7\xef\xd5\x7e\x8f\xfc\x6d\xdb\xb6\ \x55\x56\xca\x15\x42\xd3\xd8\xc0\xea\x29\xb0\x3e\xf8\x4b\xc3\x10\ \x02\x0a\x40\x23\x5f\x7b\x78\x16\x8d\x03\x1a\x7b\x00\x29\x00\xad\ \xed\xd7\x6a\x27\x09\x40\x73\xf5\x29\xf2\xf9\x31\x4b\x08\xfd\x68\ \x12\xb4\xae\x14\x1b\x50\xf9\xca\x20\x85\xa0\x09\x20\xf7\xc9\x29\ \x6f\xda\xf0\x3e\xba\x12\x00\x8f\xfe\xb9\x00\x22\xee\x9f\x93\x18\ \x25\xde\x12\x81\xd7\x24\xa4\x02\xc4\x54\x5c\x90\x6a\x43\xc5\x88\ \xdc\xb3\x83\x10\x42\xd4\x03\x78\x73\x2a\xb2\x9b\x00\x70\xeb\x2d\ \x54\x0e\x8d\xfa\xa5\x6a\xbf\x45\xbe\xac\xf9\x92\xf4\xed\xdb\xb7\ \x57\xb9\x49\x13\x44\x54\x0c\xd4\x54\xc9\xd8\x80\x07\x88\x54\xbb\ \x22\xc1\x54\x2d\x88\xa7\xfa\x29\x04\x2e\x80\xd4\xbc\x89\xe8\x93\ \x52\x12\xb1\x7b\xcd\x52\x00\x58\x00\xf5\xff\xb1\x06\x79\xb5\x5f\ \x73\xfb\x9c\xbc\x5c\xe2\xc9\xbe\xdb\x66\xa1\x5b\x11\x58\x33\x93\ \x00\xd8\xcd\x2e\xa8\x0d\x0c\x48\x00\x51\xf2\xd1\x2e\xe2\xc5\xdc\ \x4b\xe9\xb7\x07\xb0\x04\xb0\x63\xc7\x8e\x8a\x92\x65\xd3\x6d\xb3\ \x90\x12\x81\xd5\x43\xb0\xa2\x6a\x31\x4c\xfb\x16\x34\x73\xf3\x5c\ \x70\x33\x0c\x72\x3d\x80\x37\x83\x2a\x1c\x03\xf4\xca\x03\xa0\x27\ \xa0\xb6\xdf\xf3\x00\x9c\xfc\x94\x08\x22\x5e\x40\x1b\x51\xf4\xba\ \x89\xde\x58\x41\x50\x04\x38\x0f\xe1\xb5\x0c\x8e\x93\xa6\xb9\x1e\ \xc0\x9b\x35\x35\x30\x01\x60\x74\x9e\x1b\x03\x68\x02\xc0\xdf\xa4\ \x27\x90\xb1\x04\x0f\x2e\x7b\x19\x0f\xa0\x37\x48\xc5\x04\xb2\x39\ \x90\x0f\x6d\x40\x08\xbf\xed\x56\x08\x39\x1e\x20\x52\xfb\xb3\x05\ \x20\x03\xc1\xd4\x18\x80\xec\x92\x0d\x22\x0e\x40\x31\x0c\x42\x00\ \x56\xdb\x6a\x3d\x7d\xe3\x62\x00\x21\x7c\xaf\xa9\x10\xa2\x02\x88\ \x8e\x01\x84\x05\x80\xcf\x02\xe4\x48\x20\x0f\x02\x29\x10\x4c\x0d\ \x02\xf1\xda\xa8\x35\x03\x48\x5e\x93\x60\xb0\x17\x1e\x00\x9b\x83\ \x48\x40\x68\x79\x01\xd9\x1c\x78\xde\xa0\x16\xc4\xf3\xb9\x42\xf0\ \xc6\x01\xac\x11\x42\x6b\x2c\x23\xeb\x69\xa0\x26\x80\x9c\x9e\x80\ \xd6\x0c\xa0\x10\xba\xe9\x0e\xa6\xc8\xc7\xbc\xa3\x4d\x40\x13\x01\ \x78\x5e\x20\x28\x02\x7c\xc4\xfe\xc9\xa8\x10\xac\x71\x80\xd4\xd0\ \xb0\x36\x63\x5a\xce\x0c\x72\xcb\xd7\x3c\x80\xec\x0a\x6a\x5e\x20\ \x3a\x12\xd8\x44\x04\xda\xe0\x51\xd3\xa1\xe2\x1c\x01\xf4\xd8\x0b\ \x74\xe6\x58\xd4\xe9\xa8\x47\x44\xae\x00\x12\xd3\xe5\x3b\xf3\x0a\ \x69\x72\xa8\x57\xee\x34\x2e\x00\x2d\x0e\xa0\x58\xc0\x1b\x0f\xe0\ \x5e\x80\xf7\x08\x34\x4f\x90\x3b\x3a\x98\x4b\x3e\x5e\x4b\xd3\x11\ \x42\x2f\x18\xb4\x80\x8f\xcc\xe1\x4b\x8d\x21\x44\x1f\x06\xc9\x09\ \x23\x5d\x4f\x09\xb3\xe6\x03\xf4\xe2\x81\x90\x24\xae\x5b\xe2\xa5\ \xeb\x4f\x4d\x2a\x69\xf2\xb0\x28\xc7\x03\x64\x34\x03\xdc\x13\x74\ \xa6\xb0\xd3\x54\x79\x5e\x3b\x53\xf3\x01\xac\xa9\x61\x1e\xf9\x8d\ \xa6\x84\xa5\xe6\x04\x58\x13\x42\x52\xcd\x81\xf4\x06\x11\x8f\xa0\ \x3d\x4c\x8a\xcc\x17\xa0\xeb\x88\xd4\x7e\x6c\xd6\xac\xf1\x80\x1e\ \xc6\x00\x13\xc8\x17\x5e\xe2\x2f\x29\x01\x78\xf3\x01\x35\xf2\xc9\ \xf5\xf3\xb5\x01\xa1\x26\xc0\x9a\x13\x68\x79\x01\x14\x02\x46\xd6\ \xde\x8c\x20\xef\xf1\x70\xee\x24\x91\xc8\x34\xb2\xe8\x7c\x42\x49\ \x3e\xaf\xfd\x9e\x00\x22\xee\x3e\xc3\xe6\xd7\x48\x12\x4e\x09\xf3\ \x48\xd7\xbc\x8e\xb6\x4a\x88\xaf\x0e\x0a\x0b\x80\x8b\x40\x4e\x07\ \x8f\xce\x0b\x8c\xce\x0e\xd2\xbc\x02\x89\xc1\x9a\x3a\x96\x33\x7f\ \x50\x0b\xfc\x50\xb4\xf2\xe9\x20\xde\x57\x6a\x8a\x79\xc3\x2e\x60\ \xaa\xd6\x9b\xc7\xe0\x3a\x7e\x93\x21\x9a\x4e\x3e\x1e\xf9\xb8\x3c\ \xcc\x15\x40\x74\x5a\x78\xb7\x22\x90\x41\x62\x37\x73\x04\x53\xd3\ \xcb\xad\x35\x06\xa9\x69\xe5\x91\x91\xc0\x68\x9b\x9f\x5a\xc7\x97\ \x5a\xf8\x01\x02\xfd\x73\x54\x00\xd6\x6a\x20\xee\xfa\xc3\x6b\x03\ \xad\x85\x21\x32\x16\xe8\xd7\x0c\xe1\x48\xcd\xf6\x26\x83\xa4\x02\ \x3e\xaf\xe6\x77\x4b\x7e\x94\x70\xcb\x0e\xae\xef\x6f\x8f\x1e\x3d\ \xfa\xe0\xc5\x8b\x17\x9f\xf3\x04\x90\x22\x5e\x23\x3f\xb4\x3a\x18\ \x05\x80\x6d\x06\xad\x4b\xa3\x8b\xa0\x2e\xa1\x36\x4f\x40\x9b\x29\ \x4c\x71\x81\x8c\x0d\x90\x9c\xa6\x24\x47\x16\x92\xe4\xae\x2a\xca\ \x75\xfb\x1a\x29\xdd\x92\x8e\xe7\x03\xbe\x6f\xdc\xbf\x7f\xff\x14\ \x90\xff\x3e\x74\xd3\x47\x8e\x1c\x39\x93\x93\xaf\xb5\xd9\x16\x5f\ \x1a\x1e\x12\x80\xb5\x38\x94\xaf\x10\xf2\x44\x20\xe7\x0d\x58\x0b\ \x46\x72\xc5\x10\x59\x39\x24\x87\x79\x79\x8d\xb7\x66\x04\x45\x03\ \x3e\x49\xbe\x47\x50\x74\x3d\xff\xad\x5b\xb7\x3e\x0e\xc4\x1f\x7f\ \xfc\xf8\xf1\x4c\x6a\xa3\xe5\xda\x40\xad\xac\xe8\xe6\x10\x59\x3b\ \x84\xa4\x96\x87\x6b\x22\xa0\x51\xc2\x54\x93\xa0\xad\x1c\xd2\x3c\ \x83\xb7\x66\x50\x73\xed\x1a\xe1\xa9\xe5\x63\x4d\xba\x7a\x11\xe2\ \xa3\x64\x73\xbb\xab\x57\xaf\x7e\x06\xdd\x3d\x10\xff\xc4\x5c\x02\ \x5a\x1d\x1c\xcd\xd7\xda\x26\x46\xee\x13\xe4\x06\x81\xb8\x43\x88\ \xdc\x20\x82\xd4\x47\xcf\x08\x64\x73\xa0\x89\x80\x37\x0b\xdc\x23\ \x58\x62\x88\xac\x18\xd6\x56\x03\x59\x0b\x47\x53\x11\x7e\xd3\xc9\ \x1f\x5e\x9b\x2b\xc9\xb2\xf6\xf3\x39\x7f\xfe\xfc\xf3\x48\x3c\xa4\ \xc5\x16\x21\x9e\x00\xac\xbc\xe5\x96\x30\xbc\xf6\x87\xf6\x08\x22\ \x01\x90\x08\xe4\x26\x05\x29\x11\x58\x42\x90\x62\xd0\x04\xc1\x89\ \x8c\xfe\xaf\xed\x41\x20\x37\xa6\x48\xed\x36\xc2\xfb\xf7\xa9\x21\ \x5d\xad\x7b\x15\x25\x9b\x13\x75\xe2\xc4\x89\x6f\xd6\xc4\xaf\xf1\ \x6a\xa2\xb6\x45\x4c\x84\x74\xe4\xad\xeb\x6d\xe2\x68\x8f\xa0\x94\ \x08\xa2\x42\xe0\x4d\x83\xb6\x94\x3c\xb5\x91\x44\xce\x0e\x22\xd6\ \x6e\x22\xb2\x7d\x4f\x0d\xea\x58\xa3\x69\x7c\x44\xcd\x0a\xb6\x52\ \x3b\x75\xed\xdd\xbb\xf7\x67\xb5\xab\xdf\xe2\x11\x4f\xc7\x53\x02\ \x48\x6d\x19\xa7\x6d\x0d\x87\x35\x9f\xf6\x7e\x74\xcb\x87\x00\x6f\ \xc2\x2e\x61\x51\x11\x68\xcd\x02\xf7\x08\x7c\x14\x51\xd6\xd2\x6e\ \xbe\xcb\x1a\xae\x0d\xe4\x48\xd2\x53\x53\xbc\xbc\xda\xee\x6d\xc9\ \xc6\xc9\x81\xc1\xac\x3f\xd4\xc4\xef\x76\x81\x17\x06\x7c\x97\x30\ \x6f\x8f\x40\xab\xc6\xf3\x0d\x22\x51\x00\xa1\xad\x62\x51\x00\x78\ \xa2\xdc\x1d\x34\x67\xc7\x30\xfe\xcc\x5a\xce\x6a\xb5\x08\xb3\x04\ \xe2\xd9\x37\x59\x2c\x11\x1d\x42\x95\xfb\xeb\xc8\x0d\x97\xac\xcd\ \x19\xe1\xfe\xff\x5e\xbb\xfa\xf7\xe6\x12\xcf\x3d\x40\x74\x5b\x58\ \xd9\xce\x4b\xe2\x89\xfc\xb0\x00\x68\xa7\xd0\xa8\x08\x68\xd8\x98\ \x8f\x19\xc8\x1e\x03\x1f\x48\xca\x99\xea\xec\xd9\x7a\x33\x63\x9a\ \xb6\xed\x5e\x4d\xd7\xc8\x01\x41\xfc\xf7\xc1\x83\x07\xd8\x97\x77\ \x9f\xf7\x7b\xc2\x90\x3b\x85\x5a\x62\xf0\x76\x0c\xe7\x3b\x85\xe3\ \x96\xf1\x5e\xb9\xd3\x00\xb0\x09\x7b\x05\x3b\xfb\x04\xcb\xed\x62\ \x9f\x18\xdb\x96\x0f\x34\x9a\x2c\x76\x8c\xce\x82\xf1\x9e\xcd\x7b\ \x51\x7c\x13\xd2\x11\x1f\x24\x01\xfb\xf2\xd0\x9d\x7b\x0a\x52\x4f\ \x76\x38\xe7\x7b\x05\x47\x76\x05\xe7\xed\x3c\xb5\xf7\x92\xfc\xb0\ \x00\xf0\x44\x6f\xc3\x68\x0e\x16\x0f\x8c\x52\xe3\xdb\x3c\x70\x8c\ \x3c\xe9\x8a\xd8\xa4\x86\x4b\x23\x83\x27\xda\x86\x8a\x72\xf4\xcc\ \x0a\xac\x10\xf4\x2b\x57\xae\x98\x7d\x79\xb7\xb6\x25\x0c\x70\xb7\ \xf0\x14\xf1\xa9\x97\x46\x58\x2f\x8b\xc8\x12\x40\x4a\x04\xbc\x97\ \xc0\xc7\x0c\x68\x08\x39\x77\x7f\x3b\x6f\xcc\x3b\x97\x64\x39\x0f\ \x2e\x15\xb9\x47\x77\xda\x96\x64\x9c\x3d\x7b\xf6\xaa\xd7\x97\xef\ \x56\x00\x91\x37\x83\xf0\xf6\x3d\x45\x7c\xf8\x8d\x21\xd8\x04\xf0\ \x57\x95\x68\x2f\x2d\xb0\x76\xb1\x8e\x6c\x6d\xea\x0d\x9f\xe6\x1c\ \xf7\x46\xc9\xb4\x7e\x73\x13\xc2\x39\x06\xc7\x8e\x1d\xfb\x76\x4d\ \xfc\xda\x6e\x08\xf6\xce\xe5\x6f\x0c\xf1\xde\x09\xa4\xb9\x7a\xeb\ \xc5\x51\x5e\xb9\x9d\x18\x40\xbe\xab\x26\xf5\xf2\x08\x6f\x37\x6b\ \x8b\xa4\x1c\xa2\x23\xae\x3c\xd2\x3f\x8f\x6e\xa9\xce\x6b\x3b\xdd\ \xfb\xae\x5d\xbb\x5e\xae\xbb\x74\xdb\x5c\x10\x7b\x60\x30\x34\x01\ \xc8\x97\x46\x79\xaf\x8f\xf1\xf6\xb4\xb7\x46\xaf\xbc\xda\x9b\x3a\ \x6e\xe5\xe9\x75\xd3\xb4\x48\xda\x7b\xe7\x0e\x8c\x51\xfc\xa9\xae\ \xf1\x03\xdd\x48\xca\x7a\x69\x14\xf1\x91\x7a\x35\x9c\x76\x6c\xde\ \xbc\x79\x15\x26\x57\x9b\xd0\xde\x3e\xf1\xd6\x30\xab\x49\xe0\x2f\ \x96\xe0\x63\x07\x9e\x28\x64\xdc\xe0\x11\x9a\x0a\xd4\xbc\x5a\x9d\ \x0a\xe0\xb4\xc8\x99\xda\x54\x28\xf3\x9f\x35\xf1\x87\x5c\xd0\xfa\ \x60\x40\x02\xc8\x25\x5a\xda\x13\xf1\x59\x02\x40\xe3\xc8\x0b\x0b\ \xbd\xb7\x58\xa5\x06\x32\xbc\xd1\x2d\xeb\x78\x64\x70\xc4\x8a\x9e\ \xbd\x37\x6a\xd5\xb5\xeb\xed\xba\x2f\xff\xfe\x3e\xf0\x1a\xce\xb2\ \x1b\x01\x48\xd2\xf1\x3b\xbc\x0c\xb4\x93\xdc\x0b\x00\xd7\xdb\xe2\ \x19\x44\x84\xc0\x7b\x0c\x39\x6f\xba\x8a\x90\xe9\xd5\x60\xcf\x85\ \xcb\xb7\x66\x69\x01\x15\xdd\xe3\x8d\x1b\x37\xce\xd6\xed\x7c\x4f\ \xfa\xf2\x2e\xd8\x4e\x37\x90\x78\xb0\x38\xd0\x88\x96\xbf\x11\xf1\ \x59\x02\x20\xe3\x88\x10\xe8\xe2\x34\x60\xbd\x6e\x4c\x74\x80\xc3\ \x72\xd5\xc1\x1a\x3d\xe1\xe5\x8b\x1a\x98\x97\x2e\x5d\xfa\x9c\xf5\ \x5c\xbe\x1b\x12\xbb\x39\x17\x3d\x40\x84\x60\x8f\x70\xe2\x72\xce\ \x9c\x39\x15\x26\xf7\x9a\xa0\xed\x6b\x49\xd5\xe4\x08\x21\x25\x88\ \x26\x22\x49\xf5\x73\x53\xb5\x39\xd2\x76\x9e\x3e\x7d\xfa\x5a\x4d\ \xfc\x32\x17\x98\x01\x1b\xec\xdf\xbf\x7f\x4c\xf2\x90\xfb\x9d\x48\ \xe7\x9f\xee\x6d\xa0\x00\xe8\x84\x94\x10\x3c\xf7\x14\x21\xa0\x97\ \xfd\xdb\x48\x79\x64\x03\xb5\xeb\x87\x75\x80\xb7\xde\x05\x64\x48\ \x06\xb9\x02\xd0\xc8\xe6\xbf\xcd\x9e\x3d\xbb\xc2\xe4\xde\x0e\x17\ \x00\x66\xe0\x89\x20\x07\xf8\x61\xdb\xc2\xa4\xd2\x5f\xd5\x35\x7e\ \xc2\xeb\x6b\x5c\x50\x86\x60\x80\x02\xb0\x2a\xa2\xe4\xc4\x23\x1f\ \x8f\x87\x05\x00\xd1\x77\x0b\x8d\x65\xa6\x9a\xfb\x49\xb5\x51\xc3\ \x20\xdb\xba\x1e\x18\xdb\x78\xb5\xae\xf1\xfb\x86\xc0\x65\xa3\x22\ \xb9\x00\x22\x04\x4b\x1b\x22\x5c\x7e\xba\x17\x43\x02\xe0\x27\x6a\ \x17\x90\x6a\x8f\xbc\xe0\x05\x82\xba\xff\x40\x74\xff\x0f\xcf\xae\ \xc9\x71\x7e\x5d\x10\x3f\xfc\xeb\xe1\xc3\x87\x1f\x82\x27\x74\x87\ \xdd\x1b\x9f\x64\x06\x28\x00\x8b\xc4\x26\xbf\xcf\x9a\x35\xab\xc2\ \xe4\xde\x26\x0a\x00\x0d\xad\x42\x52\x6a\x8c\x04\x29\x37\x6f\xde\ \xfc\x04\xd4\xc6\x63\xe0\x21\xda\xdc\x9e\x93\x1d\xc9\xc7\xb3\xb9\ \x7b\xf7\xee\xd3\x58\x8e\x7b\xc3\x93\xd4\xa0\x5b\x01\x10\xe1\xf2\ \xd3\xbd\x5d\x12\x80\x3c\x31\xa5\xba\x88\x8b\xba\x7c\xf9\xf2\x73\ \xbc\xab\x25\x05\x60\x11\x1a\xc9\x9b\xdb\x5c\xbf\x7e\xfd\x53\x75\ \x39\xb3\xdc\x9b\x9d\xc4\x06\x7b\xf6\xec\x19\xb3\x48\x6c\xfa\xfb\ \xcc\x99\x33\xe3\x1e\x20\x47\x00\x5a\xcc\x40\xa4\x9c\x39\x73\xe6\ \x4b\x75\xfb\xbb\x84\xe3\x0d\x35\xbe\x9d\x4b\x6e\xca\xfe\xc2\x85\ \x0b\x5f\xa8\x89\x5f\x30\x89\x79\x0d\x5f\x5a\xaf\x05\x80\xe4\x87\ \x04\x00\x6d\x73\x8b\x8c\x3d\xa5\xa5\xbc\xc2\xa1\x43\x87\xbe\x93\ \x7a\x6c\x0a\x35\xde\x15\x40\xa4\xad\x3b\x79\xf2\xe4\x0b\x75\x39\ \x23\xf1\xc2\x48\x52\x08\x0a\x00\x79\xf0\x38\x90\xc7\x89\x3b\xeb\ \xd3\x55\x20\x17\x80\x96\x89\x77\x41\xb0\x7a\xe7\x97\x91\xc7\xa6\ \x28\x80\x08\xc1\xd2\x86\xca\xdf\xbd\x7b\xf7\x8f\x6a\xe2\x37\xba\ \x37\x35\x05\x0d\x48\x00\x1e\xa1\x39\xc7\x67\xcc\x98\xe1\x37\x01\ \x9e\x00\x2c\x55\xc2\x33\x04\xea\x6a\x85\xde\xe1\x1b\x15\x80\x14\ \x1c\x3c\x9e\xfd\x5d\x4d\xfc\x3b\xa6\x20\xaf\xe1\x4b\x1e\x9a\x00\ \xa0\x8b\xd6\x42\xa5\x50\xf2\x14\x06\xed\xf2\xbf\x9b\x3c\x36\x85\ \xf3\xda\x9e\x37\xe1\xc7\xe1\xba\xfe\x5a\x97\xf3\x9e\x30\x8a\x53\ \xd8\x10\x05\x90\xc3\x03\xf2\xc4\xed\xad\xff\x5d\x48\xa4\x00\x12\ \x99\xbe\x7d\xe7\xce\x9d\x67\x9a\x76\xb5\xc0\xb5\xb7\x3d\x71\xe1\ \x71\xb0\x7b\xb3\x26\xbe\xb3\x6c\xfa\xff\xe5\x4f\x0a\x20\x42\x6e\ \xc4\xc6\xc5\x2f\x22\x80\x5e\x74\xb5\x22\x02\xb8\x7d\xfb\xf6\x47\ \x81\xfc\x0f\xb8\x17\x3d\x82\x06\x43\x13\x00\x3c\xa0\x69\x4d\x9f\ \x3e\xbd\xa2\xc4\x55\xd5\xcb\xae\x16\x0a\xc0\x52\xec\xb5\x6b\xd7\ \x9e\xad\x03\xc9\xd9\x23\xc8\x6d\xe8\x96\x50\x00\x1a\x07\x91\x5a\ \x8e\x36\x9c\x43\xfe\xbf\x5b\xb8\x14\x00\x9e\x7c\xea\xd4\xa9\x2f\ \xd7\x84\x2c\x77\x33\x08\x1a\x68\x02\x38\x77\xee\xdc\x17\x6b\x77\ \xbf\x30\x98\xcd\xc8\x9a\x71\x01\x58\x64\x36\xf9\xdd\x05\x8c\x0b\ \x60\xdf\xbe\x7d\xdf\xaf\x09\xd9\xe0\x9e\x98\x69\xc0\x05\x00\x53\ \xad\x5f\xac\x05\xb6\x2a\x33\x9b\x91\x35\x1f\xa6\x00\x5e\x81\x55\ \xad\x9d\xe5\xcc\x90\xb6\xf7\x0b\x61\x70\x53\x6f\xc2\x8e\xe1\x3f\ \xad\xcb\xd9\xd4\xaf\x72\xa6\x6a\xbe\x43\x13\x00\x10\x72\x08\xd2\ \xae\x7e\x03\x87\xc1\xdd\x20\xca\xe9\xf7\x7d\xf4\x2b\xff\xb1\xb1\ \xb1\x03\x07\x0f\x1e\xfc\x16\x6c\x16\xf5\x0d\x4c\xe0\x8d\xbf\xbb\ \x73\xe7\xce\x1f\xe7\x24\xa8\x60\x2f\xc1\x4e\x23\x5f\xa3\x3c\x60\ \x9f\x82\x1f\xf4\xeb\x7a\x4b\xbe\x3d\x46\x00\x2a\xc7\x7c\x48\x5b\ \xe1\x51\xf6\x16\x4c\xe8\x8d\x21\xbd\x33\x33\xbd\x0b\xec\x37\x53\ \x1e\xf0\x39\xe9\x27\xc2\xf4\x18\xc6\x92\x5d\x41\xa0\x20\x50\x10\ \x28\x08\x14\x04\x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\ \x08\x14\x04\x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\ \x14\x04\x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\ \x04\x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\ \x0a\x02\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x18\x75\x04\xfe\x07\ \x78\x59\x28\xd2\xb4\x2f\x47\xc6\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x0e\xd1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0e\x57\x49\x44\x41\x54\x78\x5e\xed\x5d\x69\xac\x55\ \x57\x15\xe6\xf1\x98\xe7\x79\xa6\x14\xe5\x31\x15\x28\x2d\x50\x40\ \x06\x83\x38\x30\x89\x04\x30\x0a\xc5\x21\x51\xb0\x41\x52\xa9\x24\ \x36\xad\x26\x46\x0a\xc1\x4a\xd1\x1f\x98\xa6\x46\x19\x04\x53\x31\ \xa6\x50\x9a\x34\x06\x6b\x2a\x04\xfd\x63\xfd\x53\x29\x54\x82\x4d\ \xb0\x0e\x84\x82\x6d\x7a\x7e\xf2\x03\xfc\xd6\xcb\xdd\x2f\xab\x8b\ \x3d\x9f\x73\xef\x05\x5d\x4d\x76\xee\xe3\xde\x3d\x7e\xdf\xb7\xd7\ \x5a\x67\x0f\xa7\x9d\x3a\xe9\x7f\x8a\x80\x22\xa0\x08\x28\x02\x8a\ \x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\ \xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\ \x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\ \x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\ \x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\ \x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\ \x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\ \xc0\xff\x27\x02\xbd\x7a\xf5\x5a\xd1\xb3\x67\xcf\x5f\xf4\xe8\xd1\ \xe3\x3a\x3e\x8b\x50\x42\xbe\x7f\x22\xcf\x53\x48\x63\xfe\xa7\x10\ \xeb\xdd\xbb\xf7\xb0\x7e\xfd\xfa\x3d\x3e\x60\xc0\x80\xd7\xfa\xf7\ \xef\x5f\x04\xd2\xbf\x91\xef\x27\xc8\xf3\xb1\xbb\x11\x04\x90\xb7\ \x3d\x44\x74\xc2\xef\x17\x90\x77\xde\xdd\x88\x43\x27\x90\xb8\x1a\ \x24\xfe\x9d\xc8\xc6\xdf\x65\xd3\xbe\x3b\x1d\x04\xcc\xf6\x33\x09\ \xc4\x06\xad\x81\xa5\xae\xdd\x77\x3a\x06\xed\xfd\x03\xe1\xcf\xdb\ \x48\x1f\x38\x70\x60\x91\x93\xb8\x78\x50\xfe\xbd\x41\x83\x06\x3d\ \x74\x27\x01\x01\xa2\x7e\xcf\xc9\x82\x10\x8a\xdc\x14\x23\x20\xb8\ \x89\x27\xef\xa4\xf1\x77\xf4\x05\xa4\xbf\xc8\x89\x97\x64\x83\xb8\ \x22\x27\xc9\x7a\x98\x20\xa6\x37\x13\x08\x90\xbc\x25\x97\xe8\x98\ \x72\x21\x31\x74\xeb\xd6\xad\xad\x99\xe3\xe7\xc4\x7f\xd5\x45\xbc\ \x24\x7c\xc8\x90\x21\x45\x4a\x92\xe5\x2d\x62\x38\xd7\x0c\x10\x10\ \xd3\xfc\x23\x86\xc4\xb2\x79\x42\x22\xc0\xef\x87\x9b\x31\x7e\x4e\ \xfe\x15\x61\xa2\xdb\xcd\xbc\x21\x4e\x92\x3d\x74\xe8\xd0\x22\x25\ \xc9\xf2\x2e\x41\x34\x30\x60\x04\xa7\xe9\x26\x1e\x82\x29\x64\x4a\ \xad\xc7\x23\x86\xf7\x1b\x2e\x02\x0c\x66\xb8\x6d\xd6\xdb\x88\x97\ \x84\x0f\x1b\x36\xac\x88\x4d\xb2\xac\x4b\x10\x35\xcb\x70\xa8\x9e\ \x40\xf4\xe9\xd3\x67\xb2\x8d\xc8\x7a\x7d\x67\x13\x88\xcf\x22\xd4\ \x73\xec\x1f\xa8\x1b\x60\x2f\x90\xe4\x4b\xe2\x39\x71\x92\xec\xe1\ \xc3\x87\x17\x31\xc9\x26\x12\x5e\x2f\x17\x83\x69\x7f\xf0\xe0\xc1\ \x6f\xd4\x03\x88\xbe\x7d\xfb\xce\x2d\x43\x34\x1e\x81\xaf\x4f\x9f\ \x3e\xfd\x85\x4d\x9b\x36\x3d\x71\xea\xd4\xa9\x4f\xdf\xbc\x79\x73\ \x11\xa5\x2b\x57\xae\x2c\x39\x72\xe4\xc8\x67\xd7\xac\x59\xb3\x7b\ \xdc\xb8\x71\x7f\x88\xb1\x12\x4d\x15\x01\x88\x5f\x67\xc8\x37\xfe\ \xd8\x45\xbe\x21\xd0\x46\xf6\x88\x11\x23\x8a\x50\xb2\x95\xe3\xa2\ \x30\x62\x90\x42\x80\x08\x2e\x57\x29\x02\xcc\xc4\x91\x98\xfd\x45\ \x6a\x02\xe9\xef\x6e\xd9\xb2\xe5\x9b\x35\xb2\x17\xe0\xb3\x0d\x69\ \xe8\xad\x5b\xb7\xba\x99\xfe\xe1\xef\xce\xf8\xae\x27\x3e\x47\xe0\ \x73\x86\x11\xc6\xbc\x79\xf3\x0e\x1a\x31\xdc\x31\x96\x00\xc4\x3f\ \xe0\x23\xdf\x10\x62\x23\x5e\x92\x3d\x72\xe4\xc8\xc2\x97\x6c\xe2\ \xe0\x82\xf0\x09\x81\x04\x59\xa5\x08\x52\x89\x87\x20\x2f\x5f\xbb\ \x76\x6d\x09\xc8\x24\xd2\x07\xe5\x88\x11\x82\xb8\x97\xc4\xb0\x6d\ \xdb\xb6\x47\x49\x08\xae\x78\xc1\x65\x0d\x72\xda\x0c\x95\x69\xb1\ \x91\x6f\x66\x9f\x8b\x7c\x43\xa4\x8f\xec\x51\xa3\x46\x15\x26\xc5\ \x88\x22\x56\x08\x10\xc1\x0b\xa1\x41\x85\x7e\x87\xe9\x2f\x78\x0a\ \x89\x61\xcf\x9e\x3d\x5f\x06\x71\x0f\x81\xc0\x96\x50\xdd\x31\xbf\ \xa3\x9e\x81\x24\x84\xd9\xb3\x67\xff\x3c\x45\x04\x58\x2b\x38\x11\ \x53\x7f\x74\x1e\x9b\xcf\xe7\xe4\xcb\x59\x6f\x23\x9e\x13\x9d\xf2\ \xb7\x14\x05\xb7\x0e\x46\x0c\xa6\x7d\x8b\x5b\x58\x15\x3d\x48\x91\ \x11\x63\xfe\x8d\x14\x80\x4b\x0c\xc0\xe2\x2d\x22\x0a\x84\xf5\xc9\ \x6d\xcf\x57\x0e\x75\x8f\xbf\x7c\xf9\xf2\xd2\x14\x77\xd0\xbd\x7b\ \xf7\x7b\x2b\xe9\x0b\x80\x38\x67\x1e\xf5\xe4\x23\x1e\x01\x1e\x22\ \x5f\x92\x3d\x7a\xf4\xe8\x22\x36\xc9\xb2\x5c\x0c\xb1\x42\xc8\x01\ \x01\xfe\x7b\x10\x52\x61\x92\x4f\x08\x93\x26\x4d\x7a\x99\x66\x7d\ \x4e\x3b\x29\x65\x6a\xf1\xc2\x22\x29\x82\xba\x06\x85\x20\xfe\x7e\ \x97\xe9\xe7\x66\xdf\xcc\x44\x22\xc5\x90\xc4\xc9\x93\x84\x8f\x19\ \x33\xa6\xf0\x25\x9b\x40\x5c\xae\xc2\x08\xc1\x63\x0d\xde\x4b\x01\ \x9a\xf2\xd2\x98\xb9\x00\x5c\x42\x98\x32\x65\xca\x4b\x20\x7f\x4a\ \x6a\xfd\x65\xf2\x93\xa5\x41\x5c\xf0\x3e\x17\x82\x47\x04\x07\xca\ \xb4\xd5\x0e\x04\xcd\x7e\x1e\xf1\x93\xe9\x77\x91\x2f\x05\xc0\x89\ \x0c\x91\x1e\x2b\x08\x5b\xbc\x10\x12\x01\xfa\xbb\x30\x16\x08\x90\ \xfd\xc9\x18\x01\xa0\x1f\xaf\x63\x56\x4e\x8e\xad\xb7\xca\x7c\x68\ \x77\x61\xa4\x00\x8a\xec\x76\x01\xc4\x13\x5c\x00\xfc\x71\x4f\x9a\ \x7e\xee\xf3\x0d\x41\x2e\xf2\xc7\x8e\x1d\x5b\xc4\x26\x29\x0a\x53\ \xa7\xcd\x1a\x84\x44\x10\x0b\x84\xdc\xaa\x96\x96\xc0\xb8\x03\xcc\ \xc4\x07\x62\xeb\xac\x47\x3e\xb2\x04\x46\x04\x3e\x37\x80\x58\xe0\ \xd7\x59\xed\xd3\xc0\x73\x04\x40\x2e\x80\x08\xf2\xcd\xfe\x18\x01\ \xb8\xc8\x97\x22\x30\x2e\x27\x24\x00\x08\x78\x6d\x08\x08\x58\xba\ \x69\x5c\x00\x1e\xf2\x17\x85\xea\x6a\xc4\xef\x2b\x57\xae\xfc\x7e\ \x68\xbf\x00\x4f\x04\xe9\x56\x00\x66\xff\x4b\xae\xc8\x3f\xd6\xf7\ \x1b\xa2\x38\x91\x31\xc4\xcb\x3c\xbc\x3c\x17\x55\x3d\xac\x00\x04\ \xf0\x2f\x9f\x05\xa0\xd9\x3f\x75\xea\xd4\x97\x1a\x41\x6e\x4c\x1b\ \xb0\x02\x23\x63\x04\x00\x11\x6c\x88\xa9\xaf\x23\x8f\x9c\xfd\x26\ \xfa\x37\xfe\x9f\x47\xfe\xf2\x91\x8f\xcf\xfe\xb2\xe4\x73\x31\x98\ \xba\x6c\x22\x90\x4f\x07\xae\x80\x10\xf9\x86\xf8\x80\x30\x4f\x3b\ \x2e\x2b\x40\x02\x00\xe8\x93\x92\xc0\xac\x73\xe6\x63\xc7\x8e\xad\ \xf3\x89\x80\x2c\x40\xaa\x15\x68\x8d\x31\xff\xbe\xc8\x5f\xce\xfe\ \x9c\x99\x6f\x2b\x13\x23\x82\x80\x2b\xf8\x9d\x8b\x0f\x90\xbf\xd2\ \x26\x00\x1e\x10\x62\x3d\xbf\xda\x05\x96\x0a\xc4\x81\x80\xb0\x47\ \xa5\x02\x00\xf9\x3f\x0a\x59\x00\x13\x04\xa6\x88\x80\xc8\xcb\x15\ \x42\xc8\x0d\xc4\xc6\x01\x64\xc1\x5c\x98\x63\x4c\x7f\x26\x01\xb8\ \x5c\x40\x6d\xf6\x4f\xac\x80\xb3\xca\xab\x58\xbb\x76\xed\x77\x6d\ \x22\x30\xb3\x9f\x3e\x11\x0c\x7e\x2a\xaa\x61\x13\xf8\x94\x09\x00\ \xab\x76\x03\x15\x0b\xa0\x63\x33\x86\x03\xc2\xcf\x35\xb8\x5c\x40\ \x14\x80\x4d\xc8\x04\xb7\x34\x3c\x24\x00\x8c\xe9\x64\x54\xd7\x48\ \xe9\x31\x2e\x80\xe2\x00\xb2\x00\xbe\x47\x40\x19\xc9\x57\x61\x01\ \xa8\xce\xd4\xc7\x41\xbe\x44\x8c\x7e\x3f\x66\x03\x22\xe4\xff\x17\ \x2c\x58\xf0\xd3\x28\x00\x9b\x94\x29\x24\x80\xa8\x38\x00\xc1\x5e\ \x7f\x9b\x00\x72\x83\x40\x22\xaa\x8a\x40\x30\x64\x01\xc8\xe2\xf8\ \xdc\x00\x17\x00\xf2\xbd\x2e\x39\xc2\x98\x07\x87\x04\xb0\x7f\xff\ \xfe\x07\x9b\xc4\x6d\x54\xb3\x58\x95\x3c\x2e\x45\xc0\x5d\x40\x94\ \x00\x00\xd4\x17\xa4\x00\xcc\x4a\x20\x2d\x04\xb9\x36\x80\x6c\x4f\ \x02\xa1\xb5\x00\x43\xaa\xef\xb1\xaf\x2c\xf1\x64\xa5\xe4\x06\x11\ \x8d\x43\x22\x8a\xfe\xaf\x95\xfe\x5f\xee\x05\xf0\x7d\xfc\x28\x46\ \x1a\x9c\x69\xf9\xf2\xe5\x9b\xb9\x00\x84\xff\xa7\x18\x20\xbc\x1e\ \x80\x19\xfb\x63\x2e\x00\x19\x07\x84\x76\x00\xe5\x3e\x40\x3d\x96\ \x82\xa9\xce\x9c\xe5\x60\xd3\x77\x9b\x00\xda\xda\xda\xbe\xc7\x05\ \x60\xdb\x08\x6a\x30\x9f\xc9\xcd\xed\xdd\xbb\x77\xbc\x11\x80\x9c\ \xf9\x44\x7e\x94\x00\x30\x13\x5e\xf1\x09\xc0\x58\x81\xd8\xbd\x80\ \x58\x2b\x10\xbb\x0f\xc0\xc9\xe7\x66\x9f\x84\x17\x5a\x09\xf4\x09\ \x60\xfc\xf8\xf1\x87\x7c\xcf\xfe\x84\x49\x32\x23\x0d\x2e\x00\x0b\ \xd5\x85\x04\x20\xc9\xaf\x3d\x01\xc4\x09\x00\xc4\x5e\xa0\x43\x0f\ \xa9\x22\x30\x01\xa1\x0c\x0a\xcd\xb2\xb0\x6f\x67\x30\xb4\x35\x5c\ \xc5\x96\x30\x91\x6f\xf6\x32\x28\x9e\x91\xdc\xc0\x02\x1c\x31\x02\ \xb0\xed\xfc\x11\x26\x0d\xe6\x33\xab\x39\x1f\xf9\x51\x16\x00\x02\ \x78\x83\x0b\xc0\xb7\x1e\x10\xbb\x2b\x68\x13\x81\xb4\x0c\xa1\xed\ \x5f\x9f\xc9\xa7\x99\xef\x5a\xf9\x23\x4b\xc5\xc9\x27\x11\xd8\x04\ \x30\x61\xc2\x84\xf6\xdb\x4c\x36\xd3\x6f\x4e\x01\x65\x31\xd2\xe0\ \x42\x2e\xd3\x1f\xed\x02\xb8\x00\x7c\xc1\xa0\xcd\x15\xd8\xac\x00\ \xdf\x1e\x76\x09\x21\xe6\x74\x50\xca\xa9\x20\x57\xe0\x67\xc8\xb7\ \x09\x60\xe6\xcc\x99\xfb\x5c\x07\x40\xee\x22\x01\x74\xb1\x05\x7e\ \x86\x7c\xdc\x24\x0a\x5b\x31\x72\x01\x74\x08\xd1\x58\x01\x97\x08\ \xf8\x63\xa1\xb4\x04\xae\x13\x42\x31\xe7\x03\x7d\x44\x4b\x1f\x4f\ \xb3\x3e\xe6\x94\x30\x27\xde\x3c\xea\xc9\x89\x39\x7f\xfe\xfc\xad\ \xbe\xb3\x7f\x84\x49\x83\x27\x73\x72\x73\x74\x74\xdd\x90\x2d\x3f\ \x89\xfc\x28\x01\xe0\x6c\xfa\x6f\x5d\x02\x90\xbb\x83\x29\x22\xe0\ \xb1\x41\xe8\x38\xb8\xeb\x77\xd7\x61\x50\xdb\x8c\x97\x3e\x9f\xfa\ \xca\x9f\xf3\x25\xba\x1b\x36\x6c\x98\xef\x12\x80\x39\x9e\x9d\xcc\ \x48\x83\x0b\xe0\x10\xec\x6e\x9b\x00\x0c\xf9\x51\x02\x98\x36\x6d\ \xda\xb3\x46\x00\x36\x2b\x10\x7b\x27\x80\x1f\x18\xe1\xae\x81\x93\ \x18\x12\x82\xeb\xf2\x88\x6d\xd6\x1b\x5f\x6f\xf3\xf7\x92\x7c\x1a\ \x83\xe4\x86\xce\xe6\x1b\x01\xf0\x93\xbf\xe2\xa2\xc6\xe7\x1a\xcc\ \x69\x52\x73\xf4\x72\x09\xd7\xcc\x8f\xb6\x00\xcb\x96\x2d\x7b\x98\ \x4e\x99\x98\x81\x4b\x11\x98\xa0\xd0\x65\x0d\xf8\x62\x11\x77\x0d\ \xf2\xd8\x78\xec\xd5\x30\x79\xda\x37\x74\x33\xc8\x66\xee\x6d\xcf\ \xf7\x36\x64\x0d\xf1\x9c\x74\x7e\xec\x0a\x63\x7f\x33\x89\x91\x06\ \x67\xe6\xbe\x9e\xcf\x7a\xf3\x37\x26\xc2\xf9\x60\x97\xe8\x1c\xba\ \x19\xb4\xcb\x12\xc4\x88\x40\x0a\xc1\x26\x86\x94\x4b\xa2\xb6\x5b\ \x40\xae\xd9\xce\x67\xbc\x8d\x7c\x44\xfc\xaf\xda\x80\x80\xa8\xdf\ \x71\x91\x4f\x98\xd0\x33\x76\x10\xc0\x26\x65\x00\xc9\x13\x6d\xa4\ \xf3\xef\xe6\xce\x9d\xfb\x74\x54\xf7\x68\xa0\x65\x44\xc0\x8f\x8e\ \xdb\x84\xc0\xaf\x72\xb9\x44\xe0\xbb\x42\xee\xbb\x32\x6e\xdb\xd1\ \x93\xd1\xfd\xea\xd5\xab\x1f\xb5\x01\x81\xcd\x9e\x76\xf7\xe7\x3b\ \x76\x8d\xdf\x56\x46\x81\xd8\xe0\x4c\x20\xfa\x2d\x97\x00\xba\x76\ \xed\x5a\x50\x82\x9b\x8b\x7b\xef\x10\x00\xbb\x6a\x44\xc0\x5d\x81\ \xcf\x1d\xd8\x5c\x82\x14\x02\x27\x2e\xf6\x1d\x01\xae\x17\x4a\x78\ \x5e\x1a\xf1\x81\xfd\x7c\xdb\xa2\x0e\xac\x9c\xf5\x54\x10\xbe\xbf\ \x27\xe6\xa4\x6d\x83\xb9\x8d\x6a\x2e\x44\x3e\x09\x20\xaa\x22\xca\ \x84\xc3\x05\xdf\x36\x6b\xca\xdc\x12\x70\x97\x60\x13\x03\x77\x0d\ \x5c\x10\xfc\x52\x49\xce\x2b\x62\x4c\x19\xdb\x7b\x86\x42\xe7\xf7\ \x6c\x81\x9d\x0f\x88\xc8\xf3\x75\xf3\xa3\xc1\x6c\x40\xc6\x2e\x5d\ \xba\x9c\x33\xb3\xdc\xf5\x89\x95\xce\x17\xa3\xbb\x02\x53\x31\xcc\ \xf5\xce\x1b\x97\x45\x30\xeb\x05\xfc\x30\x09\x27\xa7\x82\x97\x44\ \xb5\x3f\xc6\x49\xc2\x5d\xab\x77\xae\x88\x7e\xd6\xac\x59\x47\x7d\ \x40\xb8\x4e\xd9\x26\x6f\xab\x46\xa3\x5d\x3a\x63\xbf\x10\xf9\x35\ \xf3\x9f\x76\x92\x09\x44\xbe\x2d\x67\x83\xb4\x06\xb6\x20\x51\x0a\ \x41\x5a\x05\x1b\x81\xa9\xdf\x85\x6e\xec\xc8\x0b\x9c\x3c\xb0\x83\ \x99\xff\x90\x0f\x72\x79\xca\xd6\xb5\xb6\x0e\x93\x7b\xa6\x34\x75\ \x15\x54\x10\x22\x1f\xd6\x81\x16\x80\xde\x49\x6e\xea\xf8\xf1\xe3\ \xcb\x6d\xe6\x90\xfb\x48\x0e\x2c\x07\x5d\xde\xa3\xb3\x11\x56\xf6\ \xbb\xd0\xad\x5d\xdb\x8b\x16\x20\xb4\x2b\x31\x40\x4c\x9c\x38\xf1\ \x64\x68\x53\x85\x1e\xb9\x00\xec\xfa\x98\xfa\xea\x95\x07\xe4\xfe\ \xc5\x26\x00\x22\x9d\xa7\x4b\x97\x2e\x2d\x49\xee\x03\x1d\x7e\xe0\ \x20\xb8\x7c\xa3\x4b\x10\x32\x5e\xf0\x09\x24\xf6\x06\xae\xed\x6a\ \x76\xca\x1b\x35\x62\x81\xa0\x63\xdf\xa1\x25\x55\x13\x74\x21\xdf\ \x84\x64\x70\x2b\x28\xd0\xda\xda\x7a\x50\x12\x6d\xfb\x37\xfa\x79\ \x15\x5c\xb6\x66\x35\x79\xf4\xe8\xd1\xf5\x04\x44\xaa\x10\xf8\x42\ \x92\x24\x28\x74\xbf\x3e\x86\x64\xdf\xb3\xba\x79\x5e\xb7\xb8\xaf\ \x6b\x29\x40\xac\x58\xb1\xa2\x63\x59\x35\x14\x61\xe3\xf7\xa9\x59\ \x00\x67\x16\x02\xf9\x3f\x8b\x21\x9f\xf2\x40\xcc\x1f\xc9\x6c\xa6\ \x53\xa7\xda\x79\xf3\xab\x52\x04\x24\x08\x5f\xb4\xec\x7a\x91\x41\ \x99\x77\xec\xf8\xde\xa8\x15\x8a\xdc\xe9\x77\x7a\x5b\x47\x0a\x10\ \x14\x0b\xd8\x88\xf7\xf8\xdc\xaf\xa4\xd4\x9f\x9b\x17\xe4\xff\xd1\ \x47\x3e\x7e\x2f\x4c\x9a\x31\x63\xc6\xe1\xdc\x76\x3a\xca\x91\x82\ \xb8\x39\x94\xbe\x31\x06\x7c\xf9\x48\x99\xfa\x7a\xb4\x98\x0b\x90\ \xae\x7e\x50\x7f\x71\x7f\xff\x78\x0e\x10\x74\xf9\x92\x44\x10\x13\ \x68\x11\x29\x00\xfe\x4f\x39\xed\x44\x96\xe9\xc9\xc9\x8d\xf9\x9b\ \x5e\x2a\x11\x59\xb7\x3f\x1b\x56\xce\x76\x12\x10\xd2\x2f\xda\x02\ \xa5\x14\x41\xd4\x23\xaf\xad\x4f\x00\x22\xed\x11\x88\xc1\xb1\x7d\ \xfb\xf6\xaf\x4b\x01\x84\xcc\x6f\xe7\xce\x9d\x37\x56\x02\x7c\xad\ \x12\x90\xfd\xab\x18\xc2\x79\x1e\x12\x6f\x65\x7d\xa0\x4b\x07\x88\ \xa0\xff\xc6\x4d\xa2\x2d\x48\xb2\x81\x1f\x72\x17\x39\x22\x70\xb5\ \x63\xbe\xe7\x7d\x2b\x0b\x04\xdc\x60\x7f\x5c\x06\xfd\x65\x88\x74\ \xf3\x3b\x27\x01\x42\xf8\x5a\x09\x12\x5a\x50\xd7\xf3\xa9\xc4\x53\ \xfe\xd3\xa7\x4f\xaf\x28\xd1\xae\xbd\x28\x80\x9c\x43\x33\xc1\xe6\ \x17\x5d\x11\x73\x88\xa8\xb2\xbf\xbb\xda\x35\xdf\xef\xdb\xb7\x6f\ \x53\x15\x40\x60\xec\x1f\xc6\xd6\xf5\x6d\xbe\x37\x81\x9c\xb7\x21\ \x86\x6f\xa0\x2f\xfd\x02\xfd\x69\x43\x9d\x3f\x48\xa8\xb7\xc3\xdf\ \x53\x19\xb4\x51\xec\xd8\xb1\xe3\x11\x88\xb6\x6b\x15\xe3\xbe\xad\ \x0e\x9a\x4d\xdc\x1c\xfa\x76\x9f\x42\xe4\x54\xf9\xbb\xad\x1f\xe4\ \xb6\x00\x44\xaf\xaa\x80\xc0\xd8\x67\xe0\x7c\xc2\x99\x5c\x72\x72\ \xca\x11\xa1\x29\x89\xc8\x47\x3f\x43\x22\x2b\x07\x89\x14\x81\xf4\ \x8f\xa1\x2d\xc9\x7a\xfe\x6e\xfa\xb2\x78\xf1\xe2\x1f\x92\xdb\x2a\ \x37\xd2\xdb\x4b\xa3\xce\xe9\x88\xac\x0f\xc5\x90\x99\x42\x5c\x15\ \x79\x71\x6b\xe9\xf3\x75\x27\xdf\x40\x42\x22\x90\x3e\x31\x14\x29\ \xe7\x08\x25\xb5\x4e\xca\x8f\xa3\x5d\x8f\x47\x6f\x7b\x66\x28\x84\ \x22\x6b\x04\x86\x8f\x54\x41\x5a\x55\x75\x10\x1f\x74\xa2\x29\x63\ \x38\xf9\x45\xa8\x51\x04\x86\xe7\x63\x82\xa3\x1c\x22\x5d\x65\x7c\ \xed\x9d\x3c\x79\xf2\x33\xae\xad\xde\xfc\x91\xde\x5e\x92\x02\xc3\ \xda\x24\xb8\x5e\x15\x89\x39\xf5\xe0\x28\xfd\x2b\x65\x83\xdc\x52\ \xb8\x00\x88\x59\xab\x56\xad\xda\x29\x4d\x62\x8c\x28\xaa\xcc\x83\ \x05\xa6\x4b\x04\x44\xa3\xef\xee\xd1\xe2\xd2\xba\x75\xeb\x9e\xcc\ \x21\xcf\x56\xa6\xa5\xa5\xa5\x88\x4d\x67\xcf\x9e\x5d\x8e\xf6\xef\ \x2b\x45\x60\x15\x85\xc9\xd7\x12\xf8\x58\xc2\xbd\x18\xe3\x1b\xab\ \xce\xb3\x79\xf3\xe6\xc7\xe8\x09\xa5\x8a\xb1\xe4\xd4\x81\xb6\x87\ \xd2\xf8\xf1\x2a\xd7\xe7\x62\xc9\x2b\x93\x6f\xeb\xd6\xad\xdb\x6a\ \x62\xaf\x4f\xa4\x9f\x03\x02\x95\x41\xa7\x66\x1f\x38\x70\x60\x7d\ \x55\xb3\x21\x54\xcf\x9c\x39\x73\x9e\xab\x01\x31\x30\xb7\xcf\x55\ \x96\xa3\xd3\x44\xd4\x1f\x8a\x41\x20\xf2\xff\x94\x21\x59\x96\xc5\ \xce\xe9\xb9\xc3\x87\x0f\xaf\xaf\x8d\x77\x40\x95\xfd\xae\xb4\x2e\ \x0a\x44\xa8\x93\x27\x4e\x9c\x58\x83\x1d\xbe\xf3\x21\x12\x73\x7e\ \xc7\x15\xe8\xa7\x6a\x40\xdc\x53\x69\xe7\x2b\xaa\x8c\x62\x10\x72\ \x0d\xd4\x47\xf4\x75\x17\x96\xb1\xff\x9a\x23\x06\xf8\xf7\x53\x3b\ \x77\xee\xa4\x17\x4f\x53\x80\xf7\x20\xed\xcb\x54\xd4\xc5\xfa\x57\ \x83\x0e\x77\xa7\xf8\x80\x3a\xbf\x71\xe3\xc6\x6f\xc1\x47\xbf\x99\ \x43\x36\x95\xc1\x6c\x7a\x17\xd7\xb6\x0e\x16\x45\xf1\xd1\x1a\xf1\ \x23\xea\x3f\x82\x6a\x5a\xa8\xfd\x3f\x00\x66\xd7\x48\x5c\x74\xe1\ \xc2\x85\x4f\xd0\x13\x04\x89\x18\x2e\xe3\x59\x72\x1b\x4b\x97\x2e\ \x7d\x1a\x47\xf0\xbe\xf3\xcc\x33\xcf\x3c\x7c\xe3\xc6\x8d\xc5\x26\ \x2f\x3e\xa7\x22\xf5\xae\xa6\x27\x4d\xac\x05\x83\x18\x4c\xee\xc1\ \x0c\x6c\xd7\xae\x5d\x5f\xc4\xf1\xe4\xfd\x78\x29\xc4\xcb\x38\xeb\ \xf7\x1a\xc4\x71\x9e\x12\xcd\x14\x5c\x0b\x7b\x15\xcf\xd9\x07\x49\ \x34\x17\x2f\x5e\xfc\x78\x8d\xf0\x85\xf4\xee\xfc\xaa\x5e\xbf\xde\ \x44\x28\x68\x77\xb5\x95\x9e\x20\x48\x18\xe4\x32\x6a\x6e\x63\x14\ \xc5\x11\x55\x2e\x5a\x35\x73\x8c\xc1\xb6\x49\xd5\x48\x63\x31\xe0\ \xc9\xf8\xbc\x9f\x2c\x45\xcd\x5a\x90\x48\xee\x23\xb2\x49\x34\x29\ \x7b\xf7\xc1\x46\x35\x83\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\ \x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\ \x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\ \x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\ \x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\ \x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\ \x80\x22\xa0\x08\x28\x02\x8a\x80\x22\xa0\x08\x28\x02\x8a\x80\x22\ \xa0\x08\x28\x02\x8a\x80\x22\x70\xb7\x22\xf0\x5f\x42\xc8\x8d\x5f\ \xe0\xc4\x93\xd1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x10\x28\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\xae\x49\x44\x41\x54\x78\x5e\xed\x5d\x59\x72\x1b\ \x4b\x0e\x7c\x7e\xde\x25\xcb\xfb\xbe\xef\xe1\x7d\xb9\xfe\x7c\xce\ \x31\xe6\x00\x8e\xe0\x6f\x1f\xc0\x31\x0d\xca\x29\xa7\x53\x40\x15\ \xba\x45\x5a\x64\xb1\x1c\x51\x21\xb9\xd9\xa4\x58\xc8\x44\x02\xb5\ \x34\xea\x9f\x7f\xfa\xbf\x6e\x81\x6e\x81\x6e\x81\x6e\x81\x6e\x81\ \x6e\x81\x6e\x81\xd1\x02\x7b\x7b\x7b\xff\xbb\x72\xe5\xca\x0f\x6b\ \x07\x07\x07\xcb\x76\xf5\xea\xd5\x65\xbb\x76\xed\xda\xb1\x76\xfd\ \xfa\xf5\x1f\xd6\x6e\xdc\xb8\x71\xd4\x6e\xde\xbc\xf9\x83\xdb\xad\ \x5b\xb7\x7e\x68\xbb\x73\xe7\xce\x0f\x6d\x77\xef\xde\xfd\xb1\x0b\ \xcd\xeb\xbb\x67\x23\xb5\x23\xdb\x18\x76\xf7\x30\x01\x5e\xc0\x0f\ \x78\x1a\xb6\x55\x92\x8f\x1f\xb8\xd8\xdf\xdf\x1f\xc6\x37\x2d\xdb\ \xf8\x21\xcb\x36\x7e\xe8\x30\xbe\x76\xd4\xc6\x2f\x30\x58\x1b\xbf\ \xd4\x51\x1b\xbf\xf0\x80\x76\xfb\xf6\xed\x01\x6d\xec\xf0\xc0\x6d\ \x04\x79\xd0\x76\xef\xde\xbd\x61\x97\x9a\x67\x03\xb5\x13\xdb\x90\ \x6d\xcb\x36\x07\x0e\x8c\x8d\x61\x05\xdc\x80\xa3\x61\x6a\xd8\xa6\ \x08\xc0\xe0\xdb\x87\x31\xf8\x0a\x7c\x0d\x70\xee\xa8\x02\x7c\xff\ \xfe\xfd\xa1\xb7\xfb\xc7\x88\xcf\x36\x63\x52\x78\x84\x00\x19\x94\ \x08\xc0\xcd\x88\x00\x3c\x53\x04\x18\x3f\x68\xe1\x79\x3d\x03\x5f\ \x02\x1d\x5f\x9e\xc1\x56\x90\x1f\x3c\x78\x30\x78\xed\xe1\xc3\x87\ \xc3\x2e\xb4\xa8\xff\x6a\x27\xb6\x21\xec\x0a\x42\x44\x64\xf0\x88\ \x00\x3c\x0d\xdb\xaa\x02\x8c\x8c\x5a\x78\x5e\x0f\xa6\x29\xf8\xf8\ \x42\x35\xe0\xb9\xd3\x0a\xf2\xa3\x47\x8f\x86\x5d\x6c\x6a\x07\xb6\ \x11\x93\x21\x43\x04\xe0\xc2\x8a\x80\xb0\x00\x3c\x0d\xdb\x34\x01\ \xec\xcd\x91\xd7\x47\xa0\xf3\x97\x46\x67\xb8\x93\x0a\xf2\xe3\xc7\ \x8f\x07\xaf\x3d\x79\xf2\x64\x68\xb1\x45\xfd\x55\xbb\xb0\xcd\x60\ \x47\x8f\x10\x9e\x2a\x30\x11\x58\x0d\x8c\x04\x69\x02\x78\xe0\x6b\ \x42\x67\x7f\x1c\xcc\xc4\x97\xab\x81\xce\x06\x68\x11\xe0\x93\xf4\ \x89\x6d\xc3\x84\x28\x91\x01\xf6\x37\x2c\x34\x34\x18\x11\x4c\x0d\ \x98\x04\x29\x02\x8c\x6f\x5c\x70\x76\x6f\x1f\x64\xe0\xb3\xd7\xd7\ \x80\x47\x07\xd0\xa9\x92\x61\x9e\x3e\x7d\x3a\x94\xda\xb3\x67\xcf\ \x86\x6d\x6e\xb5\xfe\x95\x6c\x03\xfb\xc1\x9e\x20\x83\xaa\x42\x44\ \x04\x90\x00\x44\x30\x6c\xab\x21\x60\x1c\x8f\x2e\xec\x0d\x1c\xeb\ \x0d\x7c\x8e\xf1\xec\xf1\xf8\x52\x19\xd0\xd9\x18\x0a\xea\xf3\xe7\ \xcf\x87\x5d\x6a\xda\x7f\xb6\x8d\x47\x8a\x12\x19\x80\x87\x11\x81\ \xc3\x82\x39\x2e\x87\x04\xc3\x76\x12\x01\x3c\xcf\x8f\xc0\x8f\xbc\ \xdd\x03\x5d\x81\x7e\xf1\xe2\xc5\xb0\x8b\x4d\xed\x00\x52\x94\xc8\ \xc0\x44\x60\x45\x50\x12\x70\x48\x80\x12\xa4\x08\x30\x82\xbe\x60\ \xd9\xd7\x58\x6f\xf2\xc3\x5e\xef\x01\x8f\x0e\xa0\x43\xdc\x51\x06\ \xfa\xe5\xcb\x97\x83\xb6\x57\xaf\x5e\x0d\x2d\x37\xaf\xcf\x6c\x13\ \xb6\x95\x12\x82\x95\xa1\x44\x04\x0d\x09\x50\x02\xc3\xb6\xaa\x00\ \x23\x73\x16\x91\xe7\x4f\x05\xdf\x03\x3e\x03\xf8\xeb\xd7\xaf\x87\ \x16\x9b\x47\x6c\xb5\x07\xc8\xa0\x44\x80\x53\x4d\x21\x81\x26\x87\ \x86\xed\x24\x02\xc0\xfb\x4d\x5e\x00\x3e\xc7\x7a\xfe\x32\xf6\x05\ \xd5\xe3\xd1\x19\xee\x24\x1b\x81\x41\x7e\xf3\xe6\xcd\xb0\x4b\x8d\ \xfb\xce\x36\x61\x5b\x29\x19\x58\x11\x94\x08\x9c\x28\x1a\x56\x86\ \x19\x72\x02\x0b\x07\xbf\x9c\xba\x4e\x80\x11\xf4\x05\x92\x3e\xfb\ \x00\x05\x5f\x25\x9f\xe5\x1e\xac\xb5\x2f\xee\x81\x8e\x4e\x2b\xd0\ \x6f\xdf\xbe\x1d\xb4\xbd\x7b\xf7\x6e\x68\xa9\x79\x7d\x54\x3b\xc0\ \x3e\x20\x84\x92\x01\xf6\x35\x22\xa8\x22\x68\x48\xf0\x48\x60\xd8\ \x56\x15\x60\x04\x7c\xc1\x19\x3f\x8f\xed\x8d\x65\xf6\x87\xc0\xbe\ \x08\x7c\x10\x00\x1d\xf1\x80\x6f\x1d\xf0\x1a\x79\xb5\xff\x4c\x06\ \x8f\x08\x9e\x1a\x78\x24\x30\x8c\x2c\x47\x03\x6e\x3c\x32\x30\x6c\ \xd3\x04\x88\xbc\x9f\xc1\x67\xc9\x67\xb9\x8f\x80\xe7\x4e\xb3\x81\ \xde\xbf\x7f\x3f\x68\xfb\xf0\xe1\xc3\xd0\x52\xf3\xfa\xc8\x36\x60\ \xdb\x80\x0c\x35\x22\x78\x21\xc1\x1c\x94\x49\xc0\xa1\x20\x4d\x80\ \xac\xf4\xdb\x17\x50\xd9\xaf\x81\x1f\x01\xdf\x12\xd8\x99\xbe\x30\ \x21\x3c\x22\xd4\x48\xa0\xe1\x00\x8e\x59\x0a\x05\x29\x02\x8c\xd2\ \xb1\x50\x02\x78\x71\x1f\xe0\x47\x9e\x8f\x0e\x18\xb3\x3d\xd0\xd9\ \x48\x1f\x3f\x7e\x1c\xbc\xf6\xe9\xd3\xa7\xa1\x85\x16\xf5\x8f\x6d\ \x00\x42\x28\x19\x98\x08\x9c\x1b\x70\x48\x40\x4e\xa0\x24\x40\x28\ \x80\x0a\x18\xb6\xd5\x10\x00\x02\x70\xd6\x5f\x8a\xfb\x9c\xf0\xd9\ \x17\xe4\x78\x0f\x59\x43\xa7\xd0\xc9\x1a\xf8\x2d\x80\xee\xf5\xc1\ \x23\x42\x89\x04\xb0\x9f\x91\x80\xc3\x01\x92\x43\xb3\xbd\x29\x41\ \x94\x14\x72\x28\x30\xa7\x4e\x11\x60\x64\xcd\xc2\xcb\xfc\x35\xf6\ \xdb\x1f\xf6\x92\x3d\xcf\xf3\x15\x78\x36\x84\x1a\xea\xf3\xe7\xcf\ \x43\xcb\x4d\xfb\xcb\xb6\x00\x19\x54\x0d\x8c\x08\x25\x25\x60\x12\ \xb0\x0a\x68\x2e\x60\xd8\x56\x15\x40\x09\xc0\xde\x6f\x1f\x1e\xc5\ \xfd\x9a\xe7\xa3\x73\x11\xf8\x2d\x83\xee\xf5\x8d\x89\x10\x91\x00\ \xca\x59\x52\x02\xa8\x00\x48\xa0\xf3\x03\x1c\x06\xd2\x04\x28\xc9\ \x3f\xc7\x7e\x93\x22\xc8\x7e\xcd\xf3\x3d\xe0\xd5\x30\x5f\xbe\x7c\ \x19\x76\xa1\x69\xbf\x41\x06\x25\x42\x46\x09\x0c\x03\x0d\x05\x91\ \x0a\x9c\x0a\x01\xd4\xf3\x99\xf9\x6c\x88\x5d\x00\x9e\xfb\xc8\x7d\ \xf7\xd4\x80\xc3\x01\x2b\x81\x86\x82\x95\x13\x60\x8c\x1b\x0b\x56\ \x80\x5a\xec\x37\xe9\x8f\xbc\x3f\x02\x1f\x9d\x57\xd0\xbf\x7e\xfd\ \x3a\xec\x42\xd3\x7e\xc3\x1e\xaa\x04\xab\x20\x01\xe7\x01\x86\x6d\ \x35\x07\x60\x02\x68\xf6\x3f\x55\xfe\xa7\x10\x60\x17\x80\xe7\x3e\ \x7a\x6a\xb0\x0e\x02\x18\x86\xc8\x03\xd2\x04\xb0\x37\x78\xd3\xbe\ \xc8\xfc\x39\xfb\x87\x02\xf0\x78\xdf\x62\x17\x83\x8f\x8e\x79\x9e\ \xaf\xc0\x7f\xfb\xf6\x6d\x68\xb9\x69\x7f\x6b\x44\x28\xa9\x80\xd9\ \xde\x72\x30\x84\x01\xe4\x02\x36\x45\xec\xe5\x01\x27\x26\x00\x14\ \x00\xe3\x50\x4e\x00\x3b\x01\x72\xc4\x5d\x17\x01\x0c\x93\xda\x70\ \x30\x45\x80\x51\x32\x16\xaa\x00\x58\xea\xd5\xb1\x3f\x7b\x3f\x08\ \x90\xf5\x7e\x36\x84\x7a\xfc\xf7\xef\xdf\x87\x16\x9b\xf6\xd3\x0b\ \x09\x5e\x3e\xa0\x2a\xa0\xc3\x42\x56\x01\x25\x01\xaf\x0d\x18\xb6\ \xd5\x1c\xc0\x23\x00\x8f\xff\x55\xfe\x35\x04\x28\x01\x6c\x68\xc3\ \x21\x80\x25\xaf\x44\x82\x96\xc3\x80\xf5\xad\x94\x0f\xd4\x72\x01\ \x4c\x0c\xe9\xec\x20\x0f\x07\xbd\x10\xb0\x72\x02\x78\x21\x80\x67\ \xfd\x30\xae\x8d\x72\x80\x5d\x8b\xff\x20\x75\x14\x06\x4a\xa3\x01\ \x9e\x13\x60\x02\xe8\xfa\x80\x4e\x08\xad\x44\x01\x7a\x08\x58\x4d\ \x48\xda\x8a\x10\x60\x89\xc2\xd4\x1c\xc0\xe6\x01\x38\x07\x40\x18\ \x98\xa2\x00\x91\xe4\x6f\x7b\x2e\x10\xf5\x2b\x1b\xff\xcd\x86\x96\ \x03\x78\x0a\x80\x45\xa2\x6c\x0e\x30\x39\x09\xcc\x4e\x02\xcd\x19\ \x01\xc0\x00\xbb\x92\x00\x82\xc8\x91\x0a\x20\x37\xca\x24\x81\x36\ \x33\xa8\x61\xa0\x34\x23\x88\xc9\xa0\xd9\x39\x40\x29\x04\x78\x49\ \xe0\x2a\x15\xa0\xd5\x64\x70\x15\x0a\x50\x4a\x02\x31\x17\xd0\x73\ \x80\x0d\x1a\x52\x6e\x45\x0e\x90\x1d\x06\xea\x4a\xe0\x9c\x1c\xc0\ \x64\x6f\x17\x87\x82\x73\xa6\x84\x4b\xa3\x00\x6f\x83\xc8\xec\x61\ \x20\xd6\x02\xbc\xa9\xe0\xec\x5a\xc0\x94\xa1\xa0\x92\xa0\x45\x42\ \x44\xeb\x1c\xb5\x69\xe0\x93\x26\x80\x46\x02\x84\x00\x5b\xe0\x4b\ \x25\x81\xde\x28\xc0\x3e\x28\x33\x14\xe4\xad\x5f\xd9\x85\x20\xcf\ \x38\xbb\x10\xf7\xd1\xef\x52\xf2\x07\x02\x60\x14\xa0\xcb\xc2\xba\ \x16\xb0\x92\xa9\xe0\x39\xcb\xc1\x99\x05\x21\x9d\x11\xdc\xd5\x25\ \xe1\x68\x29\xd8\xec\x51\x9b\x01\xd4\xec\x3f\x43\x80\xbf\xb2\x1c\ \x3c\x97\x00\x7d\x3f\xc0\xe1\x0e\xa8\x39\xfb\x01\x32\x23\x00\x84\ \x80\xc9\xcb\xc1\xd1\x96\x30\x7d\x10\xa4\xb4\x25\x2c\xda\x08\xaa\ \xd3\xc2\xd6\xf9\xd2\x6e\xa0\x6d\xdf\x27\x50\xea\x9b\xb7\x2b\x08\ \x93\x67\xde\x06\x51\x6f\x73\xa8\x8e\xff\x0d\xa3\x68\x4b\x58\x2a\ \x07\xe0\x4d\xa1\xb5\x44\xd0\xdb\x17\xc0\xb3\x82\x26\x59\x35\x22\ \x18\x21\xbc\x4d\x93\xad\x6d\x11\xcb\x6e\x0c\x9d\xb2\x33\x58\xf7\ \x01\x78\xcf\x07\x18\x86\x78\x4e\x30\xbd\x27\xd0\xb6\x85\x47\x9b\ \x42\xbc\x91\xc0\x2a\x37\x86\xd6\x14\x61\x9b\x89\x51\x22\xc1\x9c\ \x0d\xa1\xa5\x29\x60\x1e\x01\x18\x96\xbf\x30\xad\x2f\x07\xcf\x79\ \x2e\x60\xca\xee\x60\x63\x78\xe9\xb9\x80\x48\x11\x5a\xd8\x36\x5e\ \x7b\x58\x64\xaa\xf7\x4f\xd9\x10\x9a\x26\xc0\xdc\x27\x83\xf8\x99\ \x40\xde\x24\xaa\xeb\x04\xbc\x5f\x40\xc9\xa0\x8b\x47\xad\x3d\x21\ \x74\x92\x27\x83\x78\xe1\x27\xf2\xfc\x68\x2b\x98\x85\x80\xf4\x93\ \x41\x19\x02\x44\xc9\xa0\x17\x0a\x3a\x01\x7e\x3f\xdf\xb8\x4e\x02\ \x44\xf1\x1f\x23\x80\xc9\x04\xc8\x3c\x1e\xa6\xf9\x00\x87\x02\xdd\ \x2e\xee\x11\x41\xd5\xc0\x7b\x7a\x28\x7a\xb0\x72\x1b\xaf\x7b\x4f\ \x0d\x7b\x4f\x09\xf3\x96\xaf\xcc\x73\x81\x35\xf0\x67\x3d\x1c\xda\ \x09\xe0\x3f\xb1\x7c\x12\xe2\x6d\x05\x01\x50\x21\x04\x8f\x88\x63\ \x34\x10\x0d\x09\x23\x15\x88\xc2\x41\xf4\xb8\xb8\xf7\xe4\x70\xe6\ \x39\xfb\x6d\xbb\x47\x0b\x45\x64\x8a\x44\x68\xc9\x18\xde\xfb\x17\ \x79\x3f\x66\x00\x67\x15\x88\x88\x8a\x43\x45\x75\x02\x6a\xb5\x02\ \x38\x1c\x60\x9e\x40\x1f\x1d\xd7\x47\xc8\xbd\x8a\x1a\x2d\x5c\xd3\ \xd2\x31\x5e\x65\x10\x95\x7d\x6f\xef\x7f\x54\x1d\x64\x25\x15\x42\ \x3a\x01\x8e\x97\xac\x59\x15\xf9\x36\x9e\x00\x99\x2a\x61\xa5\xf2\ \x70\x5a\x1a\x4e\x4b\xc6\x94\xd4\x40\xc3\x43\xad\xd0\xd2\x36\xbe\ \x9e\x29\x0e\x85\x45\x1e\x78\xbe\x37\xe3\xa7\xd2\xaf\x13\x3f\xb3\ \xab\x84\x45\x04\x88\xd6\x07\x78\xa9\x58\x6b\x07\x68\xf5\x10\xae\ \x20\x32\xa5\x64\x9c\x57\x62\x6d\x5b\xaf\x45\xa5\xe1\xa2\x12\x71\ \x53\x6b\x05\x72\x85\x30\xad\x15\x98\x2a\x13\xd7\x09\x70\xbc\x66\ \xe1\x2a\xc9\xb6\xf1\x04\xe0\x52\xb1\x5e\x2e\xe0\xad\x11\x40\x05\ \xb4\x5a\xa8\x57\x17\x38\xaa\x14\x1a\x29\x42\x6b\xd5\x43\xbd\x12\ \xb8\x5e\xa5\x50\xad\x1f\x5c\xab\x1b\x8c\xac\x5f\x0b\x43\xa1\x5c\ \x6c\xba\x52\x68\xa6\x56\x70\x54\x2e\xb6\x16\x0e\xa2\x0a\xa2\x35\ \x52\xb4\x54\x37\xb8\x56\x2f\xd8\x2b\x1c\x1d\x95\x88\xe5\xb8\x1f\ \xd5\x06\xe4\xaa\xe1\x93\x6b\x05\x97\x4a\xc6\xea\xbc\x40\x54\x40\ \x92\x1f\x29\xef\x04\x38\x7c\x9c\x5b\x9b\x57\x1f\x58\x6b\xff\x78\ \x49\xdf\x5a\x08\x90\x2d\x17\x5f\x53\x01\xaf\x78\x74\x89\x0c\xfc\ \xc8\xb9\x67\xa4\x56\xae\xad\xaa\x5c\x7c\x0d\x7c\x2d\x14\xfd\xeb\ \x08\x80\xfa\x72\x30\x08\xe0\x9d\x19\x30\xf7\xb0\x08\xad\x22\xce\ \xd5\x45\xf5\xa0\x08\xcf\x40\x2d\x5d\xd3\xfe\xb2\xa7\x73\xf5\x4f\ \xaf\xf6\x5f\x54\x0d\x94\xe3\xbe\x57\x25\x9c\x4e\x7f\xe9\x04\x38\ \x6d\x32\x6d\x3c\x01\xf8\xcc\xa0\x29\x47\xc6\x44\x39\x81\x37\x42\ \x88\x14\x41\x43\x84\x67\xac\x6d\xbf\xe6\x9d\x8b\x04\x7b\x94\x32\ \x7d\xdd\xe7\xe7\x65\xfd\xea\xfd\x38\x27\x60\xd2\x91\x31\x9d\x00\ \xeb\x3d\xbf\x68\x6b\x08\x80\x93\xc3\x6a\x2a\xe0\x9d\x24\xa2\xd5\ \x45\xf5\x7c\x01\x3d\x53\x88\x3d\xa0\xf5\x93\xc3\xd4\xdb\x39\xd6\ \x7b\xc7\xc2\x78\x71\x9f\x87\x7c\x98\xf2\xad\x79\xbf\xe1\x99\x3a\ \x34\x8a\xcf\x0d\xcc\x1e\x1d\xa7\x67\x09\x21\x1c\x44\x44\x88\x08\ \xc1\x23\x07\xcf\x50\x2d\x5c\xf3\xce\x11\xe4\xb5\x15\xfd\x7d\xca\ \xd9\x81\xa5\x23\xe3\xec\x2c\xc8\xd4\xb9\x81\x9d\x00\xeb\x3d\xa8\ \x72\x6b\x08\x80\xd3\x43\x31\x1c\x44\x28\xd0\x43\xa2\xb1\x73\xc8\ \x53\x01\x56\x82\x9a\x1a\x70\xb2\x58\x3b\x6d\x73\xdb\x5f\x2f\x79\ \x3c\xc6\xf7\xea\xf9\x9a\xf4\xf1\x6a\x9f\x77\x60\x24\x8e\x8a\xe3\ \xe3\x63\x53\x0a\x60\xe7\xcb\xd6\xce\x0e\xf6\x48\xe0\x11\x41\x77\ \x13\xa1\x53\x19\x32\xd4\x8c\xd4\xda\xeb\x6c\x1b\x6c\xea\x60\xd0\ \x75\x95\x0f\x31\x3f\x0b\xbe\x61\x9a\x3a\x3b\xb8\x13\xe0\x74\x4e\ \x2e\xdf\x28\x02\xd8\x51\xe3\x50\x01\x9c\x47\xaf\xa1\x40\xcf\x13\ \xc6\x1e\xc2\x9a\x12\xf0\x14\xb2\x76\xba\x35\xaf\x8e\xfa\xa3\xfd\ \x66\x8f\x87\x7d\xb2\xa7\x86\x97\x4e\x0e\x87\xfc\x1b\x96\x93\x8e\ \x8f\x07\x01\x3c\x12\x78\xa7\x89\xf3\xf1\xb2\x1e\x11\x38\x3f\xd0\ \xc3\xa6\xd1\x61\xcd\x17\x3c\x23\xb5\x72\x8d\xfb\xec\x01\xce\x72\ \xaf\xc3\x3c\x3e\x16\x56\xc1\xe7\x83\xa2\x19\xfc\x4e\x80\xb1\x62\ \xf6\x26\x91\x67\xe3\x09\x70\x70\x70\xb0\x94\x0c\x63\x4e\x49\x05\ \x74\x92\x28\x52\x02\x0e\x0b\x9e\x1a\x94\x54\xc1\x33\xd6\xb6\x5f\ \x63\x79\xf7\xa4\x9e\xbd\x9e\x93\x3d\x4d\xf8\x30\xd5\xab\xc7\xc4\ \x7b\xde\x6f\x98\xa6\x92\xc0\x71\xf8\xb7\xb0\x9b\xe7\x90\xc0\xcb\ \x0b\x38\x24\xf0\x6a\x22\x4e\xb6\xe4\x9f\x91\x61\x5a\xbb\xee\xf5\ \x5d\x41\xaf\x01\x3f\x15\x7c\xc3\xd3\xb0\xad\x16\x8b\xee\x04\x78\ \xb8\x7c\x34\x7e\x9d\x6d\xe3\x09\x70\xe5\xca\x95\x23\x05\xd0\x50\ \x80\x09\x22\xac\x15\x78\xa3\x03\x56\x02\x0d\x0b\x9e\x22\x68\x88\ \x88\x0c\xd4\xd2\x75\xa8\x21\xff\x44\x82\xa7\x89\x1e\x27\x7b\x35\ \xcf\x37\x7c\x10\xba\x0d\x3b\x6b\xe6\xfd\x86\x69\x4a\x01\xc6\x37\ \x2f\xec\xe6\xa9\x24\x88\x88\xa0\x64\xf0\x08\x11\x91\xc2\x33\x52\ \x2b\xd7\x14\x6c\x8e\xef\x3c\xa7\x8f\x3d\x7d\x1e\xf0\x58\xe6\xe5\ \xd9\xbe\x08\x7c\xc3\xd3\xb0\xad\x86\x80\x4e\x80\xfb\xcb\x6a\x1a\ \xeb\x6e\x1b\x4d\x80\xfd\xfd\xfd\xa5\x02\xd4\x54\xc0\x0b\x07\xac\ \x04\x3c\x4a\x00\x93\xc1\x6e\xfd\xe9\x19\xa4\xe5\x6b\x91\x1d\xd8\ \xe3\xd9\xeb\x39\xd3\xf7\x3c\xbf\x24\xfd\x86\xa3\x61\x9a\x56\x80\ \x4e\x80\x7b\xcb\x8a\x1a\xeb\x6c\x1b\x4b\x80\x31\x69\x58\x18\x01\ \x94\x04\x18\x16\x7a\x49\x21\x2b\x01\x27\x87\xaa\x06\x9e\x22\xd4\ \x94\x21\x32\xd4\xb6\x5f\x57\x4f\xe7\xfd\xfb\x66\x27\x34\xcc\xee\ \xb1\xd7\x73\xcc\x8f\x3c\x1f\x89\x1f\xbc\xdf\xf0\x34\x6c\xab\x39\ \x80\xdd\xb4\xb7\xb7\xb7\x24\x40\x89\x04\x53\x89\xe0\x91\x01\x9d\ \x8c\x8c\xd1\xfa\x75\x06\x3a\x02\x7d\x0a\xf0\xc8\xf8\x3d\xf0\x0d\ \xd3\x4e\x80\x3b\x77\x86\x4d\x22\xd5\x46\x12\x60\x64\xcf\x52\x01\ \x3c\x15\x40\x52\xc8\xe1\x80\x95\x80\xf7\x11\x68\x58\xd0\xd0\xc0\ \xd2\x16\x19\xa2\xf5\xeb\x6c\x83\x48\xea\x23\xb9\xc7\x02\x0f\x8f\ \xf5\xd9\xf3\x59\xfa\x81\xa7\x61\x5b\x0d\x01\x9d\x00\xbf\xe3\xef\ \xba\x09\xb8\xb1\x04\xb8\x7c\xf9\xf2\x52\x01\x58\x05\xbc\x7c\xa0\ \xa4\x04\xaa\x06\x9e\x22\xf0\x5e\x83\xc8\x18\x2d\x5f\x47\xff\xf5\ \xa7\xd9\x8a\x1b\x26\x77\x74\x92\x87\x63\xbe\x17\xf7\x0d\x33\xe0\ \x68\x98\xa6\x14\x60\x94\x8e\x85\xdd\x8c\x36\x87\x08\x1a\x16\x3c\ \x32\x70\x07\x23\x43\xb4\x7e\x5d\x81\xce\x82\x3e\x15\x78\x60\x69\ \xd8\x56\x43\x40\x27\xc0\x0d\x5b\x36\xfd\x2b\x6d\x2b\x08\xc0\xe1\ \x20\x4a\x0c\x39\x39\xd4\xb0\x80\x24\x45\x65\x8c\xff\x5f\x32\x44\ \xcb\xaf\x95\x6c\x02\xbb\xf1\x4f\x2c\xd3\x6b\xb2\xe7\x25\x7c\x86\ \x15\x2b\xb9\xfd\x3e\x4b\x01\x3a\x01\xfe\x8c\xc7\xab\x24\xe4\x46\ \x12\x60\x64\xce\x1f\x39\x80\x97\x0f\x44\xc9\x21\xaf\x1f\x30\x5b\ \x23\x55\xc8\xa8\x43\xc9\x48\xdb\xfe\x9a\xe7\xe5\x3a\xac\xcb\x78\ \x3d\x27\x7b\x9e\xe7\x53\x3e\x57\xcf\x01\x8c\x00\x97\x2e\x5d\x1a\ \xac\xa9\x84\x68\x62\xa8\x44\xe0\x91\x02\xc8\xa0\xe1\x61\x0a\x31\ \x4a\x06\x6a\xe5\x35\xb5\x47\x09\x70\x96\x7a\xcc\xd4\x22\x49\x2f\ \x01\x0f\x3c\x0d\xdb\x6a\x12\xd8\x09\x70\xb8\x89\xe2\x6f\xb5\x8d\ \x23\xc0\xe8\xe5\x8b\x8b\x17\x2f\x2e\x15\x60\x8a\x12\x78\x6a\x10\ \x29\x42\x56\x1d\x4a\xc6\x69\xe5\x35\xb6\x85\xf7\x3b\x3c\x9d\x7f\ \xb2\xd7\x67\x3c\xdf\x70\x34\x4c\x0d\xdb\xaa\x02\x9c\x84\x00\x73\ \x48\xd0\x0a\x90\x73\xfb\x51\x22\x40\x06\xfc\xb5\x11\x40\x55\xa0\ \x94\x13\x78\xb9\x81\x37\x81\xe4\x75\xa8\xe6\x01\xad\xbf\xee\xd9\ \xa4\xe4\xed\x25\xc0\x81\x03\xab\x37\xbc\x7f\xb2\x02\xd8\x1b\xb2\ \xa1\xe0\x24\x04\xc8\x84\x89\x56\x49\x50\x03\x5f\xb3\x7b\x9e\xd6\ \x8d\x12\x74\xbb\xce\x04\x00\x8e\x69\x02\x8c\x6f\x5e\x5c\xb8\x70\ \x61\x09\x3e\x37\x65\x55\xe9\x0b\x44\x43\x47\x8d\x5d\x59\x95\xc8\ \x18\x6a\x1b\xef\x89\xec\x91\xc9\xec\xd5\xfe\x91\xd7\x03\x43\xc3\ \xd4\xb0\xad\xe6\x00\x9d\x00\x87\x1b\x61\xfe\x46\xdb\x48\x02\x8c\ \x8c\x59\x2a\x00\x9a\x2a\x81\x97\x1b\x64\xf2\x83\x9a\x62\x64\x8c\ \xd1\xd2\x3d\x35\x7b\xd4\x5e\x57\x8f\xe7\x58\xcf\x98\x09\x96\x75\ \x05\x50\x02\x64\xc2\xc1\x2a\x08\xa0\x53\xce\x2d\x81\x9d\x1d\xb6\ \xd5\x40\xe7\xd7\x33\x04\x60\xf0\x7f\xe1\x98\x23\xc0\xf9\xf3\xe7\ \x07\x6b\xce\x07\x1c\xcb\x0d\x22\x45\x58\x15\x29\xa6\x18\xa5\xd5\ \x7b\x3d\xb0\x23\x8f\x37\x3c\x14\x37\xe0\x69\xce\x5d\xcd\x01\xec\ \xa6\x88\x00\x9e\x1a\x94\x08\xd0\x49\xf0\x7b\x5f\xc5\x5c\x72\x46\ \xe0\x67\x24\x1f\x44\x98\x44\x80\xf1\x4d\x47\x04\xc0\x1b\x3d\x35\ \x28\xe5\x08\xde\x10\xb2\xd4\x91\xb9\x23\x8c\xb9\x46\x3d\xad\xf7\ \x4d\xb1\x41\x34\x94\xd3\x9c\x4c\xbd\x5d\x41\x17\x0c\xeb\x0a\xb0\ \x4a\x02\xd4\xd4\x61\xae\x41\x76\xe9\x7d\x5e\x12\x1e\x25\x79\x4c\ \x06\x06\x9e\x14\x3d\x47\x80\x73\xe7\xce\x0d\x68\xde\x07\x95\x42\ \x44\x6d\x04\x51\xeb\x50\x7f\xfd\xcf\xf9\x17\x2f\xa6\x47\x31\xde\ \xc3\x8a\xb1\x34\xe7\xae\xe6\x00\x76\x13\xbf\xc9\x7e\x8f\x48\x10\ \xc9\x4f\x27\xc1\x71\x10\xe7\x12\x3b\x63\xe3\x08\x1f\xc5\x31\x45\ \x80\xf1\xc3\x16\x67\xcf\x9e\x3d\x52\x00\xfd\x90\x12\x21\x32\x39\ \x43\xa6\x43\xfd\x9e\xdf\xf3\x30\xa5\x98\xae\xc0\x7b\x58\xe1\x9a\ \x61\x6a\xd8\x56\x15\x60\x55\x04\x28\x25\x8e\x1d\xe0\xe3\x00\x97\ \x6c\x52\x0a\xc3\xfc\xda\x4a\x09\x60\x8c\xd1\x56\xfa\x03\xd9\xbc\ \x21\xdb\x99\x7e\xdf\xe1\x5c\x4c\x16\x60\xb6\xbf\x87\xdd\x64\x05\ \x38\x09\x01\xb2\x61\xa2\x83\x7c\x1c\xe4\x6c\x3c\xaf\x79\xbb\x87\ \x5f\x3a\x04\xfc\xfb\xef\xbf\x83\xb5\x88\x49\xd1\xf5\xac\x42\xf4\ \xfb\x7e\x8f\xb2\xe6\xd8\x62\x2a\x2e\xc0\x73\x32\x01\x3a\x09\x4e\ \x06\xd4\x1c\x70\x6b\xef\x99\x0b\xbe\x61\xf9\x57\x08\x50\x1b\x41\ \xd4\x3a\xd8\x5f\x8f\x49\x37\x15\x7c\xbb\x1f\xde\x3f\x9b\x00\xfc\ \x01\xde\xef\x73\xbe\x54\x7f\xcf\xf1\x04\x7b\xae\x4d\x6a\xf8\xac\ \x9d\x00\x73\xc2\xc4\xdc\xce\xf6\xf7\xfd\x49\x9c\x29\xe0\xa7\x15\ \x60\x94\xe0\xc5\x99\x33\x67\x06\x6d\x53\xff\x58\xbf\xff\x30\x91\ \x3e\xad\xe6\x61\x68\xd8\x56\x27\x82\x22\x02\xd8\x07\x9e\x56\x67\ \xfa\xdf\x9d\x46\x24\x0f\x7c\xbb\xd6\x09\x70\x8a\x1e\xf9\x37\x49\ \xbc\x36\x02\x44\x1f\xdc\xaf\x1f\x0f\x99\x9b\x68\x93\x13\x2b\xc0\ \x26\x76\xaa\x7f\xa7\x3c\xf9\x52\x04\x18\x6b\xe4\xfe\x67\x2c\xc2\ \xf8\xdf\xde\xda\xb3\x81\x61\x5b\x4d\x02\x7f\xfe\xfc\xf9\x71\x6c\ \x9f\x7b\x6b\xd2\x06\x1f\xab\x04\xe8\x37\x74\x0b\x74\x0b\xec\x90\ \x05\xfe\x0f\xe1\x0a\xc0\xd8\x73\x31\xed\xde\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0d\x57\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0c\xdd\x49\x44\x41\x54\x78\x5e\xed\x9d\xcb\xae\x1c\ \xb9\x0d\x86\xc7\xf7\xfb\xfd\x7e\x85\xed\x41\x00\x03\x41\xce\xc6\ \x2b\x1b\x8e\x0d\xc3\x7e\xa9\xec\xb2\xc9\x26\x8b\xac\xcf\x62\x96\ \x79\x07\x2f\x02\x07\xc1\x3c\x4c\xcf\x34\x06\x33\x40\xea\x01\x8e\ \x43\x76\xcc\x03\x9a\xa6\x24\x92\x55\xaa\xee\xa9\x43\x03\x84\x4f\ \x77\xab\xa4\x2a\xfd\x9f\x28\x4a\xa5\x52\x7d\xf7\x5d\xfe\xcb\x1a\ \xc8\x1a\xc8\x1a\xc8\x1a\xc8\x1a\xc8\x1a\xc8\x1a\x60\x35\x70\xee\ \xdc\xb9\x41\xda\xf9\xf3\xe7\x07\x69\x17\x2f\x5e\xfc\x47\x56\xdc\ \x74\x35\x70\xfd\xfa\xf5\xcb\x50\xa7\x03\xd9\x85\x0b\x17\x06\xcd\ \xa6\x2b\xb1\x90\xd3\xa5\x4b\x97\xd6\x04\x80\x14\x9d\x9f\xd0\xde\ \xde\xde\xdf\xba\x9f\xcc\x11\x2a\xe0\xf3\xe7\xcf\x27\xa1\xee\x0f\ \x01\xe0\x30\x48\x28\xba\x56\x0b\x02\xc0\x85\x97\x14\xd2\xc9\x40\ \xba\x5f\xc1\x56\x53\x1a\xe4\xbd\x2a\x19\x9c\xc7\xaa\x97\xd5\xca\ \xc5\xdf\xb4\x6b\xbc\x7c\xf9\xf2\xaa\x66\x57\xae\x5c\x59\x59\xed\ \x4b\x3e\x3f\x21\x00\x25\x93\x40\x74\x83\x80\x03\xc0\xc5\xe7\x27\ \x50\x3b\x51\xcf\x6f\x1a\xe5\xf8\x5d\xc9\xfd\xe1\xf7\x5a\x77\xe4\ \xfd\xae\x96\x3f\xfd\xa6\x9d\x9b\x76\x6d\x20\xde\x50\x33\x80\x60\ \x28\x59\xeb\x58\xfa\x5d\x96\x4b\xe7\xd6\x05\x02\x28\x74\xad\x09\ \x1f\xb9\x78\xed\x02\x5b\x80\xd4\x5c\x5f\x49\xb8\x12\x00\x16\xa1\ \xa7\x10\xbc\x26\xf2\x14\xbf\xc9\x7a\xe4\x75\x38\x39\x04\x70\xc2\ \x1b\x00\x98\xab\x3f\x74\x4b\x25\x62\xc7\x52\x6e\x75\x7b\x2d\xef\ \x60\x15\xbc\xe4\x79\x4a\xe7\x21\xaf\x5b\xbb\xde\xab\x57\xaf\x0e\ \x3d\x4c\x96\xc5\xcf\x85\xce\x77\x52\x08\x10\x80\x96\xf8\x63\xa9\ \xae\xb9\x3e\x4d\x84\x92\x60\x16\x20\x6a\xc7\x6a\xd7\xc9\xcb\x6f\ \x09\xaf\x09\x7e\xed\xda\xb5\x61\x0a\xd3\xf2\xe6\xf5\x2e\xbb\x87\ \xc9\x20\x80\x82\xd7\x5a\x25\x48\xd1\x23\xb4\x7b\x3d\x85\x17\x86\ \x31\x62\x53\x59\x5e\xd1\x35\xb1\x61\x48\x37\x8c\x35\x2d\x5f\x5e\ \xe7\x54\x97\x1c\x84\x49\x20\xe0\x00\x50\xe6\x5c\xb8\x92\xf0\xf2\ \x84\x5b\x80\x58\x03\xa3\xa9\x20\xa8\xc5\x1e\x9a\x47\x6a\x01\xcf\ \xaf\x57\x13\xfb\xe6\xcd\x9b\x43\xc4\x4a\xe0\xf0\xf2\xa8\x6e\xbb\ \x40\x00\x05\xad\xa5\xf0\x52\xcc\x31\x2e\xae\x04\x46\xad\xaf\xc3\ \xf3\x69\x05\x8f\x34\x86\xb6\xa4\xc3\x34\x16\xd1\xf1\x9c\xf8\xf9\ \xd6\x44\xd7\xc4\xbe\x75\xeb\xd6\xe0\xb5\x12\x34\x1c\x0c\x3a\x8f\ \x12\x08\xa3\x3c\x01\x01\x40\x82\x50\x21\x2d\xe2\x25\xb9\x6f\xde\ \xbc\xf9\xe1\xdd\xbb\x77\xfb\x5e\x7b\xfb\xf6\xed\x7e\xcb\x20\xef\ \x7d\xaf\xb5\xf2\xe4\xbf\x5b\xcf\xf9\xfd\xfb\xf7\xfb\x64\x1f\x3e\ \x7c\xd8\x9f\xd2\x6e\xdf\xbe\xfd\x1b\x87\x87\x83\x41\x75\xad\x81\ \x40\x60\x87\x21\x40\x00\xc6\x8a\x8f\x27\xf8\xe9\xd3\xa7\x3f\xc2\ \xec\xd6\xe3\xb4\x58\x1d\xdc\xbb\x77\x6f\x2d\xbd\x47\x0b\x02\xde\ \x25\xa0\x97\x0b\x41\x00\xe2\x6d\x00\x90\x2d\x5f\xb6\xf0\x56\xff\ \x06\xad\xe1\x4a\xe8\x04\xf2\xa0\x4d\x0d\xdc\xbf\x7f\x7f\x0d\x5e\ \x60\xe0\x46\x40\x50\xdd\xb7\x3c\xc1\x97\xee\xf0\x0f\xae\x2a\x45\ \x00\x6a\xe2\xb7\x84\xa7\xdf\x13\x00\x57\xb5\x7f\x93\x18\x01\xb8\ \x73\xe7\xce\x80\xa6\x41\x80\x30\x60\x5d\x73\x08\xb4\x98\x00\xbe\ \xfb\x97\xeb\x4c\x08\x00\xea\x5f\xa8\x00\x29\x7c\x2b\xb8\x49\x00\ \x5c\xd5\xfe\x4d\xe2\x07\x0f\x1e\xac\xef\xde\xbd\xbb\x01\xa0\x06\ \x02\xf7\x06\xa8\x19\x87\x00\xe3\x81\xc7\x8f\x1f\xff\xdb\x75\x26\ \x16\x00\x5a\xe2\xe3\xef\x4b\x05\x00\xae\xed\xe2\x18\x03\x31\x2f\ \x58\x04\x21\x00\x10\x82\x12\x08\xe4\x05\x34\x4f\x40\xf1\x80\x1b\ \x80\x1b\x37\x6e\xac\x6b\xad\x5f\x8a\x5f\x72\x4f\x0b\x06\x60\x33\ \xb4\xa3\xeb\xe6\x2d\x94\xc4\xa2\xff\x21\x90\x1b\x34\xb3\x00\xf0\ \xf0\xe1\xc3\x35\x1e\x2b\xf3\x94\xde\xa0\x05\xc1\x93\x27\x4f\x7c\ \x1e\x80\x00\xe0\x41\x1f\xb9\x99\x9a\xf8\x12\x84\xa3\x02\x00\x5e\ \x37\x89\xc2\xc5\x2a\x89\x8f\xc2\x7a\x00\xa0\x7c\x78\xde\x25\x08\ \x64\x3c\x80\x5e\xc0\x0d\x00\x88\xbd\xf1\x00\xb2\xef\xe7\xe2\xcb\ \xe8\x54\xfb\x7c\x54\x00\xb0\x8a\x0f\x41\xdd\x80\x16\x05\x40\x82\ \x60\x85\x20\x04\x40\x49\x7c\x8b\xf0\x94\x66\xc9\x00\xf0\x7a\x90\ \x00\xc8\x96\x4f\xc2\x47\x00\xe0\xc7\xf2\x7c\x65\x5c\x80\xe7\xc3\ \x87\x88\xa8\x1f\x75\xe3\x4f\x9f\x3e\xf5\x75\x01\xe8\x01\xc6\xb6\ \x7e\x3c\xa1\x25\x03\xa0\xc5\x00\xa5\x7e\x7f\x2e\x00\x08\x02\x0a\ \x08\x47\x03\x20\xfb\x7d\xd9\xfa\x79\xf0\xa3\x0d\x55\x96\x0c\x80\ \x0c\x00\x35\xf1\xa5\xf0\x10\xd5\x0f\x68\x8f\x1e\x3d\x32\xc5\x00\ \x98\x8e\x8e\xa9\x79\x02\xde\x15\xc8\x80\x10\x21\x08\x7b\x00\x2d\ \xf0\x6b\x41\xc0\x7f\x5f\x32\x00\xe4\x01\x6a\xee\x7f\x4a\x00\x10\ \x04\x0d\x02\x3e\x3c\x2c\x75\x03\x93\x01\xe0\xe9\xff\x8f\x4a\x17\ \x20\x87\x80\xbc\x9f\xe6\x82\x51\x4b\x8e\x7a\x80\x1a\x00\x04\x01\ \xe9\xc3\x67\x08\x43\x1e\x00\x32\xd8\xc4\x00\xdc\x03\xb4\x5a\x7e\ \x76\x01\x77\xbf\x1a\xef\x93\xf8\x5c\x78\x6f\x17\x00\x13\x38\x87\ \x5d\x00\xcf\x87\xf2\xe6\xa3\x82\x5a\x37\xe0\xf6\x00\x1a\x00\x3c\ \xe8\xd1\x26\x40\xb4\xa9\xca\x25\x77\x01\xad\x18\x60\x2a\x00\x60\ \xc8\xb8\x89\x1b\x5a\x00\x70\x2f\x20\xe3\x80\x51\x00\xd0\xd0\x42\ \x1b\xf6\x64\x10\xf8\xff\x09\x20\x19\x00\x96\xc4\x47\x31\xd1\xb0\ \x65\x5b\x26\x82\x30\x1d\x1d\x23\x41\xb0\x7a\x01\xf4\xe4\x93\x03\ \xc0\x67\xbe\x24\x04\x47\x25\x08\xe4\x1e\xa0\x04\x00\x8a\xc4\x5b\ \xee\xef\x0a\x80\xda\x10\xb0\xd4\xf2\x65\x37\xb0\xf4\x2e\xa0\x34\ \x02\xd0\x3c\x00\x6f\xc9\x51\x0f\x40\x79\xc8\xa1\x21\xbf\x5f\x40\ \xb7\x8e\xf9\xa4\xd0\xb3\x67\xcf\x7c\x13\x41\x18\x03\x8c\x9d\x03\ \x58\xfa\x28\x40\x8b\x01\x28\x28\xeb\xd5\x05\xd4\xba\x01\x3e\x33\ \xc8\x27\x84\x50\xc7\xc9\x01\x48\x0f\xf0\xf5\x9d\x40\x4b\x0c\xd0\ \xdb\x03\x90\x17\xe0\x8b\x47\x28\x18\x9c\x1c\x80\x8c\x01\xbe\xbd\ \x15\xcc\x21\xe8\xe9\x01\xb8\x17\xe0\x81\xa0\xe6\x01\x46\x01\x20\ \xe7\x01\x2c\xc3\x40\x39\x57\xb0\xe4\x18\x40\xde\x0b\xb0\x06\x82\ \x9e\x89\x20\xef\x28\xa0\x34\x14\x0c\x79\x00\x02\x40\x1b\x06\x96\ \x3c\xc0\x51\x04\xc0\x13\x08\xa2\xf8\x63\x86\x81\x9e\x18\x80\xc7\ \x01\x6e\x00\xe8\x6e\x60\x2b\x10\xac\x4d\x0d\x2f\x79\x49\x18\xd6\ \x4b\xe9\x6e\xe0\x94\x53\xc1\x3b\xe1\x01\xe8\x62\x5b\x5d\x80\x84\ \x21\x01\xb8\xf7\xd5\xcd\x9b\xc8\xbd\x00\x0b\x00\x18\x07\xc8\x29\ \x61\x79\x4f\x60\x32\x0f\xa0\x41\xa0\x79\x01\xea\x36\x96\x1a\x03\ \x68\xf7\x48\x5a\x5d\x01\x9f\x14\x8a\xdc\x0e\xb6\x4c\x07\x97\xee\ \x07\x4c\x06\x80\xe7\x6e\xe0\xd2\x3d\x40\xad\x1b\xc0\x60\x4c\xce\ \x09\xcc\x01\x80\x0c\x02\xc3\xa3\x80\xd6\x8a\xa0\x92\x27\x90\x0b\ \x46\x97\xea\x01\x4a\x01\xb2\x75\x6d\x80\x75\x4d\x20\x5f\x10\x62\ \xbd\x19\xc4\x67\x02\x69\x65\x50\xc8\x03\xd0\xa2\x50\xfe\x30\x88\ \x14\xb8\xf6\x19\x8f\x5b\x32\x00\xa5\xdb\xe5\xad\xf5\x81\xe8\x19\ \xac\x00\x60\x3a\xb9\x0e\x40\xde\x04\xe2\x13\x40\xda\x34\x70\xe8\ \x66\x10\x5f\x15\x9c\x00\x7c\x7b\xdf\x4e\x5b\x2f\x59\xba\x3d\xcc\ \xbb\x03\xea\x16\x3c\x00\xc8\x55\x45\x16\x00\xe4\xda\x40\xf7\xdd\ \x40\xcf\x73\x01\xd2\x0b\x70\x60\x96\xea\x01\x6a\x4b\xe6\x2d\x20\ \x8c\x01\x40\xae\x38\x96\x4b\xc2\xe4\x7d\x80\x90\x07\x48\x00\xea\ \x77\xeb\xb5\xa7\xa6\xe4\x84\x59\xe9\x69\x21\x12\xd0\xb2\x1e\x00\ \x41\x29\x2d\x06\x95\x77\x00\xb5\x7b\x00\x14\x03\x84\x3d\x00\x27\ \x9d\xf7\x79\x96\xa7\x83\x31\xfd\x52\x3d\xc0\xc1\xc1\xc1\x9f\xc7\ \x9a\x15\x80\xd2\xd3\x45\xda\x73\x01\xda\xa2\xd0\xb0\x07\xc0\x27\ \x4c\x25\xe9\xa5\xa7\x84\x39\x10\xfc\x71\xb2\xa5\x02\x60\x11\x6f\ \x8a\x34\xf2\xe1\x50\xcb\x33\x82\x7c\x41\x28\x3d\x1c\x12\xf2\x00\ \x11\x00\xe4\x06\x12\x09\xc0\x38\x0c\x6a\x00\x68\x8b\x70\xe5\x93\ \x41\x61\x00\xb4\x0d\x22\x64\x77\x20\xc5\x96\x9f\x31\x7d\x02\x30\ \x0e\x00\xbe\x41\x44\x6b\xfd\x25\x17\x7f\xf4\x93\x41\x08\x80\xb6\ \x45\x4c\xa9\x4b\xe0\x4f\xa4\xf2\x8d\xa4\x60\x6f\xa0\x13\xe3\xaa\ \xe0\x68\x1f\x0d\x00\xfc\xac\x09\xaf\xdd\x77\x91\x2b\x81\xa9\xf5\ \xa3\x27\x77\x3f\x1c\x3a\x15\x00\x50\xf8\x4f\x60\xc5\x1d\xb3\xf9\ \x4e\xdb\xb4\x1b\x37\xed\xda\xcd\x77\x05\x87\xad\xeb\x57\x68\x67\ \xcf\x9e\x3d\xb4\x33\x67\xce\xac\x3c\xc6\x8f\xa5\xbf\x29\x5f\xfa\ \x9f\x97\xc9\x77\x0f\xa7\x73\xa3\xf3\x95\x3b\x80\xe3\x35\xa2\x01\ \xfc\x1b\x83\xfa\x3b\x34\x18\x51\xad\xc8\x40\xa4\x95\x34\x10\x73\ \x55\xb1\xff\xd6\x16\xdd\xf2\xa0\x4f\x02\xc0\x77\x0f\x73\x03\xa0\ \xed\x12\xc6\x63\x82\xd6\x1e\x81\xda\x6e\x96\xe8\x51\xb4\x3d\x6e\ \x69\x6f\x3f\xbe\xe5\x2b\xdf\xf8\x59\x7b\x79\x05\x7e\x07\x22\x86\ \xac\x94\x9f\xf6\x7e\x84\xda\x86\xd9\xa5\x7d\x14\x4b\x5b\xe9\x69\ \x23\xa7\xda\x4c\x6a\xeb\xbe\x0b\x3f\x56\x06\xe1\x72\xeb\xb8\x10\ \x00\x78\x81\x72\xab\x38\x6d\xbf\x40\x7e\xc1\x72\x03\x48\x6d\x5f\ \x5b\xbe\xe1\x63\xe9\xed\x18\x04\x80\x26\x56\x49\x78\xf0\x06\x83\ \xb4\x1a\x24\x11\x10\xb4\xed\xf2\xbd\x20\xb4\x46\x52\xde\xe9\x76\ \xbe\x3f\x90\xdc\x1c\x02\xf5\x08\x6d\x10\x51\xda\x28\xb2\x06\x80\ \x75\x63\xe3\xb1\x00\x94\x5a\xbf\x06\x00\x7e\x57\x82\x20\x02\x80\ \xb6\x83\x7a\x6d\x2b\x5d\xcb\xc6\x9a\xa5\x39\x15\x0b\x08\xa5\xe1\ \xb7\xdc\x28\x2a\xec\x01\xb8\x17\x90\x5b\xa6\xd6\xf6\x01\x2e\xb5\ \x7c\x8f\xf8\xe8\x05\x2c\x1e\xa0\x24\xbc\xc5\x1b\xb4\x20\xc0\xdf\ \xb5\x37\xa7\xd4\x76\x52\xd7\xbc\xa6\xec\x32\x6b\x23\x28\xcb\x24\ \x5b\x4d\x78\x29\x3e\x9e\x8f\x7b\x93\x28\xf2\x00\x09\x40\x1d\x00\ \x04\x41\xdb\x61\xdc\x02\x41\x6b\x58\x6d\x05\x81\xc3\x24\xfb\xfe\ \xf0\x2e\x61\x08\x00\xdf\x4c\xb9\xb5\x6b\x36\x79\x83\xd7\xaf\x5f\ \xff\x50\xda\x8f\x97\xef\xeb\x0b\xe9\xf6\x5b\xf6\xea\xd5\xab\x7d\ \xcd\x5e\xbe\x7c\xb9\x3f\xb5\x95\xca\xa2\xef\x5b\xe7\xca\xaf\x4d\ \xbb\x7e\xeb\xbe\xc3\xad\x74\xd0\x2d\xfc\xa6\x79\x0f\x2d\x0e\xe3\ \x5b\xc6\x86\x3c\x80\xdc\x4d\xdb\xf2\x82\x88\x8f\x1f\x3f\xe6\xde\ \xc0\x1d\xf7\x46\xc6\x27\xb6\x4a\x73\x2e\x9a\xeb\xa7\xf8\x04\x16\ \x96\xf8\x1e\x0d\xa3\xf7\x05\xf0\x61\x9b\x05\x80\x9c\xf9\xeb\x3b\ \x71\x45\x00\x68\xc3\xf0\xda\x8b\x24\xc2\x00\x58\xdf\xa0\x41\x70\ \x24\x00\x7d\x01\xa0\x85\x3a\x96\xa1\x37\x7f\x8b\x48\x08\x00\x1e\ \xe0\x94\x5e\xae\x20\x5f\xb8\x90\x00\xf4\x05\x00\xd7\x69\xb4\x86\ \xdb\x7c\xc2\x8d\x1a\xf0\x24\x00\x58\x20\x48\x00\xb6\x0f\x80\x36\ \xdb\xea\x06\x00\x28\x3a\x7c\x6b\x98\xf4\x04\x25\x10\xf0\xfb\x17\ \x2f\x5e\xe4\xfb\x01\x3a\x32\x40\xf7\x68\xb4\x78\x4c\x7a\x63\x6a\ \xfd\xa8\x5f\x08\x00\x3e\xeb\xd5\x7a\xb5\x1a\x15\x96\x00\x74\x54\ \x1f\xb2\x96\x00\x68\xef\x3c\xe2\xef\x4b\x22\xdd\x60\x69\x99\x6f\ \x14\x80\x1e\x20\x01\xe8\x2b\x66\x24\x77\x3e\x41\x67\x15\x1f\x21\ \x70\x03\x00\x99\xab\xaf\x8e\x6d\xbd\x93\x2f\x3d\x40\x44\x56\xfb\ \x31\x1a\x00\xad\x57\xea\x61\x43\x0e\x01\x80\x73\xe0\xa5\xb7\x86\ \x97\x40\x48\x00\xec\x62\x46\x52\xd2\x0c\x6d\x4b\x74\xf9\x36\x55\ \x58\x58\xe2\xeb\x02\xd0\x03\x24\x00\x11\x89\xfa\x1e\x53\x02\xa0\ \xf5\xb2\x6d\x37\x00\x40\xd8\x06\x00\x32\xeb\x0b\x99\xd3\x03\xf4\ \x05\x00\x67\x68\x5b\xdd\xb0\xd4\x0a\x35\x0c\x01\x20\x6f\x85\xb6\ \x60\xc0\xdf\x13\x80\xbe\x00\xc8\xe1\x39\xc1\xa0\x35\x50\xde\x80\ \xe1\xd9\x02\x5f\x17\x80\x1e\xa0\x04\x80\xd6\x35\x50\x61\x09\x40\ \x7f\x00\x2c\xde\x98\x8b\x8f\x7f\x87\x01\xd0\xd6\xc9\xc9\xcc\xf9\ \xe7\x04\x60\xbb\x00\x48\x6d\x48\xbf\x04\xa0\xaf\x2e\xb3\xe5\x2e\ \x87\xe7\xdc\x1b\x68\x0d\x33\x0c\x00\xf4\x2d\x9b\x2e\xa0\x64\xa5\ \x55\xbb\xe9\x01\xfa\xb2\x40\xa3\xb3\x9a\x17\xd6\x96\xd2\xb9\x3d\ \x40\x0b\x80\x12\x18\x09\x40\x5f\x00\x6a\xb1\x59\xad\xc1\x26\x00\ \x7d\x75\x99\x2d\x77\x02\x40\xc6\x66\xad\xc5\xad\x6e\x00\xc0\x8d\ \x54\xbb\x80\xf4\x00\xb3\x69\xfe\x55\x41\x12\x80\x96\xf0\xe1\x18\ \x00\x01\xa0\xf5\xf4\xd6\x42\x30\x5d\x76\x01\x7d\xc1\x88\x74\xcd\ \xa8\x23\x3c\x56\xee\x9b\x07\x48\x00\xfa\x0a\x19\xcd\x7d\x2b\x00\ \xf0\x27\x6b\x5a\x0f\x6a\xa4\x07\x88\x4a\x6b\x3b\xce\xd3\x35\x73\ \xdd\xdc\x1e\x00\x84\x5e\xd7\x1e\xab\x2a\x3d\x6e\x95\x00\xd8\x84\ \x8c\xa6\xe2\x9e\xd9\xf3\x70\x6c\x02\x10\xad\xf1\x1d\x3b\x6e\x76\ \x00\xf8\xf3\x75\x35\xe2\x28\x5d\x7a\x80\xbe\xc4\xa0\x67\xb6\xb6\ \x7c\xae\x5d\xd8\x03\x58\x00\xe0\x69\x12\x80\x85\x00\x00\x94\x6d\ \x62\x00\xaf\x25\x00\xfd\x01\xf0\x6a\x82\xe9\xdd\x1e\x00\x01\x38\ \x7d\xfa\xf4\x80\x66\x2d\x10\xd3\x26\x00\xbb\x07\x00\xea\x02\xbb\ \x8d\xf8\xe6\x01\x12\x80\xbe\x42\x46\x73\xf7\x7a\x66\x6a\xc4\xa3\ \x00\xa0\x4c\x2c\xff\xa7\x07\x88\x4a\x6b\x3b\x8e\x37\x4c\xcd\x43\ \x97\x34\x4a\x00\x6c\xf5\xbb\xf3\xa9\x34\x00\x78\x37\x3d\x19\x00\ \xd0\xef\x1f\xc6\x00\x96\x96\x4f\x69\xd2\x03\xf4\x65\xa8\x04\x40\ \x4b\x23\x78\xac\xdc\x17\x03\x24\x00\x7d\x85\x8c\xe6\x3e\x2b\x00\ \xa7\x4e\x9d\x1a\xc8\x5a\x84\x51\xba\xf4\x00\x51\x69\x6d\xc7\x61\ \xc3\xc4\xba\x6e\xe9\x41\xbf\x93\x2e\x21\x0f\xc0\x01\xb0\xfe\x9d\ \x00\xd8\x84\x8c\xa6\x22\x00\xac\x7a\x24\x00\xd1\x9a\xde\xd1\xe3\ \x66\x03\x00\x5c\xc8\xc6\xd5\x78\x2d\x3d\x40\x5f\x72\x12\x80\xbe\ \xf5\xbb\xf3\xb9\xcf\x0a\xc0\xc9\x93\x27\x07\x6e\x25\x6f\xc0\xd3\ \xa4\x07\xe8\xcb\x10\x7a\x66\xac\x6f\x8b\x67\xe6\xba\xb8\x83\x40\ \x2a\x28\x01\xe8\x2b\xa8\x37\xf7\xad\x02\x20\x3d\x82\xf6\x39\x3d\ \x80\x57\x52\x5f\x7a\xad\x61\x5a\x74\x99\xc4\x03\x58\x0a\x4a\x00\ \x7c\x82\x7a\x53\xcf\x06\x00\xf4\x31\x9b\xbe\xc6\x6b\x09\x80\x57\ \x52\x5f\xfa\x28\x00\xb0\xc1\xa4\x6f\x2a\x18\x01\x38\x71\xe2\xc4\ \xe0\xb5\x04\xc0\x27\xa8\x37\x35\xd7\xa5\xd6\x38\xa5\x6e\x09\x80\ \xb7\xa6\x77\x34\xbd\x05\x00\xad\xd1\x26\x00\x3b\x2a\xa8\xf7\xb4\ \xa2\x9e\x39\x01\xf0\xd6\xf4\x8e\xa6\x4f\x00\x76\x54\x98\xb9\x4e\ \x2b\x01\x98\xab\xa6\x77\xb4\x9c\x28\x00\xb0\xc5\xac\x7f\x14\x70\ \xfc\xf8\xf1\x1c\x05\xec\x18\x08\xb3\x03\x80\x10\x78\x2c\x87\x81\ \x7d\x89\x41\x00\x3c\x7a\x50\xda\xb0\x07\xf0\x16\x96\x00\x24\x00\ \xf9\xbe\x80\x8e\x0c\xa4\x07\xe8\x58\xb9\xbf\x87\xac\x67\x03\x00\ \xa6\x19\xd7\xc7\x8e\x1d\x73\xf5\xff\xd8\x5d\x64\x17\xd0\x17\xa3\ \x28\x00\xb0\xc9\xb4\x6f\x14\x90\x00\xf4\x15\x32\x9a\x7b\x04\x00\ \x6c\xc8\x61\x00\xbc\x5e\x20\x3d\x40\x54\x5a\xdb\x71\x5b\x01\x00\ \x21\xb0\x1a\xdc\x88\xf8\x2b\x5c\xca\x5f\xd2\xfa\xd4\x01\x74\xb3\ \xbf\x5a\xb5\xe0\xe9\x46\x79\x80\x48\x81\x79\x8c\xbd\xd1\xcc\x51\ \x57\x8b\x05\x00\x3c\xcd\xb0\x6d\x9b\x43\xc0\xb1\x65\x2c\x16\x00\ \xac\x98\x6d\x02\x30\x56\x98\xb9\x8e\x5f\x34\x00\xdb\x82\x60\x2e\ \xf1\xa6\x28\x67\xe7\x01\xd8\x66\x2b\xde\x46\xd9\x53\x88\xea\xc9\ \xc3\x0d\x00\x44\x9b\xbf\x78\x0a\x18\x9b\x76\x1b\x22\x6c\xb3\xcc\ \xb1\xf5\xe5\x3d\x1e\xde\x35\xf4\x1f\xdb\x40\xf3\x4b\xaa\xe7\xcf\ \x9f\xff\x13\xb6\x15\xf9\x71\x2e\x83\x75\xeb\x3f\x1e\x25\x9b\xab\ \x5e\xa9\x9c\xbd\xbd\xbd\xbf\xbb\x00\x38\x38\x38\xf8\x1e\xec\x4f\ \x69\x8b\xa9\x83\x87\x2e\x00\x32\x71\xd6\x40\xd6\xc0\x11\xa8\x81\ \xff\x01\x7d\x94\xd7\x76\xff\x8e\x80\x1f\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x10\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\x8e\x49\x44\x41\x54\x78\x5e\xed\x5d\x7b\x8c\x17\ \x47\x1d\xe7\x75\x0f\x5e\xc7\xfb\x71\xbc\x8e\xa3\x3c\x0e\x8a\x16\ \x04\x8a\xed\x41\x8f\x03\x7a\x05\x1f\x20\x81\xe4\x84\x40\xc0\x07\ \x12\x34\x9c\xd8\x90\x36\x44\x45\x05\x91\x94\x96\x06\x25\x18\xc0\ \x04\xeb\x23\x26\x0a\x45\xea\x23\x41\xfa\x08\xc9\x25\x42\x52\xe2\ \x23\x28\x15\x0f\x4d\x4d\x6d\x68\xe5\x84\xb2\x7f\xf0\xc7\xfd\x01\ \x7e\xbe\xe7\x0e\x19\x86\x99\xdd\x9d\xdd\xd9\xd9\xfd\xed\x6f\x48\ \x26\xc0\xdd\xee\xcc\x7c\x3f\x9f\xcf\xf7\x3b\xdf\x9d\x99\x9d\xed\ \xd1\xc3\xfd\x71\x08\x38\x04\x1c\x02\x0e\x01\x87\x80\x43\xc0\x21\ \x50\x86\x08\x54\x54\x54\x1c\x2c\x43\xb3\x9d\xc9\x3e\x02\x03\xab\ \xaa\xaa\xbc\xca\xca\xca\x33\x0e\x91\x32\x44\xa0\xa9\xa9\x69\x70\ \x75\x75\xb5\xe7\x17\x27\x82\x72\xd3\xc0\x9c\x39\x73\x06\x31\x01\ \xf4\xed\xdb\x97\x84\xe0\x44\x50\x4e\x22\x20\x01\x10\xf1\x42\x79\ \xad\x9c\x30\x28\x6b\x5b\x15\x02\x20\x41\xfc\xa1\xac\x81\x29\x17\ \xe3\x49\x00\xfd\xfa\xf5\xf3\x64\xa5\x7f\xff\xfe\x4e\x04\x45\x17\ \x02\x13\x00\xc8\xf6\xc4\x42\xa2\x70\x22\x28\xb8\x02\x48\x00\x32\ \xf2\xf9\x9f\x0d\x18\x30\xc0\x45\x82\xa2\xea\x80\x04\x00\x82\xbd\ \x08\xc5\x89\xa0\x88\x22\x20\x01\x0c\x1c\x38\xd0\x0b\x2b\x24\x10\ \x5c\xe3\x44\x50\x34\x11\x90\x00\x6a\x6a\x6a\x3c\x55\x91\x08\xc3\ \x89\xa0\x48\x22\x58\xba\x74\xe9\x20\xfc\xf1\x54\x45\x14\x86\x2f\ \x88\xb7\x8b\x84\x41\x59\xdb\x42\x02\x18\x3c\x78\xb0\x27\x2b\x32\ \x51\x70\x82\x70\x22\x28\x82\x72\x82\x04\x20\x8a\x82\x17\x84\x2f\ \x04\x27\x82\x52\x17\x01\x09\x60\xc8\x90\x21\x5e\x58\x51\x89\x01\ \x42\x70\x22\x28\x65\x11\x90\x00\x86\x0e\x1d\xea\xa9\x8a\x28\x0c\ \x5e\x08\x2c\x22\x38\x11\x94\xb0\x02\x48\x00\xc3\x87\x0f\xf7\x54\ \x45\x14\x06\x13\x04\x13\x02\x37\x2c\xb8\x48\x50\x2a\x3a\x18\x31\ \x62\xc4\x80\x61\xc3\x86\x35\x80\xdc\xa5\x63\xc6\x8c\xf9\x64\x90\ \x00\xd8\xef\x78\x21\xf0\x51\x41\x10\xc2\x07\xa5\x82\x41\xe1\xfb\ \x59\x57\x57\x57\x0d\xd2\x36\x82\xe8\x97\x51\x3a\x19\x81\x3c\xd9\ \x10\x82\x17\xa5\xf0\xf7\xc8\x84\xe0\x44\x90\x13\x39\x21\x1c\x6f\ \x87\x77\xbe\xcb\x3c\x94\x27\x4b\xf4\x72\x91\xf8\x91\x23\x47\x7a\ \x7c\x91\x09\x43\x26\x04\xc5\x90\xe0\x22\x81\x2d\x4d\x80\x80\xef\ \x90\x07\xf2\x61\x59\xe6\xed\x44\x1e\x4f\xaa\x48\x78\xd8\xff\xf9\ \x7b\xc3\x84\xe0\xe7\x05\x4e\x04\x69\x89\x00\x00\x2f\x06\xe9\x9d\ \x7c\x46\x2e\x7a\x7d\x50\xa8\x17\xc9\x1e\x35\x6a\x94\xa7\x2a\xaa\ \xa8\x20\xe6\x06\x2e\x12\xa4\xc5\x36\x57\x2f\x85\x78\x96\x75\x33\ \xf2\x83\xc2\x7d\x90\xc7\x07\x91\x1e\x26\x06\x59\x34\x60\x51\x87\ \xfa\xe3\x72\x02\xc3\x62\xc0\x4a\xdc\x33\x34\xf3\x16\x46\xbe\xca\ \xeb\x79\x2f\x96\x91\x3b\x7a\xf4\x68\x4f\x56\x64\xd7\xb2\xba\x98\ \x08\x82\x22\x01\x37\x4f\xe0\x86\x83\x38\x9a\x00\xe9\x4f\xb2\xb9\ \xf7\xa8\xe4\xab\xbc\x5e\x24\x53\x45\x7a\x6d\x6d\x6d\xa8\x18\x64\ \xc3\x02\x2f\x04\x7e\x38\x70\x22\x88\xc3\x3c\xee\x01\xf1\xd7\x69\ \xe5\x2d\xae\xe7\xab\xbc\x5e\x46\x3c\x91\x2e\x2b\x41\x51\x21\x4a\ \x24\x10\x27\x8b\x60\x8b\x8b\x04\x61\x7a\x00\x48\x3b\x19\xf1\x3a\ \xe4\x33\xcf\x8f\x4a\xbc\x8a\xf4\x28\x62\x60\xd1\x44\x57\x04\xc8\ \x13\xde\x0b\xb3\xbf\xac\x7f\x8f\xb1\xfe\xbf\x6c\x03\x06\x1f\xfa\ \x55\x09\x1f\x0b\xbb\x61\x61\x5f\xc7\xeb\xd3\x12\x00\x6c\xb8\x75\ \xe7\xce\x9d\xc7\xca\x9a\x60\x95\xf1\x20\x7e\x86\xbf\xe5\xaa\x7b\ \x6b\x56\xdc\x71\x3f\x28\xd9\xe3\x45\xa0\xeb\xfd\x62\x5e\x20\x46\ \x00\x6a\x97\x4f\x0a\xf9\x27\x02\x3f\x1f\xb8\x75\xf7\xee\xdd\x05\ \x8e\x7c\x09\x02\x20\x7e\xa7\x2e\xf9\xb2\x6c\x3f\x4a\xe8\x57\x11\ \x8f\xf5\x00\x4f\x55\xc4\x7b\x98\x90\xa2\x0e\x03\x98\x86\x76\xe4\ \x07\x78\xfe\xaf\x75\xc9\x27\xef\x0a\x0a\xfd\x61\xd9\x7e\x1c\xef\ \x67\xf7\xf0\x51\x24\x8a\x00\xd0\x4f\x47\xbe\x8a\x7c\x84\xfa\x3f\ \xa7\x49\x7e\xd4\x71\x5f\xc7\xfb\xc3\x86\x02\x7e\x18\xc0\xbf\xb5\ \xc9\xc7\xbb\x08\x37\x30\xfc\x0d\x2d\xfc\x50\x01\xe2\xdf\x66\xfb\ \xf0\x65\x49\x1f\x3d\x3b\xc7\x49\xfc\x92\x78\xbf\x28\x84\xb0\xc7\ \x42\xbe\x2d\xf1\x69\x20\x0e\xf9\xc0\xe3\x0a\x61\x42\x2f\xa4\x40\ \x04\x93\x0b\x2b\x02\x46\x3e\xbf\xdd\x3a\x6e\xd2\x47\x1e\xc7\xc0\ \x0f\x23\x7f\xec\xd8\xb1\x9d\xb3\x66\xcd\x3a\xb3\x7a\xf5\xea\xfd\ \xcf\x3d\xf7\xdc\x67\x2f\x5f\xbe\xdc\x82\xac\x7c\x21\x95\xa8\xe3\ \x7f\x94\x08\x80\xfe\x68\x7b\x3e\xec\x3f\x4f\x78\x30\x01\x14\x56\ \x04\x30\xec\x7c\x54\xcf\xe7\x57\xf8\xc4\xd5\xbd\xb0\xc7\x3e\x12\ \x03\x0d\x01\x4b\x96\x2c\xf9\xc1\xd5\xab\x57\x97\xf8\x44\x37\xe2\ \xef\x19\x28\x63\x90\x91\x0f\x40\xe9\xcd\xbc\x2c\x6a\x5e\x20\xcb\ \x01\xa8\x2d\x2e\x01\x8d\x43\xfe\x49\xe6\x0c\x0c\x1b\xf6\x5a\x5a\ \xa1\x86\x03\x18\x77\x88\x7f\xfd\x2a\x6a\xe8\xa7\xc7\xa8\xa8\x02\ \x20\x22\x1a\x1b\x1b\x7f\xca\x3c\x1b\x7f\xd7\xf1\x44\xab\xc2\x6a\ \x90\x00\xc4\x5c\x42\x16\xfa\x7d\x01\xc4\x21\xff\x00\x45\x3f\x95\ \x00\xe8\xe5\xd4\x42\x0c\x05\x30\x64\xb9\x0e\xf9\x41\xde\xaf\x5a\ \xd7\xdf\xbe\x7d\xfb\x57\x7c\xe2\x1f\xd2\x05\x2d\xa9\x00\x20\x0a\ \x6d\xf2\x61\xe3\x36\xca\x75\xd8\xf0\xc7\x8b\x80\x7f\x31\xb5\x08\ \x22\xe8\x45\x06\x89\xa1\x3f\xca\x84\x0f\xef\xfd\xaa\xc7\x3f\x46\ \x3c\x3c\x7d\x88\x2e\xf1\xec\x7a\xd5\xc2\x50\x14\xef\x8f\x43\x3e\ \x88\x5f\x23\x23\x9f\xe5\x01\x7c\x2e\xe0\x9f\x5b\x70\x33\xae\x6d\ \x99\xdf\x67\x9a\x7c\x16\x01\xe6\xcf\x9f\xff\x0b\xf2\xf8\x24\xc4\ \xeb\x08\x40\x4c\x32\x29\xec\xc7\x21\x1f\xa2\x7e\x8c\x22\x1c\xb7\ \x4a\xd8\x1d\x05\xf8\xa4\x58\x22\x00\x3a\xc0\xe2\x70\xe6\x64\xea\ \x76\x80\x4f\xfa\x64\xcf\xfc\xb2\xc5\x9e\x28\xdb\xbb\xae\x5f\xbf\ \xde\x0c\xf2\x8d\x3d\x2a\x45\xdd\x1c\x22\xcc\x36\x6a\x87\x7d\x90\ \x5e\xcf\x93\xaf\x19\x05\x28\x8a\x0e\xd7\xe5\x20\xb3\xeb\xd1\xd9\ \x86\xa8\xde\xcf\x3f\xf7\xab\x04\x40\x43\xc0\x94\x29\x53\xda\x7d\ \xaf\xef\x69\xd2\xb0\xb0\xfd\x80\x92\xdf\xc7\x21\x1f\xa6\xfd\xff\ \x1d\x44\xc9\x2b\x66\x0f\x44\x00\x59\x14\xa0\x83\xac\x4c\xda\x9d\ \x6a\x5d\x61\xe4\xf3\xde\x1f\x45\x00\xab\x56\xad\xda\x07\xf2\x3f\ \x9c\x46\xa7\xa3\x0a\xc0\x9f\x77\xd0\x26\x1f\x7d\xae\x92\xbd\x51\ \xc4\x47\x00\xd9\x30\xa0\x18\x0a\x4e\xa4\x81\x81\xd1\x3a\x41\xfe\ \x49\x53\x02\xa0\x44\x70\xff\xfe\xfd\x9b\x40\x7e\xad\xd1\x4e\x72\ \x95\x45\x79\x37\x20\x01\xf9\x3d\xb0\x20\x74\x5c\xe6\xfd\x71\x04\ \xe0\x47\x81\x7b\x73\x18\x69\x61\x92\xa8\x5e\xf6\x18\x13\x94\xf9\ \x07\x45\x00\x7e\x18\x38\x7e\xfc\x78\x2b\x4d\xdc\x24\xea\x50\xc8\ \xcd\x51\xde\x0c\x8a\x33\xbd\xcb\x9a\x45\xff\x1b\x26\x4e\x9c\xf8\ \xa6\x2a\xfc\xab\xbc\x5f\x11\x01\xe8\x08\xbb\xfc\x3e\x15\xd0\x54\ \x2f\xef\xfd\x61\xc9\x9f\xb8\xd7\x8f\x5f\x03\x20\xf2\xe1\xf9\x7d\ \xd3\x24\x9f\xea\x0e\x13\x40\x12\xf2\x59\xdf\x61\xc7\x23\x98\x8e\ \x7e\x4b\x3c\x73\x80\x3f\x80\x42\x7c\x12\x10\x67\x06\xd9\x51\x76\ \x14\x05\x28\xc7\x4a\x1b\x97\x38\xf5\xf7\x15\xbd\x5f\x25\x00\x31\ \x02\x88\x79\xc0\xa6\x4d\x9b\x76\xda\x20\x9f\x8c\x0c\x7a\x3b\xd8\ \xe4\x92\x2e\x22\xc1\x1c\x0c\x07\xd7\xc4\x47\x40\x71\x32\x88\x9f\ \x0f\x50\x25\x83\xb9\x4c\x08\xd1\xd9\xf7\x54\xe1\x5f\x3c\x6a\x45\ \xf4\x04\x3e\x49\xc2\xa2\xcd\xcb\x00\xcb\xda\x23\x8f\xec\xad\x22\ \x7f\xe2\x29\x4e\xc2\x17\xe8\x38\xb4\x2d\x4c\xf6\x14\x10\x24\x02\ \x71\x66\x90\x22\x01\x09\x00\x3f\x9f\x19\xc7\x4b\x53\xbb\x27\xc8\ \xfb\xf9\x99\x3f\x71\xf5\x8f\x07\x84\x5e\xe4\x04\x48\x53\x53\xeb\ \xa4\xa4\x62\xd9\x1b\x46\x69\xee\xe4\xb9\x7d\xfb\xf6\x13\xa2\x43\ \x88\x79\x40\x58\x14\x60\x22\xb0\x89\x53\x60\x5b\xe8\x50\x7b\x98\ \x00\xa2\x88\x00\xe4\x37\xda\x36\x4a\xf2\x18\x6a\xdc\xf3\x79\x9b\ \x10\xdd\x7a\x2e\x5b\xb6\xac\x7b\x21\x48\xe6\xf9\xe2\xe2\x50\x40\ \x32\x48\xf3\x02\xd5\xb6\xf1\x92\xb6\xe7\x1f\xab\xda\xbd\xa1\x41\ \x96\xfd\xcb\xc8\x17\xf3\x80\xb6\xb6\xb6\x2f\x67\x61\x0c\x1f\x81\ \x68\xf7\xae\x8d\x0d\x9c\x10\xfa\x58\x31\x0a\x88\x47\xd2\xf1\x0b\ \x68\xaa\x61\x00\xb8\xbf\x99\x05\x66\xf7\xb5\x89\x4e\x7c\x46\x26\ \x00\x3e\x01\x54\x09\x80\x89\x00\xe3\xf0\x0d\x13\xf3\xfa\x71\xc0\ \xe0\x86\x24\x2b\xe4\x73\x4f\x06\x0b\x65\xa1\x5f\x0c\xff\x7c\x04\ \x20\x21\xf0\x07\x5b\xe7\x22\x19\x64\x1d\x8a\x33\x04\x30\xf0\xbb\ \xba\xba\x16\xc6\x21\xcf\xc4\x3d\xbe\x38\xad\x92\xcf\xfa\x5d\x5f\ \x5f\xdf\x2e\x3b\xa5\x94\xf7\xfe\x30\x01\x00\xff\x4f\x98\xc0\x21\ \x76\x1d\xbc\xf7\xab\xe6\x00\xc4\x0d\x20\x7c\xf8\xc3\x62\x4c\x47\ \xec\xc6\x0d\xdc\x48\x00\xdb\x08\xfb\xb2\xae\x62\x28\xf8\x50\x14\ \x01\x04\xe5\x01\x88\x02\x9d\x06\x60\x88\x57\x05\x08\x7f\x5a\x27\ \x02\xc8\x84\x00\x10\xe6\xc5\x6b\xdd\xcc\x5d\xb4\xc0\x64\xa6\xa6\ \x78\xb5\x4c\x9e\x3c\xf9\xf5\xa0\xf1\x3f\x2c\x02\x64\x3a\x0c\x80\ \xfc\x9b\xa2\x00\xc2\xa2\x00\x6f\x2c\xc6\xfe\xf7\xe3\xc1\x56\x9c\ \xbb\x20\xc0\x87\xc5\x90\xaf\x4a\x00\x65\x39\x80\x3f\x27\xb0\x28\ \x13\x44\xc2\xc8\x17\x13\x41\x51\xe9\xc7\x8e\x1d\x5b\x93\x49\xc7\ \x73\xd6\x28\x9d\x6d\x94\x44\x04\x18\x52\xdb\xad\x9b\x84\x2f\x6c\ \xd5\xf1\x19\xa9\xf0\x91\x85\xfb\xce\xe0\x97\x8d\x73\xf4\x33\x5b\ \xd3\xbd\xd6\xc1\xd1\x6c\x70\xdf\xbe\x7d\xeb\x54\x02\x10\x3f\x68\ \x21\x3e\x05\xb0\x0f\x5e\x69\x36\x99\xfc\x72\xa8\xee\x05\x6a\x5c\ \x16\x05\xc4\x61\x40\x34\x8e\xc8\xc7\x06\x0f\xf7\x89\x36\x9f\x06\ \x38\x42\xff\xa0\xcc\x5f\x36\x0f\xc0\x66\x03\x33\x13\x00\xcd\xfd\ \x47\x8d\x00\xbc\x71\x2c\x1a\x9c\x38\x71\xe2\xf1\xe4\x32\x2c\x4e\ \x0d\xd8\x98\xd2\xfd\x76\x50\xd0\xf8\xcf\x84\x20\x8b\x02\xf8\xd9\ \x47\xac\xa2\xc1\x7b\xbf\xf8\x28\x18\x16\x01\xfc\x47\xaf\x0a\xab\ \x1d\xce\x79\x63\xad\xad\xad\x4f\x8b\x4b\xc0\x62\xf8\x57\x25\x81\ \xc4\x05\xd6\x2f\xbe\x6b\xd5\xc4\x20\x01\x04\x25\x34\xf4\x3b\x4c\ \xb9\x96\x7d\xf6\x2f\x92\x45\x2b\xa0\xba\xde\xcf\x0f\x03\xb8\xf7\ \x9f\xd6\x04\x00\xb5\x0d\x64\x63\x8f\x2a\x07\x08\x8a\x02\x73\xe7\ \xce\x7d\xc9\x5a\x67\x4b\xa8\x21\x99\xc7\x47\x4d\x02\xad\xce\x07\ \xe0\xb1\xe5\x29\x51\x00\x41\x42\x10\x8d\xd8\xb2\x65\xcb\xc7\x4a\ \x88\x17\x6b\x5d\xc5\xc2\xd4\x7f\x54\x22\xe0\xc7\x7d\x7e\x77\x10\ \xff\xd9\x5b\x6b\x1d\x1d\x3f\x7e\xfc\x57\x65\x02\x88\xa2\x60\xba\ \x86\xb2\x5e\x6b\x9d\x2d\xa1\x86\xa6\x4d\x9b\xf6\x9b\x20\x0c\x45\ \x11\x88\xdf\x3d\xb6\x66\x2a\xe6\xef\x7f\xc2\x37\xae\x7a\x1a\x50\ \x19\x63\xad\xa3\x25\xd6\xd0\xbc\x79\xf3\xbe\x19\x14\xf2\x55\x73\ \x00\xd6\x1f\x05\x21\x80\xdf\x89\xea\x13\xd5\x19\xa4\xe4\x12\xe3\ \xc5\x5a\x77\x57\xac\x58\xf1\x71\x59\xa8\x0f\xf3\x7c\xeb\x02\x40\ \x16\x7f\xd9\x09\xc0\xbc\x2e\xd6\xae\x5d\x3b\xa5\x24\x04\x80\xa7\ \x80\xbf\x88\x02\x10\x1f\x0b\x83\x0c\x31\x0f\x5d\x31\x6a\xdc\xb0\ \x61\xc3\xb0\x30\x01\xc8\x70\xb7\x1e\x01\x54\x02\x88\x2a\x82\x62\ \xd0\x65\xde\x8a\x8d\x1b\x37\x56\xab\x30\x0c\x22\xde\xba\x00\xb0\ \x6d\x5a\x1a\x01\x9c\x00\x92\x89\x02\xb8\xd6\x94\x84\x00\x90\x04\ \xb6\x47\x51\xa4\xea\x9a\x64\x30\x15\xf7\x6e\xbc\x13\x31\x22\x2e\ \xae\x58\x9d\xb5\xf7\xf6\x30\x4e\xcf\x78\x95\x1a\x8c\xdb\xd9\xe2\ \x52\x98\xcc\x32\xbc\x3e\x36\x3f\x0e\xa6\xc4\x85\x55\x01\x4c\x9a\ \x34\xe9\xbe\x79\x00\xdd\x4e\x27\x83\xa9\xb8\x77\x4f\x98\x30\xe1\ \x0b\xba\x58\xb2\xeb\xad\x0a\x60\xe6\xcc\x99\x7b\x5d\x04\x30\x2f\ \x44\x2c\x09\xff\x30\x8e\x00\xac\x47\x80\xe6\xe6\xe6\xb5\xac\xd1\ \x38\x42\xa8\xaa\xaa\xd2\x3e\xcd\xcb\x3c\xdc\xf9\xab\x11\x2b\x7a\ \xef\xe8\x08\x80\xe7\xc0\x6a\x04\xd8\xb3\x67\x4f\x7d\x12\x01\x60\ \xd1\xe3\x5b\xf9\x83\x3f\xfb\x1e\xe9\x90\x4f\xd7\x66\x26\x00\xac\ \x5d\x57\x88\x8d\xeb\x44\x02\x4c\x13\xff\x3b\x7b\xb8\xf3\xd7\x83\ \xa8\x02\x90\x61\x8f\xe8\xf1\x2f\xab\x16\x25\x11\x00\x19\x6a\xb5\ \xb3\x25\xd0\x18\x86\xc5\x27\x93\x08\x00\x7b\x2c\x4f\x5a\x35\x13\ \x1d\xbe\x29\x13\x01\xfb\x99\x68\x8c\x24\x5c\xa5\x7e\xfa\x87\x55\ \x40\x12\x36\x86\xa8\x78\x21\x68\x58\x0d\xc2\x1a\x5c\x78\x2b\x57\ \xae\xdc\x90\xb0\x0b\x7a\xb7\x4f\x9d\x3a\xf5\x14\x35\xcc\x4a\x50\ \x07\x65\xbf\xc3\x9c\x77\xe9\x1d\x7e\xa8\x07\x91\xd6\xd5\xba\xf8\ \xd1\xf5\x3c\xfe\x18\x96\x07\x6b\x35\x98\xf4\x62\xec\xea\x59\x99\ \x44\x00\x56\xb3\xd6\xa4\xc6\xa6\x7c\x3f\x3d\x15\x25\x15\x40\xca\ \x5d\x7c\xb0\x7a\x3a\xbd\x8b\x17\x80\x4e\x24\x60\xd7\x22\xec\x8d\ \xb4\xde\xf1\x1c\x36\x08\xf2\xff\x46\x98\x44\x15\x81\x88\x3b\x96\ \xe7\xaf\x64\x62\x56\x5c\x01\xb0\xf0\x45\x86\x67\xd2\xf1\x9c\x35\ \xaa\xe3\x3c\x62\xe8\xf7\xc7\xff\x67\x32\x31\x09\x5b\x98\x8e\xca\ \x44\xa0\xf3\xb3\x4c\x3a\x9e\xa3\x46\x2b\x2b\x2b\x5f\xd2\xc1\x4b\ \xbc\x16\xf7\xd3\x1e\xcb\x11\x99\x98\x44\x1f\x65\xa0\x0e\xb0\x12\ \xc7\x10\xdc\x7b\x21\x93\xce\xe7\xa4\x51\xc2\x2e\x26\x6e\xf7\x70\ \xcf\xd4\x14\x03\x02\x28\xdb\x39\x81\x8a\x8a\x8a\xd3\x71\xc8\xa7\ \x7b\x18\xee\x38\x70\x6a\x6f\xa6\x02\x58\xb4\x68\xd1\x8b\xbc\x08\ \xa2\x44\x03\xf1\x7a\x00\x51\x96\x6f\x0a\x89\x38\x04\x89\x41\x86\ \xb1\x1f\xfe\x53\x3b\x47\x39\x92\xb0\x30\x0c\x8c\x53\x75\x4e\x65\ \x90\xec\xfa\x3e\x7d\xfa\x64\x7a\x52\x47\x24\x63\x0d\x5e\x04\x0c\ \x6e\x26\x15\x00\xd6\x54\x32\x3d\x5e\xe7\x1e\x1c\x78\x0c\xf9\xab\ \x4a\x04\x3a\x3f\x37\x88\x6f\xae\xab\x42\xc4\xfb\xbc\x0e\x2e\xaa\ \x6b\xcf\x9e\x3d\xbb\x24\x17\x86\x76\x76\x76\x3e\x0a\xa3\x3c\x56\ \x74\x8d\xe3\xee\xbd\x9e\x0b\x83\x52\xee\x44\x5c\x9c\x08\x57\x1e\ \x67\x5a\x94\x4b\xb9\xab\xd1\xaa\xa7\xd3\x2f\x11\xee\xaf\x1b\x32\ \xec\x7b\xd1\x5a\x2d\xcd\xab\x92\x38\x0a\x2f\x80\xdd\xbb\x77\x6f\ \xca\x15\x02\x1d\x1d\x1d\xcd\xbc\x71\x49\xfe\xdd\xbb\x77\xef\x96\ \x5c\x19\x67\xa8\x33\xc8\x73\xde\x49\x82\x8b\xe0\xfd\xa9\x7e\x47\ \x41\xdb\x64\xfa\x48\x23\x66\xa9\xae\x99\x32\x10\x11\xc5\xd8\x87\ \xa1\xb4\x8d\x49\xe1\x06\xe0\xf2\x9a\x29\x6c\x0e\x1e\x3c\xb8\x2e\ \x85\x2e\x26\xaf\x92\x8e\x43\x37\x65\x24\xd5\x83\x1e\x65\x33\xc3\ \x95\x1c\x8a\xfb\x6a\x80\xe7\xff\xd8\x20\x2e\x74\xaa\x69\x3f\xc3\ \x5d\x34\x57\x1d\x5e\x1d\x7f\xc3\x94\xb1\x00\x8e\x26\x3c\x66\x98\ \xeb\x9d\xfd\x9a\x60\xc3\x19\x53\x78\x50\x3d\x59\x1f\x6c\x19\x8a\ \x20\x1d\x7c\x48\xc4\xf1\x25\x0a\x00\xe2\x3d\xfc\xff\x7b\xf5\xea\ \xb5\x31\xb4\xe1\x1c\x5e\x80\x5c\xe6\xef\x2a\xbb\xa2\x60\x42\xd7\ \xf0\xf7\xc3\xb9\x5e\xcd\xa1\x99\x0f\x76\x89\xc6\x28\x5d\x01\x88\ \xc6\x4a\x80\xfb\x65\x49\x18\xef\x77\x32\x48\xd0\xf4\xbb\x28\x02\ \x10\xeb\xa0\x2f\xa0\x97\x04\x06\x34\x46\xe1\x3d\xb7\x3f\x85\x81\ \x10\xe7\xf7\x79\x07\x00\x5e\xff\xa9\x38\x76\x85\xdd\x73\xee\xdc\ \xb9\xd2\x3a\x56\x07\x6a\x9d\x1d\x66\x54\x82\xdf\x7f\x3d\x8f\x42\ \x00\xf9\x1d\x09\x6c\xba\x2f\xdc\xf3\xf5\x34\x34\x34\xfc\x3c\x37\ \x93\x3e\x3a\xc0\x7b\x9e\xd7\x64\x12\x10\x00\xec\xf1\x05\x75\x3f\ \xaa\xd3\x9f\xb4\xae\x45\x9f\x8e\x0a\xfd\x52\x92\xa9\x8b\x07\x86\ \x8a\x5b\x26\xbf\x95\x9c\x16\x06\xd2\x7a\x69\x86\x10\xa7\x5e\x3c\ \xab\x6b\x74\xd8\xf5\xa2\x10\x00\xd2\x6c\xab\x86\xf9\x8d\xa1\x1f\ \x2f\x48\x44\x69\x8c\x7c\xc2\x21\xab\x6f\x19\x18\xc3\x93\x0e\x40\ \xc4\xcb\xa4\xbf\x12\x81\x4a\xe3\xff\x78\x5a\xd8\x6e\xac\xe3\xea\ \x8a\xc6\xa1\x9d\xf6\x34\xfa\x2f\xd6\x49\x5f\x18\xb3\x60\x4f\xfa\ \x4d\x20\x84\x4d\xc3\xe1\xd2\x6f\xd9\x00\xcd\x6f\xa3\x13\x24\xed\ \x80\x65\x46\xbe\xaa\x45\x11\x06\xf5\x9d\xb6\xd8\x7f\xef\xd0\xa1\ \x43\x9f\xa6\x08\x9a\x3e\x3b\x96\x5a\xa0\x2f\x67\x62\x7a\xf7\x5d\ \x9b\x20\x72\x6d\x5d\xeb\xd9\xb3\xe7\xf7\x41\xe2\x5a\x98\x3b\x11\ \x45\xf5\x01\xe6\x1a\xdc\xd3\x8c\xeb\x76\xa2\xfc\x3e\xa3\xbe\x7a\ \xeb\xd7\xaf\x7f\xb6\x90\x47\xe9\xc3\xa8\x8f\x62\x5c\xbb\x91\x15\ \xb0\xa5\xd0\xee\x9a\x35\x6b\xbe\x06\x9c\x86\x59\xf2\x4b\xfb\xcd\ \x50\x52\x93\x46\x24\x80\xc7\x7a\xb6\x8b\x69\x41\xf9\xe4\x17\x62\ \xfd\x23\x50\x59\x14\x09\x30\x51\xf4\x47\xd3\x00\x52\x7d\x36\x44\ \x90\x46\xbf\x77\xed\xda\xf5\xb9\xcc\xb6\x77\xdb\x8f\x03\x3d\x7a\ \x20\x12\xcc\x9a\x3e\x7d\xfa\xcf\x6c\x10\x96\xf7\x36\xae\x5c\xb9\ \xb2\x94\xde\xb4\xca\x82\x87\x4c\xdb\x84\xe2\x1f\xda\xb6\x6d\xdb\ \x97\xf2\x4e\x50\x9a\xfd\xa3\xd5\x3d\xda\x4b\x91\x29\x11\x59\x36\ \x0e\xe3\x07\x11\x08\x69\x82\x9c\xc7\xba\x71\x20\xd4\x6f\x73\xbf\ \xb4\x6b\x53\x18\x04\x06\x26\x8c\x5e\xc9\x23\x59\xa6\xfb\x74\xe0\ \xc0\x81\x75\x10\x7e\x83\x4d\x7c\x4b\xa2\x2d\x9a\x30\xba\x78\xf1\ \xe2\x53\xa6\x01\xcf\x4b\x7d\xb5\xb5\xb5\x6f\xf8\x21\x3f\xbf\x3b\ \x7a\xb2\x56\x0a\x3c\xa3\x0f\x81\xd4\xd2\xd2\xb2\x17\x93\x37\x56\ \xb2\xfa\x34\x05\x42\x36\x50\xb9\x74\xe9\x52\x0b\xec\x9a\x99\x35\ \xbe\x25\xd3\x3e\xc0\xaa\x25\x21\xe0\x0b\xdb\xa7\x4b\x55\x08\xd4\ \xef\xb6\xb6\xb6\x2f\x96\x7d\xa2\x97\x44\x75\x00\x6f\x2a\x01\x58\ \x57\x57\xf7\x0a\xf3\xa6\x52\xf8\x7b\xf3\xe6\xcd\x6d\x3e\xf1\x83\ \x92\xd8\xef\xee\xf5\x11\xa0\xfc\x80\x00\x5d\xbc\x78\xf1\xf3\x79\ \x15\x00\xce\x3d\xea\x38\x7c\xf8\x70\xab\x4f\xfc\x10\x47\x5e\x0a\ \x08\x00\xdc\x31\x04\xf0\xf9\xf3\xe7\x97\x23\xa9\x7a\x3d\x6b\x31\ \x20\x7f\xf8\xa0\xb1\xb1\xf1\x45\xea\x13\xca\xbc\x42\x2e\xe2\xa4\ \xc0\x63\xe2\x2a\xfd\x64\xf1\x61\x02\x9e\x12\x2c\x9c\x5f\xfc\x23\ \x90\x71\xc3\x86\x20\xe0\xe9\xff\x58\xbe\x7c\xf9\xb7\x7d\x4f\x5f\ \x80\xbf\xc7\x25\x36\xc8\x55\x10\x1f\x01\x9a\x49\x03\x09\xf5\xb4\ \xd0\x44\xa4\xd0\x06\xca\x05\x0b\x16\x1c\xc4\x97\x4d\x2e\x40\x10\ \xb7\x92\x88\x02\xab\x97\xef\x53\x22\x4a\x3b\x9b\x7c\x2f\xef\xf6\ \x74\xb4\x35\x3a\x7e\x8f\xdd\x9d\xa9\x22\x40\x1b\x28\xc9\x2b\x51\ \x1e\x61\xa4\x75\x75\x75\x3d\x71\xe4\xc8\x91\xd6\xad\x5b\xb7\x6e\ \x83\xf7\xee\x99\x3d\x7b\xf6\x51\x7c\xc1\xf4\x08\x2b\x4d\x4d\x4d\ \x07\xf0\xd5\xae\x6f\xec\xd8\xb1\x63\xcb\xa9\x53\xa7\x56\x72\x64\ \x3f\x4e\x89\x28\xed\x6c\x4a\xb5\xd3\xae\xf2\xf4\x11\xa0\xf1\x99\ \x0e\x54\x24\xef\xc5\xbf\xeb\xf0\xf7\x04\x56\xf0\xff\xb1\x28\x23\ \x51\x6a\x50\xaa\xd2\xef\x8d\x6b\xc1\x21\xe0\x10\x70\x08\x64\x8d\ \xc0\xff\x00\xce\x96\x78\xed\x86\x87\xe9\xfe\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0f\x65\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0e\xeb\x49\x44\x41\x54\x78\x5e\xed\x9d\x5f\xa8\x57\ \x59\x15\xc7\xc7\xff\xff\xff\xff\xbf\xfe\xbb\xa8\x5c\xcd\xfc\x53\ \xa6\xa6\xa3\x93\x4c\x6a\x5e\x05\x67\x40\x42\x64\x14\x19\x09\x93\ \x28\xa3\x79\x30\xba\x14\x64\x43\x93\x45\x66\x92\xe5\x24\x64\x43\ \x10\xf8\x12\x82\x58\xcc\x43\x61\x0d\xf7\xa5\x87\x99\xb7\x8a\xbc\ \x46\x4e\xd1\x4c\x0c\x52\xd0\x79\xf4\x41\x5b\xeb\x72\x96\xac\x59\ \xae\xb5\xf7\x3e\xe7\xfc\xfe\x9f\x25\x6c\xee\xcf\xdf\x6f\x9f\x7d\ \xce\x59\xdf\xcf\x5e\xfb\xff\xde\xcf\x3c\xe3\xff\xdc\x02\x6e\x01\ \xb7\x80\x5b\xc0\x2d\xe0\x16\x70\x0b\xb8\x05\xdc\x02\x6e\x01\xb7\ \x80\x5b\xc0\x2d\xe0\x16\x70\x0b\xb8\x05\xdc\x02\x6e\x01\xb7\x80\ \x5b\xc0\x2d\xe0\x16\x70\x0b\xb8\x05\xdc\x02\xbd\x6e\x81\x09\x13\ \x26\xbc\xdc\xeb\xef\xe8\xef\x67\x58\x00\xc4\xcf\x96\x2f\x5f\xfe\ \x2d\x37\x50\x0d\x2d\x30\x71\xe2\xc4\x0c\x43\x7f\x7f\xff\xb7\x6b\ \xf8\xfa\xf5\x7e\x65\x12\x1f\xff\xae\x5a\xb5\xca\x01\xa8\x13\x0e\ \x93\x26\x4d\xca\x78\x70\x00\x6a\xa4\xfe\xe4\xc9\x93\x33\x0a\x04\ \x81\x03\x50\x13\x00\xb8\xf8\xfc\xf3\x9a\x35\x6b\xbc\x08\xe8\x75\ \x06\xa6\x4c\x99\x92\x69\x01\x41\x70\x00\x7a\x5c\x7d\x4b\x7c\xfa\ \xde\x01\xe8\x61\x00\x62\xe2\xe3\xef\x0e\x40\x8f\x02\x30\x75\xea\ \xd4\xcc\x0a\x1c\x0c\x07\xa0\x07\x01\x98\x36\x6d\x5a\xa6\x05\x0d\ \x88\x81\x81\x01\xaf\x04\xf6\x12\x03\x96\xf8\xf2\x7b\x82\xc1\x01\ \xe8\x21\xf5\xa7\x4f\x9f\x9e\xa5\x04\x0e\x83\x03\xd0\x23\x00\xcc\ \x98\x31\x23\x8b\x05\x09\x07\x82\xb0\x6e\xdd\x3a\x2f\x02\xba\x9d\ \x01\x14\x7e\xe6\xcc\x99\xc1\x20\xe1\x20\x18\x1c\x80\x2e\x57\x5f\ \x13\x7e\xd6\xac\x59\x19\x05\xed\x77\x0e\x83\x03\xd0\xc5\x00\x70\ \xa1\x8b\x7c\x26\x28\x10\x04\x07\xa0\x4b\x01\x20\xc1\x67\xcf\x9e\ \x9d\xa5\x06\xcd\x33\x38\x00\x5d\x08\x00\x17\x7c\xce\x9c\x39\x59\ \x4a\xe0\xd7\x70\x10\xd6\xaf\x5f\xef\x95\xc0\x6e\x62\x00\x85\xd4\ \x04\x9f\x3b\x77\x6e\xa6\x05\x19\x57\x82\xe0\x00\x74\x91\xfa\x5c\ \x4c\x4b\xf0\x22\x20\xa0\x27\x70\x00\xba\x04\x00\x29\xec\xfc\xf9\ \xf3\xb3\x22\x81\x5f\x4f\x20\xa1\x37\xd8\xb0\x61\x83\x17\x01\x9d\ \xce\x00\x89\x67\x09\xbe\x60\xc1\x82\x4c\x0b\x32\xbe\x06\x81\x03\ \xd0\xe1\xea\x73\x11\x35\x91\x17\x2e\x5c\x98\x59\x41\xc6\xa7\xb4\ \x08\x04\xf4\x04\x0e\x40\x07\x03\x80\x82\x49\x11\x43\x82\xa7\x80\ \x20\x21\x70\x00\x3a\x14\x00\x29\xbe\x26\xee\xa2\x45\x8b\x32\x2b\ \x68\xf1\x09\x26\x0e\x81\x03\xd0\x81\x00\xa0\x50\x52\x40\x4d\xe8\ \xc5\x8b\x17\x67\x5a\xd0\xe2\x52\x7a\x12\x82\x4d\x9b\x36\x79\x25\ \xb0\x93\x18\x90\xe2\x4b\x31\x2d\xd1\x53\x60\xd0\x20\x70\x00\x3a\ \x48\x7d\x9e\xeb\xb9\xf0\x9a\xb8\x4b\x96\x2c\xc9\xac\x20\xe3\xf3\ \xb4\x38\x04\x58\x14\x38\x00\x1d\x02\x00\x0a\x63\x89\xae\x09\xdd\ \xd7\xd7\x97\x69\x41\x8b\x4b\x40\x50\xfa\x1c\x02\x07\x20\x07\x00\ \x26\x4a\x6e\x83\xd5\x32\x83\x30\x55\x2a\x1a\x60\x34\x6d\xd0\x0a\ \xd0\xb4\x1a\x0c\x05\x70\xf1\x83\x3c\x80\x18\x3b\x21\x3c\x20\x71\ \x78\xee\x95\x62\x5a\xa2\xa7\x80\xa0\x41\x80\xc5\xcd\xc6\x8d\x1b\ \xbf\xdf\x21\x79\xa0\xbd\x8f\x01\x13\x24\x7e\x23\xa7\x51\xd3\xbc\ \x39\x3e\x85\x8a\x26\x52\xd0\x98\x3a\x0d\xad\x6a\xa3\x73\xd8\xce\ \x96\x9d\x38\x54\x09\xa3\x5c\xa8\xe5\x7a\x2e\xbc\x25\xfa\xd2\xa5\ \x4b\x33\x1e\x62\x10\x58\x00\xe0\xf3\x60\x51\x00\xcf\xb9\xac\xbd\ \x0a\xb4\xf9\xee\x60\xf4\x3b\x1c\x00\x29\x7e\x51\xe1\x49\x7c\x6a\ \x72\x59\xc2\x93\x30\x96\xe8\x52\xe8\x22\xff\x27\x28\x78\xda\x78\ \x3f\x5e\x14\xf0\x56\xc1\xbc\x79\xf3\xae\xb7\x59\x86\xf6\xdd\x9e\ \x03\x50\x56\x7c\xea\x63\x4f\xcd\xf5\x21\xf1\x2d\xa1\x97\x2d\x5b\ \x96\x69\x41\x8b\xcf\xbd\x02\x41\xc0\x3d\x01\x7a\x21\x0e\x40\xfe\ \xdc\x37\xda\xa7\x42\x1b\xef\x4c\x00\xb4\x4b\x7c\x2e\x96\x26\xa6\ \x25\xbc\xfc\xde\x2a\x1a\x2c\x00\x08\x82\xbc\x18\x18\x1d\x6a\x06\ \x10\x3e\xd3\x46\x29\xda\x73\x6b\x04\x80\x8b\xcf\x67\xd0\xf2\x49\ \x97\xb2\xac\xaf\x9a\xeb\x49\x78\x2e\x9c\x14\x15\xb6\x71\xc1\xad\ \x5c\xa2\x21\x04\x03\xde\x27\xe4\x05\x78\xef\x20\xbe\x53\x7b\x54\ \x68\xe3\x5d\xc1\x40\xa3\x00\x50\x85\x0f\x01\x88\x55\xf4\x9a\x2d\ \x7e\x8a\xe8\x32\x0e\x87\x40\x56\x12\x53\x8b\x81\xdc\x0b\xbc\xd2\ \x46\x39\x5a\x7f\x6b\x04\x80\x8b\x2f\x01\x68\x75\xce\x2f\x23\x3e\ \x5e\x63\x79\x01\x5e\x21\x8c\xd5\x03\x10\x00\x9c\x2b\xd0\x7a\x15\ \xda\x78\x47\x30\xdc\x28\x00\xbc\xb6\x6f\x35\xf1\x8a\x34\xef\x64\ \x45\x4f\xba\x7c\x2e\x58\x59\xd1\xb5\xeb\x34\x4f\x20\x21\x90\xad\ \x01\xaa\x07\x60\x65\xb0\x76\xc5\x00\x02\xa0\x35\xf5\x52\x72\x7e\ \x6a\x13\xaf\x55\xe2\x4b\x4f\x40\x45\x41\x2a\x00\x54\xb4\xc1\x7b\ \x4d\x6f\x63\x9e\x6c\xed\xad\x25\x00\x3c\xf7\xd3\x44\xca\x94\x32\ \x5f\xf6\xe8\x69\xed\x7b\x12\xa4\x59\xb9\x3f\x04\x00\xaf\x07\xc4\ \x3c\xc0\xbe\x7d\xfb\x66\xb5\x56\x85\x36\xde\x8d\x00\xd0\x2a\x7e\ \x1a\x00\x45\x3b\x78\x5a\x99\xfb\xab\x02\x40\xa0\xd7\x0a\x00\x30\ \xda\x9d\x98\xf8\x29\x1d\x3c\x8d\x2a\xf3\x57\xac\x58\x91\xa5\x84\ \x50\xbd\x41\xd6\x03\x64\xcf\x20\xf5\x0a\x6a\x1d\x42\x08\x41\xad\ \x01\xe0\x65\x7f\xc8\xf5\xcb\x3e\xfd\x18\x00\xe8\xfe\x49\x98\x90\ \x78\x29\xe2\x63\x9c\x14\x00\xac\x3a\x80\x04\x40\xf6\x05\x38\x00\ \x30\x6f\x9e\x2f\xc4\xe0\x1e\xa0\x6c\xc5\x2f\x15\x00\x14\x36\x04\ \x41\xac\xc5\x60\xb5\x02\x62\x75\x00\xde\x23\x58\x4b\x00\xac\xca\ \x9f\xe6\xfe\x8b\xe6\xfe\x46\xe6\x7c\x0e\x87\x05\x03\xdd\x2f\xd5\ \x03\xb0\x91\xc1\xd1\x66\xa0\x03\x90\x2f\xbc\xb4\xda\xfd\x65\x01\ \x40\x61\x5a\xe5\xfe\xf1\x5e\xa9\x00\x78\x11\xc0\x36\x5a\xc0\x3a\ \x40\x6a\xed\x3f\x34\x99\xa3\x4a\xed\x5f\x2b\x02\x62\xae\x3f\xa5\ \x0f\x00\x8b\x01\x6d\x58\xd8\x01\x28\x09\x00\x9f\xce\x55\xa4\x12\ \x18\xf3\x04\x29\x62\xa7\x8c\x05\x68\xb5\xff\x50\x0b\x80\x7a\x02\ \xbd\x08\x88\x14\x01\x34\x83\xd7\xea\xfc\xd1\x86\x78\x9b\xd9\xf9\ \x43\x30\xc4\xba\x81\xb9\x07\x90\x93\x44\xbd\x12\x98\xef\xb5\x53\ \xa4\x08\xe8\x46\x0f\x60\xcd\x0a\xe2\xcb\xc6\x6a\xe9\x01\x68\xec\ \x5f\x1b\x03\x48\xe9\x08\x42\xc3\x5a\xc5\x00\x7a\x04\x6b\xdc\xbf\ \x8c\xbb\xd7\x72\xbc\x56\xe9\xb3\xe6\x02\xe0\xb3\xf2\x09\x21\x3c\ \xf7\xd7\xb2\x15\x40\x43\xc0\xa9\xe3\x00\x7c\xdd\x5e\xac\x45\x80\ \x6e\x57\x9b\xfc\xc1\xfb\x05\x52\x9a\x89\xda\x90\xaf\x6c\xee\x61\ \x9a\xb1\xe9\x60\x5c\x7c\xde\xfc\xa3\xf2\x1f\x2b\xc0\xb5\xf3\x00\ \xa9\x00\xa4\x8e\x03\xa0\x27\xa0\x8e\x17\x6b\xca\x57\xd9\xd9\x3f\ \xa1\xb1\x7f\xad\xd9\x47\xe5\xbe\xac\xfd\xbb\x07\xc8\x07\xa0\x70\ \x2c\x20\x65\x12\x48\x6a\x31\xa0\x15\x05\xdc\x0b\xc8\xe2\x40\xf3\ \x04\x29\xf3\x00\x43\x93\x41\xe5\x6c\x60\x4b\x7c\xf7\x00\x00\x41\ \x68\x38\x98\x2a\x84\xb1\xe1\x60\xbe\xae\x2f\xb6\xd0\x43\xce\xe3\ \x2f\x32\xdd\x3b\x36\x03\x98\x97\xf9\xb1\x9c\xaf\x89\x4f\x33\x82\ \x6a\x55\x04\xf0\x19\x41\xb1\x51\xc1\x18\x08\xda\x1a\xbf\xa2\x2b\ \x7e\x42\x40\xa4\x2e\x0b\x93\x8b\x41\xa8\xdc\x97\xa3\x7f\xb2\xf2\ \x47\x1d\x60\x0e\x40\xa0\x49\x98\x32\x2d\x4c\x6b\x1e\xf2\x7a\x81\ \x56\x3f\xb0\x2a\x8a\xb1\x55\x40\x32\xd7\xf3\x9c\x1f\x73\xfd\x72\ \x2a\x58\x2d\x01\xa0\x49\xa1\xa9\x2b\x80\x62\x5e\xc0\x5a\xe6\x2d\ \x57\xee\x16\x59\xf8\xa9\xd5\xec\xe5\xf5\xa9\x2b\x83\xc9\xf5\x4b\ \xf1\xc9\xfd\x63\xb1\x57\x2b\x0f\x10\x9b\x15\x8c\x4d\xc3\xd8\xfc\ \x40\xac\x20\xca\x16\x42\x99\xf5\xfe\xa1\xa5\xdf\x5a\xc5\x2e\x24\ \xba\xe6\xf6\x63\xe2\xa3\x07\xa8\x25\x00\x72\x5d\x40\xca\xda\x00\ \x6d\xbe\x00\x07\x21\xb4\xd5\x4b\x91\x5d\x3f\x52\x36\x80\xd0\xf6\ \x01\xe0\xe5\x3d\x17\xde\xca\xf9\x24\x3e\x02\xf0\xf8\xf1\xe3\x71\ \x65\x66\xe9\x81\x1d\x0f\xc2\x89\x64\x3f\x86\xd5\xd6\xc3\x70\x3a\ \xe9\xdf\x20\xfc\x13\xc2\xdf\x21\xbc\x0d\xe1\x17\x70\x66\xf1\x49\ \x48\x77\x5a\x99\xb4\x9b\x76\x0d\xad\x0c\x0a\xad\x0d\xe0\x5e\x40\ \xeb\x2a\xd6\xea\x05\xb1\xbd\x7e\xaa\x40\x50\x64\x8f\x20\xb9\x35\ \x4c\x0a\x00\xa9\xc6\x06\xbb\xcc\x85\x85\xb5\x6f\xf2\xc5\xb5\xda\ \x21\x95\x78\x58\x25\x3f\xb6\x16\x0f\xaf\x1e\x3f\x7e\xfc\x3d\x08\ \xcf\xa6\xde\xab\x69\xf1\xf8\xda\xc0\x2a\xcb\xc1\x65\xdd\x20\xe4\ \x0d\xb4\xbd\x80\xe4\x46\x11\x21\x91\xb9\x7b\x97\x7b\x0a\x59\x5b\ \xc4\x71\xe1\xa9\xd7\x8f\xca\x7d\x9e\xfb\xf7\xec\xd9\xf3\xd3\x98\ \xb1\xc1\x4e\xcf\xa3\xd7\xb4\xce\x24\x94\xa7\x94\x6a\x00\x20\x04\ \x14\xc6\x8d\x1b\xf7\x5a\xec\x9e\x4d\xfb\xdd\x5a\x1c\x2a\x17\x8b\ \xc8\xc3\x19\xac\x7d\x01\x34\x10\x24\x0c\xda\x36\x70\x16\x14\xa1\ \xed\xe1\xa4\xd8\x5a\x6e\xb7\x84\xd7\xc4\x47\x4f\x07\xee\x7f\x85\ \x65\x6c\xcc\xf1\xfc\x00\xaa\xb2\x00\xa0\x37\xe0\x00\xe4\x1e\x21\ \x03\x10\x3e\xdb\x34\xa1\xad\x84\x8b\x2c\x0f\x6f\x05\x04\xa9\x20\ \x58\xe2\xcb\xf2\xbe\x08\x00\x27\x4f\x9e\x1c\xb2\xec\x04\x19\xe2\ \x57\xe4\x21\x09\x82\x22\x00\x48\x2f\x60\x41\x00\xc5\xc2\x83\x96\ \x42\x10\xdb\x20\x42\xf3\x04\x16\x08\xbc\x7e\x20\x77\xf7\xd6\x36\ \x73\xe6\xbb\x81\x6a\x9f\x53\x73\xb8\x76\xad\xbc\x1f\x79\x26\x9e\ \xf3\xb9\xeb\x5f\xbd\x7a\xf5\xf0\xa3\x47\x8f\x16\x68\xc6\xe7\x45\ \x63\x48\x7c\x04\xc2\xaa\x03\xc4\x8a\x01\xf2\x02\x00\x00\xd6\x0f\ \x70\x7d\xe2\xfc\x96\x80\x00\xb5\xec\x0f\xed\x10\x82\x2f\xc1\xdd\ \x5c\xa8\x5e\x60\xad\x22\x8e\x15\x0f\x56\x31\x91\xba\x31\x74\xca\ \x8e\xe1\x5c\x70\xfa\x6c\x9d\x1d\x00\x27\x89\xbf\x05\xe2\x6f\xd4\ \x0c\x8e\x2d\x22\x99\xf3\xad\xf2\xbf\x08\x00\x9a\x07\x90\x10\xc0\ \xff\x37\x37\x1d\x02\x04\x00\xa9\xd5\xdc\x59\x0c\x04\xde\x5c\xd4\ \x0e\x70\xe2\x07\x34\x68\xa7\x7b\x68\x22\x69\xdf\x85\x72\x73\x28\ \x0d\xed\x9e\xf2\xf4\x90\x0b\x17\x2e\xbc\x6c\x89\xaf\xe5\xfc\x98\ \xf8\x70\x22\xe9\xaf\x8f\x1d\x3b\x36\x74\xe5\xca\x95\x97\x6e\xdd\ \xba\xf5\xe2\xf5\xeb\xd7\x8f\x9e\x39\x73\xe6\x15\xd8\x95\xec\x97\ \xe0\x05\x1e\xc8\xd6\x80\x56\x17\x20\x2f\x80\x7f\xe1\xf7\x8f\x36\ \x15\x82\xc3\x87\x0f\x7f\x69\xef\xde\xbd\x17\x31\xec\xdf\xbf\x3f\ \x18\x0e\x1c\x38\x70\x91\xc2\xe0\xe0\xe0\xc5\x94\x70\xe8\xd0\xa1\ \x8b\x5a\x38\x72\xe4\xc8\x6b\xb0\x37\xcf\x7f\xad\x83\x20\x52\xe1\ \xb0\xe2\x59\xc7\xc9\x10\x00\x3b\x77\xee\x7c\x03\x84\x7f\x0e\x2a\ \x7d\xea\x42\x50\xea\x19\x4d\x81\x60\xdb\xb6\x6d\x3f\xc7\xb4\xf2\ \xf4\xd6\x61\x51\x02\xe9\x4e\x85\xbf\x93\x20\x4c\x81\xcf\x73\x20\ \xac\x82\xcf\xbb\x30\xce\x89\x13\x27\xbe\x4a\x20\x48\x00\xa4\x17\ \xc8\x8b\x83\x49\x4d\x83\x00\x1e\x6c\x3e\x3c\xd4\xd2\x56\x07\xb8\ \xef\x62\x34\x88\xac\x37\xa4\x9e\x03\x94\x12\x4f\x3b\x50\x8a\x26\ \xbd\xc0\x36\x71\xdf\xb1\x8c\x0a\xe2\xbf\x63\xb9\x7e\xee\x01\x76\ \xed\xda\xf5\x7a\x2e\x7a\x7f\x11\x81\xe0\x9a\x79\x78\xdd\xd9\xb3\ \x67\xbf\x98\x02\x40\x0e\x41\x91\x5b\x74\x4f\x5c\x34\x84\xec\x68\ \x2a\x72\x12\x58\x2c\xae\x75\x7c\x9c\x75\x68\x14\x14\x65\x87\xad\ \x5c\xaf\xb9\xff\x2a\x96\x86\x4c\x30\x1b\xdf\x1f\xd2\xfd\x17\x07\ \x81\x17\x01\xec\xf3\xef\xaa\xdc\xab\xa3\xaf\x25\x08\x1a\x0d\x82\ \x75\xa8\x64\xe8\xd8\x38\x9e\xf3\x11\x04\x79\xf0\xb4\x56\x57\xaa\ \x6a\x5c\x78\xff\x1d\x30\x2c\xff\xfb\x18\x04\x50\x87\x58\x55\xf5\ \x5e\x1d\x7b\x3d\x42\x20\x5b\x15\xb1\x53\x41\x53\x7f\xd7\x8e\x96\ \xd5\x3c\x00\x08\xfe\x46\x91\xdc\xcf\x61\xa8\x6a\x58\x78\xff\x0d\ \xd0\xe9\xf5\x47\x82\xc0\xf0\x02\xbd\xbd\x7d\x0d\x42\x20\x87\xa5\ \x63\xe7\x02\xa7\xfe\x2e\xcf\x0f\x36\x00\x78\x2a\xc7\x87\x6a\xfd\ \x04\x00\xb5\xfd\x1b\x00\xc1\xe6\x18\x00\xf0\xfb\xc7\xab\xde\xa7\ \xa3\xaf\xe7\x10\x34\x02\x06\xeb\x54\x71\x09\x00\xc4\xfb\xba\xe6\ \xf2\x09\x00\xa8\x6b\xbc\xab\xb9\xff\x26\x40\xf0\x5c\x08\x02\xf8\ \xed\x83\x8e\x16\xb0\x11\x0f\x87\x10\x70\x57\xcc\x7b\x23\x53\x8e\ \x89\xd7\xe2\xc8\xf4\x24\x00\xb1\xb2\x1e\x9e\xe9\x93\xd0\xe4\x1c\ \x91\x10\xf0\x9e\xbf\x46\x79\x02\x38\xd2\xee\x86\x55\x04\xc0\x78\ \x41\x6f\x17\x03\x04\x50\x5e\x3b\x1e\x75\xc9\x52\xbc\x2a\xff\x27\ \xa1\x07\x06\x06\xf8\x89\x21\xe3\x42\xae\xfe\xea\xd5\xab\x2f\xe1\ \x73\xc1\x33\x6d\x23\x08\x34\xe1\xb1\xbb\x97\x42\x95\x8c\x00\xf7\ \x59\x1d\x02\x60\xec\xd8\xb1\x5f\xa8\x92\x7e\xd7\x5c\xcb\x21\xb0\ \x7a\x25\x53\x61\x90\x39\x9c\x03\x00\xf5\x88\xaf\x84\xdc\x3b\x76\ \xe6\x30\x30\x11\x82\x7b\x1a\x00\xf8\x5d\xa3\x20\x80\x99\x5a\x6f\ \x69\x10\xa0\x07\x80\xef\xff\xd1\x35\x22\x56\x7d\x50\x84\xc0\xda\ \xce\x5e\x8a\x9a\xf2\x7f\x4a\x8b\x03\x00\xe5\xfb\x5f\x2c\x00\xa0\ \xc3\xe8\xa9\x4d\xa4\xc9\x13\x84\x06\x7e\x68\xf0\xa7\xec\xfb\x5f\ \xbe\x7c\x79\xaf\x05\x40\x6d\x8a\x01\x5e\x1c\x84\x72\x68\x99\xdf\ \x38\x00\xd6\xf5\x28\xf0\xa5\x4b\x97\x76\x69\x22\x22\x04\xd0\x1b\ \x39\xc2\x73\x3c\x7d\xe6\xfd\xfd\xf8\xb9\x0c\x04\xd0\x49\x34\x59\ \x02\x80\xc2\x53\x80\x34\xeb\x75\xce\x81\xe6\x09\xca\x08\x4f\xd7\ \xc0\xa0\xcd\x93\x3a\x40\x08\x00\xec\xcf\xb7\x04\x6c\x36\x04\x21\ \x00\x60\x80\xec\x48\x19\xb0\xba\xfa\x1a\x84\xc0\x1a\xb9\x2c\x0a\ \x03\x07\xc0\x2a\xcf\xf1\xfb\x98\xc1\x38\x04\x32\xe7\xcb\x91\xbf\ \x58\x5a\xf2\x77\xe8\xe8\xfa\x2b\x41\xc0\x73\x3f\x7e\x86\x51\xdc\ \x6f\x14\x4d\xaf\x27\xe2\x13\x04\x21\xd1\x52\x7e\xb3\x00\x90\x2e\ \x3d\xc5\x68\x08\x01\xd4\x23\x46\x24\x00\xda\x40\x4f\x4a\x7a\x14\ \x07\x7a\x06\xff\x20\x85\xa7\xff\x03\x00\x3f\x2a\x92\x56\x4f\xc5\ \x6d\x04\x04\x1a\x00\x5a\x79\x9e\x6a\xb8\x1c\x82\x7b\x8d\x84\x00\ \xdc\xfc\x1d\xf4\x00\x1a\x04\xb0\xa8\xf7\x27\xa9\xcf\xd6\x93\xf1\ \x10\x02\x4d\xb0\xd4\xef\x60\x16\xd0\x93\x3a\x40\xe8\x9a\x22\xc6\ \x43\x08\xa0\x49\x79\x4f\xcb\xf9\x72\xa0\x27\x25\x5d\x68\xd5\xfc\ \xc9\xf2\x00\xfc\xf9\x53\xd2\xea\xc9\x38\x55\x20\x48\x01\xa0\x4c\ \x0d\x1e\x21\x80\xb2\x7b\x24\x04\x01\x9b\xf7\x17\xd4\xc5\x12\x1f\ \xbf\xdf\xba\x75\xeb\xa9\x9e\x14\xb5\xe8\x4b\x21\x04\xa1\xca\x97\ \xf5\x1b\x07\x20\x74\x3d\x54\x2e\x97\x96\x78\xa6\xa7\x20\x28\x33\ \xba\x17\x02\xe0\xd4\xa9\x53\xcd\x9f\x2f\x58\xf4\xc5\xdb\x15\x1f\ \x21\x90\x39\x2e\x06\x05\x07\x20\xe4\xb6\xc1\x0d\xff\xb0\xcc\x7b\ \xa1\x27\x80\x31\x89\x11\x4b\x78\xfe\xbd\x91\x7e\x9f\x06\x00\x74\ \x03\x67\x18\xb0\x9f\xa0\xcc\x73\xf5\xec\x35\x1a\x04\x21\x37\xdc\ \xdf\xdf\xff\xa4\x0e\xb0\x7d\xfb\xf6\x1f\x84\xe2\x96\x35\x5a\x2a\ \x04\x5a\xcf\x1e\x3c\xcf\x4d\x0b\x00\x80\xfb\xfd\xb2\xcf\xd4\xd3\ \xd7\x15\x81\x80\x03\x70\xff\xfe\xfd\xfe\x10\x00\x50\x49\x5c\x5d\ \xd6\x70\x39\x04\xb8\x0e\x70\x74\xbe\x7f\xc8\xad\xf3\x7b\xf0\x78\ \x94\xeb\xe9\xef\xee\xdd\xbb\xfd\xd8\x5b\x4b\x10\x84\x20\x9f\x4e\ \xfd\xd4\xf2\x2b\x2e\x32\x07\x00\xdc\xe9\x98\x48\xcd\xfd\x3f\x65\ \x01\xc0\xeb\x38\x04\x21\x00\xc8\x13\xc0\xdf\xef\x86\x00\x80\xf4\ \x0a\xd7\x4b\xaa\x3c\x7f\xd7\x5d\x4b\x10\x84\xca\x5f\x0e\x00\xbe\ \xe0\x96\x2d\x5b\x7e\x16\x8a\x0f\x82\x3c\x5f\xc5\x10\x08\x01\x8c\ \x5c\xde\x8b\x01\x00\xbf\xbf\x87\x71\x64\xae\xa7\xff\xb7\x7c\xe9\ \x58\x95\x97\x6e\xe7\xb5\x31\x08\x24\x00\xe0\x05\xfa\x63\x15\xb6\ \xaa\xef\x93\x43\x30\x92\x00\x81\x09\xc0\xd0\xd0\xd0\xe7\xaa\x3e\ \x47\x6d\xae\x47\x08\x2c\x63\x4b\x00\xd0\x28\xb0\x4b\xf9\x9b\x31\ \x71\xaa\x1a\x4f\x7a\x02\x2b\xa7\x5b\xdf\xc3\xf5\x33\xaa\x3e\x43\ \xad\xae\xb7\x20\xd0\x00\x80\xb8\x1f\x89\x01\xd0\x88\xb1\x78\x82\ \xa0\xa8\xf8\xb8\xdc\xac\x56\xe2\x35\xea\x65\x35\x08\x34\x00\xf0\ \x7e\xb8\xae\xaf\x55\x10\x40\x1f\xc3\x48\x2a\x04\x30\x0b\xe9\x1d\ \x78\x8f\x27\x33\x93\x1a\x65\x9b\xda\xa4\x23\x21\xb0\x00\xc0\xa5\ \x72\xd8\x81\x93\x02\x01\xc4\xa9\xb4\xb3\xc7\xb5\x6b\xd7\x5e\x48\ \x05\x00\x9e\xeb\x63\xb5\x11\xab\x59\x2f\x8a\x10\x90\xc1\xa1\xbc\ \xe7\x93\x42\x3f\x74\x4b\x88\xb7\x35\x55\x98\x3c\xde\xd7\x8a\x3c\ \x33\x80\xf3\xe9\x58\xfa\x63\xc6\x8c\xc9\x28\xdc\xbd\x7b\x77\x5f\ \x91\xf4\x3d\x6e\xc0\x02\x04\x41\x08\x80\xbc\xed\xfe\x04\x96\x98\ \x58\xfc\x77\x10\xed\x75\x10\xf8\x20\xa4\xb1\x12\xc2\x1c\x08\x7d\ \x10\x30\xad\x6f\x42\x78\x37\x35\x2d\x12\xff\xfc\xf9\xf3\xa7\xca\ \xee\x5a\xe6\x20\x18\x16\x40\x08\x56\xae\x5c\xf9\x6a\xcc\x40\xdc\ \x63\xa4\x0a\xa7\xc5\xe3\xb9\xb9\xc8\xe7\x73\xe7\xce\x7d\xde\x5a\ \xbe\x1e\x7b\x76\xff\x3d\x62\x01\x10\x37\x69\x52\x65\x15\x08\x8a\ \x88\x2d\xe3\xde\xbe\x7d\xfb\x05\xb8\xf7\x4c\x17\xb2\x03\x2c\x80\ \x10\xc0\x3e\x44\xc3\x55\x04\x4d\xbd\x16\x3c\xc8\xff\xf0\x7e\x90\ \xf3\x27\x76\xc0\xab\xfb\x23\x90\x05\x40\x94\x4d\x98\x2b\x53\x85\ \x2c\x13\x0f\x76\x52\x79\x15\x84\xdf\xed\x56\xef\x50\x0b\x60\xae\ \xc4\xdc\x79\xfc\xf8\xf1\x73\x65\x04\xb6\xae\x59\xbb\x76\xed\x8d\ \x3c\xd7\x2f\xee\xd0\x57\xf7\xc7\xe2\x16\x00\xb1\x46\xb7\x78\xb9\ \x79\xf3\xe6\x8b\xd0\x41\xf3\x76\x19\x18\x60\xf4\xf1\xfd\xd3\xa7\ \x4f\x7f\x19\xd3\x81\xb0\xc6\x2d\xdc\x85\x16\x00\xe1\x70\x13\xa8\ \xcd\x28\xe2\xc3\x87\x0f\x3f\x75\xf4\xe8\xd1\x21\x68\x5d\xdc\x82\ \x51\xbf\x3f\x83\xc0\xef\xc1\xe0\xd2\x07\xf0\xf7\xdf\xd8\xe3\x07\ \xe7\x1e\xfc\x16\x36\xe2\xfa\xde\xf0\xf0\xf0\xc1\x5c\xf4\x1d\xb8\ \x79\x54\x17\xbe\xb6\x3f\xb2\x65\x81\x7c\xc3\xad\xb5\xf0\xf7\x13\ \x20\xf2\x0e\x08\xcf\x42\xd8\x89\x1d\x4b\x10\xd6\x43\xe8\x83\xdf\ \x26\xb8\x05\xdd\x02\x6e\x01\xb7\x80\x5b\xc0\x2d\xe0\x16\x70\x0b\ \xb8\x05\xdc\x02\x6e\x01\xb7\x80\x5b\xc0\x2d\xd0\x22\x0b\xfc\x1f\ \x78\xcd\x25\x69\x7b\xae\x21\xde\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x0e\xc9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0e\x4f\x49\x44\x41\x54\x78\x5e\xed\x9d\xb9\x8e\x1c\ \xc9\x11\x86\x79\x1f\x73\xf0\x02\xef\xfb\x5e\x1e\x23\x5a\x02\x21\ \x08\x90\x21\x41\x8e\x0c\x02\xb4\x48\xd0\x26\x08\x2d\x08\x41\xa2\ \x1c\x2e\x56\x86\x76\x5f\x66\xcd\x35\xd6\xa1\xbc\x16\xa4\x79\x0a\ \x3a\x02\x01\xae\x25\xb3\x1e\x80\x54\x46\x83\x3f\xf1\x2b\x18\x79\ \x56\xcf\x4c\x55\x57\x10\x48\x4c\xb3\xbb\xb2\x2a\x2b\xfe\x2f\x23\ \x23\xb3\xb2\x32\x77\xed\xf2\x7f\x6e\x01\xb7\x80\x5b\xc0\x2d\xe0\ \x16\x70\x0b\xb8\x05\x06\x64\x81\xd5\xd5\xd5\x9f\x42\xea\x24\xad\ \xad\xad\xcd\xd3\xfa\xfa\xfa\x3c\x1d\x39\x72\x64\x9e\x8e\x1e\x3d\ \x3a\x4f\xc7\x8e\x1d\xfb\x9c\x8e\x1f\x3f\xde\x21\x9d\x38\x71\xa2\ \xd3\xe9\xe4\xc9\x93\x5d\x2e\x59\xf9\xf8\xbc\xb8\x1e\xae\x2f\x7f\ \xa5\x3c\x28\x1f\xca\x8b\xf2\xaf\xac\xac\x74\x03\x32\xed\x38\x8a\ \x72\xf1\xe2\xc5\x19\xc4\xcf\x09\x6f\x89\xae\x45\x3e\x75\xea\x54\ \x57\x93\x74\x7e\x86\x02\xd7\x63\xf0\x00\x43\x0c\x84\x71\x58\x7d\ \x40\xa5\xbc\x74\xe9\xd2\x4c\xd7\x7a\x5d\xe3\x75\x4d\x67\xd1\x58\ \xec\xd3\xa7\x4f\x77\x9c\xce\x9c\x39\xd3\x59\x49\x1f\x27\xff\xe7\ \xf3\xe0\xfc\x29\x18\xe0\x0d\x00\x02\xbc\xc1\x80\x4c\x3b\x8e\xa2\ \x08\x00\x31\x77\x1f\x13\x3e\x26\x7a\x4c\xf0\xb3\x67\xcf\x76\x92\ \x62\xbf\xcb\xf7\x0c\x05\xce\xaf\x41\xd0\x1e\xc1\xf2\x06\xe3\xb0\ \xfa\x80\x4a\x29\x00\x70\x5b\x0f\x77\x2b\xc6\x46\x0d\x84\x10\x10\ \x06\x62\xb1\xa0\x10\x19\x7f\xcf\x9d\x3b\xd7\xe5\x92\xce\x83\xf3\ \xc5\x60\x40\x79\x18\x04\x0d\xc1\x80\x4c\x3b\x8e\xa2\x5c\xbe\x7c\ \x79\xc6\x2e\x9f\x6b\xbd\x25\x3c\x44\x62\xf1\x58\xe8\xf3\xe7\xcf\ \x77\x9c\x2e\x5c\xb8\xd0\xe9\xa4\x8f\xe1\xfc\xda\x5b\x00\x06\xf6\ \x0a\x0c\x02\x07\x8a\x02\xf2\x38\xac\x3e\xa0\x52\x02\x00\x31\xa4\ \x16\xdf\xaa\xf1\xba\x86\xe7\xc4\x0e\x41\x66\xc7\x29\x07\x04\x60\ \x48\x81\xc0\x4d\x83\x94\x99\x21\x18\x90\x69\xc7\x51\x94\xab\x57\ \xaf\xce\x20\x3e\xbb\x7c\x11\x9f\x5d\x7d\x4c\x78\x08\xca\x22\x87\ \x66\xa5\x2b\x49\x31\x38\x00\x15\xc3\xc0\xcd\x83\xf6\x06\xdc\x24\ \x8c\xc3\xea\x03\x2a\xe5\xb5\x6b\xd7\x66\xba\xbd\x4f\x89\x0f\x71\ \xb4\xf0\x25\x82\xa7\x8e\xb1\xbc\x84\x5c\xab\x06\x02\x01\x79\x40\ \xa6\x1d\x47\x51\x04\x00\xa9\xf9\xdc\xde\x4b\xcd\xe7\xb6\x5e\x44\ \x60\xe1\x21\x96\x25\x68\x68\x52\x3a\x4e\x57\xae\x5c\xe9\x38\xe9\ \xdf\xe5\xff\xfa\x3c\x38\x3f\x20\xb3\x40\xe0\xae\xa3\x94\x5d\xee\ \x41\x40\x1e\x87\xd5\x07\x54\x4a\x06\x00\x35\x5f\xc4\x67\x97\x2f\ \x02\x70\x8d\x67\xc1\x62\x62\x87\xa6\xa5\xcb\x25\x0b\x0c\x3e\x37\ \x83\xc0\xcd\x02\xba\x94\x16\x04\x03\x32\xed\x38\x8a\x72\xfd\xfa\ \xf5\x99\xd4\xa0\x3e\xe2\x43\x48\x16\x3c\x80\xd5\xa5\x12\x1f\xab\ \x41\x68\x81\x00\x5e\x60\x1c\x56\x1f\x50\x29\x05\x80\x9c\xf8\xda\ \xe5\xa3\xd6\x8b\x70\x10\x92\xc5\x0e\xe7\xec\x4a\x12\xe7\xc1\x79\ \x00\x83\x6e\x1a\xa4\x0c\xba\x49\xd0\x9e\x40\x20\x18\x90\x69\xc7\ \x51\x94\x9b\x37\x6f\x7e\x01\x00\xda\x7c\x31\x78\x1f\xf1\x6f\xdc\ \xb8\xd1\xc5\x12\x03\x02\x10\x4a\x21\x40\x4c\xc0\x00\xa0\x39\x18\ \x87\xd5\x07\x54\xca\x5b\xb7\x6e\xcd\x10\xf4\x89\x41\x73\xe2\xb3\ \xbb\x87\x70\x10\x93\xc5\x0e\x60\x75\xb9\x84\xe3\x91\xdf\x02\x21\ \xe6\x09\x2c\x08\xc4\x93\x0d\xc8\xb4\xe3\x28\x4a\x0e\x00\xb4\xc7\ \x31\xb7\xaf\xc5\xb7\x44\x0f\xd7\xe8\x90\xf4\xef\x0c\x0d\x83\x20\ \xde\xc0\x6a\x0e\x74\x60\x28\xc0\xc2\x13\x38\x00\x0d\xcc\x09\x00\ \x88\xfa\x75\xed\x8f\x89\x2f\x35\x35\x26\x3c\x8b\x2d\x9f\x6f\xdf\ \xbe\xfd\x45\x8a\x01\xc1\x1e\x41\xae\xc1\x4d\x02\x7b\x02\xc4\x03\ \x96\x17\x68\x30\xc1\xb4\xb3\x94\x02\xa0\x03\x3e\x01\x00\x82\xa1\ \x56\xb3\xb0\x96\xf0\xfa\x3b\xcb\x2b\xc8\x39\xe5\xdc\xdc\x1c\xc8\ \xb5\xe1\x81\x00\xa5\x86\x00\x4f\x14\xa7\xad\x66\xc3\xdd\x0b\x00\ \x56\xdb\xcf\xb5\x3f\x26\xbe\x16\x9e\x05\xbe\x73\xe7\x4e\x97\x4b\ \x38\x5e\x83\x00\x08\x00\x02\x9a\x83\x12\x2f\xd0\x60\x82\x69\x67\ \xa9\x01\x40\xbb\xfe\x18\x00\x39\xe1\xf9\x77\x0b\x02\xab\x29\x80\ \x17\xd0\x63\x04\xba\x19\x98\xb6\x9a\x0d\x77\xcf\x00\xa0\xdb\x57\ \x5a\xfb\x51\x73\x21\x22\x84\xbd\x7b\xf7\x6e\x57\x92\x62\x20\x08\ \x58\x25\x10\x58\xb1\x40\x83\x09\xa6\x9d\xa5\x14\x00\xab\xf6\x33\ \x00\x2c\xa6\x16\xff\xde\xbd\x7b\x9d\x24\x0b\x0a\xe4\x63\x4f\x00\ \xcf\xc2\xf1\x40\x69\x33\x30\x6d\x35\x1b\xee\x5e\x00\x88\x45\xff\ \xe8\x86\x71\x7f\x5f\x44\x11\x81\x2c\xf1\x21\x30\x04\xcf\xfd\x65\ \x20\x18\x04\x39\x77\xad\x17\x40\x77\xb0\xc1\x04\xd3\xce\x12\x03\ \x00\x51\x37\x0f\xf5\x22\xf2\x5f\x14\x00\xec\x15\x2c\x00\x00\x41\ \x49\x30\xe8\x00\x34\x72\x1c\x5c\xef\xdc\x03\xa4\xda\x7f\xb8\xff\ \x58\xed\xb7\x6a\xfe\xfd\xfb\xf7\xbb\x5c\xd2\x4d\x43\xcc\x0b\xc4\ \xba\x85\x12\xab\xe8\x38\xa0\xd1\x0c\xd3\xcd\xb6\x55\x00\x88\xb8\ \x29\x00\xb8\x79\x00\x40\x02\x80\x8e\x05\xb8\x4b\x08\x6f\x94\xea\ \x0e\x4e\x57\xc9\xc6\x3b\x17\x00\xf0\xbc\x5f\x6a\x13\xf7\x00\x60\ \x70\x3d\xe8\x83\x11\x3e\x11\x2c\x55\xfb\x37\x36\x36\x3a\x2b\x31\ \x18\x96\x17\x88\x41\x80\xd1\x41\xdd\x25\x14\xef\x85\xee\x60\xa3\ \x19\xa6\x9b\xad\xd5\x03\x88\x48\xdc\xed\xe3\x1a\xad\x6b\x3e\x20\ \xb0\x3c\x42\x0c\x00\x04\x82\x25\x71\x80\x03\xd0\x83\xdf\x20\xe2\ \x17\x1e\x40\x5c\x2c\x46\xff\xac\xf6\x9f\xfb\xfd\xe2\x01\x20\x22\ \x0b\x1c\xab\xfd\xfc\x3d\x8e\x67\x08\x72\x71\x40\xac\x3b\xe8\x1e\ \xa0\x11\x82\x58\x13\x10\x03\x00\x3d\x00\x78\x00\xdd\x04\x94\x40\ \xa0\x3d\x81\x06\xc0\x9b\x80\x46\x31\x5b\xb2\x6d\x85\x07\x28\xa9\ \xfd\x72\x8c\x8e\x05\x74\x30\x68\x35\x03\xa9\x01\x21\xe9\xcd\xb4\ \xd8\x60\xd2\x79\x2c\x0f\x90\x6b\x02\x52\x41\x60\x89\x07\xb0\xc4\ \xc7\x98\x80\x37\x01\xdb\x8c\x63\xaa\x17\x90\x8b\x03\x6a\x83\x40\ \x2d\xbc\xc0\x92\x0a\x02\x79\x44\x30\x35\x18\xe4\x41\x60\x0f\x68\ \xdc\x03\xf4\x30\xde\x32\x64\xed\xd3\x0d\x2c\x09\x04\xa5\x96\x6f\ \x65\x37\xd0\x47\x02\x7b\x52\x58\xda\x0b\xd0\xcf\x01\x4a\xc4\xf7\ \x81\xa0\x9e\xe2\x6c\x47\xf6\x56\x0f\x50\x3a\x1a\x58\x32\x1c\xcc\ \xd1\x3f\x86\x83\x4b\x9f\x08\xba\x07\xe8\x49\x09\x00\xb0\x86\x83\ \x39\x08\xcc\x0d\x08\xc5\x86\x85\xf5\x33\x01\xfd\x88\x38\x25\x7e\ \xc9\x28\x20\x03\x20\x53\xdb\x7a\x9a\x63\x7a\xd9\x35\x00\xd6\x6c\ \x20\x2d\xbe\x1e\x0c\xca\x3d\x13\x88\x0d\xfc\xc4\x1e\x07\x4b\xf3\ \x52\xda\x03\x70\x00\x7a\x32\x9b\x9a\x10\x92\x1a\x0f\x60\x08\x74\ \x3c\xc0\xc3\xc3\xb1\x49\x21\xb1\xc9\x20\x96\xf8\xa5\x5d\x40\xf7\ \x00\x0d\x30\xb4\x02\x90\x9a\x11\x54\x02\x40\x69\xed\x2f\x9d\x16\ \xe6\x13\x42\x1a\xc4\x97\x2c\x35\x73\x02\x73\x13\x43\x6a\x27\x85\ \x0a\x28\xb1\x39\x81\x3e\x29\xb4\x51\xd0\xda\x6c\x7d\xa7\x85\xc7\ \x66\x06\xc7\x26\x89\xea\x29\xe3\xb9\x77\x03\x78\x0e\x80\x9e\x07\ \x80\xf6\x9f\x5f\x0f\xab\xbd\xff\xc9\x1f\xbf\xd5\x00\xe8\x99\xc0\ \x5b\x01\x80\xf4\x60\xf0\x7e\xe0\xe4\x05\xad\x35\x00\xbf\x1a\x16\ \x9b\x19\x64\x05\x83\x3c\x30\xa4\x27\x89\xea\xf7\x04\xac\x17\x45\ \x74\xcd\x4f\xf5\xfb\x4b\xa7\x84\xcb\xeb\x61\xb5\xf7\x3f\xf9\xe3\ \x1d\x80\x89\x23\x50\xf3\x72\xa8\x7e\x3a\xa8\xbd\x00\x7b\x02\x8c\ \x14\xf2\xfb\x82\xfc\x19\xb1\x83\x7e\xe6\x9f\x7a\x39\x34\xf6\x62\ \x28\x2f\x14\x31\x71\x39\xeb\x6f\x5f\x00\x48\x2d\x10\xa1\x07\x86\ \x62\x10\x60\xca\xb8\xf5\xa6\x30\x8b\x8d\xcf\xbc\x4e\x80\xb5\x50\ \x44\xec\xd5\x70\x6b\x2a\xb8\x03\x50\xaf\xfb\xe7\x1c\x0e\x40\x0f\ \xe3\x2d\x43\xd6\x14\x00\xb1\x97\x45\xac\x67\x04\x3c\x75\x5c\x7b\ \x03\x6b\xd5\x10\xbd\x76\x90\x5e\x1d\xc4\x0a\xfc\x72\xb5\xdf\x57\ \x08\x69\x20\xb2\x64\x91\x28\xbd\x2e\xa0\x5e\x16\x8e\x5f\x1c\xb5\ \xd6\x0b\x6a\x5d\x28\xaa\x65\xa5\xb0\x06\x13\x4c\x3b\x8b\x03\x30\ \x6d\xfd\x77\x59\x00\xa4\x56\x0c\x11\x6f\xe0\xeb\x04\x2e\x11\x34\ \xb1\x95\x42\xb1\x48\xb3\x35\x38\xa4\x21\xe0\x25\x64\xa4\xed\xce\ \xad\x12\x9a\x5b\x20\xd2\x72\xfd\xb1\x85\xa1\xb0\x36\x90\xb4\xff\ \xbe\x50\x64\x03\x98\x0e\x40\x83\xd1\x96\x29\x0b\x00\xb0\xd6\x0b\ \xb6\x56\x09\xd7\x2b\x7b\x73\x73\xa0\x3d\x41\x6e\xb1\x68\x5e\x0b\ \xd0\x5a\x09\x8c\xa3\x7e\x9e\xfa\xcd\x0f\x7f\xb0\x42\xa8\xaf\x15\ \xdc\x48\x65\x6c\xb5\x70\xbd\x76\x20\x37\x05\xfc\x16\x31\x37\x07\ \x78\x66\xa0\x97\x88\x4f\xfd\x9f\x57\x1b\xb7\x96\x8d\x2f\x59\x32\ \x1e\xe2\xcb\x92\xf1\x8d\x66\x98\x6e\x36\x07\x60\xba\xda\xcf\xef\ \x1c\x00\x60\xd3\x08\x5e\x39\xbc\xc6\x0b\xe8\x55\x45\x75\xd3\x90\ \xda\x34\xc2\xda\x78\xc2\x5a\x1d\x5c\xbb\x7e\xed\xfe\x7d\xc3\x88\ \x06\x98\x79\xcb\x18\xc4\x01\xa9\xe5\xe3\xf5\xe6\x11\xba\x39\x88\ \x6d\x26\xa1\x77\x0a\x89\x6d\x1f\x53\xb2\x5b\x88\x8e\xfc\xb1\x5b\ \x88\x03\xe0\x00\x78\x0c\x50\xcb\x80\x78\x00\xde\x35\x2c\xe7\x05\ \x78\x49\x39\xde\x4f\x20\xe5\x09\x4a\x36\x94\xb2\x6a\x3e\xaf\x02\ \xca\x3b\x8f\xb2\xeb\xe7\xfd\x82\x7c\xd3\xa8\x5a\xf5\x3f\xc5\x00\ \x0e\x40\x83\xe1\x96\x25\x4b\x6a\xdf\xc0\x58\x40\xa8\xc7\x07\xb4\ \x27\x28\xf1\x06\x35\x7b\x06\x5a\x3b\x83\xc4\x36\x8f\x5c\x16\x5d\ \xb6\xed\x3e\x04\x00\xd9\x3a\xb6\x64\xf3\x48\x6b\x37\x31\xbd\x8f\ \xa0\xb5\x91\xa4\x16\x5b\xbb\x7b\xee\xeb\xeb\x2d\xe2\x2c\xf1\x31\ \xec\xcb\xc1\x9f\x94\x5f\xee\x63\xdb\x0c\xb7\x2c\x17\x72\x00\x96\ \x45\xc9\xc6\xfb\xe0\xbd\x83\x75\x2c\x60\x05\x84\xda\x0b\x70\x73\ \x10\xf3\x06\xd6\x7e\xc1\x18\xda\xe5\xbd\x87\x5b\xf6\x0d\xc6\xde\ \xc1\xd8\x00\xbb\xd1\x0c\xd3\xcd\x26\x00\xc8\xae\xdb\xdc\x0c\x58\ \x5b\xc9\xea\xed\x64\x2d\x10\xf8\x09\xa2\xde\x21\x3c\xf6\x7f\x6b\ \xe7\x70\x2b\xe2\x87\xdb\xe7\x61\x5f\x2d\xbe\xef\x1e\xde\xc0\xb1\ \x03\xd0\x60\xb4\x65\xca\x12\xfa\xe8\x73\x0f\xd0\xea\x05\xd8\x13\ \x60\x22\x09\xd7\xea\xdc\x67\x6c\x51\x9b\xda\x2e\x3e\x55\xfb\x11\ \xfc\x49\xf9\xd7\xd7\xd7\x3d\x08\xac\x85\x53\x00\x10\xc3\x01\x80\ \x54\x53\xa0\x63\x02\xde\x64\x5a\x83\xa0\x85\x4d\xfd\x1f\x1b\x55\ \x63\x88\x97\xf7\x04\xe6\x88\x5f\x47\xfd\x2c\xbe\x03\x50\xab\xfc\ \xa7\xe3\x1d\x80\x46\xc3\x2d\x4b\x36\x00\x60\x79\x01\x6b\x6c\x80\ \xb7\x99\xe7\xc0\x50\x7b\x03\xae\xd5\x25\x9f\x25\x3f\x92\x9c\x37\ \xe6\xf6\x11\xf8\x59\xb5\x7f\x6d\x6d\xcd\x9b\x80\x5a\x30\x05\x00\ \x31\x1c\x00\xd0\x4d\x01\x20\xd0\x3d\x03\x0d\x82\x86\x01\x62\x6a\ \xf1\x59\x68\x4b\x74\x16\x5e\x47\xfc\x56\xd4\x0f\xd7\x2f\xe5\x77\ \x00\x6a\xd5\x0f\xc7\x6f\x35\x00\xda\x33\xd4\x00\x20\x6d\x3e\x92\ \x88\xef\x00\x34\x08\x9c\xcb\x12\x86\x65\xe7\x1e\x00\x5e\x20\xd5\ \x14\x40\x04\x88\x02\x2f\xc0\xc1\x21\xdc\x37\xfe\x5a\x82\xeb\x63\ \x62\xb5\x3e\x16\xf4\x49\xa0\x8a\x9e\x8b\x94\x17\xb5\x7f\x75\x75\ \xd5\x9b\x80\x9c\xe0\xfa\xf7\xed\x06\xc0\x12\xdf\x01\xa8\x55\x6d\ \x81\xc7\x0b\x00\x52\x73\x2c\x2f\x90\x8a\x07\x38\x26\xc0\x74\x32\ \xf6\x08\x56\x8c\xa0\x83\x3b\x7d\x7c\xcc\xe5\x4b\x1c\x82\xa0\x2f\ \x55\xfb\xdd\x03\x34\x80\x11\x86\x68\xe7\x00\x94\x40\x80\x31\x02\ \x0e\x0c\x35\x08\x2c\xa2\x05\x04\x07\x76\x7c\x2c\xbb\x7b\x8e\xf4\ \x73\xc2\x0b\xb8\x28\xff\xca\xca\x8a\x37\x01\xb5\x0c\x2c\x02\x80\ \x5a\x08\xb4\xf0\x3a\xd0\x73\x00\x6a\x55\xec\x71\x7c\x18\xaa\x9d\ \x49\xcd\x89\x79\x01\xab\x7b\xc8\x9e\x40\x7b\x03\x04\x8a\x29\x28\ \x74\x6d\xe7\x08\x1f\xee\xde\xaa\xf9\xba\xcb\xa7\x6b\xbf\x7b\x80\ \x06\x10\x04\x80\xc3\x87\x0f\x77\x62\xbc\x16\x10\x34\x0c\x10\x90\ \x41\xb0\x3e\xb3\xd0\x96\xe8\xdc\xd6\x5b\xc2\x5b\xe2\xcb\x7d\x34\ \x98\x60\xda\x59\x5a\x00\xe0\xe0\x30\x06\x40\xca\x33\x94\x88\xef\ \x00\x6c\x13\x97\x00\x20\xe5\x05\x78\x8c\x80\x9b\x04\x7e\x8a\x88\ \x09\x19\xfc\x37\x26\x34\xbb\x77\x9d\x0f\xe7\xe4\x5a\x8f\x7e\x3e\ \x7a\x2a\x1c\xf4\xc1\x73\x49\xf9\xdd\x03\x34\x40\x93\x02\xc0\xea\ \x19\xd4\x00\x10\xf3\x0e\x16\x2c\xba\xc6\x3b\x00\x0d\x62\xb6\x64\ \x61\x00\xd8\x0b\x70\x3c\xc0\x20\x68\x6f\x60\x01\x91\xf3\x0c\x5c\ \xcb\xf5\x67\x8c\xec\xf1\x08\x9f\xae\xf9\x52\x1e\x5d\xf3\xdd\x03\ \xb4\xa8\x1f\xf2\x84\xe7\xf4\xf3\x20\x50\x27\x18\x38\x05\x82\x05\ \x03\x0b\x58\x23\xb4\x25\x38\x07\x7a\xda\xed\x5b\x65\xf6\x26\xa0\ \x01\x82\x5a\x00\x72\xde\x40\xd7\x60\xed\x21\xac\xdf\xf9\x3b\xd4\ \xf6\x54\xad\x17\x28\x2d\x00\x0e\x1d\x3a\xe4\xbd\x80\x5a\x06\x04\ \x00\x31\x9c\xa4\x9c\x27\xd0\xde\x40\xc3\xa0\xc5\xb3\x3c\x84\x75\ \x0c\x7f\x87\x9a\xce\x7f\xd9\x1b\xc5\x6a\x3e\xee\xa1\xf6\xfe\x27\ \x7f\x7c\x0e\x80\x54\x5c\xa0\x07\x8f\x72\xe2\x96\xfc\xae\x01\x60\ \xf1\x63\x35\x5f\xca\xe8\x00\x34\xa2\x2c\x00\x1c\x3c\x78\xf0\xb3\ \x01\x63\x35\x4c\x83\xa0\x07\x8e\xac\x9a\xdb\xfa\x5d\xa9\xe8\x2c\ \xbc\x00\x20\xf7\xd1\x68\x86\xe9\x66\xd3\x00\xc4\x9a\x02\x80\xa1\ \xc5\xb1\x9a\x85\x56\xe1\x39\xba\x2f\x71\xfb\x0e\xc0\x02\xb8\x05\ \x00\x52\x7b\xd8\x13\xe4\x40\x48\x01\x61\x41\x52\xf3\x5d\xca\x0b\ \xe1\x37\xb8\x7c\xd4\x7c\x94\x7f\x01\x26\x99\xd6\x29\xc2\x8c\x9d\ \xd9\x81\x03\x07\xe6\xe2\x73\x62\x03\x97\xc2\x50\x22\x5c\x9f\x63\ \x74\x99\xb8\xbc\x72\x0f\x92\xa6\xa5\xde\x02\xee\x76\x2c\x00\xa4\ \xc4\x17\x10\x1c\x80\x46\x18\xc2\x2c\x9d\xb9\x07\xe0\x94\xf3\x06\ \xa9\x6e\x63\x9f\x1a\xce\x79\xb5\xe0\xda\xd5\xa3\x8c\xba\xec\x8d\ \x66\x98\x6e\xb6\x12\x00\x74\x6c\xc0\xe2\x2c\x4a\xf0\x9c\xf8\x16\ \x00\x5a\x7c\x6f\x02\x1a\x38\x16\x00\xf6\xef\xdf\xdf\x49\xb2\x0c\ \xaa\xbd\x81\x15\x2c\x5a\xb5\x55\x7f\xf7\xe0\xc1\x83\x1f\x4a\x8e\ \xc3\x31\xb1\xeb\x5a\x65\x44\xf9\xe5\x6f\x83\x09\xa6\x9d\x85\x01\ \xd8\x2a\x08\x3e\x7c\xf8\xf0\x9b\x90\x6e\x3c\x7d\xfa\xf4\x6f\x25\ \x10\xc4\xc4\xe7\xb6\x9e\x41\x70\x00\x7a\x30\x2c\x00\xec\xdb\xb7\ \x6f\xee\x01\x74\xb2\x6a\x1b\xbe\x4b\x89\xc4\xbf\x89\xf8\x28\x5e\ \xf8\x7c\xea\xe5\xcb\x97\x7f\x2e\xcd\x1b\xbb\xbe\x55\x56\xf9\x4e\ \xee\xa3\x87\x29\xa6\x99\x35\x05\x40\xcc\x23\x94\x40\x10\x26\x7d\ \xbc\x65\xf1\x61\xdd\x8f\x1f\x3f\x1e\x7b\xfb\xf6\xed\xef\x73\x10\ \xa4\xe0\x73\x00\x16\xc8\x2a\x00\x90\xda\x83\x14\x33\x70\x2a\x56\ \x60\xc1\xc2\xf2\x2f\xff\x0a\xe2\xff\x32\x56\xcc\x00\xc1\x5e\x81\ \x23\x25\x32\x7e\x4b\x95\x85\xcb\x8c\xcf\x0b\x34\xcd\x34\x4e\x65\ \x01\x10\x6b\x12\x58\x8c\x98\x78\x1b\x1b\x1b\x3f\x04\x71\x37\x4a\ \xac\x97\x83\x20\x07\xa2\x03\x50\x62\xe5\xcc\x31\xe1\x45\x8d\xd9\ \xde\xbd\x7b\x3b\x49\x96\x41\x6b\x3c\xc3\xb3\x67\xcf\xbe\x91\x60\ \xaf\xa6\x58\x02\x41\x8b\xd0\xba\xac\xb8\x87\x9a\x6b\xfb\xb1\xc1\ \x02\x35\x00\xa4\x3c\xc3\xeb\xd7\xaf\xff\x18\x5c\xfb\xc9\x16\xa3\ \x0a\x04\xe1\x59\xc1\xcf\x16\x08\x39\x28\xe5\x77\x88\x2f\x7f\x5b\ \xae\x3f\xe9\x3c\x0c\x00\x1b\xb2\xd4\x2b\x88\x00\xef\xdf\xbf\xff\ \x6d\x10\xf1\x48\x1f\x43\x86\xfc\xbf\x0a\x0f\xa6\x36\x73\x82\x5b\ \x65\x74\x00\x7a\x58\x3e\x07\x40\xae\x69\x90\xda\x1b\x6a\xfe\x9e\ \x1e\x45\xf8\x9c\x35\x9c\xeb\x17\x61\x0b\x9b\x9f\x62\x10\xe4\xc4\ \x77\x0f\xd0\xa0\x42\x78\x4d\x6b\xb6\x67\xcf\x9e\x0e\xa9\xc4\xc8\ \x38\xc6\xea\xe6\x35\x14\xe1\xff\xb2\x84\x73\x7e\xf5\xf8\xf1\xe3\ \xef\x4a\xcb\xc1\x65\x97\xcf\x7d\xaf\x3f\xb9\xfc\x1a\x00\x31\x62\ \x89\xf1\xb7\x42\x7c\x1a\x30\x3a\xfd\xe2\xc5\x8b\xbf\x94\x94\xc3\ \x01\xe8\x89\xac\x05\x40\x0a\x82\x30\x6b\xe7\x3f\x5b\x29\x3e\x0d\ \x18\x1d\xdf\xdc\xdc\xfc\x43\x0a\x02\x2d\xbe\x7b\x80\x06\x18\x62\ \x00\x58\xc6\x0d\x73\x07\xfe\x1d\xc4\x7f\xd8\x70\x99\xa6\x2c\x21\ \xb6\xd8\x2f\xb0\x59\x65\x89\x7d\xd7\x74\xa1\x29\x67\x2a\x05\x20\ \x6c\x31\xfb\xa3\x04\x69\x3b\x61\xab\x1a\x08\x76\xa2\x7c\xa3\xbe\ \x66\x78\x75\x7b\xb6\x7b\xf7\xee\x4e\x27\xae\x61\x4f\x9e\x3c\xf9\ \x36\x88\x70\x6b\x27\x6f\xd4\x82\xc0\x2a\xf7\x4e\x96\x71\x94\xd7\ \x8e\x01\x20\xc6\x15\x08\xc2\xd3\xbb\x3f\xb5\x0e\xf0\x2c\xda\x20\ \x9f\x46\x0d\xff\x6b\x09\x8f\xef\x16\x7d\xcd\xa5\x3f\x5f\x0a\x80\ \x77\xef\xde\xfd\x4e\x9e\xde\x0d\xc9\x08\x01\x82\x5f\x87\xb1\x8b\ \xcd\x18\x04\x43\x2a\xeb\x28\xca\x12\x03\x60\x91\x03\x3c\x8b\x36\ \x44\x28\xdb\x83\xb0\xc0\xe5\x3f\xbc\x09\x58\x80\x65\x2d\x00\xb6\ \xa3\x9b\xd7\xb7\xe8\xa1\x8c\x77\x1f\x3d\x7a\xf4\xbd\x86\xa0\xef\ \x79\x27\x97\x5f\x03\x30\x06\xf1\x69\xc0\xe8\xcc\xf3\xe7\xcf\xff\ \xca\x10\x4c\x4e\xc0\xbe\x37\x0c\x00\xc2\x93\xb8\x9f\xc7\x24\x3e\ \x0f\x18\xbd\x79\xf3\xe6\x91\x40\x10\xbe\xf3\xa1\xe0\x5a\x20\xc2\ \x22\x0e\xff\x94\xa0\x4a\x9e\xc6\xd5\xe6\x1d\xca\xf1\x21\x50\x3d\ \xf0\x09\x5e\x07\xa0\x56\x94\x87\x0f\x1f\xfe\x7d\xa7\x06\x78\x6a\ \xcb\x9a\x3b\xfe\xd5\xab\x57\x5f\xe7\x8e\xf1\xdf\x95\x05\x82\xf8\ \xe7\x96\xc5\x28\x7d\xe7\x24\x2c\x8b\x1d\xfc\x3e\xdc\x02\x6e\x81\ \xa1\x59\xe0\x7f\xd2\x16\x9b\x24\x4c\x43\x13\x11\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0b\x18\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0a\x9e\x49\x44\x41\x54\x78\x5e\xed\x5d\x4b\x72\x1c\ \x37\x0c\xf5\xdf\xfa\x58\xb2\x2d\xdb\xb2\x64\x1d\xc1\x95\x9d\x2f\ \x9d\xa5\xb7\x59\xe6\x04\x59\xe6\x08\xc9\xb6\x0f\xe0\x0a\xdf\x4c\ \x30\x82\x61\xf0\x3b\xd3\x6f\x38\xdd\x74\x15\x4b\xe3\xe9\x26\x01\ \x3c\x3c\x80\xe8\x9e\x6e\xf2\xc9\x93\xf1\x6f\x20\x30\x10\x18\x08\ \x0c\x04\x06\x02\x03\x81\x81\xc0\xcc\x08\x9c\x9f\x9f\xff\x75\x71\ \x71\xf1\xfd\xf2\xf2\x72\x96\x16\xc6\xfe\x7d\x66\x13\x36\xc3\x43\ \xce\x8c\x36\x7c\x07\x4e\x0c\x3b\xe8\x32\x82\x61\x53\x00\x6f\xd7\ \x02\x88\x53\xac\xbd\x79\xf3\x66\x42\x4b\x9d\xa3\x8f\x61\xdc\xab\ \xab\xab\x7f\x18\x46\x41\x0e\xe4\x95\xea\x56\x62\x8b\xc6\x05\x38\ \x31\xec\xa0\xcb\x10\x23\x35\x70\x02\xce\x3e\x7f\x65\xbc\xb7\x6f\ \xdf\xfe\xcb\x30\x0a\x72\x44\xe6\x3e\x7a\x7b\xc4\x10\x8c\x18\x76\ \xd0\x65\xc4\x1c\x1f\x22\x0a\xd1\x5b\xdd\x2c\xf8\xef\xde\xbd\xa3\ \x10\x00\x72\xac\xec\x16\xfd\xd1\x47\x8f\xa3\xf1\xa1\x3b\x87\x21\ \x10\x06\x8a\xc1\x16\xb0\xeb\xeb\xeb\xa9\xa6\x79\x80\x33\x09\xe0\ \xc9\xaf\xd1\x1f\xe7\xda\x31\x74\x46\x60\xf8\x83\x2e\x03\x06\x6a\ \xa3\x2d\x60\x21\xb5\x4e\x25\x2d\x06\xf4\xfb\xf7\xef\x29\x19\x00\ \x72\x62\x3a\x94\xe8\x8f\x73\x6c\x7f\x8d\x0b\x70\xa2\x3b\x87\x21\ \xd0\x73\x7e\x29\x60\xa9\xf3\x04\xcc\x63\x10\xe0\x90\xfa\x6b\x7c\ \x18\xfe\xa0\xcb\x80\x81\xe2\x2c\x0d\x5c\x48\xdd\x53\x6b\xd3\xe3\ \xdc\xdc\xdc\x50\x32\x00\xe4\xcc\xa1\xbf\x60\x03\x9c\xe8\xce\x61\ \x08\x84\x81\x02\x9c\x76\x78\x88\xdc\xa9\xa5\x59\xd2\x30\x09\x60\ \x65\xb7\xe8\x8f\x3e\x7a\x1c\xc1\x06\x38\x31\xfc\x41\x97\x91\x73\ \x7e\x70\xe0\x54\xd2\x3c\xb0\x01\xe4\x87\x0f\x1f\x28\x19\x00\x72\ \x20\xcf\xd3\xa3\x44\x7f\x9c\xa3\xfb\x7a\x24\xa0\x3b\x87\x21\x10\ \x04\x10\x63\x05\x00\x0d\xd8\xc7\x8f\x1f\xa7\x5c\xf3\x00\x96\xb1\ \x42\x5f\x0a\x01\x20\xc7\xd3\x5f\x74\xcb\xd9\x80\xe3\xda\x0e\x19\ \x4b\xb0\x01\x4e\x0c\x7f\xd0\x65\xec\xeb\x7c\x0d\xac\x25\x02\x40\ \x64\x13\xc0\xea\x50\xe2\xf8\x98\x0d\x96\x04\x74\xe7\x30\x04\xea\ \xb4\xe9\x45\xcb\xa7\x4f\x9f\xa6\x92\xe6\x01\x8d\xf1\x42\x5f\x4a\ \x06\x80\x1c\xc8\xf3\xf4\x28\xd1\x1f\xe7\x78\x44\xd0\x24\x60\xf8\ \x83\x2e\x03\x06\x5a\xc7\x5b\xc0\x6e\x6f\x6f\xa7\x54\xf3\x00\x16\ \x30\x43\x3f\x0a\x01\x20\x47\x64\x7a\xfa\xd4\xda\x20\x63\x09\x36\ \xc0\x89\xee\x1c\x86\x40\x21\x80\x07\x5e\x0e\x34\xef\xb8\x06\x1f\ \x63\xb2\x09\xa0\xe5\x1f\x42\x7f\xa9\x0d\x16\x4b\x00\x9d\x36\x05\ \x3c\x0b\xdc\xe7\xcf\x9f\xa7\x54\x4b\x11\xe1\xee\xee\x8e\x92\x01\ \x20\x27\xa6\x3f\xf4\xab\xb5\x41\xc6\xd2\x99\x80\x11\x90\x74\x19\ \x29\x02\xe4\x40\xf3\x8e\x6b\x32\x00\x44\x36\x01\xb4\xfc\x7d\xf4\ \x5f\x0d\x01\x74\xea\x17\xf0\x34\x70\xc1\x81\x70\x62\xb6\x59\xb0\ \x65\xac\xfb\xfb\x7b\x4a\x06\x80\x1c\x4f\x7f\xe8\x55\xa2\x3f\xce\ \xd1\x36\xc8\x58\xba\x38\xa4\x47\x27\x43\x20\x08\x60\x53\xa7\x00\ \x51\x0a\x9c\x9c\xe7\x01\x78\x6c\x02\xb4\xda\xa0\x09\x20\x24\x60\ \xf8\x83\x2e\x43\x08\x60\xa3\x47\x03\x17\x9c\x38\xa5\x9a\x05\x59\ \x13\x81\x49\x80\x54\xe6\xaa\xb1\x41\xc6\xb1\x59\x80\xee\x1c\x86\ \x40\x4d\x00\x0f\xc0\x1c\x70\x72\x5c\x93\x40\x8f\xf3\xe5\xcb\x17\ \xca\x14\x00\x39\x31\x02\xd4\xda\x60\x33\xd9\xa2\x33\x00\x8c\xd3\ \x55\xb2\x38\xb2\x14\x34\x7b\x9e\x25\x02\x9b\x00\x35\x99\x2b\x66\ \xa3\x9d\xd2\x80\x0f\x70\x62\x04\x24\x5d\x46\x0d\x01\x82\x33\x27\ \x69\x39\xf0\xa4\xa8\xea\x91\x00\x39\x3b\x56\x4f\x00\xed\x5c\x0d\ \x56\xea\x73\x2c\x13\x30\x09\x10\xcb\x5e\x2d\x36\xe8\xab\x82\x45\ \x67\x00\xaf\xf8\x1b\x04\xb8\xdf\x5c\x3a\xda\x62\x90\x9e\x9e\x19\ \x02\xed\xfc\x1f\x73\xfe\xc3\xc3\xc3\x64\x9b\x17\x59\xba\x3f\x40\ \x0c\x7d\x28\x45\x20\xe4\x40\x5e\x8e\xbc\x39\x3b\xac\xfe\x9a\x04\ \x0c\x7f\xd0\x65\x0c\x02\x3c\xec\xea\x1a\x10\x7a\xb5\x04\xb0\xf3\ \xa7\x44\xb7\x17\x31\x35\x51\xc4\xcc\x00\x35\xd9\x2b\x65\x83\xbd\ \xb4\x45\x16\x40\xa0\xd0\xa3\x93\x21\x50\x32\x40\x8c\x00\x39\x22\ \xe4\xa6\x81\x1e\x08\x50\x6b\xc3\x2a\x09\x20\xf7\xcc\xc5\x78\xeb\ \xd8\x5c\xd4\x7b\x97\x87\xa7\x58\x03\xe8\x69\xc0\x16\x82\x8c\x80\ \xa4\xcb\xc8\x65\x80\x92\x29\xc0\x92\x45\xa7\xe2\x5e\x32\x40\x8d\ \x1d\x23\x03\x84\x7b\xff\xda\xa9\x39\xf0\x62\x37\x56\x7a\xca\x00\ \x2d\x36\x8c\x0c\x10\xaa\xe2\x1c\x70\x72\x3c\x46\x82\x1e\x32\x40\ \xad\x0d\x23\x03\x54\x64\x80\x54\x11\x78\xcc\x0c\xe0\xe9\x95\x22\ \x82\x47\xe0\x91\x01\x0a\x33\xc0\xa8\x01\xe8\xa5\xdb\xe1\x04\x8e\ \x1b\x41\xe3\x46\xd0\xee\xe7\xe0\xdc\xbd\x80\xdc\x8f\x2a\xf6\x2e\ \xda\x31\xa6\x80\x92\xdb\xc1\x25\x3f\x6a\xe9\x5f\x04\xe5\xf7\x92\ \xc3\x85\x5d\x47\x23\xe9\x1f\x83\x72\x04\xd0\x73\x68\x0c\xc4\xde\ \x7f\x0b\x80\xde\x29\x3b\x62\x05\xe0\x62\xef\x04\xea\xe7\x01\xbc\ \x87\x29\x72\x51\x1f\xbb\x01\x24\x63\x31\xaf\x02\x62\x0f\x83\xd4\ \xda\x60\x1f\x6a\x59\xf4\xcf\xc1\x1e\x01\x72\xbf\xa8\xe5\x6e\xff\ \xa2\xff\x31\x09\x60\x9f\x4d\xa8\x25\x80\xd6\x5f\x7e\x07\x58\xfd\ \x13\x41\x25\x29\xdf\x7b\x3e\xf0\x18\x0f\x84\xd8\x3a\x20\x76\x7b\ \xdb\xcb\x5e\xd6\xf9\xab\x20\x40\xcd\x63\x61\xa9\x67\x05\xbd\x07\ \x43\x99\x04\xf0\x1e\x67\xaf\x7d\xb6\x31\xf6\x38\xd8\xa2\x33\xc0\ \x20\xc0\xe3\x63\xef\xab\x23\xc0\x78\x2f\x60\xeb\x7c\x2f\x7b\xad\ \xea\xbd\x00\xc9\x02\xde\x23\xe2\x1a\x9c\xd4\x67\xef\xf5\xb0\x00\ \x2e\xe5\x91\x30\xc8\xf1\x5e\x02\x2d\xd5\xdd\x8b\x7c\xa9\xfe\x17\ \xfd\x5e\xc0\x5c\xaf\x86\x49\xf1\x34\x08\xd0\xd1\x4d\x1f\x4f\x15\ \xbb\x2e\x40\xed\x0b\xa2\xb9\x37\x84\x43\x64\x51\x32\x00\xe4\xe4\ \xde\x0c\x2e\xcd\x5e\xde\x7b\x81\xc0\xa9\x73\x57\xb6\xa9\x37\x08\ \xb0\x7d\xf3\x39\xf6\x66\xf0\xe2\xdf\x0e\x3e\xe4\xfa\x00\x76\xa1\ \x88\x63\xaf\x0f\x50\xb2\x30\x44\xec\xb5\xf6\xd5\xac\x0f\x10\x5b\ \x1f\x28\x97\x4e\xed\x4b\x13\xfa\x7c\xb3\x4c\x0b\x65\x0a\x08\xf2\ \x77\x2b\x84\xe8\x82\xb6\xc5\x0e\xcf\xf9\xc0\xa9\x2d\xc7\x76\xde\ \x6b\x10\x60\xbb\xfc\x8d\x47\x60\xbb\x50\x54\xe7\xae\x6c\x53\x2f\ \xb7\x4a\x98\x4d\xeb\xb1\xff\xc7\x56\x0a\x43\x64\xb6\x69\x56\xd7\ \x0b\x72\xf4\x15\x4d\xcb\x62\x51\x76\x81\x2b\xbd\x78\xe4\x62\x17\ \x89\xb2\xab\x6b\x96\x2e\xb5\xe6\x39\x5c\x17\x4c\x6a\x1c\x0a\x01\ \x82\xec\xdd\x32\x71\x29\x1b\xec\xf4\x10\x23\xae\x75\xfe\x20\xc0\ \xff\xeb\x08\xd8\x4b\x24\x0b\xa0\x5d\xa8\x11\x8e\xa9\x8b\xe5\xb6\ \xb3\x07\x01\xda\x70\x7b\x32\x56\x0a\x7d\x5c\x09\x75\x95\x2b\x85\ \xc6\xd6\x0a\xae\x5d\x63\xd7\x16\x4c\xaa\xb8\xa4\x64\x80\x20\x7f\ \xb3\x54\x6c\xed\x42\xd7\xb1\x25\x6e\xf5\xea\xe1\x82\x51\x63\x8c\ \xf5\xdd\x6d\x10\xe0\xd7\xd5\xd0\xf5\xf2\xb0\x7a\xff\x80\xbe\x3d\ \xd9\xa8\x9d\x2c\x17\xaf\xd7\xca\xaf\x8d\xa4\x25\x2c\x17\xef\xad\ \x74\xae\x17\x8a\x5e\xec\x72\xf1\x76\xc3\x88\xd4\x9a\xfb\x25\x1b\ \x2f\xd8\x0d\x1b\x98\x1b\x46\x58\xd9\x25\xfa\xa6\xc8\xab\xf7\x0a\ \x18\x04\x68\xdc\x39\x64\x10\xa0\x31\x35\xb3\xba\xc9\x9e\x41\xa9\ \xfd\x82\x72\x91\x14\xdb\x2e\xe6\x18\x5b\xc6\xb4\x6e\x1b\x63\x6d\ \xb0\x5b\xc6\x2c\x76\xcf\xa0\x41\x80\xed\x95\xc3\xea\x09\x90\xdb\ \x3c\xaa\x74\x07\xae\x53\xdf\x35\xcc\xdb\x2c\x4a\x36\x95\x64\x65\ \x65\xaa\x9c\x92\x3d\x03\x53\xce\x8f\xed\x2d\x28\x84\x0a\xd1\x45\ \xb9\x0f\x00\x39\x1e\x89\x4b\xb7\xc2\xb3\x76\xe8\x3d\x08\x05\x23\ \xaa\x63\x58\xc2\x06\x01\xb6\xfb\x23\xae\x96\x00\x7a\xe7\x50\xbd\ \x89\xa4\xde\x4e\xae\x66\x07\x51\xbb\x6d\x6b\x00\x97\x92\x01\x20\ \xc7\xca\xae\xd1\xdb\x5e\xf2\xd9\xbd\x84\x17\xbb\x73\xa8\xec\x8d\ \xab\x37\x4e\x8e\xed\xbd\x1b\x9b\x1f\xbd\xf3\x7b\xde\x3b\xb8\xc4\ \x0e\x8d\x87\x60\xc4\xca\xca\x54\x39\x83\x00\xfe\xee\xe8\xab\x21\ \x40\x6a\xfb\xf8\xda\x5d\xb8\xbd\xed\xdb\x99\x53\x80\x27\x7f\x1f\ \x1b\x56\xb1\x7d\x3c\x08\x90\x22\x81\x07\x6a\xc9\x77\x02\x1e\x93\ \x00\x5e\x36\x2b\xd1\xd5\x3b\xc7\x3a\x1f\x18\x51\x53\x33\x4b\xd8\ \x20\xc0\xf5\xb4\x6a\x02\x5c\x5e\x5e\x6e\x32\xc0\x21\x88\xa0\xa3\ \x46\x3e\x87\x82\x8b\x72\x15\x00\x39\x9e\xfc\xda\x0c\xe0\x45\x3e\ \xb0\x01\x4e\xac\xa0\xa4\xca\x81\x61\x29\x12\x78\xa0\x96\x7c\x27\ \x84\x62\x12\xc0\x23\x71\x89\xae\xde\x39\x3a\x28\x04\x23\xaa\x63\ \x58\xc2\x06\x01\xae\xa6\x55\x13\xe0\xe2\xe2\x62\x93\x01\x3c\x22\ \xd8\xe2\x30\x15\x4d\x3a\x62\xf4\xe7\x50\x85\x53\xa6\x00\xc8\x89\ \xe9\x50\x9a\x05\x6c\x7f\x8d\x0b\x70\x62\x05\x25\x55\x0e\x0c\xcb\ \x91\x20\x06\x6c\xea\x7b\x01\x8f\x49\x80\x18\x89\xf7\xd1\x1f\x63\ \x0a\x46\x54\xc7\xb0\x84\x0d\x02\x3c\x16\xc0\xde\xbc\xbf\x78\x02\ \x9c\x9f\x9f\xef\x18\x6e\x33\x41\x69\x44\xe9\x54\x69\x3f\x87\x2a\ \x9c\x32\x05\x40\x4e\x4a\x8f\x5c\x16\xf0\xfa\x4a\x70\xe0\x2f\x70\ \x62\x05\x25\x55\xce\x20\xc0\x36\x03\xac\x9a\x00\x96\x04\xb1\x4c\ \x90\x8a\x30\x5b\x30\x49\xf4\x30\x33\x80\x8e\xd8\x52\x5d\x73\x8e\ \x97\xe8\x5f\x74\x06\x80\x71\xd2\x34\x88\x5e\x7d\x60\x01\xf3\xce\ \xd7\xdf\x85\x0a\x9c\x32\x05\x40\x4e\x4e\x97\x14\x29\xbc\xbe\x1a\ \x97\x41\x00\x75\xa9\x18\x8b\x76\x0f\xc4\x41\x00\xea\x8c\x5e\x2f\ \xcc\xb2\x3c\x95\x09\x72\x11\x26\xc7\xf5\x98\x4c\x02\xe4\x32\x59\ \x8b\xfe\x7a\xcc\x7a\x74\x4f\xa0\xc7\x20\xc0\xf6\x3e\x88\xad\xf8\ \x3d\x5c\x4e\xc0\x9d\xf5\x2a\xc6\x08\xe0\x7d\x5f\x02\x92\xed\x17\ \x2a\x6c\x4a\x0d\x00\x39\xa5\xb6\xb4\xd8\xb1\xd8\x1a\xe0\xec\xec\ \x6c\x42\x2b\x05\xaf\xf6\xbc\x1e\x09\x50\x6b\x83\x60\x54\x1f\x5e\ \x27\xd0\x63\x10\xe0\xf1\x0a\x28\x46\x8c\x55\x10\x60\x2e\x22\x84\ \x74\x4b\x99\x02\x20\xa7\x36\xb2\x73\xe7\x0b\x26\x83\x00\xea\x3e\ \x41\x0e\x34\x7b\x7c\x10\xa0\xf3\x69\xe0\xf5\xeb\xd7\x9b\x1a\xc0\ \x6b\xb5\xce\xc6\xf9\x76\x1c\x26\x01\xac\xec\x43\xe8\x2f\x63\x02\ \xa7\xce\x5d\xd9\xa6\x1e\x0c\xd3\x2d\x46\x86\xd6\xef\x83\x13\x28\ \x53\x00\xe4\xb4\xea\x18\xeb\x67\xb1\x69\x43\xb8\xf3\x5e\x83\x00\ \x7e\xf6\x03\x29\x56\x41\x80\x57\xaf\x5e\xfd\x62\xa8\x18\x5e\x1b\ \x51\x16\x30\xfc\x9f\x99\x01\x3c\xf9\x87\xb0\x01\xe3\x02\xa7\xce\ \x63\xb9\x4d\xbd\x14\x01\x52\xf5\x81\x07\xec\xa9\x13\xc0\xd3\x5f\ \xbe\x5b\x34\x01\x60\x9c\xb4\x14\x08\x2d\xc7\x02\x51\x28\x35\x00\ \xe4\xb4\xe8\x97\x73\xba\xc6\xa6\x2d\xc4\x3a\xef\xa5\x0d\xcc\x65\ \x83\x16\x80\x07\x01\x3a\x27\xc0\xcb\x97\x2f\x77\xd1\x6f\xc9\x90\ \xcb\x0c\xa9\xf3\xe5\x18\x93\x00\x25\xfa\x78\x24\x2e\xe9\x07\x9c\ \x3a\x77\x65\x9b\x7a\xa5\x04\xd0\xd9\xa1\x04\xb0\x5e\x09\x60\xa7\ \xba\x52\x5b\x16\x4d\x00\x18\xa7\x5b\x29\x28\xb9\xf3\x30\x66\x88\ \x38\x4a\x0d\x00\x39\x35\x64\x2e\xd1\xdd\xe2\xd2\x16\x62\x9d\xf7\ \xb2\x46\x1e\x0a\x44\x19\x97\x4d\x80\x43\xeb\xaf\xf1\xe9\xdc\x95\ \x6d\xea\xbd\x78\xf1\xe2\xa7\xe8\xf7\x08\xb1\xcf\x77\xc7\x20\xc0\ \x3e\xfa\xc6\xfa\x02\xa7\x36\x84\x3b\xef\x35\x08\xf0\xf3\xf4\xb7\ \x4a\x02\x80\x04\xb6\xed\x13\x45\x7a\xac\x30\xd7\x52\x6a\x00\xc8\ \xd1\x72\x0f\xa5\xbf\x1e\xb3\xf3\x58\x6e\x53\xcf\x73\xbe\x7c\xd7\ \x02\xa2\x1d\xef\x58\x04\x68\xcd\x6c\x29\x3c\xda\x10\xee\xbc\xd7\ \xf3\xe7\xcf\x7f\x89\xfe\x14\x08\xb5\xc7\x8e\x49\x80\x5a\x5d\x53\ \xe7\x03\xa7\xce\x5d\xd9\xa6\x1e\x0c\x9b\x93\x04\x4b\x20\x80\x60\ \xd4\x86\x70\xe7\xbd\xc4\xb8\xdc\x5f\x2f\x3a\x72\x7d\x70\x3c\x4c\ \x23\x94\x1a\x00\x72\x4a\xf4\x69\xb5\x63\xf1\x19\xa0\x04\xbc\x96\ \x73\x7a\x23\x40\x8b\x0d\x8b\xce\x00\xcf\x9e\x3d\x9b\xd0\xf6\x01\ \x26\xd5\x77\x09\x04\x10\x8c\x3a\x4f\xe6\x6d\xea\x0d\x02\x6c\x6b\ \xa0\x54\x5b\x05\x01\xc4\xc8\x43\xff\x65\x66\x80\x43\xeb\x6e\xc7\ \x6b\x0b\xb1\xce\x7b\xcd\x0d\xda\x20\xc0\x20\x00\xed\x2a\x60\x6e\ \x32\x77\xee\xca\x36\xf5\x9e\x3e\x7d\xba\x29\x02\xe7\x6a\x4b\xc9\ \x00\xc0\xa9\x0d\xe1\xce\x7b\x0d\x02\x94\x91\x7f\xd1\x04\x80\x71\ \x73\xb5\x70\xe3\x85\x32\x05\x40\xce\x5c\x36\xc8\xb8\x9d\xc7\x72\ \x9b\x7a\x73\x83\x36\x08\xd0\xe6\x17\x5a\xaf\x41\x80\xf2\xec\x47\ \x73\x0a\x53\xd0\x20\xc0\x20\xc0\x6c\xf3\x3f\xc8\x35\xa6\x00\x66\ \x38\x37\xc8\x0a\xaf\x6f\xff\x7d\x7b\x7b\xfb\xe7\x5c\xed\xee\xee\ \xee\x8f\x06\xb5\xaa\xbb\x40\xce\x5c\x36\x60\x5c\xe0\x54\xad\xd4\ \x29\x74\xf8\xf1\xe3\xc7\xb7\xd0\x7e\x9b\xb1\x7d\x65\xe0\x10\xf4\ \xff\x3a\xa3\x0d\xc0\xe7\x1b\xc3\x8e\x21\x63\x20\x30\x10\x58\x3b\ \x02\xff\x01\x38\x92\xf5\x97\x5c\x72\x51\x23\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0e\xa2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0e\x28\x49\x44\x41\x54\x78\x5e\xed\x9d\xcf\x8f\x15\ \x59\x15\xc7\x07\x68\x68\x1a\x9a\xdf\xbf\xa1\x1b\x1d\x08\x41\x1a\ \xc4\x04\x12\x40\x66\x40\xf9\x19\x5a\x56\x63\x58\xb9\x50\x83\x0b\ \x58\xcd\x46\xc6\x64\x4c\x8c\x1a\x26\x41\x9c\x85\x51\x12\xd3\xce\ \x4c\x4c\x70\x61\xc4\x44\xc3\x42\x87\x0c\x1b\x64\x88\x6e\x08\x61\ \xc1\x1f\x60\xec\x31\xc8\x33\xb1\x31\xb5\x60\xc1\x02\x3c\xa7\x7d\ \x87\x1c\x0e\xf7\xde\x73\xea\xbe\xaa\x7a\x55\xf5\x2e\xc9\x0d\xfd\ \x5e\xdd\xba\x3f\xce\xf7\x73\xce\xbd\x75\xab\xea\xbe\xd7\x5e\x4b\ \xff\x92\x05\x92\x05\x92\x05\x92\x05\x92\x05\x92\x05\x92\x05\x06\ \xc3\x02\xc3\xa3\xa3\xa3\xdf\x5b\xba\x74\xe9\xbb\x90\xde\x87\xf4\ \xf1\x92\x25\x4b\x7e\x84\x9f\xe1\xfb\xb7\xc0\x04\x23\x83\x61\x86\ \x01\xea\x25\x08\xfc\x65\x48\x19\x88\x6c\x4e\x90\xff\xb3\x65\xcb\ \x96\x6d\x19\x20\x33\xb5\xaf\xab\x20\xf8\xaf\x48\x74\x10\x33\xcb\ \x9b\xd8\xb9\xdf\x6d\x9f\x75\x5a\xdc\xa3\xe5\xcb\x97\x7f\x53\x8a\ \x0d\xdf\x65\x79\x93\xa3\x8c\x2f\xb5\xd8\x6c\xed\xe8\x1a\x17\xcd\ \x25\xf8\x8a\x15\x2b\x32\x2d\xb9\xce\xa3\x72\xe1\xd8\x1f\xda\x61\ \xa9\x16\xf6\x02\x45\xe2\xe2\xb9\x84\x5e\xb9\x72\x65\xa6\x25\xd7\ \x79\xbc\x5c\xac\xa7\x85\xe6\x6b\x76\x97\x7c\xc2\x6b\x62\x5b\x8e\ \x73\x20\x78\x3d\xcd\xb6\x58\x8b\x5a\x8f\xa2\x70\x91\xb8\xa8\xab\ \x57\xaf\xce\x7a\x49\x12\x10\xaa\x87\x40\x68\x91\x19\x9b\xd9\x15\ \x10\xe2\x9f\x24\x0a\x89\x25\x05\x5f\xb3\x66\x4d\x16\x9b\x64\x59\ \x54\x07\x03\xe1\xf7\xcd\xb4\x5c\x0b\x5a\x0d\x62\xbc\x8d\x42\xb8\ \x3c\xde\x25\xf8\xda\xb5\x6b\x33\x6b\x72\x9d\x4f\x30\xf0\xfa\xb0\ \x7e\x58\x40\x5a\xdd\x02\x73\x36\xaf\x0b\x5c\x7c\x12\x87\x0b\xe7\ \x12\x7b\xdd\xba\x75\x99\x96\x5c\xe7\xf1\x72\x25\x08\xd8\x8e\xe6\ \x59\xaf\xe1\x2d\x06\xa3\x5f\x97\x21\x9f\x44\x92\x02\x86\x04\x5f\ \xbf\x7e\x7d\x86\xc9\x97\x47\x96\x45\x75\x38\xa2\xc1\xd7\x1b\x6e\ \xd2\x66\x35\x1f\xc5\x97\x5e\xcf\xc5\xe2\x82\x92\xc8\x31\xff\xf3\ \x72\x78\xf9\x2e\x10\x9a\x65\xc1\x06\xb7\x76\xd5\xaa\x55\xef\x10\ \x00\x2e\xaf\xd7\xc4\xdf\xb0\x61\x43\x16\x4a\x12\x14\x2b\x04\xd0\ \x96\xd1\x06\x9b\xb5\x39\x4d\x07\x43\xcf\xa0\xf7\x4b\xf1\x49\x28\ \x2e\xa0\x4f\xe8\x8d\x1b\x37\x66\x32\xf9\xf2\xf2\xf2\xa8\x0e\x19\ \x0d\xba\xd1\xe8\x8f\xcd\xb1\x62\x83\x5b\x4a\xe2\x93\x08\x2e\x8f\ \xe7\x62\xba\xc4\xb6\x7e\xc7\xcb\x09\x81\x40\x30\x36\xd8\xac\xcd\ \x68\x3a\x86\x59\x97\xe7\xfb\xbc\xde\x27\xf4\xa6\x4d\x9b\x32\x57\ \xd2\x22\x83\x0f\x82\x04\x40\x45\xfc\x80\xd7\x7f\x1f\x8d\x8d\xde\ \x2f\x43\xbe\xcf\xeb\x7d\x62\x5b\xbe\xf7\x0d\x13\xf2\xea\x81\xa2\ \x51\x9a\x07\x94\x0c\xc2\xf6\xed\xdb\x3f\x90\xa1\x1f\xc5\x88\x11\ \x7f\x6c\x6c\x2c\xe3\xc9\x12\x15\x5c\x43\x02\x82\x48\x6d\x82\xe3\ \xdf\x29\xd9\x04\xf5\x2d\x7e\x64\x64\xe4\x77\x90\x32\x9e\x16\x2d\ \x5a\x94\x2d\x5e\xbc\xf8\x45\x82\x55\x33\x5c\x39\xcb\xf8\x13\x3a\ \xec\x56\xeb\xec\xdd\x3c\xd7\xd2\x6e\x28\xec\xbb\xc4\x97\x62\x4a\ \xb1\xad\x9f\x79\x39\x3c\x1a\x50\x9d\x81\x48\xf0\xe2\x32\x95\x2f\ \x1f\xd3\x3d\x04\xea\x33\x3d\x74\x82\xf6\xc0\x84\xb6\xe1\xf6\x42\ \xfb\x49\x9b\xd6\x96\x00\xf0\x84\x4f\xa4\xf8\x1c\x00\x2e\xbe\x0f\ \x00\xdf\xba\x3e\x07\xc0\x17\xfa\xb9\x40\x5c\x38\xab\xd8\xbe\x7c\ \x2e\x08\x64\x24\x90\x57\x07\xd8\x5e\xd7\x8a\x21\xf6\x8f\x43\xe0\ \x02\x80\x43\x80\xf6\x93\x10\xd4\x16\x00\xf0\x86\x9b\x04\x00\x35\ \x1c\x69\x26\xe1\xa5\xe7\x63\xe7\xb9\xf7\x87\xc4\x77\x85\x7d\x1e\ \xfa\x49\x7c\xab\xf0\xe3\xe3\xe3\x99\x2b\x85\x60\xa1\xb2\x7d\x91\ \xa0\x57\x08\xd0\x1e\x14\x05\xc8\x66\x68\x3f\x09\x41\x6d\x01\x00\ \xc3\xcc\x02\xc0\xc5\xe7\x00\x50\x98\x93\xcf\xe9\x91\x47\x58\x43\ \x3f\x1a\xda\x37\xee\x5b\x43\x7f\x5e\x00\x64\xb9\x04\x41\x68\x28\ \xf0\x2d\x1b\xcb\x28\x80\x4e\x90\x27\x12\xd4\x1a\x80\xba\x88\x2f\ \x3d\xd9\x27\xb8\xf6\x7d\x68\xa2\x58\x14\x04\xe8\x00\x79\x20\x68\ \x0c\x00\x96\x31\xdf\x37\xe9\xd3\x56\xfa\xb4\x89\x9f\x2b\x94\x6b\ \x62\x5b\x86\x84\xd0\x7c\x20\xef\x84\x30\x6f\x24\x20\xe7\xaa\x2d\ \x00\x60\x9c\x9b\xda\xa4\xcf\xf5\xd0\x66\x2f\x63\x3f\x82\x90\x77\ \xfc\x27\x38\x2c\x82\xf7\x1a\x01\x70\xee\xc2\x27\x84\x08\xb6\xeb\ \xaa\x80\xa2\x00\x45\x02\x7e\x55\x20\x27\x85\xb5\x06\x80\x2e\x61\ \x5c\xde\x2f\x2f\xf7\x34\xef\x97\x77\xf7\xc8\xc3\x62\xbc\x1f\x85\ \x2c\x22\x02\x60\x39\xbd\x46\x81\x5e\x21\xa8\x3d\x00\xb1\xa1\x5f\ \xbb\xc3\x17\x02\x00\xa3\x80\xf5\x0a\xa0\x97\xcb\xc2\x5e\xd6\x05\ \xac\x97\x86\xbe\xf9\x00\x39\x57\x23\x00\xd0\x66\xfc\x87\x0f\x1f\ \xfe\xe8\xc8\x91\x23\x53\x3c\x1d\x3b\x76\x6c\xea\xf8\xf1\xe3\xde\ \x74\xf2\xe4\xc9\x29\x9e\x4e\x9d\x3a\x35\x45\x69\x72\x72\x72\xaa\ \x1f\x89\xea\x97\x6d\xc3\xcf\xbe\xbe\x60\x3f\x31\x51\xdf\x4f\x9c\ \x38\xf1\x0b\x88\x0a\x33\xd6\x45\xa2\x5a\x03\x60\xf5\xfe\x1b\x37\ \x6e\xec\x7c\xfe\xfc\xf9\xe6\x94\x9e\x6f\x7e\xf6\xec\xd9\x18\x00\ \xd0\x69\x0d\x00\x9a\xf7\xe3\xa4\x0f\xbc\x63\x59\x6d\x49\xee\x43\ \xc3\x10\x00\xeb\x55\x41\x1f\x9a\x67\xab\x12\xaf\x02\x68\xb5\x4f\ \x5b\xeb\x4f\x00\xbc\x6c\x53\x0b\x00\x14\x5d\x6d\x6a\xf4\x21\x17\ \x4c\xae\x5e\x00\xa0\xad\xf6\x25\x00\xdc\x00\x58\xee\x15\xf4\x41\ \x5a\x5b\x95\x16\x00\xe8\xd2\x2f\x01\x10\x8e\x00\xa1\x75\x01\x9b\ \x1a\x7d\xc8\x85\x00\xf8\xc6\x7f\xfe\xe2\x66\x9a\x03\xbc\x2a\x8e\ \x65\x08\xa0\x1b\x45\x7d\x90\xd6\x56\x65\x08\x00\xf9\xf2\x66\x9b\ \x23\x00\x2c\x60\x4d\xc3\x0d\xab\x87\x36\xab\xfd\x3f\x17\x01\xa0\ \x4d\x04\x71\x1e\x90\xa7\xdc\x4a\xf3\x0e\x3a\x00\xb0\xd0\xf3\x86\ \x78\x5a\xf8\x94\x55\x00\x19\x01\x5a\x37\x04\xb4\x3d\x02\xb8\x1e\ \x17\x47\x18\x8a\x02\x80\x3f\x2b\x60\x2d\xb3\xf2\x7c\x83\x18\x01\ \xc0\xeb\x4f\xf9\x5e\x1f\xeb\x2e\xfd\xfe\xdd\x22\x44\x6b\x23\x80\ \x7c\xea\x87\x22\x41\x1b\xe6\x00\x20\xf0\xbf\x5d\xaf\x8b\xc9\x07\ \x41\x10\x12\x0d\x02\xbe\x12\x28\xc3\x3f\x79\x7f\xa3\x27\x81\x72\ \xfb\x16\x0d\x00\x78\xfd\xeb\x82\xf5\x3d\xff\xee\x2d\xd7\x77\x35\ \x23\x3b\x8e\xcf\xcf\x13\xa6\xe9\x7c\x10\xf4\xa0\xf6\x06\xb1\xbc\ \x05\xac\xb5\xcd\x77\x15\x20\x6f\x0c\x35\x76\x12\x98\x17\x80\x9d\ \x3b\x77\xfe\xc4\xb7\xe1\x03\x7f\x58\x84\xbc\x6d\xf7\xee\xdd\x97\ \x35\x23\xf3\xe3\x50\xc6\x5f\xd9\x2b\xdf\x66\x78\xe0\x9c\x69\xfe\ \xaa\xb8\xeb\x6f\x09\xee\xfe\xfd\xfb\x7f\xab\xb5\x0d\x80\x7f\x71\ \x2f\xa0\xd1\x11\x20\xb4\x14\xcc\x21\xd0\x22\xc0\xae\x5d\xbb\x2e\ \xcb\xed\x59\x42\x5b\xbd\x58\x01\x00\x43\xff\xda\x55\x8e\x26\x10\ \x9c\x33\xe9\x13\xde\xd7\x2e\x6c\x3f\xdc\xe8\x39\x04\x69\xab\x56\ \x3e\x07\x80\x3f\x34\xe3\x7a\x56\x50\x2b\xab\x6f\xc7\xb5\x85\xa0\ \x7e\x02\x00\x62\x7c\x2b\x04\x10\x1c\xbb\xee\x33\x1c\x08\xff\x1f\ \x8b\xa7\xf3\xf2\x01\xc8\x3f\xa3\xf8\x56\x31\x5a\x03\x80\x16\x01\ \x08\x02\x4b\x04\x90\xdb\xbf\x84\x76\xf4\xc2\x88\x11\x32\xf6\xe9\ \xd3\xa7\xbf\xa6\xed\x08\x26\xcf\xc7\xb1\x5e\x81\xe6\xa5\x0d\xa8\ \xa8\xfc\xae\xd7\xef\xb0\x8a\x8f\xf9\x08\x00\xb9\x39\x65\x63\x23\ \x80\xeb\x6e\x60\xde\x08\x50\x24\x00\x20\xca\x52\x10\xb4\x13\x82\ \x00\x44\xf8\x8c\x44\x83\x7c\xff\xe2\x9b\x50\x68\x20\x60\xde\x83\ \x07\x0f\x5e\xcd\xe3\xf5\x1c\x90\x81\x8a\x00\x08\x82\x35\x02\xf8\ \xb6\x7f\x93\x42\x6a\x11\x00\x8d\x7d\xf7\xee\xdd\x13\xda\x2e\xa1\ \x20\xc4\x8f\xb5\x48\xe1\x3a\x8e\xc2\xc3\xc3\x2d\xd1\x9b\x4b\xbb\ \x22\x00\xdf\xdc\x9a\xbf\x30\x92\x27\xb2\x54\x9a\x97\xdf\x0d\x94\ \x37\x85\xf8\x7a\x80\x05\x80\x89\x89\x89\xcb\x9a\x58\xfc\xb8\x05\ \x00\x10\x68\x08\x5e\x2e\xbd\xad\xed\x26\x9a\x67\x87\x51\x18\xeb\ \xff\x14\xeb\xf5\x5c\x1c\x80\xaa\xe3\x9a\xfc\xc9\x35\x80\xda\x5f\ \x06\xba\xe6\x00\x52\x7c\x2b\x00\x72\x03\xc8\x10\x10\x16\x00\xd0\ \xe0\x20\xd6\x2e\xdf\xa6\xd1\x79\x80\xc3\xbc\x4f\x9f\x3e\x3d\x0c\ \x50\x7d\xa1\x08\x2f\x6b\x25\x00\xae\x3d\xfa\x89\x72\x6d\x08\xc0\ \x08\x20\x85\x2a\x02\x00\x14\x0b\x1e\x48\xfd\xd0\x07\x81\xa5\xce\ \x03\x07\x0e\xfc\xa6\x08\xaf\xf7\x45\x00\x19\xfa\xe5\x3b\x02\x45\ \x00\x57\x4a\x19\xf4\x48\x18\x8f\x02\x3e\x08\x62\x00\x08\x89\x86\ \xc0\x58\x3b\x05\xe2\x7d\x4e\xfb\xed\x00\x5f\x5d\xbd\x8e\xf5\xbe\ \x36\x62\x04\x90\x3f\x68\x41\xc2\xf3\xf1\x1f\x1f\x0d\xb7\xf6\xb3\ \xf2\x7c\x45\x02\x00\x21\xfd\x3d\xab\x97\x62\x3e\x18\x8b\xdf\xcb\ \xd3\xe1\x73\xe7\xce\x5d\xc8\x03\xc1\x8e\x1d\x3b\x3e\x29\xda\xeb\ \x65\x04\x68\x15\x00\x5a\x14\xd0\x22\x00\x18\x7b\xbc\x7b\x3d\x8d\ \x2b\x69\x96\x34\x9e\x07\x00\x28\x73\xa5\xeb\x27\x64\x5c\x50\xe0\ \x58\x0f\xf9\x27\xf2\x94\x9f\x37\x2f\x0c\x6f\x2f\x45\x00\x97\xf7\ \xd3\x2b\x62\x79\xcb\xae\x2c\x3f\x46\x00\xd7\x7e\x00\xbc\x33\x64\ \x74\x0d\x80\x2a\x1a\x7d\xe9\xd2\xa5\x6f\x87\x7e\x47\x08\xae\xeb\ \x3f\x2a\xd3\xeb\x79\x1f\x11\x00\x6e\x27\x39\xee\xf3\xf7\x03\xab\ \xb0\x4d\x54\x1d\x4d\x03\x00\x66\xf0\xa3\x60\xf8\x47\x8e\xe7\x18\ \xff\xfb\xf8\xf1\xe3\xaf\xc2\xf1\xcf\x47\x19\x22\xe2\xa4\x56\x01\ \xa0\x45\x01\x34\xf8\xde\xbd\x7b\x6b\xf1\x62\x08\x78\xf8\xec\x2f\ \x8a\x51\x82\x3b\x77\x57\x41\xf8\x37\x21\xcd\x89\xd0\x31\xfa\x14\ \x09\x00\xdf\x55\xa5\x91\x6f\x07\x4b\x08\xe4\x9c\xa0\x2e\x00\xa0\ \x62\x5b\xb6\x6c\xb9\x8d\xed\xeb\x8e\xf5\xaf\x47\xab\xd8\xc3\x89\ \x04\x80\x14\xde\xb5\x5f\x50\x0f\xd5\x94\x7b\x2a\x0d\x01\xf2\x15\ \x71\xf9\xbe\x60\x9d\x22\x00\x5a\x64\x66\x66\x66\x77\x55\x63\xbd\ \x4f\x01\x04\xc0\x25\x7e\xe3\x00\xf0\x6d\x0b\x27\x3b\x57\xa7\x08\ \x50\x52\xb8\x1f\xca\xe3\x6e\x70\x29\xfb\x0a\x00\x7c\xbb\x38\xbe\ \x59\x54\x9e\x72\x2b\xcd\x4b\x3b\x84\x48\x08\x5c\xc3\x41\x9d\x00\ \x28\xd8\x48\x43\x00\xfb\xe3\xbc\x6b\xf6\x04\x80\x14\x9d\x0b\x4f\ \xdb\xc5\x15\xdc\xde\xe2\x8a\x0b\x01\x20\x21\x68\x23\x00\x20\x3a\ \xfe\xfe\x30\xdf\x16\xcf\xfc\xa8\x19\x02\xe0\x12\xbf\x51\x00\xe0\ \x36\x71\xb4\x91\x91\x2b\x0a\xf0\x0e\xb6\x0d\x00\x9f\x78\x56\xf7\ \x82\x05\xa8\x57\x00\xe0\xb6\xe4\x9b\x45\x5a\xcb\xac\x3c\x5f\xc1\ \x00\x0c\xc3\x22\x0d\xae\xd6\xa9\x09\x26\x95\xab\x2a\xef\x6c\xb7\ \x42\xf0\xf8\xb7\x7c\xe2\xe7\xd9\xd2\xa5\x35\x00\xf0\x8d\x22\x43\ \xd1\x40\x8b\x00\x60\xd8\x87\x9a\x61\xe9\x38\xd6\xd3\x8f\x5d\xba\ \xa5\x87\xca\xcf\xec\x6a\xe8\x87\x1a\xa0\x00\x7a\x27\x54\x1e\xdf\ \x82\x57\x2b\xab\x6f\xc7\xf9\x56\xb1\x3e\x10\xa8\x93\x1a\x00\x9a\ \x41\xa4\xb1\xb4\xf2\x3c\x46\x59\x80\xed\xcc\x6b\x30\xa8\x7b\x52\ \x13\x5f\x1e\x87\x3a\x82\x57\x05\xbe\xfe\xca\x8d\xa2\x63\xda\x9b\ \xb7\x7f\xd1\xf9\x9b\x04\xc0\xc2\x85\x0b\x1f\x93\x71\xe1\xef\x1f\ \x58\x3b\x2d\xf7\x42\xb6\x80\x70\xf6\xec\xd9\x0b\xda\xa5\xa6\x0b\ \x00\x97\xf8\x8d\x02\x20\x64\x2c\xcd\x63\xad\x11\x80\xea\xd0\xca\ \x23\x81\x21\xff\xa7\x31\x5e\x05\x90\xbc\xe1\x13\x24\xf4\x7d\xf7\ \x4e\xa6\x3a\x47\x81\x79\x4c\xc7\x5a\xbe\x15\xd6\xca\xf3\xc9\x08\ \x10\xea\x90\x26\x18\x1a\x84\x7b\x97\x66\x1c\xad\x3c\x10\xf0\x83\ \x50\x19\x70\xfc\xba\xcf\x60\x70\xde\xb4\x56\xbf\x3c\x0e\x5e\xff\ \x4e\x9e\xd5\xc5\x04\x80\xb0\x3e\x19\xc4\xf5\x83\x09\x2e\x31\x34\ \x00\x2e\x5e\xbc\x78\x94\x85\xfc\x0c\x04\x7f\x29\xb9\x42\x2b\xd4\ \xbd\x37\xaf\xf0\x98\xdf\xea\xf5\xbc\xcb\x56\x00\xb0\xdd\x95\x7b\ \xb6\xb5\xc2\xa2\x23\x40\x1e\xe3\x6b\x00\x80\x28\x23\x70\x65\xf1\ \x48\x0a\x2f\x3e\x3f\xa0\xbe\x0e\x0f\x0f\xff\x2d\x4f\xfd\x98\x17\ \x36\x7e\xfc\x59\x1e\xaf\xcf\x0b\x00\xb5\xd5\xaa\x47\xe5\xf9\xea\ \x0c\x00\x1a\xe3\xde\xbd\x7b\xc7\x14\x00\x32\x10\xde\x9b\xc7\x30\ \xd6\x8f\xc5\x1a\x1d\xe0\x0c\xce\x01\x78\xbb\x63\xeb\x28\xfd\xbc\ \xba\x03\x80\xef\x05\xc0\x72\xf5\x6d\x0d\x82\xd0\x71\x09\x01\x3c\ \x35\x34\x15\xeb\xf5\x5c\x90\xd6\x00\x80\xc6\xb3\x84\x4e\x2d\x64\ \x6b\x06\x91\x75\x68\xe5\x91\xb1\x41\xac\x2f\x82\x97\xa3\xa7\xbf\ \x92\xf2\x82\xf1\xe4\xc9\x13\x7c\x2f\x60\x73\x11\x9e\xe5\xea\xaf\ \xaf\x3d\x45\xd4\x57\x4a\x19\x18\x01\x78\xa3\x7b\xb9\x0a\x28\x0b\ \x00\xec\xf8\xbe\x7d\xfb\x3e\xf4\x41\xc0\xbf\xf7\x09\xb0\x75\xeb\ \xd6\x8f\xbb\x8f\x87\x17\xf6\xd4\x10\x4c\x38\x3b\x1a\x80\xd4\xb6\ \x52\xc4\x2b\xa2\xd0\x22\x01\x38\x7a\xf4\xe8\x4f\x51\x28\x4b\xda\ \xb3\x67\xcf\xd5\x33\x67\xce\x8c\x58\xfb\x80\xef\x05\x58\x00\xc0\ \x3c\x52\x94\x98\x37\x7f\x2d\xed\x6a\x25\x00\x64\xbc\x98\xcb\x36\ \x30\xf4\x26\x14\xca\x98\x5e\x87\x50\x3c\xd7\x62\x68\xca\x73\xe8\ \xd0\xa1\x9f\x5b\x21\xc0\x7c\xdb\xb6\x6d\xbb\x5e\xc4\x58\xef\x6b\ \xa3\x06\x00\x6f\x6b\x9e\x7e\x56\x9a\x17\x23\x80\xcb\x6b\x5c\xa1\ \xcd\x3a\x66\x97\xd5\x01\x10\x73\x6c\xc1\x82\x05\x99\x4c\x2e\x28\ \xba\x5e\xbf\xbd\xac\xb6\x60\xb9\x12\x80\x10\x9c\x65\xb6\xa3\xa7\ \xb2\x9b\x04\x00\x76\xf4\xfc\xf9\xf3\x6f\xbb\x20\xc0\xef\x50\x00\ \xf8\x89\x99\xbf\x94\xe9\xf5\xdc\xd8\x56\x00\xb0\x6d\x3d\x89\x54\ \xe6\xc9\x04\x00\xd1\x1b\x9a\xd4\xf4\x3b\x02\xa0\x1d\x60\xd8\x58\ \xe1\x03\x00\xdf\x0b\xc0\x37\x89\xcb\xb4\x17\x2f\x1b\x86\xc9\x8e\ \x36\x24\x51\x5b\xab\x6a\x53\xee\x7a\x9a\x06\x00\x76\xf0\xce\x9d\ \x3b\x93\x1c\x02\x78\xa8\xe5\x76\xd1\x33\x7c\x8b\x21\x5b\x01\x00\ \x6c\x97\x3a\x3b\x07\xb0\x5c\x67\xd7\x21\x02\x74\xa3\xc0\x7c\x78\ \x70\xe3\x1f\x08\xc1\x95\x2b\x57\xbe\x81\xeb\x04\x16\xc1\x8a\xce\ \x13\x02\x40\x46\xa9\xa2\xeb\x2e\xac\x3c\x04\x80\xc6\x4f\x2d\x9c\ \xd5\x05\x00\xec\xfc\xb5\x6b\xd7\x4e\x77\x27\x7a\xe6\x4b\xc9\xc2\ \x8c\xd6\x2d\x08\x86\xcb\x8e\x6f\x38\x4a\x00\x14\x6d\x6d\x51\x1e\ \x88\x3f\x5c\x72\x15\x6a\xf1\xad\x02\x80\x13\xeb\x8b\x04\x75\x8a\ \x00\xaa\x3a\x15\x64\xb0\x00\x30\x7f\xfe\xfc\x0c\x53\x05\xcd\x89\ \xab\x82\x86\x80\x04\x40\x7e\xfb\xb5\x16\x00\xdf\xb8\xa6\x45\x00\ \x38\xef\x97\x40\x7b\x07\xd2\x43\x2d\xd5\xfa\xda\xd8\xc8\x42\x08\ \x00\xf2\xfc\xda\x47\x00\x78\x34\xfb\x26\x36\xd2\x32\x99\xd1\x00\ \x80\xa1\xe3\x91\xa5\x1c\x66\x94\x51\xa3\xad\x6b\x99\x0d\xfa\x8b\ \xb0\xcf\x86\x78\x2d\xd5\xb2\x03\xd8\xa8\x22\x01\xb0\x84\x44\x04\ \x84\x8c\xa5\x01\x55\x5b\xa3\x75\x1b\xd6\x2a\x00\x38\xc1\xb1\x43\ \x80\x0b\x80\x90\x67\x0c\x0a\x00\x43\x43\x43\xf5\x9d\x04\x52\x04\ \x20\xa1\x42\x21\x5c\x13\xcc\x17\x01\x7c\x10\x68\xe5\xb5\x25\x02\ \x34\x0a\x80\x5e\x3c\x36\x4f\x48\xc4\x7a\xda\x0e\x00\x0a\x4f\xa9\ \xb6\x30\xc3\x8e\xda\xb3\x93\x40\x4b\xd2\x04\xcb\x03\x00\x1a\x46\ \x2b\xaf\xb6\x46\xeb\x36\x0c\xa2\x65\x87\x8b\x1c\xfa\xbb\xb6\x7d\ \x49\x00\xc4\x4b\xd3\x1a\x00\x38\xb9\x65\x0d\x01\x2e\xef\x48\x11\ \x20\x1e\xbe\xc2\xce\xc4\x08\x90\x00\x88\x33\x67\x2b\x23\x40\x68\ \x1c\xd3\x3c\x36\x8f\x41\x06\x65\x0e\x30\x6f\xde\xbc\x0c\x53\x1c\ \x62\x15\x9c\x25\x23\x40\x02\xc0\x6e\x74\x0b\xf0\x03\x05\xc0\xf4\ \xf4\xf4\x57\x1e\x3c\x78\x70\xd2\x92\xee\xdf\xbf\x7f\xf2\xd6\xad\ \x5b\xb9\xb6\x65\xb3\x4b\x53\x4d\x4e\xbc\xef\x41\x02\x6b\xff\x57\ \xd3\xa2\x88\x5a\x8a\x8c\x00\xf8\x98\x37\xa4\x79\xc6\xd4\x68\xf1\ \xd1\xd4\xad\x01\x80\xd3\xdb\xcb\x10\x10\xc1\x5f\xa3\x4f\x69\x25\ \x00\x08\x83\x0f\x02\x6d\x12\xd8\x68\x35\x23\x1a\xdf\x5a\x00\x7c\ \xe3\x59\x02\xe0\x65\x4a\x12\x00\x11\x5e\xd3\xa6\x53\x5a\x01\x00\ \xfc\xf8\xe1\x4d\x6d\x06\x4b\xc7\x53\x04\xd0\x23\xc0\xdc\xb9\x73\ \x33\x57\xaa\x2d\xf8\x09\x80\x78\x69\x5c\x11\xa0\x91\x00\xf8\x1a\ \x8d\xdf\xf3\xe8\x90\x22\xc0\xab\x11\x20\x64\x3b\x7e\x2c\x1e\xb3\ \x92\xcf\xc4\x08\xa0\x75\x22\x0d\x01\x6e\x11\x30\x02\x68\xb6\xa3\ \xe3\x25\xcb\x18\x5f\xbc\x05\x00\xea\x44\x8a\x00\x03\x1a\x01\x12\ \x00\x2d\x8e\x00\xf0\xbb\x37\x37\xe7\xcc\x99\xe3\x9c\xb9\xca\xf0\ \x96\x22\x80\x1e\x01\xd0\x96\xae\x14\x1f\xa3\x4b\x3e\x33\x0f\x00\ \xd6\xf1\x2e\x26\x9f\xcf\x70\x75\xfa\xde\xd2\xaf\x04\x80\xe7\x3a\ \x58\x33\x5e\x9d\x84\x0e\xb5\x25\xd4\x8f\xd0\x79\x25\xfb\x71\x7c\ \xf1\x14\x01\x9a\x22\x40\x53\xdb\x19\xaf\x50\xc9\x67\x26\x00\xdc\ \x63\x76\xd1\xa0\x95\x2c\x63\x7c\xf1\x09\x80\x04\xc0\xec\x55\x40\ \x4a\xe5\xda\x20\xde\x45\x4b\x3e\x33\x45\x80\x72\x85\x27\xc7\x2a\ \x59\xc6\xf8\xe2\x13\x00\xe5\x03\x00\xea\xd4\xf7\xa9\xe0\x04\xc0\ \x80\x03\x30\x31\x31\xf1\x3e\x5c\xdb\xce\xc0\x63\x60\xf8\x9e\x5b\ \x4a\x05\xdb\x00\x6e\xa4\x75\x6a\x1d\x01\x60\xb7\xad\x71\x78\x8a\ \xf7\x4d\xf8\xff\x60\x4a\xa5\xd9\xe0\x50\xfc\x20\x9d\xce\x4c\x16\ \x48\x16\x48\x16\x48\x16\x48\x16\x78\x61\x81\xff\x01\xd8\x2d\xa7\ \x5d\xe5\x25\xe2\x9a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x17\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x17\x80\x49\x44\x41\x54\x78\x5e\xed\x5d\x6b\xac\x55\ \xd5\xb5\x56\x1e\xf2\x7e\x88\x02\xa2\x20\x58\xe0\x20\xc8\x5b\xa0\ \xc0\xf1\x00\x47\x05\x11\xc4\x20\x3d\x10\xcb\x15\x8d\x58\x2c\xb5\ \x29\x08\xd5\xc6\xfa\x6a\xb1\x90\x52\x2c\x4a\xa9\xa5\xc4\x52\x05\ \xda\x08\x8d\x85\x48\xb0\xf7\x5a\x6e\x7a\x63\xc3\x8d\x14\xc1\x6b\ \xae\x0f\xe2\x03\x2b\x15\x5b\x6c\xad\x96\xee\x1f\xfe\xf0\x87\xf6\ \x1b\xdb\x35\xe8\x70\x3a\xe7\x98\x73\xad\xbd\xf6\x5e\x6b\x1d\x0f\ \xc9\x0c\x67\xef\xbd\xd6\x7c\x8c\xef\x1b\x8f\xf9\x3e\xed\xb4\x96\ \x7f\x2d\x12\x68\x91\x40\x8b\x04\x5a\x24\xd0\x22\x81\x16\x09\xb4\ \x48\xa0\x19\x4b\xa0\x4b\x97\x2e\x75\x9d\x3b\x77\x9e\xd2\xa9\x53\ \xa7\x85\x48\x9b\x91\x9e\x40\xda\x25\x12\x7d\xa6\xef\x17\xe0\xb9\ \xa9\xed\xdb\xb7\xef\xd7\x8c\xc5\xd1\x7c\x9b\xd6\xae\x5d\xbb\x2f\ \x74\xec\xd8\xf1\x5b\x48\x3b\x91\x4a\x32\x01\xdc\x52\xd2\x04\x52\ \xec\xc4\xbb\xcb\xbb\x75\xeb\x36\xa0\xf9\x4a\xaf\x80\x2d\x3b\xe3\ \x8c\x33\xea\x00\xf2\x0e\x13\x6c\xfa\xac\x81\x0d\x40\x4b\x29\xa4\ \x5f\x21\x8f\xa1\x05\x14\x5b\xb1\xab\xdc\xa1\x43\x87\xb9\x00\xf8\ \xad\x50\xd0\x7d\x40\xc3\x3d\x94\xe2\x26\x33\x4f\xbc\xff\x36\xbe\ \xfb\x52\xb1\x25\x9b\xe3\xda\x43\x9b\x7b\x03\xf8\xe7\x91\x4a\x94\ \x42\xcc\xbb\x0d\x78\x0d\xe8\xae\x5d\xbb\x96\x42\x92\x96\x07\x95\ \x89\xdf\x5f\xa0\xfa\xe6\x58\x9c\xc5\xa9\x1a\x80\x5e\xec\x02\xdd\ \x66\xe6\x2d\x9a\xf9\x19\xed\xf6\x81\x0c\x3f\x5f\x72\x25\xed\x5d\ \x93\x18\x51\x5d\xbe\x5a\x1c\x69\xe7\xa8\xa6\x00\xfd\x11\x06\xde\ \xd4\x78\x9b\x6f\x4f\x0a\xbc\x06\x76\xe8\x6f\x36\x52\x58\xc8\xb0\ \x3d\x47\xe2\xcd\x6f\x55\xa0\xd5\xeb\x43\x81\xf7\x81\x6e\x03\xc6\ \x06\x6a\xf7\xee\xdd\x4b\x95\x24\x5b\x9e\xb2\x6c\x83\x0c\x0f\xe5\ \x57\xfa\x19\xd6\x0c\x5a\x3d\xdd\x05\xbc\x69\xea\xe3\x02\x4f\x00\ \x5d\x74\xd1\x45\x4f\x8e\x1e\x3d\x7a\xd7\xc2\x85\x0b\xef\x5e\xbf\ \x7e\xfd\xf5\x94\x36\x6f\xde\xbc\x70\xd3\xa6\x4d\xe5\xb4\x71\xe3\ \xc6\xeb\x1e\x78\xe0\x81\x45\xb7\xdc\x72\xcb\x8a\xf1\xe3\xc7\x3f\ \x36\x62\xc4\x88\xbd\x67\x9d\x75\xd6\x3f\xce\x3c\xf3\xcc\x92\x2f\ \xd9\xc8\x23\x49\xe1\x20\xc3\x55\x19\x8a\x3b\x5f\x45\x4b\xe0\x7d\ \x01\x9e\x06\x3e\x09\xba\x6f\xdf\xbe\xcf\xcd\x9d\x3b\x77\xcd\x81\ \x03\x07\xae\xfc\xe8\xa3\x8f\x1a\x38\x7d\xfc\xf1\xc7\x17\xe2\xef\ \x3a\xa4\x5e\x48\x9d\xa2\xd4\x01\xdf\x77\xe4\x14\x7d\xd7\x03\xff\ \x0f\xa4\xe7\x91\x2e\xe1\xf7\x9f\x7d\xf6\xd9\x2b\x17\x2c\x58\x70\ \xdf\xc0\x81\x03\x0f\xf5\xe8\xd1\xa3\xc4\xc9\x46\x0e\x49\x08\x1f\ \x11\x80\x44\x9b\x7c\xa1\x51\xc3\xda\x60\xb4\x6d\xb3\x06\xbe\xe9\ \xeb\x25\xf8\x6c\x56\x21\xec\xf7\xe6\xcd\x9b\xb7\xe6\xc3\x0f\x3f\ \x9c\x42\x60\x01\xb4\xd1\xf8\xbf\x0f\xfe\x6f\x9b\x66\x53\x90\x5f\ \x1b\xe4\xdb\x1b\x69\x14\x95\x43\xe5\xcd\x9f\x3f\xff\x7b\x67\x9f\ \x7d\xf6\xbb\x92\x10\xf4\xb7\x24\x85\x8f\x0c\xd4\x0e\x10\xf7\x91\ \x34\xeb\x5a\x88\xbc\x4c\xe0\xe3\x68\x3e\x09\x6d\xce\x9c\x39\xdf\ \x8f\xb4\xb3\x1e\xe0\x9c\x93\x45\xa3\xa9\x5c\xd4\xa1\x9e\xea\x71\ \xed\xb5\xd7\xae\xd2\x88\x40\xa4\x60\x32\xb0\x55\x60\xd7\xc0\x64\ \xce\xa2\x0d\x35\x2f\x13\x5a\xff\x1f\x3e\xf0\x5d\x9a\x0f\x6d\x7b\ \xf3\xc5\x17\x5f\x9c\x11\x01\xdf\xa7\xe6\x95\x57\x0a\x8c\xac\x43\ \xc3\xd1\xa3\x47\x2f\x83\x1b\x7a\x0d\x75\x3d\xe5\x26\x5c\x56\xc1\ \x46\x04\x7c\x77\x73\x9e\xda\x95\x6a\x5d\x00\xfc\xd3\x71\xc0\x67\ \x93\x7f\xfe\xf9\xe7\xff\x21\x02\x7d\x02\xb4\xae\x75\xaa\x95\x4a\ \x39\x33\xaa\x1f\xea\x3a\x9e\xea\x3b\x64\xc8\x90\xdf\x13\x11\x24\ \x19\x6c\xee\xc1\x24\x02\x2c\xc3\x1f\x52\xae\x56\xf6\xd9\xf9\x80\ \xe7\x91\x3d\xa9\xfd\x7d\xfa\xf4\x79\x21\x02\x7e\x54\x35\x5a\xd0\ \xbb\x77\xef\x5e\x00\xe7\x1e\xa4\xbb\x90\x96\xe0\xf3\x05\x00\xa8\ \x5b\x5a\x65\xa1\xee\x23\xa8\xfe\x17\x5c\x70\xc1\xf3\x2e\x22\x68\ \x6e\x21\xad\x7a\x64\x9e\x4f\x12\xf0\x4f\x9c\x38\xd1\x08\xe1\x8d\ \xa9\x66\xe5\x07\x0d\x1a\x34\xb5\x67\xcf\x9e\xa5\x5e\xbd\x7a\x7d\ \x2a\x81\x08\x25\x91\x0e\xe0\xef\x65\x78\xb6\x5d\xd2\xba\x50\x3b\ \x3e\xf8\xe0\x83\x29\x54\x56\x08\x11\x64\x6c\x90\xb4\xcc\xbc\xbc\ \xd7\xde\x06\xbe\x16\xf0\x51\x17\x2e\x8a\xe6\x5b\x55\xbb\x11\x93\ \x26\x4d\xba\xcc\x24\x80\x01\x7e\xe9\x9c\x73\xce\x31\xd3\x51\x3c\ \x33\x27\x6e\xdd\xe0\x1a\x4e\xa7\x76\x2d\x5a\xb4\x88\x2c\x8e\xd5\ \x2d\x90\x35\xb0\xc5\x05\xa8\x63\xe7\xb8\xe5\x65\xfe\x3c\x58\xdc\ \x23\x2e\xf8\x11\xf0\x35\x8b\xe8\x89\x00\xac\xfd\x12\x78\x0b\xe8\ \xa7\x48\x00\xb7\x54\xe2\x84\xe7\x8e\x93\xdb\x88\x23\xec\x68\x1c\ \xa2\xc1\x65\x0d\x6c\x2e\x21\xea\x2a\xf6\x88\x53\x4e\xa6\xcf\x82\ \xc5\xdd\x5d\xe0\xdb\xb4\x7f\xc2\x84\x09\x5b\x09\xfc\x5a\x57\xfa\ \x92\x4b\x2e\xf1\x12\x40\x02\xae\xfd\x0d\x32\x2c\x8d\x53\x7f\x6a\ \xef\xcc\x99\x33\x7f\x6c\xb3\x06\x45\x27\x41\xdb\x38\xe0\xef\xde\ \xbd\x7b\x1e\x84\x11\x4b\x8b\xe2\x08\x5a\x7b\x96\x09\xc0\xda\x2f\ \x35\xdf\x06\xf6\xb9\xe7\x9e\x5b\xf2\x25\xe4\xf1\x83\xd0\xfa\xa1\ \xdd\x7d\x69\xc4\x92\xad\x81\x1c\x5d\x74\x91\x00\x75\xed\x14\x9a\ \x7f\x26\xcf\x69\xe0\x9b\xda\x1f\x45\xf8\x89\x83\xab\x4a\x1b\x18\ \x87\x00\x3e\xe0\xcd\xdf\x01\xd4\x82\x90\xfa\xd1\x88\x25\xc9\xc1\ \x67\x09\x0a\x11\x18\xfa\xc0\x67\x02\xa0\xab\x77\x32\x0b\x93\x6f\ \x02\x42\x04\x30\xb5\x5f\x6a\xbe\x09\xea\x79\xe7\x9d\x57\x0a\x4d\ \xfc\x2e\xca\x0c\x1a\xb7\x20\x79\xa0\x2e\x7f\x33\xc7\x0c\xa4\x25\ \xc8\x35\x09\x30\xc2\xf7\x8e\x8f\x00\xd4\xd7\x47\x7c\xf0\x36\x4d\ \xb2\x84\x68\x47\xb5\x9f\x89\x43\x80\x50\xe0\xcd\xe7\x88\x08\x20\ \xd5\x4f\x43\xda\x02\x12\x4c\xc6\x98\xc1\xcb\x85\x23\x01\x80\xff\ \x45\x88\xdf\x87\xaf\x7b\x15\x8d\x9c\x18\x22\x8c\x5a\x3c\xc3\x04\ \x60\xdf\xcf\xda\xcf\xda\x6b\x82\x89\x21\x5e\x9a\x6d\x0c\x4e\xe6\ \xfb\x21\x6d\x82\x7c\xc6\x0e\x1e\x3c\xf8\x70\x20\x09\x1e\x0f\xc9\ \xb3\xaa\xcf\x60\x19\xf6\x34\x9f\xe6\xd3\xef\xd0\xfc\x3f\xa3\x71\ \xe3\xaa\x5a\x99\x98\x99\xc7\x21\x80\x0d\xf8\x7e\xfd\xfa\x95\xcc\ \x64\x7b\x4e\x12\x01\xe4\xaa\xf3\x55\x93\x66\x1c\x91\xef\x2b\x4c\ \x02\x1e\x3e\x36\xc7\x09\xa2\x49\xa4\x59\xbe\xfc\xaa\xfa\x7b\x08\ \xf8\x64\xfa\xf3\xa4\xf9\x2c\x10\x22\x80\x4f\xfb\x25\xa0\x36\xc0\ \x43\xbe\xe3\x3c\x04\x11\xee\xf0\x81\x42\xca\x02\x8b\xf9\xbe\x8b\ \x04\xb9\x88\x07\x00\xfe\x3f\x43\x08\x90\x87\x80\xcf\x26\x70\x17\ \x01\xa4\xc6\xa6\x41\x00\x22\x89\x85\x04\x9b\x7c\x24\xa0\x58\xc9\ \xe7\x0a\x32\x9b\x4a\x46\xd0\xb7\xb2\xc8\xe0\x93\xf0\x1b\x1b\x1b\ \x27\x6b\x16\x20\x2d\xf0\xd9\x4a\x98\x24\x80\x3b\x38\xec\x23\x01\ \x77\x11\xe5\x94\x32\xbb\x02\x69\x05\x30\x73\x7a\xaf\x2f\xaf\x54\ \x7f\x0f\x01\xff\xee\xbb\xef\xfe\x4a\xaa\x85\xa6\x9c\xd9\xd4\xa9\ \x53\x27\x12\x01\x6c\xc1\x5f\x1c\xf0\x31\x5d\x5d\x92\xc9\xe7\x16\ \x24\x11\x40\x82\x03\xbe\x66\x3d\xf8\xe0\x83\xd7\xe7\xca\x15\x00\ \xfc\x37\x7c\x04\xc0\x5c\xf8\x93\x60\x6f\x17\x5f\xe3\xb2\xfc\x5d\ \x23\x00\xb9\x01\x06\xca\x05\xa8\x09\xbc\xed\xb3\x2f\x50\xa4\x72\ \x40\x82\x2d\x9a\x1c\x20\xc7\x4e\x63\xc6\x8c\xd9\x6d\xb3\x02\x34\ \x79\x44\x96\x20\x9a\x2f\x38\x51\x75\x79\xd2\x5e\x3c\x1f\xf8\xf4\ \x3b\x2d\xaa\xac\x7a\x65\x2a\x2c\x40\x12\xc0\xec\xfa\xb9\xc0\xb7\ \x81\xdc\xbf\x7f\xff\x92\x99\x42\xc8\x60\xb8\x84\x3b\x3d\x24\xa8\ \x0b\xe9\x15\x60\x90\x6d\x78\x85\x62\xd1\x5f\x0f\x01\x3f\xaf\x41\ \x9f\xd9\x32\x9b\x05\xe0\x00\x90\xc0\xb1\x69\x6f\x28\x01\x88\x10\ \x21\xae\x41\x92\x00\xae\xa8\xde\x43\x82\x06\xd7\x7c\x01\x5b\x01\ \xb2\x04\x55\x23\x00\x02\xbf\x6b\x7d\x04\x18\x3e\x7c\x78\xf6\x83\ \x13\x81\x12\x30\x2d\x80\x04\xdf\x46\x00\x09\xa8\x4d\xeb\xb5\xef\ \xb4\x18\x41\x92\xc0\x57\xf5\x69\xd3\xa6\x3d\x6c\x92\x80\xdd\x80\ \x20\xc1\x62\x5f\x3e\x89\x7e\x07\x01\xca\x1b\x33\xb5\x04\xed\x1f\ \x9c\x28\xf3\x0c\x5e\x72\xb9\x80\x10\xf3\x1f\x97\x00\xd2\x22\xb8\ \x06\x8f\xa2\x78\x40\xd5\x60\xc8\xb7\xbf\x74\x05\xe6\x5c\x41\xd5\ \xba\x85\x00\xff\x06\x1f\x01\xf2\x1e\xf5\x57\xea\x02\x42\x2c\xc0\ \x80\x01\x03\x4a\x94\x7c\x71\x81\x24\x81\xd1\x2b\xa0\x5e\xc9\x36\ \x4d\x1f\x68\x17\x13\x07\x84\xae\xc9\x22\x74\x0b\x63\xad\x4f\xf0\ \xea\x9f\x0f\x7c\x98\x9f\x77\xf2\x1e\xf5\x6b\x04\x90\x41\xa0\xcd\ \x02\x30\xf8\x26\xb0\x0c\xb8\xef\x7f\xf9\x1e\xe7\x65\xb3\x04\x6c\ \x05\x68\xc1\xaa\x0b\x14\xda\xc9\x84\xfa\x1e\x93\x24\x90\x4b\xc9\ \x52\xb7\x02\x6d\xdb\xb6\x1d\x4e\x04\xd0\x48\x80\xf5\xfa\x8d\x5e\ \x16\xe5\xec\x81\xb8\x41\x60\x52\x12\xb8\x7a\x08\x2e\x02\x04\xba\ \x82\x09\x2e\x2b\xc0\x04\xc0\x10\xfc\xe8\x54\x44\x4e\xfd\x7e\x0d\ \x7c\x14\x78\x3c\xef\xeb\xf5\x6d\x82\xd0\x62\x00\x13\x1c\x1b\xf8\ \x36\xad\xc7\x74\x6e\x89\x93\xed\x77\x9f\x25\x20\xeb\xc3\x04\x80\ \x2b\x58\xae\x01\x88\xbc\x5e\xd6\xac\x00\xac\xf2\x5f\x52\x21\x80\ \x4f\xfb\xf7\xed\xdb\x77\x45\x2a\x05\xd5\x38\x13\xcc\x05\xd4\xcb\ \xa1\x60\x72\x03\xae\x6e\xa0\xcd\xff\xbb\xcc\x7e\x08\x01\x42\xdc\ \x00\xd5\x47\x13\xc9\xeb\xaf\xbf\x3e\xc9\x67\x05\x2a\x16\x29\xc0\ \xdf\xc0\x04\x70\x59\x81\xb4\x37\x62\x56\x5c\xe9\xc0\x0c\x9a\x9a\ \x9a\x86\xd0\x8a\x20\x1e\x0e\xd6\x08\x40\x16\x21\xd4\x0a\xb8\x88\ \xe1\xd3\x7e\x9e\x34\x62\x0b\x40\xf5\x41\xdd\x7e\xae\xc4\x02\xad\ \xd0\x23\xf8\xa7\xb9\xef\x50\x8e\x09\xc0\x3a\x3f\x1c\x28\x0e\xfb\ \x63\x3e\xf0\x17\x2f\x5e\x7c\x5b\x45\x05\x64\xf8\xf2\x94\x29\x53\ \x06\x87\x12\x20\x04\x7c\x69\xfe\xcd\xbf\x25\x29\x4c\x22\x78\x7a\ \x04\xaa\x15\xb8\xe3\x8e\x3b\x96\x9a\xeb\x05\x8c\x49\xa2\xe4\x03\ \x43\x08\x22\xfa\x48\x02\xd8\x2c\x00\x22\xff\xb3\x32\xc4\xb0\xa2\ \xa2\x4d\x02\xd0\xa4\x10\x5b\x01\x6d\x20\x48\x02\xa8\xb9\x81\xa4\ \x31\x80\x11\x07\x50\xb7\xf0\x7e\xc5\x0a\x74\xd3\xe2\x00\xda\x5f\ \x89\xae\x62\xff\x44\x82\xa2\xf3\xf7\x34\x0b\x80\xed\x52\x4f\x25\ \xca\x38\x27\x2f\xc5\xb1\x00\xec\x02\x34\xf0\x35\x0b\x40\xbf\xd9\ \xac\x80\x2d\x16\x60\x02\x88\x60\x50\xd5\xe2\x8b\x2f\xbe\x78\x97\ \xe6\x06\x40\x80\x5f\x25\x12\xb9\xa9\xfd\xa6\x05\xd8\xb1\x63\xc7\ \xe4\x44\x19\xe7\xe4\x25\x26\x80\xcd\x0d\x84\x8e\x05\xf8\x7a\x02\ \x26\xf0\xe6\x20\x91\x46\x00\x1e\x9b\x20\xcb\x84\x3a\x3a\xbb\xd9\ \xfb\xf7\xef\x1f\xa5\x11\x80\xac\x40\x22\x91\xdb\x08\x20\x49\x80\ \xe0\xef\x8c\x44\x19\xe7\xe4\x25\x22\x00\x6d\x0d\x33\x09\x20\xdd\ \x80\xe9\x0a\x5c\xa3\x81\xbe\x81\x20\xdb\x08\xa1\x0b\x7c\xe9\x02\ \xa2\x55\xc5\x54\xc7\xbf\x2b\x6e\xa0\x75\xea\x04\xc0\x62\xcf\x2b\ \x34\x0b\x00\xf3\xff\x9b\x9c\xe0\x98\xb8\x1a\x21\x04\x48\x3a\x1e\ \xe0\x23\x04\xbb\x92\x10\x12\xf0\x82\x15\xad\xa1\xd2\x0d\x98\xa3\ \x82\xd1\xe1\x95\xd7\xc5\x12\x14\x22\xc9\x3d\x2e\x0b\x40\xdf\xdf\ \x73\xcf\x3d\x85\xec\xfb\x4b\x21\x48\x02\x84\xf6\x06\x5c\xdd\x41\ \x02\xd4\x07\xba\xcb\xfc\x13\x09\xcc\x9e\x00\x8f\x47\xb0\x05\x88\ \xc6\x2b\x9c\x3d\xae\x55\xab\x56\x35\xb2\x15\xb0\x11\x00\xdd\xc5\ \xdf\xc5\x22\x00\x2c\x40\x79\xe8\xd7\x95\x10\xfd\x77\x88\x95\x61\ \x0e\x1f\x26\x02\xf0\xf6\x70\x49\x00\xb3\x37\x90\x64\x6a\xd8\x24\ \x83\xb6\x60\x44\xeb\x06\x4a\x02\xa0\x8e\x27\x5d\x62\x24\x3c\x24\ \x01\xcc\xae\x60\xec\x38\xc0\x47\x80\x1c\xe2\x19\xbb\x4a\x2e\x02\ \xf8\x26\x86\x2a\xb1\x02\x71\x06\x83\x64\x2f\x80\x48\x49\x56\x40\ \x6b\xa4\xcb\x02\xd0\xdc\x40\x2c\x02\xd0\xb2\x2f\x8d\x00\x88\x6c\ \x0b\xdd\xfd\x63\x21\x9a\x04\xd0\xdc\x40\x12\x2b\x90\x64\x81\x88\ \x39\x35\x6c\x58\x80\x12\x2c\x96\xf3\xfc\x84\x51\xa3\x46\xed\x71\ \x6c\x1e\x29\x13\x00\x56\x61\x50\x90\x96\xa0\x90\x6f\x68\x04\xc0\ \xaa\x94\x95\x41\x19\xe5\xfc\xa1\xc9\x93\x27\x0f\x91\x2e\x20\x49\ \x1c\x40\xfe\xdb\x06\xb4\xcf\x05\xf8\x16\x88\x38\x62\x00\x5a\xa8\ \xba\xd6\x25\xd6\x1b\x6f\xbc\xf1\xcb\xae\x05\x22\x44\x00\xb4\x75\ \x75\x10\x24\xe8\x1a\x6d\xd7\x08\xb0\x64\xc9\x92\xb1\x41\x19\xe5\ \xfc\xa1\x95\x2b\x57\x22\x36\x3a\x9b\x04\x53\x3e\x23\xc8\x15\x07\ \xf0\x0a\x61\xdf\x1a\xc1\xd0\x55\x42\xa1\xcb\xc3\xe4\x38\x00\x99\ \xff\x68\x27\xf3\x7b\x2e\xb1\xae\x5d\xbb\xb6\xaf\x66\x01\x90\xdf\ \xaf\x83\x20\x21\xf0\x65\x32\x03\x41\xf4\xff\xdb\x07\x65\x94\xf3\ \x87\xae\xbe\xfa\xea\x2e\x92\x00\x21\x63\x02\x49\x17\x8b\x26\x58\ \x25\x5c\x1e\x96\x66\xdf\xcf\x04\xa0\x3a\x2a\xe3\x01\x6d\x6c\x04\ \xe0\xe3\xf6\xe8\x04\xb6\x20\x48\x7c\x04\x08\xca\xa4\x00\x0f\x25\ \x21\x80\xcf\x0a\xb8\x5c\x82\xd9\xef\x37\xbb\x7e\xb6\xdd\x43\x0e\ \x0b\xa0\x82\xa8\xb9\x80\x20\x02\x60\xf1\xc7\x44\x93\x00\xa6\x3b\ \x28\x00\xb6\x41\x55\x24\x02\xd0\x44\x8a\xcd\x0d\xb8\xa6\x88\xb5\ \xcd\x22\x21\x1b\x45\x5c\xeb\x00\xcc\xfd\x83\x26\xf8\xd2\x02\x68\ \xc7\xc4\x38\xb6\x8d\x95\x83\xc0\xe8\x0c\x46\x7d\xe5\xd6\x85\x17\ \x5e\x38\xdb\x46\x00\xfe\x0e\x91\xe4\x1b\x41\xd2\x2d\xc0\x43\x26\ \x01\xb4\x58\xc0\x5c\x2b\xe0\x72\x05\xbe\x6d\x61\xae\xdf\x2d\xfb\ \x06\xe5\x69\x64\x65\xff\xcf\x27\x9a\x61\xd7\xd5\x10\x97\x78\x61\ \x69\x9e\x33\x97\x89\x4b\x17\x30\x6c\xd8\xb0\x26\x15\x1a\x08\x61\ \x95\x46\x00\x14\xf0\x64\x01\xb0\x0d\xaa\xa2\xcd\x02\x84\x04\x83\ \xbe\x2d\x63\x0c\x72\xc8\xc6\x10\x65\xe3\xe8\x67\x08\xc0\x24\x40\ \x37\xfc\xeb\xae\x06\xe2\x70\x89\x3d\xb6\x91\x40\xb6\x00\x68\xdf\ \xa3\xaa\x70\x60\x0e\xf7\x68\x04\x08\x8e\x24\x83\x20\xc8\xf6\x21\ \x22\x00\x0d\x9e\xd8\xdc\x80\xd6\x23\x08\xd9\x37\x18\xc7\x12\xd8\ \xb4\xdf\x15\x00\x12\x41\x87\x0e\x1d\xba\xde\x25\x39\xcc\xd1\xec\ \xb2\x59\x00\x3e\x82\x17\xed\xd2\xc7\x70\x50\xc0\x6f\x31\x10\xf4\ \xa9\x5e\x80\x24\x04\x1a\xb6\x23\x5b\xd8\xd2\x2b\x1d\xe3\x00\x9f\ \x21\x80\x6b\x5c\x80\x87\x87\xa5\x2b\x90\x44\x48\xe2\x12\xe4\x0e\ \x64\xd9\xef\xb7\x81\xcf\xda\x4f\xf5\x83\x19\xff\x89\x4b\x0a\xf8\ \x6d\x8b\xdc\x30\xca\xa3\x80\x4c\x00\x94\xf3\x5b\x55\x82\x28\xc8\ \x47\x80\x66\x73\xf9\x91\x8f\x00\xd5\x3e\x3d\xc4\x47\x00\xee\x02\ \xf2\x49\x66\xa4\xfd\x11\x01\x7e\xe6\x02\x71\xec\xd8\xb1\xab\x53\ \x21\x80\xcb\x0a\xe0\xca\x14\xef\xc9\x16\xe9\xe9\x68\x75\x73\x62\ \x02\xd8\xdc\x80\x8c\x05\x5c\x67\x08\xb8\x4e\x12\xd1\xac\x81\x04\ \x5d\xae\xfc\x91\x0b\x41\xc5\x51\xb4\xa7\x0e\xad\x66\xf0\x89\x00\ \x08\xd4\x9d\xdb\xc9\xb1\x37\xf3\x3b\xb6\x89\x20\xb2\x00\x74\x54\ \x4f\xb0\x05\x20\x02\x70\x92\x2e\x00\xc2\xf8\x65\x75\x61\xa9\x5d\ \xee\x44\x00\xea\x36\x49\x02\xb8\x06\x86\x24\x09\xa4\x3b\x30\x5d\ \x82\xe9\x16\x4c\xc0\x4d\xd0\x5d\xc0\x8b\x91\xbf\x72\xf4\x4f\xc0\ \xf3\x89\xa2\xb8\x00\x6b\xb3\x12\x03\x6c\x94\xab\x82\x45\xf7\xaf\ \x4c\x00\xd4\x37\xcc\x05\xd8\xc0\x27\x22\xa0\xf1\x85\xd9\xfd\xeb\ \xa3\x52\x1a\x04\xb0\x9d\x1f\x68\x03\x3d\x44\xf3\xd9\xf7\xdb\x4c\ \x3f\x93\x80\x08\x0a\x2d\x77\xc6\x00\x08\x02\xb7\x99\x04\x60\x12\ \x04\x59\x00\x34\xe8\x09\xa9\xfd\xe6\xdf\xcd\xa9\x17\x40\xbb\x99\ \x78\xe4\xcc\x67\x05\xb8\x57\xa0\x59\x02\x9b\x35\xb0\x11\xc4\x0c\ \xf8\x4c\xe0\x4d\xed\x97\xe0\x13\x01\x70\xa5\x9d\xb3\x17\x80\x49\ \xa8\xdd\x4c\x00\xd9\xff\x67\x17\x80\xb2\xf4\x5e\x40\x43\x43\xc3\ \x6d\x1a\x01\x20\xb0\x67\x7c\x9a\x55\xa4\xdf\x29\x60\x62\x37\x10\ \x87\x04\x3e\x22\xf0\x48\x9e\xef\x7f\xe3\xf8\xf9\xf2\x9c\xbf\x0c\ \xfa\x4c\xf0\xa9\xcb\x0a\xcb\xb5\x42\x19\x08\x7a\x92\xf7\x06\x4a\ \x02\xf0\x8d\x2c\x38\x6a\x66\x9d\x8a\x4f\x7d\x7d\xfd\x3c\x8d\x00\ \xf4\x5b\x91\x00\xf6\xd5\xb5\x88\x04\xb8\xf3\xce\x3b\x47\xbb\xda\ \x05\x82\xbc\xa5\x11\x60\xfa\xf4\xe9\xf3\x55\x99\x60\x70\x64\xcc\ \xe7\x8d\x00\x3e\x12\xc8\x5b\x45\x6c\x47\xcb\x9b\xd6\xc0\x3c\x75\ \x4c\x5a\x01\xf3\x18\x7a\x79\x44\xbd\xa9\xf9\x36\xed\x27\x0b\xf0\ \xd0\x43\x0f\x39\x6f\x10\xb1\x81\xcf\xe6\x9f\x0e\xf6\xc0\x5a\x0e\ \xf5\x18\x9a\xd3\x68\x6d\x19\xb6\x83\x9f\xea\x01\xd8\xc8\xe0\xd3\ \xaa\x22\xfd\x4e\xfe\x92\x87\x4e\x65\x8f\x80\x47\x07\xb9\x57\xa0\ \x5d\x2d\x63\xbb\x61\xc4\x73\xb9\xc4\xa7\xae\xa1\x61\xe0\xe5\x78\ \xbf\x8c\xfa\xcd\xc3\x22\x11\xbb\x38\xaf\xd3\xe1\x81\x1f\x33\xfa\ \x27\x17\x40\x04\xa0\x13\xc7\xbc\xf8\x40\x20\x47\x34\x2b\xe0\xcd\ \xa0\x40\x0f\x14\x91\x00\x9a\x78\x35\x02\xa0\xad\xc7\x83\xa0\x41\ \x24\xf9\x6b\xb2\x02\x8a\x25\xf0\x1e\x78\x1c\x54\x50\x0e\x1e\x8a\ \xce\xd7\x2b\x5b\x01\xd9\x23\xb0\x05\x84\xac\x95\xf2\x96\x31\xa9\ \xbd\x2e\xf7\x60\x5a\x08\xdb\x3b\x9c\x27\x97\x61\xde\x29\xc4\x1b\ \x40\x61\x0d\x9c\x67\x01\x42\xeb\x87\xda\x22\x7f\xd6\x7e\x0c\x20\ \x85\x75\xe1\x57\xac\x58\x31\x93\x09\x60\xfb\x1f\x85\x6c\xcc\x01\ \x76\xa9\x54\x81\x09\xc0\x96\xc0\x46\x02\x9b\x3b\xb0\x91\x81\x47\ \x0f\x6d\x00\x6b\xa0\xcb\x81\x1e\xdf\xd5\x72\x13\x27\x4e\x74\x6e\ \x17\x47\x3e\xf7\xba\x4c\x3f\x99\xff\x9b\x6e\xba\x69\x5e\x90\xd0\ \x5e\x7a\xe9\xa5\xce\x1a\x01\x30\x20\x74\x2c\x28\xa3\x02\x3c\x94\ \x15\x01\xcc\xbb\x0a\x5d\x9a\x6f\x9e\x0e\xba\x7d\xfb\x76\xe7\x25\ \x9a\xb8\xee\xfe\x39\x8d\x00\x1b\x36\x6c\xe8\x1d\x04\x09\xdd\x71\ \xa7\x11\x80\x7e\x0b\xca\xa8\x00\x0f\x45\xdb\xa6\xca\xc7\xad\xfa\ \xac\x80\xb4\x04\x32\x38\x74\x59\x03\x13\x64\x0d\x74\x4d\xf3\xe5\ \xbe\x3f\xed\x30\x0e\x0d\xfc\xe8\xf4\xd6\xa0\xeb\x6b\xca\xb0\xb5\ \x10\xe0\x93\x39\x02\x8e\x05\xf8\x70\x46\xbe\xdc\x29\x6d\x02\xc8\ \x7c\xe5\x41\x90\xf2\xf0\x07\x10\xe8\x4f\x9a\x4e\xf9\x08\x10\x4b\ \x1f\x31\xa6\xbc\x47\x23\x41\x9b\x36\x6d\x9c\xab\x52\x62\x15\x94\ \xf1\xc3\x6c\x01\x4c\x57\xe0\x0a\x0a\x6d\x44\x60\xf0\xa4\x19\x0f\ \xf9\x5b\x82\x2e\xbb\x7a\xa6\xd9\xe7\x75\x7e\x4b\x97\x2e\x75\xca\ \x1c\xed\x98\xc7\x73\xfe\x3c\xea\x27\x0f\xf4\xac\xab\xab\xdb\x13\ \x4b\xd4\xb7\xde\x7a\xeb\x6c\x8f\x15\x78\x27\x56\x86\x39\x7d\x98\ \x84\x16\x42\x02\x39\x5c\x6c\x5a\x05\xd3\x35\x98\xc0\x6a\x9f\x99\ \x50\xbe\x2b\xe6\x89\x90\x30\xff\x67\xba\xc4\x08\xf7\xf5\x12\x0f\ \xf8\x70\xd4\x2f\x09\x70\xfb\xed\xb7\xc7\xbb\x5a\x86\x0e\x23\xfc\ \x3c\xb8\x81\xb4\x08\x90\x84\x04\x12\x7c\x1f\x01\x30\x9a\x78\x44\ \xd3\x21\x4d\xfb\x23\xff\xdf\x31\xb6\x0e\x22\xda\x7f\x47\x23\x41\ \xeb\xd6\xad\x63\x5f\xa2\x1c\xbb\x12\x55\x7e\x81\x05\xc7\xfd\x67\ \xe9\x0a\xcc\x41\x22\xee\x22\x9a\xd6\xc0\x66\x11\x4c\x70\x5d\x9f\ \xd9\xc7\xcb\x40\x4f\x6e\xee\xe0\xd5\x3d\xdb\xb6\x6d\x73\x6a\x30\ \xea\x5e\xcf\x66\xdf\xa6\xfd\xd8\xd8\xf3\x8f\x44\x62\xbc\xea\xaa\ \xab\xee\x85\xaf\x2f\x29\xc9\x79\x6a\x45\xa2\x02\x33\x78\x89\x04\ \x66\x23\x81\x8b\x08\x32\x36\x30\xc7\x0c\x24\x98\xa1\x7f\x4b\x52\ \xd9\x80\xe7\xa9\x5d\x6d\x37\x16\xea\xff\xa6\x0d\x78\xd2\x7c\xda\ \xd5\x75\xf9\xe5\x97\xeb\x33\x80\x2e\xb9\x63\xdc\xb8\xb7\x87\x00\ \x85\xef\x0e\x16\x81\x00\xb3\x67\xcf\x76\x9e\x12\x46\xd8\xd9\x82\ \x3e\xf6\xff\x44\x00\xe0\x78\x6e\x62\xdd\x82\x1b\x38\xa1\x91\x00\ \x6e\x40\xbd\xee\x24\x71\xc1\x35\x7a\x91\x85\xe7\xb2\x02\x9a\x25\ \x90\x93\x48\xa6\x26\x87\x7e\xe6\x3c\xe4\x5a\x7e\xb9\xa6\x8f\xca\ \xd7\x00\x44\xfd\x7f\xe8\x3a\xbe\x3f\x3a\xcf\xe9\xfd\x8a\x44\xb9\ \x6c\xd9\xb2\x9b\x9b\xb3\x15\x70\x11\xc0\xd6\x33\x90\x83\x45\x12\ \xb8\x50\xb0\x6d\xcf\xf9\x08\x80\x2b\xe6\x7f\xa8\x01\xe8\x32\xfd\ \x6c\xfe\xb1\x93\x7b\x59\x45\x04\x80\xef\xe9\xe6\x23\x00\x02\xc5\ \x9b\x2b\x2a\x24\xc3\x97\xf9\x42\x6b\xe9\x0a\xb8\x67\x20\x03\x43\ \x9e\x67\x67\x12\xc8\xff\x4d\x10\xe3\x7c\x36\xf3\xe3\x72\x78\x56\ \x0f\xda\x7f\x9e\x4b\x3c\xa8\x5f\x93\x4d\xfb\xe5\x6e\x6e\xad\xeb\ \x18\x2c\x76\x0c\x0a\xed\xf6\x91\x20\x38\xb3\x9c\x3d\x28\x05\x68\ \x5a\x03\x8d\x08\x1a\x21\x6c\x24\xd1\xbe\x93\xa0\xcb\xe9\x5c\x9c\ \x5f\xa0\x0e\xb6\xf9\xc0\xc7\x12\xfe\xbd\xa9\x88\x1b\x2c\xac\xf3\ \x11\x00\xbf\x7f\x35\x95\xc2\x6a\x9c\x49\x1c\x02\x48\xb7\x90\x16\ \x01\x5c\xe0\xa3\x17\xf1\x67\xb2\xbe\x2e\x71\xa0\xde\x5f\x32\x09\ \x20\x35\x9f\x56\x70\xa7\x7a\x73\x1b\xfc\xd7\xcb\x36\x12\x20\x08\ \x2c\x71\xaa\x31\x76\xa9\x14\x67\x0a\x51\xf6\xa7\x39\x30\x34\x03\ \x44\x9b\x6b\x30\x81\x8c\xf3\x99\xf3\x93\x73\xf9\xbe\xbb\x96\x65\ \xbd\xcd\x03\x3c\x08\x7c\xe0\xf5\x4a\x2a\x02\xe2\x4c\x9e\x7a\xea\ \xa9\x46\x97\x15\x10\x24\x78\x2c\xd5\x42\x6b\x90\x59\x25\x04\xb0\ \x59\x84\x38\xc0\x4b\x73\x2f\xc1\xbf\xf4\xd2\x4b\x7f\xa4\x35\x1d\ \x75\xfe\x99\x8b\x00\xbc\x89\x67\xe7\xce\x9d\xe9\x9e\xe3\x48\xd3\ \x90\xa8\xe4\x6b\x52\xe3\x6d\x7f\xd7\x00\xb3\x54\x8b\x70\x75\xa1\ \xa4\x25\x30\x03\x44\x97\x45\x30\x35\x39\xf4\xb3\xb4\x34\xd0\xdc\ \xb7\xa1\xfd\x7d\x3d\x04\x28\xaf\xef\xb3\x69\x3e\x11\x00\xf1\xc6\ \x31\xe4\xd1\x2e\x55\x41\x51\x66\x27\x4f\x9e\x9c\xe0\x23\x00\xfd\ \x9e\x7a\xc1\x55\xcc\xd0\x77\x1b\x8a\xec\x25\x68\xee\xc1\x74\x17\ \x71\x3e\xcb\x7c\x7d\xa6\x1f\xf5\x7d\xd7\xf4\xf5\x72\xeb\x1e\xad\ \xe5\x3c\x74\xe8\x50\x75\xee\x6f\xa2\x85\x22\x98\x94\xf8\xbd\x8f\ \x04\xad\x5a\xb5\xaa\xce\xc5\x85\x55\x20\x42\xd6\x04\x90\xe0\x1f\ \x38\x70\xe0\x4a\x8f\xe6\x5f\xe3\xd2\x7a\x26\x01\xd6\x0c\x1c\x04\ \x4e\x6d\xaa\x20\xaa\x4f\xb2\x04\x43\x87\xfb\x08\x50\x24\x2b\x60\ \x9e\x7f\xe4\xbb\x18\xd3\x65\x11\x4c\x97\x11\xe7\x33\xe5\x79\xff\ \xfd\xf7\x2f\xf2\x5d\xbd\xe3\xd3\x7c\xd2\x7e\xe0\xe3\x5c\x32\x96\ \x1a\x29\x70\xd9\xd2\x83\xcd\x85\x04\x79\x20\xc0\x35\xd7\x5c\xb3\ \xca\xb7\x5e\x3f\x04\xfc\x71\xe3\xc6\xd5\x66\x58\x9e\x82\x94\x10\ \x02\xc0\x15\xc4\x3b\xa1\x3a\x35\x8a\x86\x67\xc4\xa6\xd3\x77\x35\ \x4e\x88\x65\x48\xf2\x0c\x56\xf9\x3e\x4c\x93\x6e\x5a\x8d\x51\xb7\ \xff\xa4\xfa\x99\x47\xf7\x98\x7b\x37\x60\x41\x06\x84\xb7\xbc\xc2\ \x27\x4b\xa5\xd2\xd4\x40\x12\xe4\x7a\xe9\x98\x8b\x00\xb6\xfb\x91\ \x92\x00\xac\xbd\xd3\xd8\xd8\xb8\x81\xee\x02\xf6\x80\x7f\x5d\x08\ \xf8\xb8\xb8\x73\x46\x85\x90\xc6\x7b\x9d\x02\x42\xb0\xf7\x27\x92\ \x04\xd0\xf8\x92\x2d\x21\xe7\x86\x78\xb9\xd7\xee\x69\xdb\x49\x28\ \xbe\xab\x72\xd2\x20\x02\xdd\xb6\xe6\xeb\xee\x61\x8e\x65\xa4\x19\ \xe1\x9b\x5a\x4f\x0b\x76\x70\x2c\xcc\x96\x4c\x2e\xee\x44\x03\xfa\ \x61\x70\xe8\x5d\x17\xf0\xf2\x7b\x40\xda\xbd\x76\xb0\x86\x97\xe4\ \x3a\x09\x45\x3b\x2a\xd7\x77\x95\x8e\x6f\x8c\xfe\xd1\x47\x1f\x9d\ \x1f\x70\xdb\x5a\x07\xaa\x83\x6d\x8b\x9e\xb9\x4a\xab\xa6\xa6\xdf\ \x14\x2d\x1a\x52\x1f\x42\x00\x7a\x06\xef\xa6\x3f\x38\x11\x8e\xb5\ \xf5\xc9\x34\x09\xa0\x5d\xb0\xc1\xbf\x41\x5e\x0d\x01\x97\x6d\xb4\ \x66\x02\xfa\x08\x40\xf9\x55\x28\x82\xca\x5f\xdf\xbb\x77\xef\xd5\ \x31\x48\x90\xab\x8b\xa6\xb4\x9d\xd0\xda\x79\x89\x71\x2d\x04\xf6\ \x07\x1e\x0c\x04\xab\x95\x0f\x74\xb6\x00\x8f\x3f\xfe\x78\xd8\x56\ \xaf\xca\x21\xd6\x73\xa0\xdb\xc3\x70\xf0\xc0\xda\x18\x24\x70\x2e\ \x6f\xae\x76\x5d\xcd\xfc\xd3\x20\x80\x8b\x0c\xfc\xfd\x5d\x77\xdd\ \xb5\x24\xb0\x7f\xde\x3e\x14\x7c\x04\x90\xeb\xab\x32\xdc\x9b\x14\ \x00\x54\xa6\x0f\x4e\xb0\x7c\x2c\x94\x04\x08\x1e\xa7\x25\x2d\x2b\ \xcd\xf7\x6c\xab\x9e\x7d\x07\x64\x68\x07\x69\x4a\x32\x60\x3f\xc0\ \xf3\x91\xc9\xef\xe2\xab\x33\x62\xa9\x49\x5c\xae\x6b\x25\x36\x4f\ \xc6\x61\x7d\xc6\x13\xda\x42\x11\x5f\x59\x55\xfb\x1d\x95\x1a\x88\ \x19\xae\x97\x43\x49\x80\xe7\x32\xbf\x77\x38\x29\x01\x7c\xb1\xc3\ \xe1\xc3\x87\xaf\x80\x3c\xc6\x84\x08\x1b\xa4\xf9\xba\x0f\x7c\xaa\ \x27\x11\x00\x13\x3d\xaf\xd0\xfa\x8c\x90\x7c\x33\x79\x06\xee\xe0\ \x62\x4c\x84\xbc\x11\x83\x04\xaf\x65\x52\xd1\xa8\x50\xd6\x2a\xdf\ \x26\x18\xcf\x79\x09\xa7\xa2\x75\x1c\xdf\xf2\x65\xd2\xfa\xd0\xf1\ \x78\x94\xff\x7f\xb6\xb2\x6d\x53\xef\x24\x57\xe4\x3d\x2e\x4b\x79\ \x05\x95\x8d\x4a\x8e\xc7\x58\xf8\x9b\x31\x48\x90\xd9\x0c\xa2\x14\ \x74\x52\x12\x00\x98\xe3\x4f\x3f\xfd\xf4\xac\xc0\x08\xff\x94\x0c\ \x7d\xa6\x5e\xd6\x0d\xbd\x88\xe3\xc8\x7f\x42\x10\x00\x79\x78\x88\ \x2a\x1b\xd3\x12\x94\x4e\x3f\xfd\xf4\x55\xb5\xae\xbb\x6f\xa9\x9b\ \x46\x0a\x1a\x80\x89\x40\x9f\xe8\x9b\xc8\x91\xed\x42\x99\xb7\xb1\ \x49\xf7\x95\x4f\xbf\x43\x8e\x7f\xf4\x4d\x13\xd7\x5a\x6e\x41\xe5\ \x91\x25\x80\xcf\x7a\x21\x8e\x25\xa8\xf5\x78\x41\x08\x00\xf4\x0c\ \x13\x01\xa3\x9f\x9b\x22\xd0\xc9\xcc\x0f\x08\x12\xc4\xbf\x1f\x42\ \x36\x9f\x1c\xbd\x13\x5a\x2e\xe4\x77\xa4\x50\x9a\x6f\x0a\x04\x95\ \x1f\x3b\x72\xe4\xc8\x47\xa0\xdd\xa4\xe1\xc1\x09\x44\x78\x3e\xa6\ \x70\x13\x3d\x6e\xce\x67\x30\x30\x08\xca\xde\xc7\x59\x49\xff\x85\ \xbb\x05\x1f\x38\x76\xec\xd8\x65\x02\xf4\xf3\x93\x14\x84\x72\x0e\ \x79\x36\xd8\x9c\x5a\x5b\xc9\x75\xc2\x89\xa0\xbf\xa0\x98\x2a\x49\ \x79\xb9\x7a\x87\x34\xa5\xa9\xa9\xe9\xdb\x31\x09\x50\x9e\x57\xc0\ \x3b\x55\x3d\x9d\xfc\xd5\x57\x5f\xbd\xfc\xe8\xd1\xa3\x97\x49\x90\ \x23\xb0\xeb\xf1\xff\x50\x1a\xaf\xd7\x8e\x65\xf3\x09\x1a\x60\xae\ \xf3\x69\xbb\x6d\x52\x6d\xce\x9c\x39\xdf\x45\xb9\x5f\xf0\xe5\x5f\ \x98\xdf\x21\xc8\x9e\x10\xf2\xa5\x71\x48\x60\x3c\xbb\xb5\x1a\x8d\ \xa5\x49\x94\x28\x39\xcf\xde\x4b\x52\x2e\x40\xdd\x14\x32\x5b\x6a\ \x7b\xe6\xc8\x91\x23\xd3\x21\xaf\xb0\xf3\x7c\x92\x54\x2e\xab\x77\ \x48\x93\x48\xbb\x30\x59\x72\xac\x02\x22\xbc\x88\xfa\xf7\xcc\xaa\ \x0d\x9e\x72\xbb\xc2\x6a\xfd\x7f\x52\xe0\x21\x97\xb7\xa2\x2e\x64\ \xf8\x59\x3e\x39\x15\x84\x5a\x2d\x0a\x6a\xe6\xce\x9d\x7b\x6f\x52\ \x12\x70\x50\x89\xf7\xbf\x9f\x87\xf6\x03\xf0\x35\x49\x41\xe7\xf7\ \x66\xcc\x98\xb1\x06\x72\xf9\x62\x1e\xda\x53\x93\x3a\xa0\xb1\xbd\ \x88\xed\xf0\x8f\x7f\x4d\x4a\x04\xe3\x3d\xba\xc8\xa2\x56\x3e\x73\ \x00\x80\xdb\x1e\x0a\xba\xd6\x0b\x42\xfb\xdf\x8b\x62\x8e\x3e\x35\ \x11\x7c\xde\x0a\x41\xe3\x27\xe3\x00\xc3\x15\x29\x91\xa0\xdc\xcb\ \x88\x82\xc7\xdf\xe1\xef\x35\x68\xef\xe0\x0a\xdb\x5c\x87\x7c\xee\ \x43\xda\x27\x81\xf4\x81\x1f\xd2\xf5\xbd\xe1\x86\x1b\xbe\x89\xf6\ \xeb\x87\x37\x57\x58\xf9\x42\xbc\x4e\x3b\x58\x49\x0b\x70\xe7\xdd\ \xce\x34\x89\xa0\xe5\x05\x80\xfe\x84\x74\x44\xa4\x58\x23\x97\x21\ \x00\xbb\x9e\xc1\xbd\x7f\x34\x99\x43\xeb\x02\x7a\x14\x02\xa0\x5a\ \x55\x12\x02\x19\x44\x82\xc1\x2c\xda\xff\x56\x9b\x08\x95\x00\x98\ \xf4\x5d\xb4\xeb\x99\x08\x78\xe7\xcd\x9f\xb5\x92\x75\xae\xcb\x81\ \x90\x46\x92\xa0\x48\x53\xaa\x49\x84\xa4\x40\xc6\x7d\x0f\x77\x2d\ \xfe\x26\x02\xbe\xfa\x6b\xf6\x73\x8d\x6c\xcc\xca\x41\x68\x43\x48\ \x70\x38\xac\xea\x3b\xd5\x24\x42\xb5\xf2\x9e\x35\x6b\xd6\x7d\x11\ \xf0\x43\x63\x36\xbd\xe5\x71\x29\x01\x1a\x14\x21\x41\x1e\x3c\x78\ \x70\x26\xb6\x3e\xed\xaf\x16\x60\x69\xe4\x8b\x03\x9b\x9f\xd9\xbf\ \x7f\xff\x95\x11\xf0\xcd\x6f\x30\x27\x4b\x6a\xd2\x1c\x3b\x04\x3b\ \x82\x84\xbb\x75\xeb\xd6\x26\xdc\xbe\xf5\xdf\x69\x80\x56\x69\x1e\ \xb8\x1d\xe4\x7f\xb6\x6c\xd9\x42\x2b\x7d\x29\xb0\x1b\x15\x67\x66\ \x30\x4b\x79\x16\xba\x6c\x3a\x37\x0f\xc2\x1e\x16\x09\xbd\x01\x47\ \xa1\xde\x4c\xb7\x62\x56\x0a\x66\xc8\xfb\x28\x67\xdf\xf2\xe5\xcb\ \xbf\xc6\x65\xe3\xff\x8b\x90\x3a\x14\x5a\xa0\x45\xaf\x3c\x00\xe8\ \x2a\x09\x41\x13\x3c\xeb\xd6\xad\xbb\x0e\xe7\xe4\xec\xa2\x20\x2c\ \x04\x58\xf3\x19\x7a\x8f\xde\x5f\xbd\x7a\xf5\xf5\x94\x9f\x00\x7c\ \x98\x76\x7c\x4b\xd1\x65\xd9\x2c\xea\x1f\x4d\xf0\x74\x04\x68\x83\ \xe9\xac\x1c\x01\x1e\x99\xe9\xa0\x14\xbd\x37\x18\xcf\x77\xca\x64\ \xe7\x4d\xb3\x40\xa2\xa5\x11\x2d\x12\x68\x91\x40\x8b\x04\x5a\x24\ \x90\x53\x09\xfc\x0b\xcd\x77\x03\x59\xa1\x87\xdc\x71\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x10\x30\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\xb6\x49\x44\x41\x54\x78\x5e\xed\x5d\x5b\xe8\x56\ \x59\x15\x1f\xef\x77\xfd\x7b\xbf\xdf\x35\x2b\x92\xb4\x6c\xb2\xd1\ \xae\x82\x94\x81\x48\x59\x42\x04\x42\x44\x18\xf3\x22\x8c\x81\x08\ \x8d\x6f\x11\x85\x4f\x42\x90\xf4\x30\x60\x22\x04\x13\x21\x44\x0f\ \x45\x3d\x18\x44\xc2\x40\x04\x33\x4f\x15\x86\x0c\x32\x48\x48\xe7\ \xc1\x47\x6d\xaf\xff\xec\xf5\x67\xb5\x66\xad\xbd\xd6\x3e\x97\xef\ \x3b\x37\x61\xf3\x7d\xfe\xbf\xef\x9c\xef\x9c\xf5\xfb\xad\xdf\x5e\ \x7b\x9f\xb5\xd7\x7e\xe9\xa5\xf1\xdf\x68\x81\xd1\x02\xa3\x05\x46\ \x0b\x8c\x16\x18\x2d\x30\x5a\x40\xb0\xc0\xe2\xc5\x8b\xdf\x0d\x7f\ \x5e\x3e\x1a\x67\xa0\x16\x58\xba\x74\x69\x01\x6d\xc9\x92\x25\xff\ \x1e\xa8\x09\x86\x7d\xdb\x00\xfe\xb2\x65\xcb\xe6\x5a\xf8\xff\x5f\ \x86\x6d\x91\x81\xdd\x3d\x05\x9f\xbd\xbf\x3d\x30\x53\x0c\xf3\x76\ \x39\x01\x96\x2f\x5f\x5e\xb0\x76\x7d\x98\x96\x19\xc8\x5d\x23\x01\ \x28\xe8\x2b\x56\xac\x28\x84\x76\x61\x20\x26\x19\xd6\x6d\x6a\xc0\ \xaf\x5c\xb9\xb2\x90\xda\xea\xd5\xab\x5f\x1e\x96\x85\x7a\x7e\xb7\ \x40\x00\xf4\x76\x0e\xf8\xaa\x55\xab\x0a\xad\xad\x5b\xb7\x6e\x47\ \xcf\x4d\x33\x8c\xdb\x03\xf0\x29\xf0\x14\xf0\xe0\xed\x45\xaa\xad\ \x59\xb3\xe6\xbd\x60\xa5\x25\xc3\xb0\x54\x4f\xef\x12\xc1\xd7\x80\ \x0f\x20\x17\x8e\xf6\x76\x4f\xcd\xd3\xff\xdb\x02\x02\x20\xf8\xe8\ \xed\x14\xf0\x99\x99\x99\xc2\xdb\xd6\xae\x5d\xfb\x87\xfe\x5b\xac\ \x67\x77\xa8\x81\xcf\x41\x0f\xe0\x16\xde\x16\xe2\x83\x5b\x3d\x33\ \x53\x7f\x6f\x87\x7b\x3d\x02\x2f\x81\x1d\x80\x2d\x3c\x8d\x1c\xfb\ \x5a\x7f\x2d\xd7\x93\x3b\x03\x02\x80\xe4\x4b\xc0\x53\xb0\x37\x6c\ \xd8\x50\xe4\x34\x76\xec\x57\x7b\x62\xae\xfe\xdd\x86\x04\x3e\x82\ \xc7\x01\xdf\xb8\x71\x63\xe1\x6d\xfc\xd8\x78\xce\x8f\xf6\xcf\x82\ \x1d\xbf\x23\xea\xf9\x1c\x78\x0a\xf6\xa6\x4d\x9b\x8a\xdc\xc6\xc9\ \x82\xa4\x08\xa4\x5b\xdb\x71\xb3\xf5\xe7\xf2\x81\x00\xd0\x67\x7b\ \xc1\xdf\xbc\x79\x73\xe1\x69\x9c\x2c\x94\x0c\x40\x84\xf5\xeb\xd7\ \xc3\x1c\xc2\xfc\xfe\x58\xb2\xa3\x77\xa2\x81\x4f\x01\xa4\x80\x6f\ \xd9\xb2\xa5\xc8\x69\xf4\x58\x7a\x4e\x24\x44\x20\xc2\x5b\x1d\x35\ \x5d\x3f\x2e\x1b\x09\x80\xf2\x0c\xc0\x20\x50\x1a\xf0\x5b\xb7\x6e\ \x2d\x3c\x8d\x13\x05\xcf\x27\x11\x21\xfc\xfe\x9b\xfd\xb0\x68\xc7\ \xee\x02\xa4\x5f\x03\x9f\x02\xc8\x01\xdf\xb6\x6d\x5b\x61\x35\x7e\ \x0c\x3d\x1f\x27\x03\x2a\x42\xb8\x96\x9f\x76\xcc\x84\xdd\xbe\x5c\ \x24\x80\xe4\xf9\x00\x18\x05\x91\x03\xbe\x7d\xfb\xf6\x42\x6b\xfc\ \xbb\x1a\x19\x24\x22\x44\x42\x7e\xa7\xdb\x96\xed\xc8\xd5\x83\xb1\ \x39\xf8\xe8\xa9\x08\x1a\x82\x49\xc1\xde\xb1\x63\x47\xe1\x69\xf4\ \x18\x4a\x0a\x3c\x37\xfe\x56\x82\x08\x9f\xef\x88\x29\xbb\x79\x99\ \x94\x00\x08\x02\xf5\x7c\x2f\xf8\x3b\x77\xee\x2c\xb0\x49\xc4\xe0\ \x4a\x81\xe7\xa5\x44\x48\x90\x00\x26\xaa\x76\x77\xd3\xc2\x2d\xbf\ \x6a\xf4\x7e\x0d\x7c\x04\x8e\x82\x4a\xc1\xce\x79\x4f\xcf\x81\xe7\ \xcd\x25\xc2\x81\x03\x07\xc6\xc7\xcf\x75\x72\x4a\x23\x00\xf7\x7c\ \x04\x2f\x07\xf0\xd4\x77\xf1\x7c\x94\x08\x52\xb7\x80\x23\x06\xb8\ \x4e\x0c\x56\xc3\xd0\xf1\x61\x9d\x36\x18\xf4\xb9\xe8\x90\x0f\xa5\ \x1f\xc0\xe7\x9e\x2f\x81\xb9\x6b\xd7\xae\x22\xa7\x49\xe7\xb0\x88\ \x90\xea\x16\x02\x11\xfe\x3c\x68\xf0\xea\xb8\x79\x20\x00\x18\x99\ \x06\x7e\x9c\x00\x1e\xf0\x77\xef\xde\x5d\x48\x4d\x22\x88\x45\x04\ \xda\x2d\xd0\x20\x91\xaa\x01\x2a\x02\x8c\x62\x02\x11\xde\xa8\xc3\ \x16\x83\x3c\x07\x25\x00\x8d\xfa\x41\x01\x34\xd9\xa7\xa0\x6a\xc0\ \x5b\x84\xc8\x21\x01\x5c\x17\x10\x81\xaa\x01\x99\x37\xa0\x8f\xa8\ \xaf\x0d\x12\xc4\x2a\x37\xcd\x09\x80\xde\x2f\x81\x8f\xc0\x53\x70\ \xf7\xec\xd9\x53\xe4\x34\x7a\x2c\x9e\x8f\x93\x81\x76\x0b\xb9\x6a\ \x10\x9f\x69\x7c\xa3\x8a\x4d\x06\x75\x6c\x13\x04\xd8\xbb\x77\x6f\ \x81\x4d\x22\x87\x44\x02\x20\x83\x34\x94\x04\x25\xb2\x46\x0a\x54\ \x0d\x20\x50\x04\x12\xc4\x29\xee\x4f\x0f\x0a\xcc\x32\x37\x8b\xfd\ \x3f\xc8\x6c\xaa\xef\x07\x80\x24\xcf\xa7\x60\xc3\xfb\x7d\xfb\xf6\ \x89\x8d\x7f\x8f\x12\x03\xcf\x2b\x29\x02\xa8\x81\x34\x64\xb4\x62\ \x03\x4a\x84\x10\x23\x6c\x2b\x63\x9b\x41\x1c\x53\x86\x00\x14\x3c\ \x2f\x01\x80\x18\x55\x48\x80\x44\xd0\xba\x04\xb8\x0f\x50\x33\x49\ \x0d\xa2\x22\xc0\xe3\xe7\x85\x83\x00\x35\xe7\x26\x25\x02\x80\xb1\ \xa9\x1c\x53\xef\x47\xf0\x29\x98\xdc\xeb\xf7\xef\xdf\x5f\xf0\x26\ \x29\x83\xd4\x55\x50\x35\x90\x62\x03\x4b\x0d\x1c\x44\x78\x27\xc7\ \x3e\xbd\xff\x6e\x55\x02\x78\xc0\x4f\x91\x61\x4a\x24\x80\xa9\xe5\ \xdf\xf7\x1e\x5c\xcf\x0d\x6a\x04\xa0\x2a\x40\xa3\x7f\xae\x00\x55\ \x09\xc0\xbb\x06\x3c\x3f\x28\x41\x6a\x94\x50\x76\x2a\x19\x33\x9f\ \x30\x73\x39\x10\xe1\x67\x1e\x3b\xf5\xf6\x3b\x96\x02\x78\xc1\xe7\ \x5e\x1e\xe6\xec\x0b\xad\x79\x14\x01\x88\x60\x05\x87\x3c\x40\x4c\ \x3d\x61\x4c\xc4\x06\xb3\x19\xd1\x21\x4f\xf1\x72\x6f\x41\x4e\xdd\ \x98\x45\x00\xe8\x87\x79\x0c\x80\xb2\x4d\xbd\x9f\x82\x9a\x02\x1f\ \x3f\xd3\x48\xc0\x87\x8f\xb9\x24\x80\x20\x11\x27\x8e\xf8\xe4\x11\ \x06\x89\xf8\x4c\x41\x50\x03\x18\x3e\x7e\x79\x50\x44\xb0\x08\x60\ \x81\xef\x01\xfe\xe0\xc1\x83\x05\x34\x8f\x22\x20\xa9\xa6\x45\x04\ \xcc\x92\x0e\x43\xc7\x0f\x0f\x82\x08\x16\x01\xa8\x02\x68\xfd\x3f\ \x92\xc0\xe3\xf9\x16\x09\x38\x01\x80\x08\x56\x77\x00\xd7\x68\x3d\ \x54\x4a\x4d\x25\xe3\x9c\x01\x4e\x20\x41\x7c\x80\x44\x08\x5d\xc3\ \x4c\xaf\x89\x90\x43\x00\x90\x63\x00\x83\x77\x01\x39\xfd\xbf\x44\ \x00\x7a\x3c\xed\x56\x72\x54\xa0\x0c\x09\x3c\x5d\x42\x8c\x0f\xa0\ \x94\x5e\x3f\xff\x59\x04\xd0\x82\x40\x04\x4a\xeb\x02\x50\xf6\xad\ \x57\x4e\x08\x3c\x9f\xa6\x04\x5e\x35\x48\x8d\x12\x50\x0d\xa4\xa7\ \x8b\x29\x35\x08\x64\x78\xd0\x3b\x16\x58\x04\xf0\x04\x81\x55\x48\ \xa0\x11\x00\xce\x59\x26\x1e\xd0\x94\x00\x83\x43\x2d\x40\x4c\x8d\ \x12\x58\x97\x00\xdd\xc3\xaf\x7b\x43\x84\x1c\x02\xd0\x18\x20\xa5\ \x00\x96\xd7\x6b\x9f\x53\x32\x70\x25\xa0\xf3\x05\x74\xae\xc0\x9a\ \x2f\xd0\x9e\x25\xd4\x44\x84\x9f\x74\x9e\x08\xf8\x34\x10\x1f\x06\ \xd1\xc7\xc1\x38\x15\xeb\x1d\x09\x70\x6f\xce\x21\x82\xd5\x15\xa4\ \x08\x50\x95\x04\x89\x35\x0a\xb3\x69\x68\xd2\x70\x31\xc6\x06\x58\ \x3d\xa5\xbb\x29\xec\xa9\xc7\xc1\xa9\xe7\x01\xa9\x40\x30\x97\x08\ \x9e\x6e\x40\x22\x80\x37\x1e\x90\x54\x80\x77\x09\x55\x49\x00\xcb\ \xec\x43\xb5\x95\x93\x9d\x53\x04\x0f\x01\x9a\x0e\x04\xa9\x52\x48\ \xdd\x00\x8d\x07\x9a\x54\x02\x6d\xe2\x88\xa6\x9f\x29\x43\xc5\x59\ \x25\xc0\x62\x1b\x9d\x4a\x61\xd7\x08\x80\x29\x61\x5a\x37\x80\xc3\ \x41\x69\x36\x30\x57\x01\xa4\x49\x22\x6b\x68\x88\xf3\x03\xde\x78\ \xa0\x6c\x70\xc8\x1f\x31\x5b\xdd\x01\x92\x00\x4a\xef\x04\x35\x68\ \x7f\x0a\x3b\x4d\x0b\xe7\x59\xc1\x39\x8f\x85\xad\x61\x61\xce\x24\ \x91\xe7\x59\x01\x25\x80\x27\xcd\x4c\x22\x80\x96\x6d\x54\x61\xd2\ \x68\x4e\x09\x48\xd5\xb5\x7f\xb5\xba\x5b\xa8\x42\x80\x3a\xe3\x00\ \x4b\x05\xac\x6e\x80\xc6\x03\xa9\xa0\xb0\x2e\x25\xe0\xc1\x21\x99\ \x39\xfc\xbf\xee\x80\x10\xa1\x9d\x29\xec\x29\x02\x48\xdd\x40\x2a\ \x39\x44\x52\x01\x00\x2e\xc7\xfb\xe1\xbb\x56\x42\x89\x96\x73\xd8\ \xb4\x12\x64\xcc\x1c\x4a\x4a\x80\x05\x39\xdf\x68\x95\x22\x54\x25\ \x40\x99\x69\x61\x69\x78\x68\x4d\x11\x73\x05\xd0\xf2\x08\xa6\xa5\ \x04\x24\xbf\x00\x1f\x2f\x8b\x4a\x00\x75\x19\x63\x75\xd6\x76\xa4\ \xb0\xf3\xc5\xa1\x9e\x38\x40\x9b\x17\xa0\x49\xa1\x55\x9e\x0f\x58\ \x0a\x90\x0b\x3e\xcf\x38\xe6\x8b\x58\xa5\x15\xcc\x65\x73\x0b\x70\ \xd6\x10\x8b\x6d\xd2\xa0\x10\xba\x03\xac\xcc\x4a\xea\x33\x4f\x37\ \x85\x3d\x45\x00\x69\x52\x08\xa7\x86\x3d\x5d\x81\xd6\x25\x48\x00\ \x7b\x40\xb7\x12\x4b\x35\xef\xf7\x12\x20\x77\xf9\x7a\xee\xf0\x50\ \x22\x00\x56\x6b\x0f\x65\xfb\xa7\x93\xc2\xde\x34\x01\x24\x60\x73\ \xb2\x85\x24\xe9\xb7\x88\xc0\x57\x25\x69\xa9\x65\x34\x20\xcc\x9d\ \x32\x36\x32\x90\xe9\xe3\xe4\x0f\x74\x05\x5c\x05\x08\x09\x60\xeb\ \x9e\xc9\xa6\xb0\xf3\xf2\x30\x39\x69\xe2\xb9\xd9\xc2\x00\x5c\x15\ \xef\xb7\x80\x4f\x29\x80\xa5\x02\x2d\x22\x00\x6c\xe2\x35\xb9\x2a\ \xec\xbc\x44\x4c\xee\x42\x51\xbe\x5c\x4c\x4a\x1b\x4f\x2d\x18\xd1\ \x16\x92\x48\x79\x01\x65\x57\x1c\x69\xe0\x57\x99\x1b\x68\x50\x01\ \xe8\x06\x5e\xcd\xa7\xb0\x77\x81\x00\x52\x6e\x80\xb6\xf4\x4c\x93\ \x7f\x0f\x09\xda\xa4\x02\xb8\x95\x4f\xdc\xd6\xaf\xb9\x2a\xec\xb4\ \x4c\x1c\x1f\x12\x6a\xf5\x02\xf8\x82\x0d\x6b\xd1\x28\x5f\x11\x64\ \x29\x82\xf4\xfd\xd4\x5a\x43\x2e\xfd\x74\x22\x28\xd5\xff\x5b\x31\ \x80\x95\x43\xa0\xa9\x80\x67\x48\x68\xc4\x01\x54\x05\x70\x5f\xc7\ \x22\x6c\xf2\x59\x7f\x15\x76\x4e\x80\x14\x09\x52\x2b\x87\xa5\xd1\ \x01\xa6\x90\xf1\x05\xa2\x29\x80\x2d\x99\x97\xd6\x14\x6a\x8b\x4d\ \x53\x5e\x5f\x06\xfc\x3a\x1e\x16\xe1\xcc\x60\x19\x02\x84\xcd\x3d\ \x81\x04\xd0\xea\xab\xc2\x6e\x11\x40\xaa\x14\x66\xd5\x0d\xb0\x96\ \x8f\x7b\x09\x60\x79\xbd\xe4\xf9\x39\xde\x5f\x86\x04\xbc\xf2\xa9\ \x27\x93\x28\x35\x27\x80\xf3\x01\x6c\x24\x20\x2a\x00\x21\xc0\x2c\ \x11\x16\x2c\x58\xf0\xa5\xca\xb3\x8a\xb4\x56\xb0\x56\x32\x2e\x87\ \x04\x54\x09\xf8\x8a\x62\x4d\x11\xbc\xf5\x05\x52\xc5\x28\xbc\x95\ \x48\xa4\x25\xe8\xb4\xef\x97\x1e\x10\x59\xeb\x0c\x68\xfd\x22\xfa\ \xb4\xd0\x7a\x3e\x80\xb3\x82\x40\x82\x32\x04\x58\xb4\x68\xd1\xe3\ \x5a\x09\xa0\x15\x8d\xe4\xe5\x63\xca\xd6\x10\xca\xad\x26\x62\x55\ \x19\xa9\x0a\xba\x06\xbc\xd4\xf7\x5b\xf2\xef\xc9\x1c\x82\x59\xc1\ \x3a\xba\x80\xa0\x04\xff\x79\xf8\xf0\xe1\xa9\xe7\xcf\x9f\xbf\x32\ \x48\x02\x48\x32\x4f\xc9\x20\x95\x9f\xd1\x3c\xbf\x8c\xf7\xe3\x0a\ \xe4\x2a\x43\x41\x3e\x2b\xe8\x55\x80\x3b\x77\xee\x7c\x3d\x00\x7f\ \xe2\xc5\x8b\x17\xf5\x54\x5a\xc7\x0d\x23\xac\xa2\xd1\x56\xf5\x50\ \x4f\x19\x39\xc9\x63\xab\xfc\xcd\x02\xda\x0b\x3a\x95\x7d\xea\xfd\ \x92\xf4\x7b\xc1\xe7\x99\xc4\x98\x31\x54\x56\x01\xae\x5d\xbb\xf6\ \xbd\x00\xfc\x67\x03\xf0\x4b\x2b\x7b\x3d\x3d\x01\x25\x40\x55\x12\ \xd0\xc2\x52\x3c\x99\x24\x05\x56\x19\x29\xf7\x80\x9f\x53\xb1\x54\ \x03\x5e\x92\x7e\xcb\xf3\x35\xf0\xad\x2e\x40\xda\xc8\xfb\xfc\xf9\ \xf3\xaf\x03\xf0\xa1\xad\xaa\x15\x78\x3c\xd9\xb4\x09\x90\x52\x00\ \x0f\xc8\xa9\xef\xe4\x12\xc0\xdb\xf7\x37\x45\x00\xe8\x06\x90\x04\ \xc7\x8f\x1f\xbf\x15\x81\xdf\xd4\x08\xf0\x78\x52\xba\x69\x14\x4e\ \x60\xa4\x4a\xc8\xf3\xa9\x62\x9a\x4e\x2e\x05\x87\x9e\xae\xa1\x2a\ \xd0\x7c\x38\x27\x95\xa4\xd5\x8a\x56\x7b\x3c\x5f\x92\x7d\x2d\xf2\ \x2f\xeb\xfd\x08\x7e\xc8\x95\xf8\x5d\x04\x7e\x32\xb5\x91\x91\x00\ \x96\x12\x48\x25\x65\xb5\xb8\x80\x12\x41\xaa\x35\x9c\x53\x77\x58\ \xf2\x62\xed\x6f\x52\xe9\x7a\x5e\xb6\x9e\x03\x4e\xfb\x79\x5e\xb9\ \xdc\x02\xde\x1b\xf9\x5b\xd2\x0f\xe0\x87\xdf\xfa\x5b\x04\xfe\x23\ \x8d\x7a\x3c\x3f\xf9\x48\x80\xf7\x8b\x50\x4a\x9b\x59\x58\x04\xa0\ \x5b\xe3\x79\xa6\x7f\xa5\x7c\x80\xe0\x78\xef\x46\xe0\x8f\x4e\x14\ \x78\xfc\x31\xb8\xa8\x5c\x12\x60\x2a\x39\xed\x0e\xca\x6e\x2e\x91\ \xf2\xf0\xd4\x86\x14\x5a\xf9\x79\x8f\xc7\x7b\xbd\x9e\xf6\xf5\x54\ \xf2\x8d\x05\xa4\x73\x7b\x2d\x5b\xd9\x40\x8f\x1f\x3f\xfe\x62\x00\ \xff\xf8\x54\x80\xe7\x04\xd0\x36\x90\xa4\xbb\x89\x49\xdb\xc8\xd1\ \x32\xf3\xda\x16\x33\x12\x28\xd2\x3e\x04\xa9\x7e\x3a\x75\x0e\x5e\ \x48\x32\xb5\x55\x8d\x24\xf3\xd4\xd3\x39\xe8\x16\xf0\xa9\x3e\x5f\ \x93\xfe\xdb\xb7\x6f\x9f\x8f\x43\xba\x7a\xc6\xf2\x55\x18\x84\x0a\ \x30\x2d\x02\x48\xf1\x02\x1f\x97\xd7\x0d\x3e\x1d\xda\xf1\x25\x61\ \x1e\xaf\x97\x56\x07\xd1\xb5\x82\xe8\xf9\x9c\x00\x57\xae\x5c\xf9\ \x7e\x23\x63\xf9\x2a\x04\xc0\xdd\xc3\xe9\x1e\xc2\x7c\x1b\x59\x6d\ \x4f\x41\xef\xd6\x72\x9e\x1d\xc6\x70\x34\xe1\xfd\x2e\xfd\x1e\xef\ \xc3\xb5\xfe\x9c\x3f\xc8\x91\x76\x2f\xe3\x1e\x4f\xe5\xbe\x2c\xf0\ \x67\xcf\x9e\xfd\x51\x04\x7e\x4d\x15\xac\x1a\x39\x76\x12\x04\xe0\ \xf1\x41\x19\x90\xb5\x63\xea\x06\x5f\x93\x7c\x0a\x3e\x95\x7d\xc9\ \xf3\x71\xb6\xef\xd8\xb1\x63\xbf\x8c\x01\xde\xd6\x46\xc0\xab\xe3\ \xa4\xf8\x5c\x9a\x77\x05\xd2\xb0\xb0\xec\xee\xa2\x29\x90\xaa\x7e\ \x46\xbd\x9a\xbf\xa7\x1e\xce\xab\x81\xf0\x9d\x4c\xe9\x5e\xc7\x52\ \x74\xaf\x81\x4e\x17\x85\xa2\xe4\x87\xa4\xd7\x3f\x45\x8f\xdf\x57\ \x07\x46\x8d\x9e\x23\x2e\x52\x98\x7b\x4a\x65\x6d\x27\x4f\x8d\x43\ \x13\x4a\xa5\x00\x91\xee\x46\x92\x02\xaa\xcc\x67\x12\xb8\x9a\xa4\ \xa7\xc0\xe6\x12\xef\xf1\x74\xed\xf9\x7e\x88\x55\xde\x8e\x1e\xff\ \xb1\x46\x41\xab\xf3\xe4\x93\x20\x00\x1d\x36\x96\x01\xdb\xe3\xd9\ \x65\xc0\xa7\x64\xe6\xab\x7e\xb9\xc7\xb3\x82\x10\x73\x4b\xc1\x41\ \x39\xc3\x77\xdf\x8b\xc0\x7f\xa2\x4e\x6c\x26\x72\x2e\xb2\x42\xc5\ \x54\x01\x4c\x1e\xa1\xfb\x0d\xd3\x69\x63\x4d\x11\xe8\xbe\x84\x96\ \xe7\x5a\x9f\x53\x6f\x96\xde\xf3\x6d\xeb\x79\x51\x48\x4d\xde\x2d\ \xc0\x25\xa9\x07\xf0\x1f\x3c\x78\xf0\x95\x00\xfe\x67\x26\x02\x56\ \x13\x3f\x02\xd3\x90\x94\x04\x18\x14\x6a\x31\x01\x1f\x21\x70\x32\ \x78\x09\x61\x01\x99\x03\x6e\x0a\x64\xc9\xb3\xf9\xac\x1d\xcf\xdc\ \xe1\x12\xcf\x27\x74\xc0\x36\x37\x6f\xde\xfc\x56\xec\xe7\xbb\x5d\ \x82\x7e\x12\x04\xc0\x54\xb3\x32\xa0\x4b\xc3\x32\xee\xe5\x92\x94\ \xa7\x80\xcf\xf5\x76\x3a\x9e\xbf\x74\xe9\xd2\x6b\x11\xf8\xe5\x4d\ \x38\xe4\xc4\xcf\x89\x99\x28\x96\x0a\xf0\xe9\x62\x49\x09\x24\x35\ \xe0\x23\x07\x4d\xa2\x73\xa4\x9b\x03\x8e\x1e\xcd\x5f\xf1\x1a\xf9\ \x2b\x7a\x38\x7d\xa5\x93\x37\x14\x70\x1c\xd2\x9d\x3e\x7d\xfa\x46\ \xec\xe7\xd7\x4d\x1c\xa4\x26\x7f\xb0\x2a\x01\x68\x5c\x40\x1f\x27\ \x4b\x5e\x99\x03\x7e\xca\xab\x2d\xef\x96\x3c\x9c\x07\x71\x1e\x99\ \x07\xf0\x0f\x1f\x3e\xfc\x66\x04\x7e\x47\x93\x38\x4c\xed\xdc\x90\ \x80\xa0\x91\x40\x8a\x07\xa8\x12\xe0\x5c\x01\xf7\x30\xcd\x23\x3d\ \xa0\xf2\x61\x58\xae\x77\x6b\x40\xf3\x20\x4e\xea\xd7\xe9\xd3\xba\ \x90\xa8\xf2\xd7\x08\xfc\x87\xa6\x06\xce\x24\x7e\x18\x33\x50\x38\ \x09\x70\x78\x48\x49\x40\x03\x43\x3e\x5f\x80\x1e\xa5\xc9\xae\xa4\ \x14\x12\xb8\xa9\xe3\xb5\x60\x2d\x25\xe5\x1a\xd0\x14\x6c\x9c\x0c\ \x83\xd7\x50\x25\xfc\x9f\x11\xf8\x8f\x4f\xc2\xfe\x53\xff\x0d\x0f\ \x01\x34\x25\xe0\x6a\xe0\x21\x81\x14\x3b\x78\x40\x4f\x79\xb6\xe6\ \xdd\x39\xe0\x87\x73\x3c\x79\xfa\xf4\xe9\x17\x02\xf8\x2f\x4f\x1d\ \x94\x49\x5e\x00\x4d\x44\x44\x15\xa0\x23\x03\xaa\x04\x5c\x0d\x3c\ \x8a\x20\x05\x5c\x65\xff\xc6\x03\x35\xe9\xa9\x1b\x29\xca\x34\x3b\ \xaf\x41\xbd\x9b\xbe\xc7\xa0\x17\x5e\xef\xdd\xbb\x77\x2e\xa6\x5a\ \xcf\x9b\xa4\xed\x5b\xf1\x5b\x3c\x13\x35\xd5\x15\x78\x08\xa0\xa9\ \x42\x59\xd0\xcb\x78\xb7\x17\xf8\xeb\xd7\xaf\x7f\x37\xca\x7d\xfb\ \xeb\xf9\x35\xc5\x16\x29\x15\xd9\xa3\x04\x12\x19\xd0\xfb\x52\x9e\ \x9a\xfb\x19\xf7\xe8\x32\x1e\x4e\xbd\x1d\xee\xed\xc2\x85\x0b\x3f\ \x6c\x34\xd5\xba\x29\xb0\x9a\x38\x6f\x5c\x7f\x3e\x97\x8e\xac\x75\ \x09\xbc\x5b\xe0\x5d\x03\x95\x57\x0b\x34\xef\xe7\x9a\x7c\xf3\x95\ \xb5\x14\x60\xbe\xd8\x92\x92\xf9\xc4\x89\x13\x3f\x9f\x48\xaa\x75\ \x13\x40\x35\x75\xce\x36\x12\xa0\x6e\xe0\x0f\x1d\x3a\xf4\xdb\x38\ \x7b\xb7\xab\x29\x3b\x76\xf6\xbc\x48\x00\x78\x95\xba\x03\x3e\x4a\ \x90\x62\x04\xee\x81\x16\x80\xd6\xe7\x92\x47\x73\x19\xa7\x9e\x4d\ \xdf\xd3\x7b\xc0\x54\xeb\xb0\x9c\x6a\x18\x1b\x40\x95\x61\x21\xac\ \x39\x4f\xa9\x80\x46\x00\xa9\x4b\xa0\x20\x59\x20\x4b\x9f\xd7\x05\ \x7c\x88\x33\x1e\x4d\x35\xd5\xba\x0c\x10\xd3\x3a\x06\x08\x40\x49\ \x60\x29\x41\x8a\x10\x5a\xf0\x68\x01\x9b\xea\xb7\x35\xef\xd6\xd4\ \xaa\x15\xa9\xd6\xd3\x02\xb3\xcc\xef\x4a\x04\xa8\x8b\x04\x96\x4a\ \x68\x32\xce\xff\x9e\xea\x9a\xf0\xb3\x56\xa5\x5a\x97\x01\x62\x5a\ \xc7\x40\xa9\x11\x24\x41\x15\x32\x58\xc3\x49\x4f\x9f\xed\x01\x9a\ \x7f\xe7\xf2\xe5\xcb\xaf\xb6\x2e\xd5\x7a\x5a\x60\x96\xf9\xdd\x58\ \x74\x68\xb6\xe6\x8c\x45\x04\x4f\xac\x50\x06\x44\xcf\x31\x34\x58\ \x85\xf7\x67\xce\x9c\xc1\x54\xeb\x99\x32\xf7\x3d\x1e\x13\x2d\x90\ \x22\x00\x8f\x0d\xa6\x41\x00\x0e\xfc\x91\x23\x47\xda\x9f\x6a\xdd\ \x25\x76\x85\x42\x43\x05\x34\x4a\x04\x49\x0d\xb4\xee\x81\x03\xd4\ \xc4\xff\xe1\xb7\xc3\x12\xf0\x3f\x76\x26\xd5\xba\x0f\x04\x68\x03\ \x09\x00\xf8\xf0\xc8\xf8\x9d\xce\xa5\x5a\x77\x91\x00\xa8\x04\x92\ \x1a\xa0\x3a\xf0\x18\xa1\xc9\xff\x87\xb8\xe0\xc9\xb3\x67\xcf\x3e\ \x17\x26\x71\x3e\xd9\x25\x7b\x76\xee\x5a\x29\xf0\x5a\x77\x60\xc5\ \x09\x75\x13\xe1\xfe\xfd\xfb\x90\x6a\xfd\x4a\x00\x7f\x78\x8f\x67\ \x27\xcd\xa0\x85\x0b\x17\x16\xd8\x24\x32\x78\x48\xc1\xe3\x87\xb2\ \xff\xbf\x71\xe3\xc6\xb7\x63\x3f\xbf\x68\xd2\x76\x18\xec\xef\xb5\ \x81\x00\x17\x2f\x5e\xfc\x41\xaf\x52\xad\xbb\xc4\xa6\x50\x6f\x76\ \x4e\x01\x28\x19\x3c\xaa\x90\x52\x0c\xcf\x67\x27\x4f\x9e\xbc\x19\ \x03\xbc\xf5\x5d\xb2\x59\xaf\xae\xd5\x22\x00\x10\xc1\x03\x66\xce\ \x77\xc2\xea\xd9\xdf\xf4\x3a\xd5\xba\x4b\x0c\x01\x02\xf0\x26\x29\ \x41\x1d\x7f\x0b\xab\x7c\x30\xd5\xfa\x50\x97\x6c\xd4\xeb\x6b\x95\ \x08\xe0\x51\x85\x1c\x42\x84\x47\xbf\xff\x18\x54\xaa\x75\x97\x18\ \x33\x7f\xfe\xfc\x0f\x28\x80\x46\x8a\x5c\xa5\x08\xa3\x81\x27\x8f\ \x1e\x3d\x82\x4a\x58\x9f\xea\x92\x4d\x06\x75\xad\x40\x80\x2a\x24\ \xd0\x48\x71\xf7\xee\xdd\xaf\xc5\x54\xeb\xe9\x57\xc2\x1a\x14\xa2\ \x99\x37\x5b\x37\x01\xae\x5e\xbd\xda\x4c\x55\xeb\xcc\xfb\x1a\xbf\ \xee\xb4\x00\x12\xc0\x7a\xb5\xba\x85\x73\xe7\xce\xbd\x3e\xa6\x5a\ \x3b\x8d\xde\xa6\xaf\x59\xc0\xf3\xcf\x39\x11\x8e\x1e\x3d\xfa\x8b\ \x31\xd5\xba\x4d\x88\x66\x5e\xcb\xbc\x79\xf3\x0a\x68\xb9\x44\x08\ \xab\x67\x67\xab\x5a\x87\xf9\xfa\x3d\x99\x3f\x39\x7e\xbd\x4d\x16\ \xc8\x25\x40\xc8\xb8\xfd\x7b\xf4\xf8\xc9\x56\xb5\x6e\x93\xd1\xfa\ \x74\x2d\x48\x00\x4b\x05\xc2\x90\x0e\xab\x5a\x77\xaf\x12\x56\x9f\ \x00\xab\xfb\x5e\x28\x01\x94\xf7\xff\x8d\x3b\x54\x4d\xb7\xaa\x75\ \xdd\x37\x3e\x9e\xef\x7d\x0b\xa4\x08\x70\xeb\xd6\xad\x6f\xc6\x7e\ \x7e\x1c\xcb\xf7\x95\x30\x12\x01\x5e\x0d\xff\x62\x3f\xbf\xac\xaf\ \xf7\x3d\xde\x57\xb4\x00\x25\xc0\xa9\x53\xa7\x7e\x1c\x3d\x7e\x66\ \x34\xd0\x40\x2c\x00\x04\x08\x1b\x15\xfd\x2a\x7a\xfc\xb6\x81\xdc\ \xf6\x78\x9b\x68\x81\x08\xfc\x81\xd1\x22\xa3\x05\x46\x0b\x8c\x16\ \x18\x2d\x30\x5a\x60\xb4\x40\xaf\x2c\xf0\x3f\x6d\x5a\x51\x4d\x7a\ \x28\x1c\x1b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x15\x0f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x14\x95\x49\x44\x41\x54\x78\x5e\xed\x5d\x69\x8c\x56\ \xd5\x19\x66\x1f\x86\x65\xd8\x87\x75\x18\x59\x2d\x38\x6c\x02\x33\ \x20\x0c\x38\x15\x54\x48\x59\x4a\x64\x2a\xa8\x48\xaa\x88\x44\x28\ \xae\xb4\x63\x44\x9b\x58\x4a\xb1\x63\x63\x8b\xb6\x85\x46\xd3\xa2\ \xd6\xaa\x58\x04\xc4\xc4\x36\x4a\x8a\xa4\x18\x15\x1b\xab\xe2\x02\ \x22\x46\x2b\x28\x16\xca\xf7\xc3\x1f\xfe\xd0\x3e\xef\xe4\x3b\xe3\ \x99\xc3\xd9\xef\x3d\xf7\xbb\x33\x5e\x92\x9b\x61\xe6\x9e\xe5\x7d\ \xdf\xe7\x39\xef\x39\xe7\x3d\xcb\x6d\xd5\x2a\xfb\x97\x59\x20\xb3\ \x40\x66\x81\xcc\x02\x99\x05\x32\x0b\x64\x16\xc8\x2c\x90\x59\x20\ \xb3\x40\x66\x81\xcc\x02\x99\x05\x32\x0b\x64\x16\x48\xb1\x05\x3a\ \x76\xec\xf8\x39\x9e\xa7\x53\x2c\x62\x26\x5a\x28\x0b\x00\xf8\xed\ \xc5\xc5\xc5\x39\x7a\x88\x08\xa1\xea\xc9\xca\x4d\xa1\x05\x3a\x77\ \xee\x7c\x25\x03\x9f\xff\x09\x51\xdb\xa4\x50\xdc\x4c\xa4\x38\x2d\ \xd0\xa9\x53\xa7\x7e\x32\xf0\x39\x6f\x30\x3d\xce\xfa\xb2\xb2\x52\ \x66\x01\x10\x20\x67\xf1\xdc\x97\x32\xb1\x33\x71\xe2\xb0\x00\x01\ \x0f\xf7\x6f\x7c\xf2\xe9\x8e\xc6\x51\x67\x56\x46\x4a\x2c\x00\xe0\ \xf7\xf3\xe0\x77\xe9\xd2\x25\x27\x3e\x32\x72\xa4\x44\xfc\x4c\x8c\ \x28\x16\x00\xd0\x3f\x91\x01\x6e\xf3\x37\x22\x05\x66\x09\xe5\x51\ \xea\xcf\xf2\x16\xd0\x02\x00\xb0\x82\x01\xdd\xb5\x6b\xd7\x9c\xcd\ \x23\x23\x06\xba\x85\x5b\x0b\xa8\x46\x56\xb5\xaf\x05\x44\xc0\x4b\ \x4a\x4a\x72\xba\x47\x46\x10\x8e\x10\x2f\xf9\xca\x91\x44\x3e\x90\ \xbd\x6f\x51\x51\xd1\x2c\x78\xac\x2b\xf1\xf3\x7a\xfc\xbc\x1c\xcf\ \x4c\xd4\xdd\x33\x89\xfa\x53\x57\x07\x03\xd3\x04\xba\xea\xbd\x48\ \x06\x46\x84\xb4\x28\x8a\xa9\xeb\x62\x3c\x6f\x89\xd3\x5a\x80\x4e\ \xdd\x56\x93\x07\x84\xc8\xd1\xd3\xa1\x43\x87\x17\xf3\xa4\x48\x8b\ \x1a\x61\xe4\xe8\xd6\xad\xdb\x3b\x0c\x58\xfc\x3f\xe7\xfa\x88\xa4\ \xe0\xc9\x40\x44\xe8\xd1\xa3\x47\xb7\x30\x92\xeb\x4b\xa5\x56\x8e\ \xee\xe8\x98\x2e\x96\xc1\xbf\x53\x91\x01\x69\xaa\x0a\x21\x7f\x22\ \x75\x02\xec\xcd\x04\xa0\x08\x7a\xf7\xee\xdd\x73\xba\x47\x46\x12\ \x9e\x08\x22\x09\x00\xc6\x0f\x12\x51\x88\x7c\x78\xcf\x9e\x25\xb6\ \xa0\xcb\xd2\xf1\x44\x58\xb7\x6e\xdd\xca\xaf\xbe\xfa\xaa\x24\x29\ \xd9\x13\xad\x07\x20\xcd\x61\x40\x9a\x00\x37\xbd\xe7\x09\xa1\x22\ \x02\xfe\xfe\x6c\x68\x05\xd1\xe2\xf7\x5b\x04\xaf\x1a\xd6\x35\x4c\ \xcf\xe2\xc5\x8b\xd7\xb7\x58\xf0\x09\x88\xd2\xd2\xd2\x67\x08\x38\ \x11\x5c\xb8\x6c\x72\xdb\xc6\x47\xcc\x27\x7a\x05\x91\x08\x95\x95\ \x95\xf7\x06\x24\x00\x70\xff\x26\x72\xc9\xe2\x14\xbe\x64\xa8\xa9\ \xa9\xb9\x0f\xe0\x97\x06\x94\xb7\xf0\x45\x4f\x9a\x34\xe9\xd7\x0c\ \x44\x1e\x70\xb8\xd0\x9c\xe9\x11\x09\xc2\x93\x41\x46\x84\x41\x83\ \x06\xbd\x06\x83\x96\x85\xd0\x1a\x60\x5f\x68\x13\xb5\x94\xa5\x11\ \x09\x42\x5e\x61\xec\xd8\xb1\x4f\x40\xd6\x41\x21\x64\x4d\x55\x99\ \x60\xf9\x0a\x57\xe0\x45\x62\xf0\xf9\x75\x24\xf8\xfa\xeb\xaf\xc7\ \x87\x50\x1e\x00\x2e\x63\xc0\x9a\x82\x55\x3a\x92\x30\x22\x0c\x19\ \x32\xe4\x1f\x00\x7f\x78\x08\x59\x53\x57\xe6\xf2\xe5\xcb\x27\x8b\ \x80\xf6\xee\xdd\x3b\x67\xf3\xb8\x10\x01\x06\xad\x0e\xa1\x3c\x00\ \xfd\xae\x0e\x74\x1a\x88\x9a\x48\x41\xef\x19\x31\xfa\xf7\xef\xff\ \x6f\xc8\x5a\x11\x42\xd6\x54\x94\x09\xd0\x6e\xc2\xd3\x38\xa5\x81\ \xb2\xc5\x0c\x48\x1b\xd0\x65\x69\x78\x22\xc8\xba\x85\xbd\x7b\xf7\ \x7e\x2f\x84\xf2\xbd\x7a\xf5\x02\xbe\x76\xd1\x4a\x55\x3a\x9e\x1c\ \x90\xfd\x13\xd8\x63\x42\x08\x59\x53\x51\x26\x80\x1a\xc8\x00\xc2\ \xff\x37\x32\xa1\x78\x50\xfb\xf4\xe9\x93\xb3\x7d\x44\x32\xc8\x88\ \xb0\x74\xe9\xd2\xbb\xe0\xfa\x3b\x84\x30\x40\xdc\x81\x2b\x80\x3f\ \x25\x84\x9c\xa9\x29\x93\x03\xbf\x61\x80\x07\x00\xdf\x21\xe1\x08\ \x48\x19\xe8\x98\x21\xe4\xf8\x47\x45\x0c\x9e\x08\x3c\x09\x46\x8f\ \x1e\xfd\xb7\x50\xa3\x68\x0c\x32\xf7\xf8\x46\x2c\x65\xf9\x42\x75\ \x51\xa9\x02\x5f\xe1\xea\x4f\x00\xe4\xff\x12\xb8\x22\xe0\xa6\xdf\ \x45\x42\x30\x22\x50\x3d\x78\xf7\x29\x8c\x3a\x3a\x84\x01\xd0\xf2\ \x7b\x45\x89\x5a\x8a\xf1\x8a\x6f\x03\xf8\x2f\x51\xeb\xcf\xb7\xfa\ \xc6\x01\x1e\x03\x50\x04\xba\x6f\xdf\xbe\x39\xd9\x23\x23\x04\x4f\ \x02\xde\x13\xc0\xa8\x17\x84\x00\x9f\xca\x04\x80\x67\x74\xa1\x6a\ \x97\x80\x55\x8b\x07\x1f\xa0\xdf\x61\x0b\xbe\x0a\x78\xf1\xef\xaa\ \xae\x81\x11\x20\xa4\x51\x01\xfc\x39\xae\x21\x6b\x15\x21\x42\xca\ \xc9\x91\xbf\x20\x6b\x20\x0d\xf5\x43\xf1\x71\xa2\xdb\x97\xb5\x7a\ \x1e\xe0\x7e\xfd\xfa\xe5\x54\x8f\x8e\x08\xac\xdc\xba\xba\xba\x55\ \xa1\x5a\x3e\x95\x0b\x32\x1f\xd2\xb5\x70\x9b\xe8\x25\xa5\xd9\xbf\ \x7f\xff\xdc\x90\x72\x52\xd9\x58\x4d\x3c\x85\xa0\xd2\x96\xd0\xf5\ \x28\xcb\x17\x5b\xbe\x0e\x7c\x1d\xf0\xfc\x3b\x9e\x04\xa2\x27\x98\ \x3a\x75\xea\x23\x18\xf1\x07\x65\xbc\x0c\x7c\x5b\xd0\x59\xba\x9b\ \x6f\xbe\x79\x0d\xe4\x6c\x1f\x12\x18\x2c\x26\xbd\xc9\x16\x94\x42\ \xd6\xa3\x2c\x5b\xd6\xf2\x79\xc0\x18\x90\x22\xf0\x08\x84\xe4\x64\ \x8f\x98\x4e\x24\xc2\xe0\xc1\x83\xdf\x83\x4b\x1d\x16\x52\x59\x00\ \x58\xab\x03\xdb\x14\xba\xa6\xf7\x03\x06\x0c\x38\x0a\xf0\xbb\x87\ \x94\x13\xad\x7e\x2f\xb7\x6d\x9e\x76\x55\xf7\x0f\x59\xdf\x59\x65\ \x43\xd1\x23\xfc\x80\x4f\x6c\xf9\x2a\x97\xaf\x02\x9f\xfd\x5d\xe7\ \x09\x00\xfe\xe4\xd0\x4a\x62\x8c\xf1\x86\x8c\x00\x2a\xe0\x65\x71\ \x8a\x7d\xfb\xf6\x5d\x14\x52\x4e\x80\xfd\x67\x71\x7f\x01\x82\x4d\ \xbf\x09\x59\x67\x93\xb2\x61\x8c\x2d\x22\xf8\xac\xe5\xcb\x80\x97\ \x81\x8e\x56\x42\x2d\xa5\x89\x27\x98\x32\x65\xca\x53\x33\x66\xcc\ \x78\xe4\xea\xab\xaf\x5e\x5f\x5f\x5f\xbf\xfc\xf4\xe9\xd3\x35\x34\ \x88\x62\x4f\x12\x0a\xea\xd6\x2c\x6c\xa3\x98\x21\x5d\x3f\xc0\xbf\ \x93\xd6\x13\x24\x3b\x8e\x4e\x27\x61\x1f\x1a\x20\x5d\xca\xbb\x7e\ \x55\xcb\xe7\x5b\xb2\x8a\x00\xe2\xdf\x07\x0e\x1c\xf8\x31\x8c\x37\ \x94\x02\x3b\xf8\xd9\x05\x4f\xeb\x44\x94\xe2\x2a\x61\x63\x1a\xdf\ \xb5\x8b\xb2\xb2\xb2\x43\xa1\x64\x46\x2b\xbf\x8e\xd6\x13\xd8\x82\ \x92\xe8\x05\x42\xd5\xdb\x58\x2e\x96\x5a\x8b\x65\x83\x3e\xb1\xf5\ \xeb\xc0\x67\x2d\x9f\xff\x29\x12\x21\xb8\x22\x8a\x0a\xe0\xbd\x4a\ \x65\xae\x5e\xd5\xf2\x65\x51\xcb\x8a\x8a\x8a\x9d\x21\xe4\x47\x60\ \x6a\xbe\xb8\xf7\x20\x71\x02\xb8\x80\xcf\x83\x2a\x03\x5d\xf5\x37\ \x96\x0f\xde\x60\x6c\x08\x43\xea\xca\xc4\x12\xed\x2c\x9e\x00\x32\ \xe0\x4d\x6b\x18\xc3\x86\x0d\x7b\x2e\x6e\xb9\x01\xfe\xb9\x6c\x41\ \x49\x47\x82\xb8\xeb\x6d\x52\x1e\xc0\x3f\xa3\x72\xfd\xe2\x68\x5f\ \x6c\xd1\xb6\x04\x28\xb4\x27\x38\xef\xbc\xf3\xae\xd1\xad\x5a\x9a\ \xc0\xa7\xf7\xd0\xf5\xfd\x38\x81\x00\xe0\xa5\x6c\x41\x8a\x5f\x52\ \x96\x75\x03\x71\xd6\xdb\xa4\x2c\xcc\x8b\xf7\x24\xd9\xfa\x89\x08\ \x09\x45\xd0\x9a\xe8\x39\x7e\xfc\xf8\x55\x2a\x02\xa8\xc0\x97\x85\ \xae\x63\x04\xa2\x88\xd6\x23\x0a\x4a\x00\x00\xdf\xb0\x9b\x47\x6c\ \xfd\xaa\x7e\x9f\xb5\x62\xb1\xd5\xc3\xa5\xe7\x54\x8f\x98\x36\xd4\ \xda\xbe\x09\x18\x6c\x5d\xbb\x4e\x74\xfb\x36\x2b\x98\x92\x75\x8e\ \x58\x36\x7b\x50\x38\x9a\x2d\x48\xf1\x9b\x4e\x54\xdd\x80\x49\x3f\ \xe7\xf7\x00\xbe\x8c\x5f\xde\x65\xc6\xe1\x57\xf5\x54\xee\x5f\xe6\ \xf6\x65\x04\x10\xd3\x61\x0a\x78\x67\xa8\xb5\x7d\x93\x01\x66\xcf\ \x9e\x3d\x2f\x0e\x02\x10\x21\x4c\x75\x99\xde\xb3\xb5\x08\x9e\x00\ \x8c\x04\x89\x11\x80\x42\xa2\x26\xd7\x2f\x1b\xf1\xf3\xa0\xea\x5a\ \x3e\xff\x8e\xf2\x4c\x98\x30\xe1\xef\xa1\xd6\xf6\x4d\x06\xa7\xf7\ \x77\xdf\x7d\x77\x19\x4f\x72\xb1\xf5\xab\x96\xae\x65\xa1\x6b\xe4\ \x5d\x67\x53\xa7\x2c\x0d\x0b\x45\xf3\x24\xe0\xbb\x01\x36\x16\x10\ \xc7\x01\xbe\xf5\x49\xf3\x31\xf0\x4d\x04\x20\xe5\x89\x04\xba\x51\ \xbf\x8d\xfb\xc7\xfc\xf9\x64\xa8\xb5\x7d\x5b\xc3\xc0\xf3\xb4\xd3\ \xed\x5c\x32\xed\x5d\x90\xbc\x9f\x6f\x5b\x37\x4b\x47\xf6\xe6\x09\ \x20\xf3\x00\xc1\x09\x00\x01\x5e\x71\x25\x00\x4f\x02\x1f\xf7\x7f\ \xed\xb5\xd7\xfe\xd8\xd5\x58\x21\xd2\xc7\x4c\x00\xda\x00\xb3\xcd\ \x46\x4e\x8c\xb1\x4a\x78\xf0\xc9\xfe\x26\x0f\xc0\x82\x42\x14\x0f\ \x00\x51\x4e\xd8\xd4\x63\x4c\x83\x4a\x7f\xca\xef\xe1\x8f\x32\xf8\ \x73\x71\xff\x79\xd2\x04\x3f\xd1\x63\x32\xc0\xf0\xe1\xc3\x5f\xb5\ \x19\xf8\x99\xf6\x35\x48\xf6\x33\x6c\x90\xd5\x8d\x4d\xa7\x93\xf1\ \x7c\x4c\x76\x66\xe3\x2d\x59\x17\xa0\x9b\x0d\x10\x01\x26\x4f\x9e\ \xfc\x7b\x93\x6e\xc6\xf7\x00\xff\x7c\xfe\x04\x8f\xad\xfb\x37\x75\ \x01\x04\xae\x48\x06\x4d\x44\xf0\x8c\x51\xd0\x80\x09\x56\xae\x5c\ \x79\x8d\x6c\xff\xa2\xcc\xfd\xbb\xec\x6a\xa2\xfc\xb2\x9d\x4d\xb2\ \x4d\xae\xae\x04\xa0\xb1\xc0\xe1\xc3\x87\xa3\x9f\x31\x60\x87\x37\ \xa3\x78\x00\x1a\x0b\xd8\x06\x7e\x54\xe1\x60\x22\x14\x36\x7b\x06\ \xd9\xe5\x6b\xe2\x0e\x2d\xe3\xda\x12\xc0\x65\x4c\xa0\xda\xd6\xc6\ \x08\xc0\x2f\x42\xd9\x0e\x02\xf9\x75\x01\xc8\x1d\xed\x3a\x3d\xfe\ \xe4\x2e\x3f\xfa\x67\xab\x7e\xba\x45\x1f\x9b\xb0\xaf\x38\xe2\x37\ \xad\x09\x10\x09\x60\xe0\xa0\xcb\xaa\x2a\x32\x8c\x1c\x39\xf2\x9f\ \x3c\x60\x2e\xad\x9f\x79\x05\x97\xbd\x8d\x22\x09\x5c\x3d\xc0\xf4\ \xe9\xd3\x7f\x67\x22\xb6\xf6\x3d\xc0\x7f\xdb\xa6\xf5\xdb\xcc\xff\ \x55\x81\x20\x53\xec\x5f\xb3\x1f\x20\x7a\xdf\xe6\x68\x1d\xcc\x46\ \xc6\x46\x99\x02\xfa\x80\x6f\x3b\x06\x90\xad\x09\xa0\xf5\x0f\x76\ \x54\xf1\x9b\xe4\x00\x7e\x35\xcd\x31\x65\x1e\xc0\x66\x0c\xc0\xa6\ \x81\xe2\x38\xc0\x44\x04\xd3\x8e\x20\xbe\x7f\x05\x18\x1f\x78\x2b\ \xe8\x91\x11\xe3\xa0\xee\x36\x03\x41\xdb\x2e\xc0\xe4\xfe\x6d\xc1\ \x97\x45\x03\x47\x8d\x1a\x15\x6d\xf5\x91\x81\x1f\xd5\x03\xc8\x08\ \x60\x1a\x0b\x88\x24\x30\xed\x0b\xf4\xc0\xd2\x2b\x8b\x6d\xeb\x27\ \x02\xe8\xf6\x2f\x32\x82\xa8\xce\x36\xd0\x58\x23\xea\x18\x00\xde\ \xea\x5c\x2f\x25\x29\x13\xc0\x3f\x6e\x4b\x00\x36\x30\xd2\xed\xfc\ \x51\x79\x01\x97\x6d\x60\x54\x86\xca\xa8\x64\x48\xc8\x31\xc2\x5b\ \x61\x8b\x8c\x3e\x91\x40\x9d\x27\xb0\x01\xdf\xd7\x03\xac\x58\xb1\ \xe2\x16\x0b\x95\xe4\x49\xd0\x97\x4c\xa3\xfe\xc4\x95\x00\xb2\x71\ \x00\xdf\x0d\x98\x76\x02\xc9\xfa\x7a\x96\x47\xd7\x9a\x04\x43\xd6\ \x79\x2b\xae\xc9\x68\xb3\x0e\xc0\xeb\xaf\x02\x5e\xb5\x72\xa8\x3a\ \xde\xa6\x9a\xff\xeb\x16\x83\x50\xc7\x5b\x68\xfd\xfe\x37\x8d\xf1\ \xf7\xf4\x89\xfd\xbf\x6c\x16\xc0\x4f\x8d\x4c\x5e\x80\x01\xaa\x6b\ \xf9\xb2\x2d\xe2\x36\x67\x02\x98\x71\x11\x3c\xf9\x57\x9c\x24\x88\ \x0b\x7c\x95\xdb\xcf\x7b\xaf\xc6\x13\x53\xba\xf9\xbf\x18\x05\x64\ \x41\x20\x7e\x00\x88\x81\xdf\x44\x6f\xfd\x59\xeb\x77\xf5\x00\x26\ \x12\xa8\x3c\x81\xe9\x3c\x80\x43\xcb\x3f\xeb\x4e\x01\x6f\x23\x70\ \x19\xf9\x0d\xae\xbe\x44\xd0\x6d\x16\xb1\x39\xe1\x2c\xbb\xf4\x42\ \xb5\x0e\x10\x79\xaf\x04\x02\x08\x67\xc4\x9b\x3a\x75\xb3\x00\xd9\ \xf6\x6f\xd1\x15\xaa\xa2\x62\xba\xbd\xfe\x2e\x2d\x5e\x6c\x41\xfc\ \x21\x51\xe8\xd2\xdb\x97\x08\xf0\x24\x1f\xea\x76\x01\xa9\x4e\x35\ \xdb\xec\x0e\xb2\x01\x5e\x17\xff\x17\xc3\xbf\x84\x59\x64\xf0\xc9\ \x50\xfc\x55\x27\xfc\xf9\x77\xf1\x26\x2f\x7e\x2f\x80\xd8\x4a\x74\ \x81\x12\x06\xec\xfc\xf9\xf3\xeb\x75\x31\x73\xd3\x7c\x59\x07\xba\ \xb8\x79\x13\x40\x5e\xe5\x4a\x02\x94\xf1\x9a\xcb\x26\x50\xdd\x00\ \x51\xb7\x65\x5c\xac\x43\x16\xf5\x53\xb9\x7d\x7e\xea\x17\x0b\xf8\ \x88\x1b\xd7\x13\x01\xc4\x31\x80\x6a\x1c\x20\xee\x06\x92\x19\x41\ \x06\xe4\xb8\x71\xe3\xf6\x40\xe0\x81\x24\xb4\xed\x29\x60\x31\x5e\ \xae\x22\x00\x3f\x7d\x12\x8c\x6b\x3d\x27\x46\xbe\xdd\x71\x81\xcf\ \x1a\x83\x8a\x04\xb2\xfe\xde\x76\xe0\x47\x04\x40\xf9\xef\xc7\x02\ \x3e\xb5\x10\xfe\x7e\x7e\x36\x06\xd0\xcd\x04\x6c\xbd\x00\xdf\x25\ \x60\xfe\x7f\x1c\x02\x8f\x62\x2d\x92\x84\xc7\x96\xf2\xa3\x2e\xa3\ \x66\x99\x31\x65\x80\x89\xf3\x68\xfc\x6e\x3c\x20\x01\x9d\x76\x88\ \x7a\xf9\x90\xc1\xb7\xd5\x9b\xdc\x3e\xef\xfa\x57\xaf\x5e\xfd\xa3\ \x58\x4f\x44\x89\x04\x90\x0d\x04\xc5\x3b\xfd\x64\xc6\xd2\x0d\x96\ \x20\xf0\x54\xd1\x1d\xe3\x6f\x95\x88\x59\xff\xd1\x65\xb0\xa4\x69\ \xe9\xd2\x00\x0a\xef\x5a\x51\xbf\x72\x71\x04\xb2\x54\xe8\x4e\x00\ \xa9\x88\x66\xd3\xc2\x75\xee\x5e\x05\xbc\x38\xdd\xa3\x06\x89\x1d\ \xca\x3b\xa9\xe1\x60\xb4\xdf\xc3\xb5\x6b\x53\xa6\xc7\x49\xd2\xa9\ \xa1\x09\xa0\x73\x55\x78\x37\x64\xd3\xa6\x4d\x3f\x94\x91\xc0\xc7\ \xb8\xb2\x28\x9a\xd0\xbf\xce\x50\x19\x83\xe4\xc4\x00\xb5\x71\x00\ \xa8\xf3\x2e\x36\x2d\xbd\xaa\xaa\xea\x51\x5f\xf0\x79\x02\xe0\x68\ \xdc\x6f\xf3\x47\xe1\xfc\x23\x7c\x2a\xa5\xa1\xc8\xfd\x6c\x1f\x99\ \x38\x0e\x10\xbb\x01\x95\x17\x90\x1d\x9d\x62\x06\xda\xb0\x61\xc3\ \x35\x26\xb6\xd2\x91\x2f\x52\x30\x04\xe0\x3c\xf8\xdc\xff\x95\x87\ \x26\x21\x47\x15\x36\x52\x3c\x66\xd3\x1d\xe8\x08\x42\x47\xc1\xe9\ \xd4\x32\xe9\x75\xf0\xe0\xc1\x4b\x89\x0c\x18\x94\x9e\x12\xfb\x79\ \xd9\x2a\x1f\xca\x3d\x51\x5d\x5d\xbd\x15\xe7\x20\x2f\xcc\xb7\x78\ \xff\x85\x1d\x93\xf1\x21\xc0\x9b\x3c\x01\x6c\x48\x60\x4b\x84\x63\ \xc7\x8e\x5d\x04\x05\xba\x9a\x64\xe0\xc7\x05\xf0\x04\x9f\xe9\x0c\ \xcb\x87\x48\x15\xe0\x4a\xaf\x99\x15\xcf\xf7\x23\xaf\xf2\xb0\x06\ \x64\x1e\xbe\x7e\xfd\xfa\xeb\xc4\xf2\x4d\x72\xb1\xf7\x8b\x16\x2d\ \xda\xc0\x1f\x05\xa7\x7d\x85\x44\x06\xfc\x9c\x9e\x6f\xc9\xd5\xb9\ \x5c\x6e\xe6\xae\x5d\xbb\x16\x3e\xfc\xf0\xc3\x97\xd1\xcf\x2f\xbe\ \xf8\x62\x06\x7b\x47\xdd\x25\x9e\xf2\x44\xce\x41\xd2\xd6\xa1\x38\ \x09\x40\x46\x83\xcb\xfa\x43\x9e\xb9\xce\x1b\x12\x90\xef\x02\x6c\ \xfc\x78\xce\x66\x70\xe7\x42\x00\x55\x5a\x4d\x77\x50\x42\x3a\xb8\ \x7a\x82\x99\x33\x67\x6e\x41\x3e\xe3\xb9\x7c\x02\x17\xe9\x8a\xf0\ \x14\xd3\xcf\x44\xc0\x96\x29\xcb\x0e\x13\xda\x92\x40\xbc\xde\x5d\ \x6c\x59\xe4\xee\x88\xbd\xb6\xad\x5e\x96\x0e\xf9\x47\x2f\x5b\xb6\ \xec\x76\x57\x80\x4d\x97\x34\xa9\xde\xc3\xa3\x0d\xd1\x8d\x0b\xd0\ \x35\x35\xba\x6e\x9d\x4c\x38\x45\xf4\xd7\xa8\xba\x47\xb1\x9b\x57\ \x5e\xfe\x34\xa9\x89\x04\xfc\x98\x40\x76\xcf\x7f\xbe\xd5\xb7\xf3\ \x12\x44\xc8\x84\xb2\xfa\x1c\x3a\x74\x68\xb6\xaa\xcf\xf4\x05\x5b\ \x95\x0f\xf5\x28\xf7\xec\x43\x96\x69\xd8\x11\xf4\x82\x0e\xfc\xa1\ \x43\x87\x1e\x40\xba\x91\x71\xe8\x9e\x68\x19\x36\x04\x90\xc5\x06\ \xc4\xfb\xf2\x08\xfc\xb8\x05\x87\x5b\x6c\x4b\xe5\xc6\x0d\xb6\x86\ \x04\xaf\x68\x3c\x41\x05\xdd\x3e\x2a\x23\x01\xb6\xb6\xbd\x0b\x39\ \xc7\xc5\xad\x7f\x22\xe5\x89\xb7\x4a\xa8\xbc\x00\x4f\x02\xf1\xaa\ \xd4\x10\xe0\xf3\xca\x53\xf9\xb8\x0b\xe8\xf5\xa4\x88\xa0\x21\x41\ \xe9\x81\x03\x07\xe6\xf0\x72\xa0\x7b\x38\x01\xf9\x26\x25\x02\x56\ \x88\x4a\x40\x80\x33\x26\x12\xf0\x33\x03\x91\x08\xc7\x8f\x1f\xaf\ \x09\x21\x97\x24\x68\x34\x01\xe7\xf4\xee\x73\xfd\xa6\x90\x6f\x7a\ \x78\x38\xe9\xba\x3a\x5d\xf5\x42\x84\x64\xe5\xd2\x88\x3d\x09\xfd\ \x83\xd5\x81\x69\xd7\xeb\xb2\xcf\x97\xc8\xbe\x80\x21\x12\x61\xe1\ \xc2\x85\x34\xdd\x71\x1e\xe9\xfb\x2a\x03\x63\x0f\x7a\xf2\xc9\x27\ \x17\xa9\xee\xea\xf5\x05\x5b\x95\x0f\xee\x7e\x89\x6e\x70\x98\x14\ \xf9\x7d\xed\x65\x95\x0f\x0b\x34\x0f\xb8\x10\x80\x91\x00\x6e\xf0\ \x24\xc0\xef\x67\x55\x49\x8c\x89\x50\x67\x47\x6a\x81\x32\x12\xc4\ \x4d\x80\x7c\xbc\x63\xbb\x4a\xfc\x24\xc9\x1f\xa3\x09\x9b\x16\xb5\ \x66\xcd\x9a\x1a\xba\x58\x50\xf5\x11\x23\xf1\xb3\x26\x6c\xd9\x98\ \xe6\xeb\xc1\x84\xb2\x28\x98\x48\x00\xef\xf5\x61\x94\x9b\xbb\x6d\ \x09\x43\x64\xb7\x10\xa9\x79\x26\xa1\x40\x04\xbb\x59\x52\xf7\x25\ \x2b\x9e\x08\x58\xc5\x4b\xc5\x97\x39\x21\x7b\x15\x2e\x70\x78\x94\ \xff\x28\x43\x14\x42\x98\xf2\x36\x4f\x84\x2d\xa4\x06\x01\x4e\xb9\ \x90\x20\x4d\x53\x1e\xc8\x32\x8c\xc2\xb6\x51\x3f\xe2\x60\x02\x9f\ \xdb\x8a\xd5\xf2\x3e\xee\x30\x77\xee\xdc\x9f\xf3\x1f\x2c\xd4\x79\ \x02\x18\xfa\x33\x0b\x4e\x25\x9a\x04\x24\x28\xf9\xf2\xcb\x2f\x67\ \xd8\x7e\xc6\xc5\x16\x6c\x3e\x9d\xe0\x65\x42\x7e\x82\x2e\x51\xdb\ \x35\x54\x46\xb1\x6b\xf6\xcd\x5a\xf1\x13\xa6\x22\x19\x96\x2c\x59\ \x92\x8a\x33\xfb\x32\x2b\xe5\xa7\x67\x27\x65\x31\x0b\x5b\x72\xd8\ \xa6\x43\x1d\x87\x93\x47\x2a\x60\x8d\xd8\xa2\xf5\x32\x91\xc0\x44\ \x00\x8c\x7c\xbd\x37\x5b\x06\x14\xbf\xb1\x68\x0a\xdb\x22\x2c\xfb\ \x82\x2d\x90\xbe\xe9\xd2\xf6\x81\xea\xc8\xb6\xa5\x7e\x9d\x79\x01\ \x19\x11\x0a\x7a\x05\xb9\xa3\x76\xd0\xa5\xa2\xb6\xb6\xf6\x2e\x9b\ \xcf\xb6\x89\x3b\xa1\x5d\xf2\xb0\xb4\xf0\x92\x2d\xe3\x43\x8f\xd8\ \x9f\xd7\xe0\x05\xc4\x87\x81\x5f\x5e\x5e\xfe\xbc\x23\x16\x41\x93\ \xeb\xae\x43\x07\x09\x4a\x69\x65\xd2\x07\x50\x53\x1e\xc5\x47\x20\ \x6f\x0a\xaa\x6c\x12\x85\x93\x17\xc0\x77\xeb\xcf\x22\x00\xf3\x08\ \xd3\xa6\x4d\xbb\x23\x09\x39\x6c\xeb\x60\x40\x20\x62\x27\xfd\x58\ \x44\x7e\x23\x46\xb5\x09\x50\x97\xf7\x86\xcf\xc4\x1e\xb0\x95\x3d\ \xb5\xe9\xf0\x49\xd7\x7b\x89\x04\x32\x22\x60\xa7\x4b\x22\x71\x7f\ \x1b\xe3\x48\x02\x54\xb5\xaa\x7c\xf9\xa0\xd1\x5b\xbe\xdf\xf8\x55\ \xe5\x53\x7d\x1c\xda\x46\xfe\xd4\xa6\xa1\x78\x3b\x5a\xfc\xe7\x8c\ \x04\xfc\xcf\x39\x73\xe6\xa4\x62\xbd\x5b\xb6\x84\x9d\x07\x43\x17\ \xb6\x9d\x88\xdd\x3a\x0f\xf8\x92\xc0\xf4\x25\x70\x71\xb6\xa4\xf2\ \x4a\xa9\x05\x9e\x17\x8c\x46\xd2\x32\x02\xac\x5a\xb5\x2a\xbe\xed\ \xc8\x9e\x96\x10\x57\x2f\x25\xc0\x28\xc3\xb6\xd0\xab\x6c\xdb\xb6\ \x6d\x8b\x5d\x49\x60\x02\x5f\xf6\xb1\x86\x3c\x21\x2e\xf3\x54\xb3\ \xf0\xd9\x76\xec\xd8\xb1\xb0\x7d\xfb\xf6\x0d\x5d\x01\x7b\x30\x55\ \x54\x6e\x9d\x4a\x42\x62\x18\xf5\xa8\x2e\x48\xc5\xbf\xd3\x74\x07\ \xb4\x07\xaf\xda\x06\x54\x5d\x1a\x5b\x39\x90\xee\xb1\x24\x6c\x13\ \x7b\x1d\x30\x52\x11\xbe\xf0\x7d\x2b\x91\x80\x11\x01\x6b\x00\xca\ \x3d\xf5\xb1\x0b\x20\x14\x88\x99\xc8\xcb\x0e\x46\x67\x8b\x5b\xca\ \xb0\x6d\x3e\x68\xf4\x1f\x1f\x22\xb8\xca\x81\x2e\x35\x9e\x0b\x1b\ \x43\x1b\x59\x2c\x1f\x46\xea\x39\x6b\xd6\xac\x7b\x18\x09\xb0\xfb\ \xe5\xf6\xa4\x65\xa0\xfa\x60\xc0\x1d\xae\x46\xe7\xd2\xd7\x6b\xbc\ \xc1\x94\x31\x63\xc6\x3c\x11\xa1\x6c\xe5\x2a\x2a\x95\x29\x06\xd5\ \x0a\x61\xbb\xc8\x75\x82\x04\x03\x2e\xb9\xe4\x92\x5f\x10\x09\xa0\ \xd4\x1b\x91\x0b\x74\x2c\x00\xe0\xff\x4a\x34\xa4\xcd\xc2\x95\x00\ \xea\xbb\x1a\x12\x8c\xc0\x21\x8e\x1b\xe2\x22\x81\x4a\x56\x16\x5b\ \x81\x1d\xcf\x77\x34\x41\xe1\x93\xd3\x5a\xc1\x8d\x37\xde\x78\x3d\ \x91\x20\x49\x69\x60\xcc\xdb\x54\x06\xd5\xed\x61\x50\x81\xa9\x92\ \x9d\x3e\x3a\x49\xa7\x70\xa2\x92\x40\x27\xab\x10\x5c\xbb\x27\x49\ \x3b\xc6\x52\x17\x19\x69\xf7\xee\xdd\xf3\xdb\xb6\x6d\x9b\x48\x2c\ \x00\x64\xbb\x5c\x15\x91\xd4\x19\xda\xe4\x1d\x30\xa0\x95\x4e\x65\ \xf3\x07\x35\x68\x70\x48\x9f\x5d\xd5\xba\x76\x99\x7b\x17\x65\x92\ \x45\x54\xd9\xdf\x68\x50\x0d\xfd\xde\x8b\x05\x98\x24\x0b\xa1\x8f\ \x36\x84\xfe\xfa\x25\xe9\xd3\xae\x5d\xbb\x2a\x55\x44\x52\x17\xaa\ \xb6\x21\x06\xc2\xdd\x57\xea\x6c\x46\x53\x60\x6c\xf3\x7e\xd1\xa6\ \x2c\x3e\x8d\x0e\x70\x7a\x27\x9b\x56\xd3\xdf\x92\xc4\xaf\x59\xd4\ \x05\x63\x9d\xa3\x8a\x44\xaa\x8c\x6c\x0b\xd6\xc5\x17\x5f\x7c\x0f\ \xad\x11\x98\x0c\x81\x34\x63\xe6\xcd\x9b\xf7\x33\xdb\x72\x29\x9d\ \x2f\x01\xf2\xdd\xaa\xf1\x28\x99\x49\xe6\x96\xf2\xbe\x8b\xaa\xa5\ \xf0\x7f\x37\x19\x5b\xf6\x7e\xe2\xc4\x89\x0f\xd2\x80\xd6\xd6\x50\ \xb4\xe1\x95\xbe\x53\xe4\x53\x97\xae\xc5\x33\x3d\xd8\xcc\x8a\xfd\ \x84\xd7\x5b\x6d\x2b\x5b\x8b\x4d\x67\x03\xbe\x4b\xd7\xc0\xc0\xc3\ \x77\xfb\x76\x01\xd0\x73\x5c\x0d\xc7\xce\x00\xb8\x92\xc0\xa4\x87\ \x08\x3e\xf7\xfb\x3e\x57\x19\x5b\x4c\x7a\x95\x51\x4c\xc6\x94\xbd\ \xe7\x01\x43\x9f\xff\x2a\x80\xfc\x4e\x14\x43\x51\xd0\x08\x3b\x83\ \xdf\x15\x89\xe0\x22\x9b\x06\xf4\x86\x40\x1b\x3c\x40\xe3\x13\x45\ \xd6\x66\x99\x57\x67\x1c\x17\x23\x8b\x69\xb1\xed\xfb\x08\xc0\x1f\ \x1f\x87\x51\x40\x82\x49\x95\x95\x95\x5b\x6c\xdc\xbb\x4c\x66\x17\ \x02\x10\x19\x20\x73\xe7\x38\xe4\x4e\x7d\x19\x8c\xf9\x26\x03\xc9\ \xde\xeb\xc8\x81\x81\xd9\x67\x00\x2d\xd6\x4f\xcb\xa3\xbc\xf2\xcd\ \x9b\x37\x2f\xd5\xd5\xeb\xa2\x07\xdf\xea\x65\xff\xc7\x94\x7b\x41\ \xea\x01\x8c\x22\x20\x94\xfe\x9f\xc9\x08\x2e\x06\xe5\xd3\x86\x3a\ \xb8\x42\xe7\x28\xa8\x4b\xf0\x91\xcb\xa4\x2b\x7b\x0f\xe0\x73\xdc\ \xf3\xa7\x28\x36\x4e\x6d\x5e\x28\x78\xc4\xd6\x20\xae\xc6\x26\x80\ \x42\x2b\x4e\x75\xc0\xcb\x7c\x62\x2b\x9b\xad\xae\x94\x4e\x20\x00\ \xfd\xfe\x71\x68\x7d\x12\x2d\xbf\x4d\x9b\x36\x2f\xf1\x4a\xba\x18\ \x47\x95\x96\x01\x91\x04\xf8\xcc\x58\xa8\x6b\xea\x88\x11\x23\x9e\ \x16\x07\x71\x3e\xfa\x48\x40\x3f\x8b\x08\x89\x82\x14\xaa\x32\x80\ \xff\x94\x4c\x59\x1f\xa3\x89\x79\x92\x04\x9f\x23\xc1\x48\xdc\xd1\ \xbf\x36\xaa\xfc\x36\x04\x80\xed\x68\x70\xd8\x3c\x2f\xa2\x20\x83\ \x41\xc9\x7a\x1b\x45\x7d\xbc\x03\x2d\xe6\x84\x22\xad\xa9\x5c\xba\ \xb8\xf1\xa3\x8f\x3e\xaa\xb1\x21\x81\xab\xfe\x94\x9e\x80\xe7\x9f\ \xd6\xad\x5b\xff\xcc\x24\x53\xea\xde\x43\x81\x5b\x7c\x94\xa7\x3c\ \x26\xc3\xee\xdc\xb9\x73\x41\xc1\x6e\xd9\xca\x5b\x9a\x8e\x8a\x93\ \x07\xd2\xc9\xea\xab\xbf\x48\x80\xfc\xef\x6f\xa7\x0e\x64\x95\x40\ \x50\x7c\xb1\xa8\x84\xaf\x31\xc4\x7c\xb8\x65\xf4\x2a\x5a\xa4\x4a\ \x8b\x31\x88\x04\xd8\x38\x73\x20\xaa\x7e\x0a\xd0\xcf\xf2\x06\x69\ \xd1\x5b\x27\xc7\x24\x95\x32\x51\x8d\x84\xab\xe4\x6e\x85\xc1\x53\ \x17\x30\xa1\xf3\x15\xd8\x49\xb5\x29\x8a\x7e\xb6\x04\xc8\x8f\x0b\ \x52\xcb\x83\xc1\x26\x45\x70\xcd\xcc\x1d\x37\xe0\x1f\x8c\x75\x86\ \x4f\x6b\x32\x1e\xb6\x78\xd7\xc3\xd0\xbd\xd2\xaa\x39\x2d\x3c\x51\ \xd7\x64\xd2\xc3\x64\x1f\xd3\x7b\x8c\x07\x72\x78\x5e\x4b\xa5\x1d\ \x4c\xc2\x93\xbb\xa4\xe5\x59\xda\x63\x40\xd7\xa8\xca\xd2\xcb\x0c\ \x88\x0b\x19\x1f\x42\xbe\x81\xa9\x54\x9a\x13\x8a\xba\x26\xd2\x51\ \x45\x02\x93\x7d\x6c\xde\xe7\x09\x90\xbe\x7d\x05\x10\xec\x21\x12\ \x4e\xa5\x04\x06\x4b\xa7\x44\x00\xf1\x41\xa9\xe7\x4d\x4a\xe3\xba\ \xb8\x3d\x3e\x2b\x7b\x85\x24\x0b\x91\x00\x3b\x8d\x8e\x98\x74\xb3\ \x7d\xcf\x40\xe7\x7f\x16\x52\x3f\x69\xdd\xbc\x70\x2a\xc5\xc4\x8c\ \x08\xa8\x7c\xa2\x33\x02\x4e\xdb\x1c\x8c\xba\xb2\x57\x28\x43\xd1\ \xba\x04\x3c\xd7\x83\xb6\x20\xeb\xd2\x35\x3b\x02\xc8\x04\xce\xff\ \xad\xf1\x30\x25\x7e\xff\xa5\x4e\x69\xb4\xa0\xf7\xe3\x5a\xd9\x2b\ \x14\x09\xc8\x73\x6d\xdc\xb8\x71\x99\x2d\x09\x34\x76\xa3\x7e\xbf\ \xf1\xc1\x0d\xa6\xca\x6b\x6e\x0b\xa5\x6b\x2b\x3a\xc5\x63\xa3\x80\ \x8d\x31\xd0\x5d\x7c\x8e\x16\x54\x59\x30\x65\x62\xac\x98\x66\x2d\ \xd4\x25\xd8\xe8\x6d\x63\x3f\xec\x77\x78\x31\x95\x83\x61\x7c\x28\ \xa2\xd6\x46\x01\x9b\x34\x50\x70\x5a\x8c\x18\xa4\xa2\xa8\xfc\x8a\ \xe2\xa7\x36\xfa\xab\xd2\x80\x44\xa7\x50\xce\x98\x54\x28\x24\x0a\ \x01\x77\xd7\xa9\xac\xac\xec\xd9\x28\x0a\x52\xde\x42\xc4\xf7\x93\ \x32\x28\x2d\x26\xe1\xd2\x8d\x67\x7c\x6d\x44\x33\xa7\xa4\x64\xf5\ \xaa\x07\x0a\x8e\xc2\x6a\xd9\x5f\x7c\x15\x6c\xc9\xe0\x33\x83\xd2\ \xa0\xf6\x8a\x2b\xae\xb8\xcd\xd5\x46\x27\x4f\x9e\x4c\xe4\x7c\x86\ \x17\xf0\x7c\x26\x80\x38\x1c\xdf\xcb\xb9\xdf\x55\xc1\x6f\x03\xf8\ \xcc\x4e\xd4\x87\xd3\xe7\x75\x6c\x6d\x44\xab\x8f\x85\x5e\xfb\x70\ \x22\x06\x14\x2c\x5b\xb0\x60\xc1\x7a\x5b\x05\x5b\xc4\x25\xcc\x4e\ \x16\x6a\xd5\x8a\x2d\x26\x99\x6c\x04\x8f\xfa\x04\xad\x3e\x3a\x16\ \x5f\xf8\xe4\x14\xf1\xab\xab\xab\x5b\x01\x49\x9a\x4c\x61\x44\x85\ \xb7\x6f\xdf\xbe\xb0\x45\x5c\xc2\xec\x69\x72\xf2\x7c\xd8\x81\x7c\ \x50\x46\x04\x4c\x85\xdf\xc3\xfb\x11\x9e\x45\x17\x3e\x1b\x84\xef\ \xfa\xf8\xe3\x8f\x7f\x5f\x45\x82\xad\x5b\xb7\xd6\x22\x4d\x51\xe1\ \x25\x2d\xac\x04\x14\xef\x58\xbb\x76\xed\x2a\x9e\x04\xf8\x56\xc2\ \x06\xd8\xa6\xf9\x7e\x98\x82\xeb\xef\xe8\x4b\x59\xd5\x88\x8a\xd1\ \x16\xeb\x63\x88\x17\x7c\x80\x2b\xeb\xe9\xd4\x0e\xad\x0b\x14\x17\ \xd6\xf4\xe9\xa9\x9d\x0e\xe3\xe6\x6d\x42\x76\xa1\xa7\x65\x1d\x1f\ \x83\x42\xe5\x14\xdc\xa1\xa7\xb9\xc5\xf6\xd3\x43\x93\x4c\x92\xcc\ \x02\x99\x05\x32\x0b\x64\x16\xc8\x2c\x90\x59\x20\xb3\x40\x66\x81\ \xcc\x02\x99\x05\x32\x0b\x98\x2c\xf0\x7f\x40\x1b\xb1\x66\xbb\xa3\ \x65\x88\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x13\x11\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x12\x97\x49\x44\x41\x54\x78\x5e\xed\x5d\x5b\xa8\x9d\ \x47\x15\xce\xad\xb9\xb6\x69\x2e\xcd\xed\xe4\x7e\x6b\x48\x6d\x63\ \x42\xd3\x98\x5b\x13\x0a\x9a\x92\x86\x26\x4d\x53\xd4\x34\x85\x60\ \x7d\x91\xd0\x88\x54\x8b\x04\x14\xf4\xa1\x41\x31\x22\x62\x21\x8d\ \xa9\x35\xa8\x18\x28\x6a\x49\x03\x21\x12\x0b\x6a\xd4\xbc\x28\x09\ \xa8\x95\x96\x16\xb4\x98\xd3\xc6\x94\x40\xff\x87\x16\xf2\x90\xb8\ \xd6\x71\xaf\x93\x95\xd5\xb5\x66\xd6\xcc\xff\xef\xbd\xcf\x39\xce\ \x81\x61\xef\xb3\xf7\xcc\x3f\x33\xeb\xfb\xd6\x65\xae\x7b\xd8\xb0\ \xf2\x57\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\ \x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\ \x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\ \x24\x50\x24\x50\x24\x50\x24\x50\x24\x50\x24\xd0\x7d\x09\x4c\x9a\ \x34\x69\xdf\xed\xb7\xdf\xfe\x0e\xa4\x0a\xde\xf7\xa7\xc9\x93\x27\ \x57\x3c\x4d\x99\x32\xa5\x92\xe9\x8e\x3b\xee\xa8\xbc\x49\x2b\x2f\ \xeb\xe0\xf5\x63\x7b\x20\xfd\x7c\xea\xd4\xa9\x3d\xdd\x97\xd2\x10\ \x6c\xc1\xc4\x89\x13\x3f\x6d\x81\x1e\x03\x7a\xda\xb4\x69\x55\x6e\ \x92\x84\x91\x75\x11\x29\x38\x19\xe0\xfd\xa5\x21\x08\x41\xf7\xba\ \x84\x9a\x45\x02\xb6\xb4\x9c\x03\x25\xc1\x9e\x3e\x7d\x7a\x95\x9b\ \xe4\xb3\x2c\x42\xf0\x76\x51\x5b\xbb\x27\xb1\x21\x54\x33\x08\x73\ \x1b\x0a\x94\x04\x4c\x1a\x68\x01\xce\x81\x9e\x31\x63\x46\x65\xa5\ \x99\x33\x67\x56\x5a\xb2\xf2\x4b\x02\x11\x31\x78\x3b\xa8\x6d\x9c\ \x0c\x43\x08\x8a\xee\x74\xc5\x02\x9e\x6b\xa6\x05\xba\x06\xf0\xac\ \x59\xb3\xaa\x58\xf2\x10\x83\xd7\x29\xc9\x20\xdc\xc4\x77\xba\x23\ \xb9\x21\x50\x2b\x68\xfe\xe3\x52\xe3\x49\xd8\x04\x00\xd7\x58\x0e\ \x9c\x04\xb9\xa7\xa7\xa7\xca\x49\xf2\x39\xbc\x0e\xaa\x3b\x46\x86\ \x21\x00\x45\x77\xba\x00\x11\xf5\x25\x32\xb1\x08\x7c\x08\x74\x02\ \x4a\x82\x3c\x7b\xf6\xec\x4a\xa6\x39\x73\xe6\x54\x56\xd2\xf2\xe3\ \x67\xfc\xb9\x9c\x14\x44\x08\x4e\x44\x6a\x27\x91\x75\xfe\xfc\xf9\ \x63\xbb\x23\xc1\x41\x5e\x2b\x82\x6f\x69\x3c\x09\x5e\x03\x9e\x83\ \x68\x01\x3d\x77\xee\xdc\x4a\x4b\x1e\x62\x68\x64\x90\x44\xe0\x24\ \x80\xef\x9e\x18\xe4\x50\x74\xa7\xf9\x1c\x7c\xd2\x30\x0b\xf8\x10\ \xe8\x16\xd8\xde\xcf\x25\x29\x78\x5d\x44\x06\x22\xa2\x46\x84\x95\ \x2b\x57\x7e\xb9\x3b\x12\x1c\xe4\xb5\xa2\x16\x85\x80\xd7\x40\x8f\ \x81\x3a\x6f\xde\xbc\xca\x93\x62\xcf\x21\x52\x78\xc8\xb0\x7a\xf5\ \xea\x67\x06\x39\x14\xdd\x69\xbe\x06\x3e\x69\x1c\x09\x9e\x6b\xa7\ \x06\x9a\x06\x36\xf8\xe4\x2a\x94\xb4\x32\x1e\x97\x41\x6d\xe2\x56\ \x01\x2d\xc2\x9a\x35\x6b\x0a\x01\x72\x28\xc4\xcd\xbd\x05\x7c\x08\ \x74\x0d\xe4\x05\x0b\x16\x54\xde\x24\xcb\x73\x62\x84\xe2\x07\x49\ \x84\x42\x80\x1c\xf4\xa1\x0c\x12\x00\x7d\xab\x17\x7c\x0e\x90\x04\ \xcf\x0b\xba\x96\x2f\x85\x08\xdc\x22\xd1\xe8\x61\xed\xda\xb5\xc5\ \x02\xe4\x70\x80\xc0\x97\xe6\x5e\x6a\x1f\x01\xcf\x81\xe2\x40\x2e\ \x5c\xb8\xb0\xb2\xd2\xa2\x45\x8b\x2a\x4a\x56\x1e\x49\x0a\x5e\x0f\ \xd5\x1d\xb2\x08\x1b\x37\x6e\xdc\x9f\xd3\xff\x01\x5f\x06\xa2\xf4\ \x5b\xe1\xef\xc0\x6d\xb7\xdd\xf6\x4b\x48\x7f\x83\x05\x9b\x5e\x4c\ \x30\x77\x7f\x53\x82\x09\x9d\x5e\x98\xd1\xeb\x4b\x30\xb1\xd3\x97\ \x60\x8c\xdf\x0b\xe5\xfb\x12\x04\x7b\xbd\xe0\xef\xfb\x12\x68\x7d\ \x2f\x00\xdf\x97\x50\xf3\xeb\x80\xef\x01\x9d\x13\x20\x95\x0c\x44\ \x84\x90\x6b\x40\x8b\x00\xe4\xb8\x0c\x7d\xc1\xfe\xf4\xf7\x0d\xfb\ \x87\x7d\xc5\x44\x7d\x47\x39\x60\x22\xb9\xa0\x8c\x48\x5e\x24\x3f\ \x94\x65\x4b\xbe\x7f\x85\xd7\x67\xe1\xff\xbd\x1d\x27\xca\x84\x09\ \x13\x4e\x42\xaa\x30\x01\x01\xfa\x12\x10\xa0\x02\xf0\xfb\x52\x6b\ \x69\xf4\xa6\xa5\x5a\x6d\x46\x8f\x4f\xec\x68\xc3\x3b\x04\x9f\x4c\ \x6a\x4c\xeb\x2d\x8d\xd7\x00\x5e\xbc\x78\x71\x15\x4b\x5a\x39\x49\ \x28\xaa\xd3\x63\x11\xe4\xa8\x01\xc9\x2d\x27\x94\xe4\xcc\x22\x0e\ \x83\x69\x22\x4c\xae\x33\xe0\xfa\x08\xc9\x99\xe4\x0e\xaf\x8f\xb7\ \x95\x0c\x00\xf8\xaf\xc6\x8f\x1f\xdf\x07\xbc\x05\x3e\x11\x40\xae\ \xde\x61\x07\x42\xb3\x7a\xe4\xef\x3d\x66\x5f\x9a\xfc\xa6\xc1\x27\ \x72\xc4\x48\x60\xb9\x06\xcb\x2d\x68\x24\xe0\x44\x40\x19\xd4\x25\ \x01\x2a\x22\x60\xb4\xaa\x71\x22\x20\xf0\x16\xf8\x52\xfb\x63\xe0\ \xd3\xb4\x2e\x1f\xe6\xf1\x19\xbd\x54\xb3\x4f\x40\x48\x0d\xe5\x00\ \xc6\x34\x3e\xf4\xbd\x24\x82\x65\x09\xb0\x1d\xd2\x2d\x48\xcb\x95\ \x4b\x02\xb2\x06\x1e\x4b\x80\x78\x80\x55\xfe\x69\x63\x24\xe0\xe0\ \x73\x93\x9f\x62\xf6\xb5\x29\x5d\xcb\xec\x93\xe9\xf7\x9a\x7d\x0e\ \x88\x07\xf4\x25\x4b\x96\x54\x9e\x64\x91\x22\x14\x2b\x58\x6e\xa1\ \x9d\x44\x20\x85\x43\x97\x40\xee\x00\xb1\x81\xf4\xdb\xda\x24\xf0\ \x68\x7e\x8e\xcf\x47\xed\xaf\x63\xf6\x51\xd3\x34\xcd\xef\x34\x01\ \xb0\x3e\x4e\x40\xee\x16\xbc\x41\xa2\x36\x81\x84\x16\xd1\x72\x09\ \x9a\x35\x90\x24\x68\x11\x00\x2d\xc1\xcf\xb2\x49\xd0\x49\xf0\x29\ \xe2\x6f\x32\xe8\xb3\x34\xd8\xa3\xfd\x98\x27\xd7\x2d\xe4\x90\x00\ \xfb\xcd\x89\xa0\xad\x2d\xf0\x05\x26\x2d\x38\xb4\x48\x00\x56\x61\ \x49\x32\x09\x20\xc8\x7b\x80\x7c\xbe\xc7\xec\x87\x36\x6e\x78\xa2\ \x7d\x2b\xe2\xd7\x26\x77\x72\x34\xdf\x0b\x7a\x28\x9f\xc7\x25\x58\ \x16\xc1\x6b\x0d\xea\x10\x01\x31\xb0\x48\x90\x4c\x00\x19\xf0\x91\ \x49\xd1\x86\x7a\x1a\xf8\x5e\x9f\xdf\x29\xcd\xef\x24\x01\x38\x09\ \x34\x6b\x80\x64\xf0\x8c\x14\x42\x2b\x8d\xd2\x1a\xf0\xe0\x50\x23\ \x01\xe0\xf6\xa0\x9b\x04\xa0\xfd\xd3\x35\xed\x0f\x8d\xf3\x91\x04\ \x72\xa8\xa7\x45\xfb\x29\xd3\xbb\x21\xed\x97\x56\x40\x46\xea\x75\ \xcd\xbf\x24\x4c\x8a\x3b\x68\x22\x2e\x08\x59\x02\x3e\x54\xe4\xdb\ \xd1\x50\xfe\x7c\x97\x32\x9f\x27\x40\x05\x76\x13\x00\x4c\xfe\x69\ \xcf\x24\x8f\x57\xf3\xb5\x80\x4f\xce\xf2\xc5\x22\x7e\x1e\xf4\x21\ \xf8\x29\x91\x7f\x13\xda\x5f\x87\x10\xd4\xd6\x1c\x6b\x10\x0b\x10\ \xad\xb8\x80\xdc\x01\x27\x81\x9b\x00\x7c\xa2\x47\x33\xfd\x10\x80\ \xbc\x7b\xed\xda\xb5\xfb\x9b\x4a\x20\x98\xde\x3a\x04\x40\x01\x7b\ \x2c\x40\x53\x44\xe8\xb4\x35\xf0\x04\x87\x31\x4b\xd0\xb2\xde\x7b\ \x5c\x24\x88\x69\x3f\xee\xd5\x73\x3d\xc8\x99\x09\x4c\xfd\x3b\xa9\ \x04\x90\x56\x40\x23\x01\x92\xc2\x33\x01\x64\x11\xc3\x53\x96\xe7\ \xf1\xae\x2b\x34\x35\x85\x2c\x87\x89\x72\xea\x98\x5b\x01\x24\x00\ \x58\x8b\x57\x5d\x90\x10\x01\xac\x89\x1e\xb0\x00\x8d\x12\x00\x04\ \xf2\x2e\x27\x40\x6c\x75\xcf\x03\x7e\x08\xbc\x3a\x96\x20\x85\x14\ \xde\xa9\x64\xef\x5a\x82\x65\x09\x64\x4c\x80\x43\x44\x19\x14\xa2\ \x2b\x00\x42\xfc\xdb\x45\x00\x6b\x81\x87\xa2\xcb\x6e\x10\x40\xc6\ \x00\x1e\x12\x78\x26\x85\x52\x00\xf5\xe6\xb5\x2c\x41\x4a\x70\x18\ \x9a\x39\xd4\x46\x07\x48\x02\x8c\x07\x34\x57\x40\x0b\x47\x80\x9b\ \x9f\x00\xdc\xf7\xcb\x99\xbe\x4e\x11\x00\x2d\x81\x67\x57\x4f\xee\ \xb2\xaf\x17\xd0\x58\xbe\x10\xe0\x9e\x69\x63\xbe\x86\x60\x0d\x11\ \x43\xab\x89\xe4\x0a\xb4\xa1\x21\x9f\x1b\x00\x72\xe4\x13\x80\x2f\ \xf0\xb4\x9b\x00\xc8\x7e\xb9\x2f\xcf\xbb\xc3\x27\xb4\xf9\xc3\x8a\ \x13\xbc\x00\xd6\xc9\xa7\xb5\x2b\x67\xc6\xd0\xda\x77\xc8\x49\x60\ \xc5\x02\x6e\x02\x58\xda\x4f\xc3\x3e\x78\x50\x47\x62\x00\xaf\x05\ \xb0\x56\x03\xa5\xd0\xef\xbc\xf3\xce\x4b\xdb\xb6\x6d\x7b\x61\xef\ \xde\xbd\x07\x4f\x9f\x3e\xfd\xc8\x6b\xaf\xbd\xb6\x05\xd3\x99\x33\ \x67\x76\x1c\x3d\x7a\xf4\x89\xed\xdb\xb7\x3f\x0f\x3b\x78\xcf\x2e\ \x5d\xba\xf4\x4a\x1d\xb0\x63\x65\xeb\xae\x26\x5a\x24\xb0\x62\x01\ \xc2\x0d\x2c\x84\xcf\x02\x74\x9b\x00\x1e\x0b\xe0\xb5\x08\x3b\x77\ \xee\xfc\xc1\x07\x1f\x7c\xb0\xb9\x35\x64\x5d\x7f\xfd\xfa\xf5\x05\ \xf0\x7e\x16\xa4\x31\xf0\x7e\x24\xa4\x51\xad\xf7\xe3\xe1\xfd\x3c\ \x78\xbf\x02\xd2\x06\xcc\xff\xf2\xcb\x2f\xef\x82\x3d\xfd\x7f\xd6\ \xb4\x37\x06\x72\x2c\x00\xac\x33\x37\x40\x93\x44\x72\xf7\xf1\x90\ \x22\x00\x05\x41\xd6\x1e\xfe\xd0\xb6\xee\x65\xcb\x96\xbd\x75\xe1\ \xc2\x85\x07\x5b\xa0\xcf\x05\x60\x87\xbb\xa2\x5f\x91\x09\xca\x8d\ \x85\x67\x7c\x1c\x9f\xb3\x67\xcf\x9e\x6f\xc7\xdc\x4b\xea\xf7\x39\ \x7b\x0d\x79\x2c\x20\x09\xa0\xb9\x01\x3e\x1a\xc8\xb6\x00\x72\x83\ \x47\xd3\x2e\x00\xc0\xbc\x69\x18\xe8\xdd\xdf\x2f\xc9\x01\x02\xbd\ \xdc\x02\x7d\x0d\x6a\x76\x0e\xe8\x56\x19\x78\x6e\x0f\x3e\x1b\xdc\ \xc7\xb3\x12\xb8\x54\xe0\x31\xbf\x07\x7c\xec\x9f\x77\x34\xc0\x4f\ \x24\xd1\x68\x80\xaf\x18\xa2\x1b\x48\x22\x80\xdc\xdb\xc7\xa7\x7d\ \x9b\x26\x80\x9c\x07\xb0\x26\x85\x42\x27\x7a\x9e\x86\x3f\x34\xdd\ \x4d\x82\xae\x3d\x0b\x88\x35\x13\x89\xb0\x7c\xf9\xf2\x7f\x78\x63\ \x8f\x10\x41\xac\xe9\xe1\x9c\x05\x23\x6b\x62\x88\xd6\x08\x06\x2c\ \x01\xd0\x02\xb4\x76\xcf\xaa\x07\x36\x63\xc7\xb4\x5a\x5a\x3f\xa5\ \xdd\xe0\xf3\xe7\x43\x9d\xab\xc1\x2d\x1c\x94\x9a\x1c\xb2\x0e\xa1\ \xbc\xa9\x67\x0f\x72\x02\xc1\xc6\x08\x00\xa6\xe5\x0a\xa4\x83\x90\ \x0e\x81\x35\xb8\x29\x41\x20\x72\x48\x26\xd8\xdc\x70\x48\x26\xe8\ \xc0\x21\x4c\xe0\xc7\x0e\x02\xf8\x57\x62\x47\xbc\x34\x12\x40\xa0\ \xf5\x36\x82\xdf\x49\xe0\x05\x09\x66\x1d\x3b\x76\x6c\xb7\x37\x20\ \xb5\x08\x90\x0a\x7e\x6c\xa5\xd0\x9a\x0f\x68\x8c\x00\xd6\xb2\xaf\ \x76\x98\x93\x6f\xfb\xd2\x4e\xf9\x68\x67\xfc\x3c\x64\xb8\xeb\xae\ \xbb\xfe\x02\xe0\x7f\xa2\x5b\xe0\x53\xbd\xd0\x86\x71\x57\xaf\x5e\ \xdd\xa4\x4d\x5f\xc7\xce\x20\x86\x80\xd7\xfc\x3f\x2a\x41\x9d\x09\ \xa1\x2c\x02\xf0\x00\xd0\x7b\x5b\x87\x75\x53\x07\x3f\x57\x5f\xe7\ \x0c\x3f\x08\xe7\x12\xf8\xe2\x95\xdd\x06\x9f\xd7\xff\xc6\x1b\x6f\ \x7c\xca\x9a\xb7\x20\xa0\x43\xfe\x5e\xdb\x31\x14\x0a\x02\xad\xa1\ \xa0\x35\x12\xc0\x18\x0e\x2c\xb3\x6f\x1e\x80\x6f\xfc\xc8\x21\x00\ \xad\xff\xcb\x5d\xbf\xdc\x02\xf0\xfd\x00\x1e\x32\x70\xab\x00\x5a\ \xb7\x7e\x20\x81\x8f\x6d\xc1\x39\x85\x03\x07\x0e\xec\x8f\xcd\x60\ \x5a\x56\xc1\x7b\x22\xd9\x63\x01\xf8\xba\x00\x2d\x0c\xb5\x95\x00\ \xda\xf5\x2d\xf2\xa2\x25\x7e\x0a\xc6\x73\x8d\x8b\x75\x55\x4b\x37\ \x7d\x7e\x8c\x74\x40\x82\x49\x30\x71\xf4\xfb\xd8\x1c\x46\x68\x34\ \x13\x0a\x78\x43\x67\x0a\xe4\x30\x90\x0f\x05\x93\x47\x01\x31\x0b\ \x10\x8a\x01\xac\x38\xc0\x8a\x05\xbc\x64\xc0\x7c\x4f\x3e\xf9\xe4\ \xd7\x62\x20\x74\xfb\x7b\x20\xe8\x3d\xb1\x51\x4b\xe8\x40\x69\xec\ \x1e\x82\xd0\x0e\x21\x69\xfe\xf9\xf6\xf1\xec\x79\x00\xed\x94\x8f\ \x46\x80\xd8\x25\x4e\x9a\x3b\xb0\x2e\x76\xb2\x6e\xf3\x02\xe1\x4e\ \x6f\x0a\x60\x08\x22\x47\x83\xa9\x9c\x0e\xed\x9e\x09\xfd\x99\xd8\ \xd4\x73\xf1\x39\x27\x4e\x9c\x78\x34\x46\x02\xef\xf7\xf2\xb8\x79\ \x6c\x31\x48\x9a\x7f\xee\x02\xdc\x41\xa0\xb4\x00\x29\x77\xf5\x59\ \xd7\xb6\x49\x0b\x90\x0a\xfe\xe5\xcb\x97\x1f\xa8\x0b\x12\xb4\x61\ \x73\xeb\xe4\x71\xe8\xae\xc0\xc3\x75\xeb\xc1\x29\x64\x98\xfc\x79\ \xdb\x0b\x72\x2c\x9f\x46\x82\xd8\x8e\x61\x6d\x5f\x40\x36\x01\xe8\ \xa6\xce\xd0\x2d\x9d\xfc\xae\xbc\x54\x12\xc8\xf8\x40\xb9\xe3\xef\ \x0a\x08\x75\x44\x2e\x30\xd0\xb6\x7b\x64\x4c\xe2\xf8\xff\x64\x6e\ \x7d\x58\xee\xe2\xc5\x8b\x1b\x3d\xc3\xd9\x98\xc9\x4f\xb9\x8b\x88\ \xb4\x5f\xfa\xff\xc6\x62\x00\xda\xfa\x1d\x73\x01\x3c\x0e\x90\xf7\ \xfc\x58\x43\xc4\xd0\xed\x9d\x27\x4f\x9e\xdc\x9e\x0b\x06\x68\xc2\ \x71\x4e\x4e\xad\x6d\xd6\xf5\xb0\xf8\x39\xd4\x9b\xbb\x90\x34\x02\ \xcc\xf5\xfb\xfc\xc0\x8b\x75\x05\x5d\xe8\x73\x19\x0c\x7b\x6e\x25\ \xb3\x36\x88\xba\x2d\x00\xed\x05\xe4\x3b\x81\x9a\xba\xab\xd7\xa1\ \x79\x1f\xb9\xc3\x17\x97\x6b\x73\x08\x00\x82\x38\x23\xc1\xcf\xf9\ \x1f\x00\x1a\x97\x53\xff\x53\x4f\x3d\xf5\x4c\xea\x70\x57\x1b\xfd\ \xc8\x98\x28\x74\x25\x9d\xb5\x10\x84\x56\x3c\x69\x43\x88\x75\xd1\ \x43\xcc\x0a\xf0\x60\x90\x1f\x09\xb3\xb4\x4c\x23\x04\xcf\xbb\x6a\ \xd5\xaa\x2c\x53\x0c\xc1\xcf\x8b\xa4\x09\x4d\xbc\xe6\x10\x00\x88\ \x3b\xd5\x3b\xca\x49\x01\x9e\x0e\x8e\xa6\x1e\x1e\x75\x13\xc0\x1a\ \x06\x6a\xe0\xf3\xdb\x3c\x53\xc0\x8f\x59\x02\x22\xc1\xd9\xb3\x67\ \xef\x4d\x15\x3e\x58\xae\x49\x7c\x5b\x54\xec\x47\x22\xbc\x04\x49\ \x6d\x07\xe6\x07\x02\xbc\x6f\xcd\x80\x5a\x73\x1d\x32\xd2\x97\x66\ \x9f\x13\x40\x5b\x01\xb4\x4e\x0f\xbb\x09\xa0\xb9\x80\xdc\x2b\xdb\ \x3d\x56\x20\xe4\x83\x73\xd6\xf5\x63\x80\xe7\x7e\x0f\xe7\x21\x56\ \xa7\x92\xe0\xa1\x87\x1e\x7a\x2e\x34\x09\x66\x0d\x79\x35\xd0\x2d\ \xe0\xb5\x1d\xc1\x7c\xf8\x47\x43\xf9\x64\x02\x84\xae\x7b\x89\xdd\ \xdb\xaf\x59\x83\x0c\xff\x7b\x25\x55\xe0\xa0\x11\xd3\xb4\x9f\x7b\ \xa9\xfb\x19\x91\x26\xb5\x3d\xaf\xbf\xfe\xfa\xa2\xd0\x1c\x48\x28\ \xf8\xd5\x2e\xa5\xe6\x1a\x2f\xa3\x7e\xb9\x19\x94\xa2\x7f\xda\x16\ \x9e\x44\x00\xaf\x15\xe0\x23\x02\x7e\x07\x90\x34\xab\xa9\xe0\x63\ \x79\xd8\xda\xf5\x87\x54\x81\x83\x96\x9e\x95\xbf\xed\x53\xe7\x7f\ \x49\x9c\xd4\xf6\xe0\xf0\x55\xae\x8d\xc4\x46\x42\x96\x7b\xe4\x96\ \x92\xcb\x93\x47\xfd\xda\xa1\x90\xe4\x73\x01\xa1\xa3\xe0\xdc\x15\ \xf0\x98\xc0\x4b\x04\xaf\xbf\xc5\x7c\xeb\xd7\xaf\xff\x5e\xaa\xc0\ \xb5\x9f\x6e\x11\xbf\xe7\x73\xd3\x8f\x4d\x69\xdf\x45\x08\xf3\x85\ \xd4\x36\x79\x87\xc5\xb1\x80\x98\x6b\x3c\x5f\xf3\xb7\x34\x5f\x1e\ \x10\x75\x1f\x0c\x09\x1d\x0a\xe1\xc2\xe1\xda\xa1\xf9\xd5\x14\xb0\ \xb5\xbc\xeb\xd6\xad\xfb\x6a\xaa\xb0\xf9\x41\x88\x54\xe0\x79\x7e\ \x8b\x04\x30\x8f\x7f\x3c\xb5\x4d\x4d\x12\x40\x92\x20\xa4\xfd\xd9\ \x04\xf0\xdc\xfb\x27\xe7\x05\xb4\x98\xc0\xfa\x5d\x9f\x10\x31\x78\ \x99\xad\x5b\xb7\xee\x4a\x14\xf6\x28\x0d\x74\x9a\xcf\x88\xbd\x7a\ \x08\x93\x73\x30\xb6\xce\x44\x94\xbc\x36\x4e\x6a\xbe\x57\xfb\x31\ \x9e\x83\xb6\xfb\xf6\x03\x10\x01\x42\xb7\x80\x85\x5c\x41\x8c\x0c\ \x9e\x28\x1c\x9f\xb1\x69\xd3\xa6\xa4\xf9\xff\x15\x2b\x56\x4c\x88\ \x81\x9c\xfb\x3d\x91\x03\x84\xf8\x9f\x44\x52\x0e\xe3\x84\x4f\x8d\ \x85\x34\x5f\x2f\xb5\x5e\xfa\x7d\xed\xaa\x98\x64\x02\xe4\x90\x40\ \xc6\x04\x75\x23\x6f\x38\xc9\xf3\xf9\x14\x61\xe3\xa6\x0c\x7e\x55\ \x1a\xbb\x41\xb3\xff\xfa\xb4\x94\xcf\x34\xb2\xc0\xac\xe0\x85\x94\ \x36\x61\xde\x50\x70\x9c\xea\x26\xa5\xf2\x70\x19\xf3\xdb\x41\x28\ \xf0\xe3\xd7\xc6\xb9\x2d\x80\xbc\x1f\x40\xb3\x04\xb1\x5f\xee\xb4\ \x5c\x44\x8c\x14\xdc\xf7\xc2\x28\xe0\x1b\xa9\xc2\x0e\x01\x4c\xb1\ \x8d\xf6\xea\x25\x06\x1c\x1d\x4b\x5e\x2d\xd4\x02\xe4\x98\x7b\x0c\ \x59\x49\x29\x43\x09\xbc\x06\x3e\xf6\xd9\x7d\x3c\xdc\x43\x00\xe9\ \x2f\xad\xa0\x29\x06\xb8\xf6\x3d\x3d\x0b\x4e\xe5\xfe\x28\x95\x00\ \x50\xf6\xb2\x06\x66\x08\x7c\x39\xea\x09\x91\xe1\xcd\x37\xdf\x5c\ \x9a\xda\x26\x8f\x4b\x94\x96\x60\xc0\x12\x80\xaf\x11\x48\x2b\x20\ \x37\x8f\xd4\x19\x7f\xb7\xdc\xc9\x7b\xa9\xc2\xde\xb7\x6f\xdf\x17\ \x3d\x60\xa7\xe6\x21\x52\x64\x2c\x4b\x8f\xb1\x94\xc0\x13\x0b\x71\ \xff\xae\x99\x7b\xcd\xec\x2b\x37\x86\xf6\x5d\xe8\x9d\x64\x01\x34\ \x2b\xc0\x5d\x81\x24\x82\x45\x06\x2f\x29\xac\x08\x3c\x95\x00\x00\ \xd0\x64\x0e\x2e\x5d\x76\x91\xfa\xaa\x11\x04\x7e\xf8\xe1\xc7\xa9\ \xed\x01\xd0\x1e\x95\x8a\x50\xc7\x2a\x5a\xf3\x1c\x3c\x5e\x11\xd7\ \xc5\xf6\xdf\xe8\x0e\x32\xf6\x8d\x02\xb4\x4b\xa1\xb5\xa0\x50\x5e\ \x1b\xc7\x1b\xe1\x19\x52\x59\x79\xf8\x73\x52\x05\x8e\xf9\xe1\x98\ \xf7\xc1\x54\xc0\x3d\xf9\x61\x75\x6f\x61\x6a\x7b\x40\x83\xcf\x7b\ \xe6\x17\x3c\xd6\x32\x36\xc4\xe5\xae\x8b\x5d\x15\xdb\x47\x00\x54\ \xe8\x5a\x04\xe0\x1a\xc1\x2b\xb2\x86\x55\x4d\x11\x00\x9e\xff\xa5\ \x54\xa1\xe3\xf1\x6f\x0f\xa0\x29\x79\x0e\x1f\x3e\xbc\x3b\xb5\x1d\ \x98\xdf\x1b\x2b\x0d\x38\x02\xc4\xac\x80\x74\x07\x9a\x4b\xc8\x1d\ \x73\xcb\x1f\x42\xc8\x11\x3c\x6e\x1f\xa7\xeb\xee\xea\xbc\x22\x49\ \x36\x6c\xd8\xf0\x43\x3c\x01\x94\xda\x0e\x18\x76\xf5\x34\x65\x15\ \x39\x91\xa4\x5c\x35\xcd\x6f\x5d\x19\xdf\xaf\xfd\x28\x03\x28\xe7\ \x73\x01\xe3\xc6\x8d\xeb\xfb\x6d\x00\x0f\x09\x62\x11\x74\x0a\x09\ \xac\xe8\x3b\x55\xf0\x94\xbf\x09\x12\x6c\xde\xbc\xf9\x39\x78\xce\ \xfc\x9c\x36\x40\xdf\xff\x18\x72\x93\xf2\xee\x25\x69\x2d\x42\xb2\ \x93\xb2\xb2\xe2\x1e\x22\x3f\x62\x99\x44\x00\x8d\x04\x3c\x30\x94\ \x17\x48\x5b\x2e\xc2\x3b\xbe\x0e\x75\x08\x9e\xfd\xeb\x1c\x00\xb0\ \x0c\x92\x00\x76\xe8\xbe\x4a\x84\x4e\x79\x3d\x72\xe4\xc8\x67\xa1\ \xfc\xdc\xdc\xba\x35\x2b\xe9\x21\x84\x06\xbc\x25\xc7\x18\xf0\x88\ \x19\xf5\x19\x9e\xe1\xb7\x00\xb9\x04\xc8\x05\x3c\x42\x00\xff\x3d\ \xb7\x0a\x5a\x00\xe2\xc7\x90\x08\x30\xd6\xfe\xbb\x87\x00\xb0\x06\ \xf1\xad\xd6\x91\xf3\x64\xb3\x4f\xd5\x43\x7f\x7e\x32\x10\x08\xc0\ \xfb\x9b\x4c\x00\x4e\x02\xee\x0e\x34\x4b\xc0\x47\x09\xb1\x31\x36\ \x82\x1d\xcb\x23\xa3\x58\x78\xfe\x9f\x72\x35\x91\xca\xc1\x10\xf1\ \x5e\x04\xf6\x95\x57\x5e\x79\x04\x7e\xca\xed\x79\x58\x3b\x78\xe9\ \xee\xbb\xef\xfe\xc5\x7d\xf7\xdd\xf7\xe2\xae\x5d\xbb\xbe\x89\x67\ \x0f\x5a\xc0\xf7\xd4\xad\xcb\x92\x47\x5d\x05\xd1\xe4\xc6\x83\x59\ \x1e\xef\x10\xf8\x88\x23\xa6\x2c\x02\x84\x48\x20\x7f\x3c\x4a\x46\ \xd5\x5e\x90\x3d\xe3\x76\xac\x0b\x40\x69\xe4\x67\xd8\x71\x97\x71\ \xeb\x42\xa8\x25\xf0\x7e\x29\x0e\xef\x20\xcd\xc8\xbd\x4b\x48\x92\ \x05\xe4\xd0\xdb\x84\x2c\x2c\xf9\x69\xa3\x17\x0d\x78\x24\x00\x81\ \x9f\x44\x80\xb1\x63\xc7\xde\x54\x90\x1e\x22\xcd\xa7\x16\x5d\xa7\ \x0c\xad\x42\x79\xad\xc8\xbd\xae\x66\xb6\xbb\x3c\xc8\x68\x8b\x6c\ \x7b\x53\x32\xb1\x34\x9d\x07\x7a\x52\xeb\x39\x01\x80\x50\xbe\x18\ \x60\x20\x10\x80\x26\x2f\x14\x22\xd4\x76\x05\xed\x24\x41\x3b\x95\ \xa2\xa3\x04\xb0\x48\x20\x5d\x82\x1c\x2e\xd6\x19\x73\x6b\x65\x8d\ \xa0\xed\x2b\xed\x04\x31\xf7\xd9\x1e\x0b\xc9\xfb\xe8\xb1\x0c\x31\ \x79\xca\x3a\xb9\xc6\xf3\xf7\x88\xa7\xdb\x02\x8c\x19\x33\xa6\xc2\ \x02\x94\xac\x87\x5a\x64\xe0\x8d\x8a\x75\xc0\xf2\x5d\x8e\x8e\x3d\ \x9c\x0b\x54\x3b\xca\x49\x19\x59\xa3\x8d\x14\x79\xd4\x90\x4d\xbf\ \x0b\xe7\x38\x02\xe1\x7c\x2e\x20\x85\x00\x31\x12\xa4\x74\x38\x36\ \x44\x53\x84\xfc\xb9\x76\x80\x99\xfa\x4c\x4d\x41\x06\x3d\x01\x24\ \x09\x42\x2e\x21\x45\x00\x31\x90\x43\x41\x8c\x61\x89\x92\x57\xe8\ \x52\x01\x0e\xe5\x0f\x59\x47\xfe\x9d\xb7\xdf\xb1\x7c\xde\xfa\xb8\ \xe6\x23\x96\x98\xdc\x16\x60\xf4\xe8\xd1\x7d\x05\x28\xf1\x87\xa5\ \x12\xc1\xdb\xe0\x9c\x7c\xbc\x5d\x4d\x82\xea\x79\x16\xb4\x77\x97\ \xc7\x45\xe6\xf4\x2b\xb7\x8c\xc4\x89\x63\x88\xef\xc1\x1a\xfb\x5c\ \x40\x8c\x00\x03\x85\x04\x4a\x87\xf7\x7b\xc0\xab\x9b\x07\x84\x79\ \xc9\x1b\x23\xe5\x82\x99\x53\xae\x51\x02\x20\x09\x24\x11\x34\xb7\ \xd0\x29\x2d\x90\x9d\x0b\x75\xf6\x96\x5b\x6e\xf9\x4c\x5d\x90\xb5\ \xf2\xd0\xff\x53\x96\x55\xec\x86\x95\xd4\x64\x22\xb5\x1e\xff\x27\ \x2c\xdd\x16\x00\x04\xd8\x5f\xc8\x22\x82\x57\x10\x5a\x23\x89\xdd\ \x31\x50\xad\xef\xb5\x4e\x1a\x9f\x1d\x02\x20\xb3\x2e\x78\x20\x02\ \x40\x5b\xd7\x82\x0c\xfe\xe5\xad\x33\xb5\x4f\x52\xd3\x53\xcb\x63\ \xfe\x10\xe8\x84\x1f\x62\x0a\xf1\x85\xcf\x05\x68\x04\xd0\xac\x41\ \xc8\x22\xe4\x74\xc4\x5b\xc6\x0b\x06\xcf\x07\x7d\xfa\x0d\x24\xdc\ \x66\x7e\x6b\xc0\x3a\x40\x13\xc6\xce\x85\xbe\x1e\x80\xbc\xbd\x39\ \xf5\x78\xfb\xd0\x54\x3e\xab\x8d\x04\x7c\x36\x01\x90\x04\x94\xe4\ \xc3\x62\x56\x41\x36\x2a\xb5\xb3\x29\x82\xb7\xda\xd6\xa9\xcf\x53\ \xda\x9a\xa3\x30\xde\xe7\x6b\xfd\xe5\x18\x26\x59\x80\x51\xa3\x46\ \x55\x98\xe4\x03\x62\x84\xe0\x8d\xf0\x36\x3c\x96\x2f\x17\x48\xab\ \xed\x75\x3e\xcf\x69\x4b\xac\x7f\x29\xdf\x7b\xea\xb7\xfa\x87\x78\ \x82\x22\xfa\x5c\x40\x21\xc0\x0d\xeb\x97\x42\x7a\x0d\xa0\x14\x80\ \x43\x79\x3d\xe0\x63\x1e\x8d\x00\x84\x67\x32\x01\xa8\x60\x8c\x10\ \x75\x85\xe4\xed\x9c\xd5\xc1\x3a\x5a\xdd\x8e\xb2\x29\xfd\xc9\xc9\ \xeb\x69\xb3\xc4\x2e\xcb\x02\xa4\x12\xc0\x0a\x1e\x73\x3a\xe9\xf1\ \x69\x1e\x41\x74\x23\x4f\x53\xfd\xcd\x95\x81\x06\x3e\x7e\x06\x23\ \x8e\x7f\xba\x86\xc7\x23\x47\x8e\xac\x28\x59\x0f\xe3\x9f\x77\x43\ \xc8\xbc\x4e\x4f\x1b\xdb\x95\x67\xa0\xf7\x9d\x63\x09\x3b\xa0\x9e\ \x77\x11\x00\x7c\x51\xef\x60\x22\x41\xbb\xc0\xf5\x3c\xb7\x9b\x04\ \xf0\xb4\x8f\xe3\xf8\xe1\x87\x1f\x2e\x70\x11\x60\xf7\xee\xdd\x4f\ \xf3\x82\xda\x7b\x4f\xe5\x25\xcf\xff\x46\x53\x9d\x48\x31\xbc\xf0\ \x7b\x17\xf8\x98\x09\x2f\x38\xf4\x3c\xb0\x13\x1d\x2b\x75\xf8\x08\ \x14\xc3\x0b\x8e\xda\xbf\xe4\x26\x00\x66\x84\x1f\x64\x3a\x31\x62\ \xc4\x88\x8a\x52\xac\x82\xd4\xef\x2d\x60\x53\x9f\x33\xd8\xf2\x77\ \xaa\xdf\x1c\x3b\x7c\x8f\x9b\x5f\x93\x08\x00\x05\x96\xc9\x87\x78\ \xfe\xef\x34\x20\x9e\x36\xb5\x33\xcf\x60\xe8\x2f\x5c\xb7\xfb\x42\ \x12\xf8\x94\xf9\xdc\xb9\x73\x5b\x73\x85\xd7\x09\xc1\xe4\xb6\xad\ \xe9\x72\x9d\xe8\x2b\xd6\x91\xdb\x6e\xfc\xbd\xe4\x2c\x02\xe0\x35\ \xad\x3b\x76\xec\xf8\x7a\x6e\xc5\xed\x14\x4c\x6e\x9b\xda\x59\xae\ \x5d\xfd\xad\xd3\xe6\xda\xbf\xb1\x84\x3f\xd3\xf2\xd8\x63\x8f\x1d\ \x18\x3e\x7c\x78\x45\xa9\x4e\x83\x4a\xd9\x1b\x71\x55\xd3\xb2\xe0\ \x18\xe1\xfb\xda\xe0\x93\xd9\x80\x07\x4d\x83\x3b\x6f\x3f\x59\x48\ \xd0\x3e\xf0\xea\x92\x81\x63\x03\x57\xcb\xfd\xae\x31\xf0\x89\x04\ \x78\x05\x1b\x3e\x14\xfe\xbe\x2b\x99\x56\xfe\xbf\x61\x1d\xbb\x29\ \x0b\x98\xea\x7d\xeb\xfc\xf9\xf3\x5b\xf0\x97\xcb\xb2\x7c\xbe\xa7\ \x10\x3c\x7c\x0e\x12\xe1\xd4\xa9\x53\x0f\xc3\xd8\xf2\x38\xf8\xbd\ \xf7\xba\xd9\xe9\xff\xf7\xba\x61\x58\x79\x09\xee\x54\xfe\x7e\xeb\ \x50\xeb\x9a\x9c\xeb\xf5\x3d\xb8\x7f\x24\x0f\x54\x34\x1a\x2a\x5d\ \x0c\x69\x43\xab\xf2\xfb\xcb\xeb\xb5\x6e\xc8\x60\x3d\x2a\x65\x16\ \x88\xa5\x50\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\ \x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\ \x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\x40\x91\ \x40\x91\x40\x91\x40\x91\xc0\x10\x96\xc0\x7f\x01\x08\x72\x85\xc3\ \x04\x52\x6a\x7f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x0f\xc2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\x48\x49\x44\x41\x54\x78\x5e\xed\x5d\x7b\x8c\x56\ \x47\x15\x2f\xaf\xe5\xbd\x3c\x0a\x2c\x8f\x05\x0a\x2c\xcb\xa3\x2b\ \xaf\x96\x05\x16\x36\x40\xa5\xa5\xd0\x04\x29\x50\x57\x41\xa3\xb6\ \x81\x10\xc4\x42\x45\xa3\xc4\x90\x9a\x0d\x02\x0d\x8f\x94\x84\x12\ \xdb\x2a\xad\x52\xdb\xa4\x5a\x25\x42\xc4\xfa\x22\xb5\x08\xc6\x42\ \x45\xc4\xc6\x54\xaa\x34\x0d\xd2\x02\x42\xf9\xfe\xe4\x0f\xf0\x77\ \x36\x77\xc8\x74\x98\xe7\x7d\x7c\xf7\xf1\x0d\xc9\x64\x3f\xee\x9d\ \x3b\x73\xe6\xfc\x7e\xe7\xcc\x99\xc7\x9d\x7b\xc7\x1d\xfe\x9f\xd7\ \x80\xd7\x80\xd7\x80\xd7\x80\xd7\x80\xd7\x80\xd7\x80\xd7\xc0\x6d\ \x1a\xa8\xae\xae\xbe\x17\xe9\x5b\x3d\x7b\xf6\xfc\x29\xfe\x9e\x41\ \xba\x88\xdf\x25\x3e\xe1\xda\x05\xa4\xa3\xb8\xb6\x17\xe9\x2b\x7d\ \xfb\xf6\xad\xf5\xaa\xcc\xa7\x06\xaa\x00\xe4\x46\xa4\x0f\x45\x90\ \xe9\xff\xb8\x2e\x4d\xb2\xbc\xec\x5a\x8f\x1e\x3d\x4e\x76\xef\xde\ \xbd\x25\x9f\xea\xa8\x0c\xa9\xbb\x00\xac\x97\x05\x8b\xbe\x0d\xe8\ \x5e\xbd\x7a\x95\x74\x49\x46\x0e\x05\x31\xbe\x59\x19\x6a\xcd\x78\ \x2b\x61\x99\x8b\x19\x40\x22\x78\x26\xb0\x6d\xef\xf3\xe5\x8a\x64\ \x40\xfd\xe7\xe0\x19\x6a\x32\xae\xa6\xe2\x89\x07\x20\xd6\xcb\x80\ \x97\x81\xda\xbb\x77\xef\x92\x6b\x92\x95\x23\x12\x8c\x27\x03\x88\ \x50\x42\x1a\x5b\x3c\x4d\x67\xac\x45\x00\x66\x9e\xd8\x8f\x8b\x60\ \xa9\xc0\xee\xd3\xa7\x4f\xc9\x26\xc9\x9e\x17\xeb\x50\x79\x05\x22\ \x02\x54\xd6\x39\x63\x6a\x2b\x86\x38\x26\x8b\x17\x81\xb3\x01\xdb\ \x94\x47\x2c\xd3\x86\x08\x81\x37\x78\xbd\x18\x5a\xcf\x40\x2b\x00\ \xfc\xd7\x55\x56\x6f\x02\x1d\x43\xb9\x52\xd8\x24\x92\x43\x47\x06\ \x99\x47\x20\x22\x74\xeb\xd6\x6d\x50\x06\x54\x98\x5f\x11\x68\x28\ \xc7\x2b\x97\x59\x20\x0f\x06\x0f\x94\x0c\xec\x7e\xfd\xfa\x95\x5c\ \x93\x58\x8e\x8e\x0c\xbc\x57\x60\xb2\x0a\xc1\xe2\xde\xfc\x22\x90\ \x9e\xe4\xed\x78\xab\xe7\x95\x6c\x03\xbe\x09\xf0\xfe\xfd\xfb\x97\ \x58\xd2\xe5\xd5\x11\x81\x97\xc3\x82\x04\xe7\xd3\x53\x65\xce\x6a\ \x86\x32\x47\xc8\xc0\x97\x01\xcf\x03\x24\x03\x92\x07\xda\xf5\xb7\ \x58\x1e\x5f\x17\xef\x11\x64\x44\x50\x75\x09\x39\x83\xa2\xfc\xe2\ \x02\xf8\x26\x1d\xf8\xa2\x2b\xd6\x11\x40\x05\xf8\xd0\xa1\x43\xff\ \xd9\xd0\xd0\xf0\xeb\xe6\xe6\xe6\x7d\xf3\xe6\xcd\xfb\x3e\xa5\x59\ \xb3\x66\xfd\x68\xe2\xc4\x89\x87\x87\x0c\x19\xf2\x1f\x9d\x77\xf0\ \x24\x48\x90\x13\x2e\xe0\xab\x80\x17\x41\x1f\x3c\x78\xf0\x07\xcb\ \x97\x2f\x6f\xbd\x71\xe3\x46\x33\x97\xee\xc5\xef\xf1\x48\x23\x6e\ \xde\xbc\x39\x8c\x12\xfd\x46\x1a\x87\xd4\xc8\xf2\x9d\x3c\x79\xf2\ \xc1\xd9\xb3\x67\xff\x80\xca\x74\xf5\x06\xba\x2e\x21\x18\x2a\x26\ \xa8\xc9\x1c\x16\x0d\x97\x59\xc7\x2c\x5f\x17\xe8\xd9\x00\x3f\x60\ \xc0\x80\xd2\xba\x75\xeb\xd6\x07\x40\x4e\xc3\xdf\x50\x33\x75\x20\ \x46\x47\xa4\xbb\x18\x21\xe0\x25\x5e\xe4\x89\x10\xc6\x1b\x70\x6b\ \x0b\x34\x5f\xe0\xff\x31\x0d\xd8\xba\x7d\xa6\x74\x1e\x08\x66\xf5\ \x35\x35\x35\x97\xce\x9e\x3d\xfb\x69\x02\x0c\xc0\xf5\x89\x5b\xbb\ \x81\x97\x68\x5e\xbb\x76\xed\x13\xac\x7e\x19\x09\x7c\x4c\xe0\xa8\ \x79\x1b\xf0\x65\x96\xcf\xbb\xfb\xa3\x47\x8f\x2e\x04\x40\x4d\x00\ \xbe\x83\x63\xf5\xce\xd9\x51\x4f\x5f\x22\xd9\xd2\xa5\x4b\xb7\x10\ \x11\xa2\x90\x00\x6d\xff\x9d\xb3\x00\x45\x7a\x00\xae\xff\x5d\x16\ \x31\x8b\x43\x3d\xd9\xf8\x5e\xb4\x7c\x72\xcb\x81\xc5\x77\xb2\xd1\ \x0b\xba\x87\x87\x91\x5e\x41\xba\x0c\x8f\x51\xe2\x13\x5d\xa3\x7b\ \x03\x07\x0e\x5c\x60\x53\x16\xea\x1d\x44\x75\x23\xff\x79\x46\x02\ \xd9\xe8\xc0\x14\x0f\x80\x04\x5f\xb0\xa9\xaf\x70\x79\x00\xfc\x5a\ \xb1\xdf\x27\x65\x91\x0b\xb5\x01\xff\xc2\x85\x0b\x73\xc9\x2d\x9b\ \x14\x03\x50\x57\x89\x60\xdb\xfc\x1f\xcf\x5d\x03\xe1\x9a\x4d\xe5\ \x43\x86\xe9\xe4\x0d\xa2\x90\xc0\x54\x47\x21\xef\x87\x75\xfd\xe4\ \x05\x02\xab\x6f\xaf\x53\x0c\x40\x7e\xce\x06\x68\x89\x27\x28\x51\ \x20\xc9\xa7\xe1\xc3\x87\x77\xd1\xd5\x45\xde\xe0\xd4\xa9\x53\xf3\ \x45\x12\xe8\xe2\x01\x3e\x20\xac\xb8\x91\x01\xac\xff\x23\xd1\xf5\ \x33\x65\x31\xeb\x97\xf5\xfb\xe4\x6e\x09\x7c\x1d\x18\x88\x0d\x66\ \x86\x01\x5e\xe8\x0e\x6e\x23\x81\xc9\x0a\x69\xd4\x40\xb2\x91\xdc\ \x61\xba\x02\x90\x60\x95\xa9\x8e\x42\xdc\xc7\x06\x8a\xfb\xc2\x58\ \x7f\x00\xfe\x74\x9d\x12\x60\xb5\x6f\x93\xe5\x86\x25\x80\x68\xf9\ \xec\xff\x14\x70\x02\xd8\x21\x36\x00\x10\x09\x6c\x67\x0a\x2b\xd2\ \x0b\xd8\x80\x4f\x0a\x14\x87\x7c\xd4\xd7\x1a\xc0\x6f\xb3\xda\xb0\ \xe0\xd3\x73\x3a\x02\x4c\x9a\x34\x69\xaa\x0d\x01\x28\x8f\x8a\x04\ \x16\x01\xe1\x6b\xb6\x75\xe4\x32\x1f\xdc\xfe\x72\x1b\x02\x88\xee\ \xdf\xe4\xf6\x55\xc0\x45\xb9\x2e\xce\x2a\xc2\xc5\xf7\x70\x51\xfa\ \xd6\xad\x5b\x1f\x25\x22\xab\x96\x91\xc5\x95\xc3\x60\x1f\x41\xb1\ \x27\x88\xf8\x4d\x1d\xe2\x8c\x9f\x6a\x59\xf7\xd0\xa1\x43\x9f\xb1\ \xb1\x7c\x1b\xb0\x47\x8c\x18\x71\x7a\xdb\xb6\x6d\x8f\x09\x53\xc3\ \xb7\xa6\x89\x5b\x5b\x5b\x57\x61\xfa\xf8\xbc\x08\xfe\xa6\x4d\x9b\ \x56\xbb\x80\x4f\x79\x89\x30\x53\xa7\x4e\x7d\x45\x24\x81\x85\x17\ \x38\xe0\x5a\x57\x2e\xf2\x03\xfc\x05\xae\x04\x98\x3c\x79\xf2\xcf\ \x01\x96\x72\x8b\x15\x01\x65\x03\x3c\x80\x78\x2d\x00\x7d\x8a\xce\ \x92\x91\xa7\x9a\xba\x1a\xca\xbb\x64\xc9\x92\x6d\xcb\x96\x2d\xfb\ \x5e\xf0\x5c\x75\x18\x25\xe3\xd9\x3a\x57\x02\x14\x76\x44\x20\x6e\ \xe9\x52\x79\x00\xde\xfd\x43\x81\xf5\x2a\xc5\x03\xfc\x83\x26\x02\ \xa0\x5f\xff\x38\x00\x50\x59\x8e\xaa\xfc\x60\xa2\x27\xf2\x8e\x9e\ \xab\x57\xaf\xce\x71\xd9\x3b\x10\x74\x05\x1b\xc3\x10\x2e\xcb\xcf\ \xb4\x6d\xf0\x50\x4d\xfc\xf0\x93\x3f\x8c\x00\xe4\x8e\x55\x0d\x42\ \x9e\x46\xd3\xfa\x3e\x2d\xf9\xc2\xda\x67\xa5\xad\x14\xc8\xd0\xae\ \xbe\xbe\xfe\x0d\x46\x02\xd3\xe6\x91\x42\xc6\x02\x68\xd4\x0e\x99\ \x07\xd0\xed\xee\x81\x05\xf6\x54\x81\x47\x93\x41\x3a\x02\x04\x53\ \xc4\xe3\xd3\x06\x9f\xd5\x8f\xb6\x34\xb8\x10\x00\x43\x65\x7a\x81\ \x25\xf6\x05\xad\xd4\xf4\x41\xac\xb6\x89\xfe\xd9\xf0\x6f\xf7\xee\ \xdd\x5f\xd4\x58\xff\x46\x1d\x01\xc6\x8c\x19\xf3\xa6\xcd\x14\x71\ \xb9\x95\x31\x6e\xdc\xb8\xd7\x45\x12\xa8\x76\x0e\x91\xbe\x70\xef\ \xc5\x72\xcb\x98\x54\x7d\x9f\x70\xff\xd4\x68\xd3\xe6\x4e\x00\xd8\ \x5d\x67\xfd\xba\x7d\x7c\x78\x76\x42\x52\x0d\x89\x52\x2e\xe4\x1a\ \xef\xb0\xad\xbc\x44\x5e\x20\x4a\x7d\x99\x79\x96\x2d\xfa\xd8\x7a\ \x80\x05\x0b\x16\xec\xd2\x09\xaf\x03\x9f\x02\xae\xcc\x34\x5c\x22\ \x08\x62\x97\x2b\x2a\x12\xf0\x3b\x89\xc9\x03\x14\x86\x00\x70\x7b\ \xef\x99\x46\x00\x7c\x10\x08\x4b\xd1\xbe\x96\x0d\x02\x5c\x91\x6d\ \x0c\x19\x3b\x76\xec\x1f\x28\xe0\xca\x32\x01\xb0\x6a\xf8\x5d\x59\ \x10\x48\x5e\x51\x9c\x16\x26\x02\x80\x08\x8f\x64\xb9\x3d\x56\xb2\ \xb1\xfe\xdf\xc6\x03\xdc\x79\xe7\x9d\x1f\x9b\x0a\xbd\x7e\xfd\x7a\ \xdb\x82\x8b\x98\x28\xd0\x32\x3d\x9b\xf6\x7d\xc8\x58\x63\x22\x00\ \xe9\x89\x8d\x04\x40\xf6\xdf\xa4\x2d\x73\xe4\xfa\x6d\x08\xc0\x3c\ \x00\xa2\xf7\x1f\xda\x54\x48\x63\xfb\x29\x53\xa6\xfc\x0c\xc3\xab\ \x63\x0b\x17\x2e\xdc\x69\x9a\x2a\xb6\x29\xb3\x5c\x79\x4c\x04\x60\ \xe0\x17\xa2\x1b\x80\x1b\x1b\xa0\x23\x00\xdb\x00\xc2\xa2\xe3\x7d\ \xfb\xf6\x4d\xb1\x05\x02\xa0\x8f\xa6\x80\xcf\xd4\x65\xd8\x96\x57\ \xae\x7c\x18\x0d\x1c\xd6\x9d\x43\xc0\x08\x40\x5d\x40\xee\xe3\x00\ \x4c\xd3\x2e\x77\x21\x00\xfa\xf0\xaa\x72\x01\x91\x56\x3d\xf0\x58\ \x8f\x9b\x0e\xa2\x10\x48\x30\x20\x2d\x59\x23\xd7\x8b\x17\x2d\x76\ \xba\x10\x20\x72\x85\x39\x28\xe0\xa5\x97\x5e\x1a\x6e\x71\xd6\x40\ \x9b\xf5\x53\x82\x0e\xe7\xe6\xa0\x59\x72\x11\x07\x0d\x1a\xf4\x2b\ \x5b\x02\x60\x12\xe8\x5a\x6e\x1b\xea\x20\x38\xed\x5c\xb6\xe9\x02\ \x58\x0c\x30\x6a\xd4\xa8\x95\x0e\xc5\x67\x2b\x2b\xa2\xd8\xbf\xf3\ \x04\x90\x8d\x04\x58\x1c\x80\x1d\x3f\x67\xb3\x25\x7d\x72\xd2\x18\ \x8e\x9d\x69\x1b\x05\x30\x0f\x80\x57\xd9\x9e\x4a\x4e\x92\x84\x4b\ \x86\x55\x9f\x63\xfd\x99\x38\x17\xc0\xcf\x08\x12\x09\xb0\x0e\x7f\ \x2a\x61\x71\x32\x53\xbc\xee\x84\x11\x31\x08\x1c\x3d\x7a\x74\x7e\ \x09\x00\x60\x3f\xb2\x25\xc0\xc8\x91\x23\x7f\x9b\x19\x84\x12\x16\ \xc4\xc5\x03\x54\x0c\x01\x30\x62\xf8\x47\xc2\x7a\xcf\x4c\xf1\xfc\ \xb4\xaf\x38\x05\x5c\x28\x0f\x80\x7e\xfd\xb4\xad\x07\xc0\xe6\x8d\ \x77\x32\x83\x50\xc2\x82\xb8\x10\x00\x93\x5d\xdb\x13\x16\x27\xb9\ \xe2\x31\x84\xf9\xa3\x48\x00\x3e\x10\xe4\xdf\x0d\xc0\xd4\xee\xe5\ \xe4\x24\xc9\x56\xc9\x32\x02\xf0\x33\x80\x7c\x10\x88\x19\xcf\x6f\ \x64\x4b\x7a\x07\x69\xb0\x40\xf3\xe3\x60\x51\xa3\x2d\xb2\xe5\x1b\ \x2e\x1b\x0a\x39\x14\x9d\xe7\xac\x1d\x44\x02\xa8\xc0\xc7\x21\x53\ \xa5\x39\x73\xe6\x2c\xcd\x6d\x63\x1b\x1b\x1b\x37\x7a\x02\x7c\x12\ \x3e\x8c\x8c\x66\xb8\x10\x00\x07\x5c\x7c\x2a\xb7\x04\x58\xb9\x72\ \xe5\x34\x9e\x00\xb2\x49\x21\xde\x13\xd4\xd6\xd6\x76\xcd\x6d\x63\ \x2d\x05\x47\xac\xb3\x4b\xb4\x78\x71\x01\x88\xcd\x01\x90\x07\xc0\ \xc4\x91\xf6\xbd\x44\xcb\x6a\xd3\xc9\x86\x85\x9a\xae\x2a\x02\xc8\ \xba\x03\xc4\x01\x4f\xa4\x23\x69\xf9\x6a\x05\xe1\x2f\xa9\x08\xc0\ \x80\xa7\xbf\x04\x3e\xa5\xf2\x49\x96\x50\x4d\x2e\x04\xc0\xaa\xe0\ \x07\x09\x89\x91\x99\x62\x5d\xac\x1f\x1b\x5f\xf3\x3f\x32\xa2\xc9\ \x20\x55\x1c\x20\x8b\x86\x33\x83\x54\x02\x82\x40\x17\xf7\xb8\x58\ \x7f\x53\x53\xd3\x8e\x04\xc4\x28\x6f\x91\x33\x66\xcc\xd8\xeb\x42\ \x00\x90\x62\x61\x79\x25\x2c\x5f\x6d\x70\xff\x6d\x6b\x23\xaa\xa8\ \x9f\xef\xfb\xc9\xfd\xbf\xf5\xd6\x5b\xa3\xca\x27\x5d\x42\x35\x1d\ \x39\x72\x64\xac\xd8\x0d\x88\x43\x42\x21\x1e\x28\xec\x7c\x00\xdf\ \xc7\xab\x7e\xb3\xbe\x3f\x08\x00\xb5\x87\x60\x24\x04\x59\xbc\xc5\ \xd2\xf2\x27\x6b\xac\xc8\x7c\xd5\x8c\x18\x24\xe8\x18\xaf\x14\xe9\ \x97\x06\x1d\xb4\x9a\x08\xc0\x83\x8f\xc5\xb1\x13\xe9\x4b\x1d\x93\ \x04\x58\xd3\xfe\xbd\x4d\x30\xc8\xad\x18\x1e\x8b\xa9\xea\xcc\x14\ \xe3\x02\x3e\x11\x61\xf3\xe6\xcd\x0f\x67\x46\xf8\xa8\x82\xbc\xfa\ \xea\xab\xb3\x5c\xba\x01\x22\x02\x36\x93\x74\x8b\x5a\x6f\x56\x9e\ \x47\xdb\xb7\x10\xa8\x32\x12\xf0\x56\xcf\x7e\x77\xed\xda\x95\xc6\ \xff\x85\x69\x3f\xbd\x2b\x5f\xa5\xea\x06\x74\xc3\xa2\xac\x00\x18\ \x55\x0e\x19\xc8\xaa\x6b\x04\x3e\x16\x80\x0e\x46\xad\x33\x73\xcf\ \x3f\xf0\xc0\x03\x3b\x65\x5e\x40\x0c\x08\x79\x42\x20\x6a\x5e\x91\ \xb9\x86\x38\x0a\x04\xa0\xcf\xd8\x12\x80\xc0\x0f\xac\xbf\x78\xdf\ \x1f\xc2\xac\xe0\x10\x15\x01\x8a\xea\x05\x00\xe6\x12\x57\xf0\xf1\ \x72\xcc\xbb\x8e\x1c\xcb\x4f\xf6\xbb\xef\xbe\xfb\x40\x25\x75\x05\ \xcc\xa2\xf9\xbf\x7c\x3f\x2f\xbb\x7f\xfc\xf8\xf1\x39\xf9\x41\xd4\ \x51\x52\x3a\xf1\x23\x8c\x17\x80\x87\xf8\xb3\x63\x55\xa9\x67\x97\ \x81\x6b\xba\x86\xb5\x90\x77\xe9\xbc\xc1\xd4\x85\x4f\x52\x00\x7c\ \xa8\xe1\x59\x57\x12\x04\x5e\x63\x5f\x92\x72\xc5\x59\xb6\x09\x68\ \xd5\x7d\x18\x88\xf5\x51\x74\x71\xca\x5b\xd6\xb2\xe8\x03\x0d\xb6\ \xdd\x80\x64\xd8\x94\x79\x12\x74\xe9\xd2\xe5\x4a\x18\x02\x20\xf2\ \x3f\x54\x56\x20\xd2\xac\x6c\xfb\xf6\xed\x5f\xd2\x05\x7e\xaa\xf5\ \xf1\xc0\x73\x1c\x4e\x53\x76\x5d\xdd\x61\x80\x2f\x74\xe4\xaf\x52\ \x16\x9d\x00\x82\x03\x98\x8f\xea\xba\x02\xdd\xcc\x19\x02\xa9\x8b\ \x59\x22\x01\x76\xf9\xf4\x8a\x02\xfe\xf3\xcf\x3f\x5f\x79\x5f\x26\ \xa7\x37\x7b\x4d\xd3\xa3\xa6\x99\x33\x28\x5d\x7b\x98\x44\x39\x48\ \x02\x19\x36\x47\x01\x1f\xae\xff\x97\xb4\x71\xa6\x1c\xb2\x66\xae\ \x0e\x55\x2c\x60\x22\x86\x30\xb6\xfe\x53\x4a\x0d\xeb\x12\x05\xf8\ \xe0\xd9\x2b\x00\x7f\x4c\x4a\xf2\xa7\x5b\xad\x09\x64\x9b\xe5\x52\ \x61\x4c\x5d\xb6\xfd\xf3\x08\xf4\xce\x20\x95\xc4\x64\x4b\x08\xf6\ \x5c\x16\xce\x31\x4c\x85\x05\xaa\x85\x11\x43\xbf\x7f\x6b\x9f\x1c\ \xef\x01\x44\xa5\xe3\xde\x2f\x92\x68\x14\x40\x1b\x8e\xf4\x9e\x0c\ \xf8\x30\xd7\xf2\x74\xaa\x49\xac\xfa\xa4\xb9\xf1\x38\xad\x9f\xc8\ \xa0\xb2\x3c\x00\xb3\x09\xc2\x87\x9e\x58\xe9\xdc\xb9\x73\x1d\xca\ \x38\x10\x06\x60\xdd\x33\xf4\x91\xab\x58\x95\x9a\x97\xc2\x00\xd6\ \x2b\xcc\x7a\x5d\x49\xa0\x5b\x3d\xb3\x74\xbd\xd7\x00\xca\x6b\x48\ \x1b\x00\xec\xfc\xaa\xaa\xaa\xb1\x48\x63\x90\xea\x71\xad\x09\xe9\ \xb3\xb8\xbe\x15\xe9\x78\xdc\x80\xf3\xe5\x11\xf8\x70\xfd\x56\x1f\ \xb9\xca\x0b\xae\x56\x72\x02\xf0\x0d\x2a\x10\x5d\xfa\x7b\x9d\xfb\ \xb7\x21\x42\x92\xe0\x9a\xca\x3e\x71\xe2\xc4\xfc\x8a\x04\x1f\x8a\ \x69\x26\x70\x44\x02\xd8\x7a\x01\xdd\x8a\x9a\x0d\xe8\x62\x1e\x13\ \x50\x49\xdc\xa7\x3e\xbf\xf0\xf3\xfc\x32\x57\x80\x59\xbd\xfe\x0c\ \x00\xdb\xa5\x51\xdb\x7c\x59\x01\x1f\xdd\x46\x49\x95\xd0\x96\x0f\ \x2b\x36\xe0\x23\x42\xc8\x96\x42\x6d\x3d\x81\x0d\x11\xb2\x4c\x02\ \x9c\x7b\xb8\x07\xe0\xcf\xb0\xea\x23\x8b\x98\x49\xb7\x1e\x6e\x03\ \x6e\x0c\x81\xdf\x6d\x23\x04\x5b\xf7\xae\xb3\x6a\x9b\x7b\xc1\x87\ \x2a\x86\x16\x11\x57\xab\x36\x99\x2c\x33\x0c\x01\x4c\x65\x6a\x86\ \x83\xb7\x4d\xda\xc8\x88\x60\x03\xac\x29\x4f\x4b\x4b\xcb\x77\x2a\ \xda\xe5\x13\x3b\xa0\xdc\xbf\xe9\xc0\x0a\x03\x3e\x3f\xeb\x87\x37\ \x6c\xdf\x76\x25\x43\xd2\x96\x3f\x61\xc2\x84\x9f\x04\x56\xdf\xdf\ \xca\x42\x8a\x9a\x09\x16\xb2\x9f\x94\x6d\x0b\x90\x89\x0c\x62\x39\ \xab\x57\xaf\x5e\x8f\x68\x7a\x12\x29\xdb\x86\x08\x36\xc0\x9b\xac\ \x5a\x77\x9f\x5e\x7d\x0b\x80\xcf\xff\x6b\x5c\x51\x49\x09\x45\x7d\ \x95\x29\xdc\x96\x00\x2e\xf9\xa6\x4f\x9f\xfe\x1c\xc0\xbf\xf5\x29\ \x15\x46\x84\x87\x1e\x7a\x68\x6b\x98\xa1\x9e\x2b\xf0\x98\x34\x2a\ \x51\xc2\x7b\x0b\xef\xed\xdd\xbb\xf7\x73\xc1\xd0\x6e\x58\x54\xbd\ \x15\xe2\x79\x00\x30\x8d\xb7\x36\x17\x60\x6d\xf2\x0e\x1b\x36\xec\ \x0d\x28\x7c\xb8\x4c\x59\xb8\xde\xf6\x29\x77\x4a\x8b\x16\x2d\x6a\ \xc5\x76\xf2\xf7\xe3\xb6\x7c\x9c\x77\xf4\x26\x3e\x64\xf5\x68\x50\ \x4f\x63\xc5\x2e\xe1\x2a\xd8\xda\x9b\xac\x29\xec\xea\x98\x89\x00\ \x78\xad\xfa\x7d\x28\xdc\xea\xa8\x14\x78\x85\x81\xc8\x3b\x8d\x11\ \xe2\x6b\xf8\x87\xcf\xbe\xee\xc7\xbb\xf6\xa7\x21\xe3\x35\x93\xd5\ \x43\x96\x8b\x04\x36\xf6\x2e\xee\x7e\xe1\x85\x17\x1e\x61\xe5\x50\ \xfd\xae\x5f\x0f\x2d\x84\x65\xdb\x34\x42\x06\xbe\x4b\x1c\x60\x22\ \x00\x01\x6a\x23\x87\x2c\x0f\x40\xeb\x8d\x34\x12\x65\x4c\xe6\xc0\ \xbc\xf5\xb5\x50\xc9\xb5\x26\x02\x1b\xa9\xd6\x5b\xb9\x85\xd6\x79\ \x8b\x92\xb9\x5d\x13\xb8\xa6\xfb\x15\x3f\xa4\xb2\xc0\x20\xb5\x2c\ \x14\x10\x89\x2e\x55\xd7\xf7\x9a\xc0\x16\xef\x7b\xf0\x53\x83\xd6\ \x5c\x31\xc0\xff\x8b\xac\x3f\x8d\x8b\x00\xfb\xf7\xef\x5f\x66\x96\ \xc2\xe7\x48\x45\x03\x00\xff\x59\x36\x24\x52\x05\x55\x36\x51\xb8\ \x2a\xcf\x8a\x15\x2b\xbe\x9d\xeb\xe3\xd1\x52\x41\xa5\x4c\x95\x76\ \xea\xd4\xe9\x31\x06\xbe\xac\x0b\x50\x05\x84\xb6\x84\xc0\x97\xbe\ \xf7\x01\xfc\x7e\x65\x6a\x8e\xaf\xc6\x45\x03\x00\x7f\x22\x0f\xbe\ \xc9\x0b\xb8\x92\x01\x87\x4b\x1f\x03\xf8\x77\xb9\xc8\xe4\xf3\x96\ \x4f\x03\x55\x20\x40\x89\x92\x8c\x04\x2a\x6f\x60\x1a\x77\xb3\xfb\ \xd8\x1c\xf2\x5f\x04\x7d\x13\xcb\xd7\x1c\x5f\x93\x93\x06\x92\x04\ \x9f\x48\x50\xd1\xeb\xe6\x4e\x48\xa4\x90\x99\x81\xcf\xff\x55\x79\ \x01\x9b\x6e\x41\xf4\x0a\x7e\xb8\x97\x02\xa8\xb6\x55\x02\xf4\x8b\ \x22\x01\x4c\xe0\xbb\x74\x07\x1e\x7c\x5b\x24\x52\xc8\xd7\xa1\x43\ \x87\x37\x65\xd6\x6f\xea\x0e\x6c\x08\x42\x79\xf6\xec\xd9\xf3\xf9\ \x14\x9a\xe5\xab\xb4\xd1\x00\xc0\xdf\xd1\xb1\x63\xc7\xb6\xa0\x4f\ \x95\x6c\x81\x96\xe5\x5b\xbc\x78\xf1\x93\x7e\xae\xdd\x06\x89\x14\ \xf2\xb4\x6f\xdf\xbe\x85\xc0\x67\x49\x47\x02\x97\xb8\x80\x11\xa1\ \xa1\xa1\xe1\x65\x80\x5f\x93\x42\xd3\x7c\x95\x26\x0d\xd0\x9b\x32\ \x3c\xf8\xe2\x6f\x5b\x32\xa8\xf2\xe1\x14\xac\xbf\x02\x7c\xbf\x7b\ \xc6\x04\x44\x5a\xf7\x93\x04\x1f\xe4\xba\x4c\xbb\x78\xd2\x6a\x9b\ \xaf\xd7\xa0\x01\xf4\xfb\x25\x96\x74\x44\x08\xd3\x3d\x90\x47\x80\ \xe5\xcf\xf4\x20\x64\x54\x03\x65\x00\xbf\x39\xa3\x4d\xf7\x62\x01\ \xfc\x7f\xf3\x04\x08\x43\x06\x9d\xc7\x38\x77\xee\xdc\x7d\x5e\xcb\ \x19\xd5\x00\x22\xfe\xc3\x49\x82\x8f\x8d\x94\x5f\x46\xbf\x9f\xff\ \x0f\x1f\x64\x14\xbf\x48\x62\x01\xfc\x27\x55\xe0\xc7\x41\x8a\xf9\ \xf3\xe7\x6f\xf5\x1b\x29\x23\x41\x94\xdc\xc3\x00\xf8\x41\x10\xe0\ \x56\xd0\x67\x4b\x04\xdb\xe0\xb0\xae\xae\xee\x00\x6d\xd7\x4e\xae\ \x05\xbe\xe4\x28\x1a\xa8\x25\xf0\xc5\x64\x4b\x02\x53\x3e\xec\xcb\ \x7f\x07\xe0\xd7\x47\x11\xd0\x3f\x9b\xa0\x06\x92\x04\x9f\xc8\x01\ \xb7\x7f\x4f\x82\xe2\xfb\xa2\xa3\x68\x40\x06\xbe\xea\x9a\xc9\xd2\ \x65\xf7\xfd\xea\x5e\x14\x74\x12\x7e\x16\x40\x1f\x4b\x92\x00\x1e\ \xfc\x84\x01\x8c\x5a\x7c\xbb\x76\xed\x6e\xeb\xf7\x5d\x08\xa1\xcb\ \x8b\x0f\x1d\x2c\x88\x2a\x9f\x7f\x3e\x41\x0d\x00\xfc\xa7\x92\x22\ \xc0\x86\x0d\x1b\x56\x57\xe4\x01\x48\x09\xe2\x15\x7b\xd1\xb0\xde\ \x8b\x49\x10\x00\xdf\xb7\x7d\x1a\xae\xbf\x3a\x76\x81\x7d\x81\xf1\ \x6a\x80\xc0\x57\xa5\xb0\xdd\x00\xde\xa2\x7d\x9d\x5e\xa2\x8c\x57\ \x52\x5f\x5a\x22\x1a\x88\x9b\x00\x38\xd9\xe3\x5f\x00\x7f\x7c\x22\ \xc2\xfa\x42\xe3\xd7\x80\x8e\x00\x61\xee\x01\xfc\xe2\x7f\xdf\x26\ \x7e\x18\xd2\x2b\x11\x6f\xdd\x1c\x09\x03\xb4\xec\x19\x3f\xdc\x4b\ \x0f\xc7\xd0\x35\x6f\xd9\xb2\xe5\xc1\x38\x08\xe0\xc1\x0f\x0d\x41\ \xba\x0f\xd2\x0e\xdc\xa8\x04\x38\x78\xf0\xe0\xa2\x74\x5b\xe1\x6b\ \x8f\xa4\x01\xb2\xde\xb0\x24\xc0\xf1\x6c\x8f\xd3\x47\xa0\x23\x09\ \xe0\x1f\x4e\x5f\x03\xcf\x3c\xf3\x4c\x8b\x2b\x09\x66\xce\x9c\xb9\ \x8b\xce\xda\x49\x5f\x7a\x2f\x41\x64\x0d\x50\x57\x70\xe9\xd2\xa5\ \xb9\xb6\x24\xd8\xb1\x63\xc7\x0a\x3f\xd6\x8f\xac\xf6\x6c\x15\x00\ \x6b\x6e\x47\xdd\xc1\x9a\x35\x6b\xd6\x62\x45\xef\x7f\x32\x32\xdc\ \x7f\xff\xfd\xdb\x28\x0f\xf2\x76\xcb\x96\xf4\x5e\x9a\xd8\x34\x40\ \x6e\x9d\xb6\x6a\x2b\x8e\x4f\xf3\xbb\x79\x62\xd3\xb4\x2f\xc8\x6b\ \xc0\x6b\xc0\x6b\xc0\x6b\xc0\x6b\x20\x11\x0d\xfc\x1f\x04\x20\x33\ \x2d\xb0\xac\x6b\x17\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x11\xc0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x11\x46\x49\x44\x41\x54\x78\x5e\xed\x5d\x69\xac\x55\ \xd5\x15\x66\x7a\x0c\x32\xcb\x20\x33\x0e\x0f\x64\x1e\x02\x52\x07\ \x08\x28\xa0\x2f\xd0\xa6\x54\x4d\xac\x09\x16\x69\xa0\xa1\x29\xa9\ \x1a\x43\x2a\x86\xb4\xd6\x16\x29\xfa\x48\x7f\xd0\xa2\x26\x6d\xfa\ \xc3\xa6\xa4\x10\x05\x1a\x34\x90\x1a\x63\x63\xad\xb1\xa9\x69\x1b\ \x1a\x2a\x4d\x07\x09\x69\xaa\x31\xd5\xe6\xfc\xe2\x97\xf6\x5b\xcf\ \xb7\xdb\xf5\x96\x7b\x58\x7b\xdf\x73\xee\xbd\xef\xde\x6d\xb2\x23\ \xef\x9e\x3d\x9c\xfd\x7d\xdf\x5e\x7b\xed\xf1\x0c\x18\x90\xff\xcb\ \x08\x64\x04\x32\x02\x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\ \x64\x04\x32\x02\x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\x64\ \x04\x32\x02\x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\xb4\x3a\ \x02\x1d\x1d\x1d\xf7\xb7\x7a\x1d\x73\xfd\x1c\x08\x0c\x1d\x3a\xb4\ \x98\x39\x73\xe6\xb7\x33\x40\x6d\x88\xc0\xb0\x61\xc3\x0a\x0a\xd7\ \x5e\x7b\xed\x77\xdb\xb0\xfa\xed\x5d\x65\x43\x7e\x16\x40\x1b\xea\ \x60\xf8\xf0\xe1\x05\x0f\x9d\x9d\x9d\xf5\xb2\x00\x83\xdb\x10\xee\ \xe6\xaa\xf2\x88\x11\x23\x0a\x19\xea\x25\x00\x58\x9b\xef\xf4\x5a\ \x9e\x9f\x35\x17\x2a\x6d\xf2\x36\x36\xf2\xe9\xb7\x7a\x09\x80\x5b\ \x1d\x12\x02\x1c\xd0\xd7\xdb\x04\xfa\xc6\x57\xd3\x45\x3e\xfd\x3e\ \x77\xee\xdc\xca\xbb\x00\x10\x7e\xab\xec\x7a\xd8\xdf\xa7\x1a\x8f\ \x50\x0b\xbf\x81\x21\xff\x8a\x2b\xae\x28\x6c\xa1\x1e\x02\x00\xd9\ \x1f\x98\xf7\x70\x09\x01\xcf\xef\x6e\x61\x1a\x1a\x53\x35\x17\xe9\ \xfc\xf7\x3a\x08\x60\xa8\xcf\x02\xd1\x33\x2e\x8a\xc6\x20\xd5\x82\ \xa5\x8e\x1c\x39\xb2\xd0\x84\x79\xf3\xe6\x55\xda\x05\x80\xe0\x97\ \x42\x02\x90\xcf\x21\x88\x7b\x5b\x90\x92\xfa\x55\x49\x12\x3f\x6a\ \xd4\xa8\xc2\x16\x28\x5e\x1d\x04\xf0\xa9\x91\x87\x46\x10\x10\xc1\ \xef\xea\x87\x58\x0b\x95\xe4\x22\x9b\x7e\x1f\x3d\x7a\x74\x4f\xe0\ \x71\xaa\x14\xc0\x98\x31\x63\xae\xb3\x75\x43\x1a\x01\x98\x38\x2d\ \x44\x4d\xf5\x55\x31\xc4\x1a\xa2\x35\xff\xaf\x52\x00\x1f\x7d\xf4\ \xd1\x08\x84\x35\xe7\xce\x9d\xbb\x1d\xef\xf6\x6f\x29\x06\xad\x10\ \x80\xdc\x88\xea\xd1\xeb\xe7\x25\x70\xb2\xd1\xf2\x0a\x6d\x58\xb0\ \x60\x41\xa5\x3e\x00\xc1\xfa\xf1\xc7\x1f\x0f\x86\x10\x6e\xb9\x74\ \xe9\xd2\x6d\xd4\xed\xb8\x9c\x53\x9f\x20\x30\x6f\xb0\xa0\x9f\x53\ \x54\xdd\xeb\xbb\xc8\x1e\x3b\x76\x6c\xe1\x0b\x94\xae\x1e\x02\x30\ \x35\x87\x10\x06\x91\x45\x38\x74\xe8\xd0\x97\x7c\x42\x20\x81\xd8\ \xc4\x00\xbf\x60\x4d\x75\x28\xf6\xd3\x9c\x89\xc4\x10\xd1\xe3\xc6\ \x8d\x2b\x78\xe0\xf1\x6b\x10\x40\x47\x2a\x64\x10\xc1\x48\x12\x02\ \x96\xa2\xdf\xe0\x0e\xab\xc6\x32\x20\xfe\xa2\xd4\x72\x5b\x2e\x9d\ \x24\x5e\x12\xad\xf9\x7b\xd1\xa2\x45\x49\x5d\x00\x75\x39\x10\xdf\ \x05\x80\x9a\xbc\xc8\x03\x11\x2c\x7d\xfa\xe9\xa7\xef\x95\xa3\x96\ \x90\x10\xb2\x4f\x00\x04\x0c\xf9\x2e\x92\xc7\x8f\x1f\x5f\xf8\x82\ \x49\x97\x22\x00\x10\x7f\xd2\x74\x3b\xbd\x42\x78\x2f\xb5\x75\x19\ \x47\xd1\x36\x67\xe1\x13\x42\x6a\x79\x2d\x91\x8e\x93\x6e\x23\xf9\ \xca\x2b\xaf\x2c\x42\xc1\xa4\x4b\x14\x80\xcb\xc9\x7c\x21\x15\x60\ \xea\x12\xa6\x4e\x9d\xfa\x07\x1a\xc9\x68\xc5\x90\x5a\x56\xbf\x4e\ \x47\xe4\xa7\x92\x6e\x13\x45\xac\x00\x50\xfe\x93\xc6\xfa\xb8\x9c\ \x4f\x90\x38\x31\x05\x64\x88\x60\x39\xa6\xa6\x7f\xa9\x15\x01\x1c\ \xc5\x3f\xa5\x94\xd3\x6f\xd3\x70\xe2\x39\x99\x13\x27\x4e\x2c\x52\ \xc3\x92\x25\x4b\xa2\x7c\x80\x90\xc3\xc9\x44\xf1\xe3\x14\xa0\x21\ \x82\x05\xcb\x96\x2d\xfb\x39\x9f\xac\xf2\xf9\x08\x88\xf7\xd5\x94\ \x72\xfa\x5d\x1a\x22\x5f\xb6\x60\x17\xe9\x93\x26\x4d\x2a\x5c\x41\ \xa6\x89\x11\x00\xde\x61\x87\xe9\x7e\xb4\x42\x48\x01\x1a\x22\xe8\ \x9c\x33\x67\xce\x19\xad\x08\x52\xca\xe8\x57\x69\x7c\xad\xdd\x47\ \x76\xe8\x19\x89\x21\x46\x00\x36\x87\xd3\x25\x04\xde\x3d\xa4\x80\ \x4d\x96\x00\xc3\xc4\xdf\x1a\x11\x84\x46\x0a\x29\x65\xf4\x8b\x34\ \x44\x3e\x6f\xb5\x92\xd4\xc9\x93\x27\x17\x29\xc1\xe4\x03\x73\xab\ \xed\x02\x3a\xae\xba\xea\xaa\x77\xc8\x12\xb9\x46\x1e\x3e\xab\x90\ \x02\x36\x0d\x13\xe5\xda\x86\x47\x08\x7b\x52\xca\x68\xea\x34\x29\ \xc4\x83\xa4\xc2\x15\x6c\x42\xd1\x0a\x00\xb3\x78\x03\x41\xc8\x67\ \xc8\x5b\x9f\x3d\x7b\xf6\x5b\x75\x14\xc1\x1a\x9f\x08\xf8\x50\xb1\ \xa9\xc9\x8c\x7d\x39\x43\x3e\x6f\xf1\x36\x02\x7d\x84\x6b\x84\xa0\ \x15\x00\x7f\x7f\x88\x61\x19\x09\xc1\x37\xd1\xe4\xb2\x06\xb1\x38\ \x50\xfc\xe3\xc7\x8f\xdf\xa9\xf1\x07\x30\x2a\x78\x25\x25\xff\xa6\ \x4b\x43\xe4\xfb\x88\x77\x11\x3b\x65\xca\x94\xc2\x16\x7c\x42\x48\ \x11\x80\x01\x8c\x44\xb0\x7d\xfb\xf6\x47\x62\x7c\x03\x12\x46\x2c\ \xe0\x10\xdc\xf0\xf9\xf3\xe7\xff\xc2\x25\x02\x61\x05\x06\xc5\xe6\ \xdf\x54\xf1\x0d\xf1\xbc\xb5\x4b\x02\x5d\x44\x9b\xdf\x31\xa1\x62\ \x15\x02\x4f\x67\xf2\xac\x45\x00\x04\x1c\xc8\x99\xe8\xb3\x06\x36\ \x4b\x00\xc1\x3c\x1f\x0b\x3a\xca\xb8\x5e\xd3\x15\xc0\x47\x78\x27\ \x36\xef\xa6\x89\x4f\xe4\xbb\x88\xb7\x91\x4e\x44\xc7\x04\x99\x07\ \x89\xa0\x56\x01\x70\x6b\x10\x69\x09\x6e\x8b\x05\xfe\xb9\xe7\x9e\ \xbb\xdb\x25\x02\x61\x05\x92\xd7\x27\x62\xdf\xa9\xb4\xf8\x31\xe4\ \xc7\x90\x2e\xe3\x4a\x2b\x50\x96\x00\x08\x08\xb2\x04\xc8\xff\xef\ \xbe\xd5\x47\x6e\x11\x62\xc1\xa3\x75\x03\x34\x90\xbf\x84\x86\x86\ \xf0\x05\xde\x8a\xcd\x7b\x00\x12\xdd\x80\xfd\xeb\x5d\x50\x92\x2a\ \x60\x9c\xdb\x65\x0b\x18\x26\x75\xf9\x02\x88\xee\xe2\x01\x15\xba\ \x09\x7f\xbf\x4f\x2d\xdf\x98\x65\xd9\x52\x25\x89\xd3\xa6\x4d\x2b\ \x62\x83\x4b\x08\x4b\x97\x2e\x7d\x2a\x1a\x2c\x4f\x02\x90\xb4\x4a\ \xeb\x1c\x22\xde\xcb\xb1\x65\x23\xff\x95\x4a\x5f\x20\x2e\x6b\x64\ \xfa\xa2\xdc\x84\xc0\xcd\x8a\x19\x7f\xda\xb6\x5d\x99\x49\x0f\xb9\ \x42\x67\xa6\x6e\xcd\x44\x8e\xf4\xec\x8d\xb9\xe7\x7d\x3c\x27\xbf\ \x0c\xe2\xb9\x50\x78\x7e\xd2\x12\x4c\x9f\x3e\x7d\x46\x1c\x62\xee\ \xd8\x2e\x9f\xc0\xe6\x0f\xd0\xbe\xc1\xd8\x72\x67\xcd\x9a\xf5\xa6\ \x4d\x04\x9c\x2f\x70\xf9\x78\x54\xbe\x00\xe7\x15\x2e\x00\x0d\xf9\ \x7c\xb6\xab\x56\xf2\x63\x89\x07\x61\x85\x2f\xb8\x2c\x84\x4d\x04\ \x46\x80\x10\x64\xd2\xfc\xbd\x0d\x68\x29\x02\xdf\x8c\x61\x14\x51\ \x9f\x74\x35\x7d\x26\x88\x4c\xe3\x14\x02\x88\x1b\x6d\xb8\x04\xe0\ \x6a\xf9\xb2\xd5\x53\x05\x8d\xe9\x8b\x6d\xf9\x2e\xf2\x6d\x24\x86\ \x88\x97\xcf\x65\x1e\x3e\x01\x90\x10\xd0\x1d\x1d\x8d\x25\xc4\x15\ \x7f\xf7\xee\xdd\x0f\x11\x26\xa1\x6d\x69\x88\xb3\x24\xb6\x4c\x60\ \x7c\xc9\xb6\x6a\x68\x44\x40\x8d\x19\x71\xc6\xaa\xf3\xe5\x02\xa0\ \x4c\xf8\x94\x23\xdf\x52\xdd\xbb\x01\xa2\x67\x3d\xbc\xac\x56\xcf\ \x49\xe1\x84\xb9\xc8\x9e\x31\x63\x46\xe1\x0b\xae\x74\xb6\xee\xc0\ \x88\x8f\x77\x43\x10\xc1\xed\x6a\xe0\x3c\x11\x31\x44\x1c\x8f\x32\ \xff\xac\x59\x40\x8a\x2d\x6f\xff\xfe\xfd\x5b\x6d\xce\x20\x17\x00\ \xfe\xad\x3f\x89\x6c\x04\x60\x32\x20\x01\xf0\x7e\xc6\xec\xba\x2d\ \xab\xbf\xe7\x63\x76\x23\x00\x1f\xf9\x21\xd2\xe5\x73\xad\x25\x90\ \x02\x30\x7e\x49\x2c\x21\xae\xf8\xe4\xb4\x69\x56\x0e\x21\xc0\x91\ \x31\x65\xd2\xbe\x42\x9f\x00\xcc\xc6\x52\x75\x9e\x24\x00\x4e\x3e\ \x17\x40\xd5\xe4\x87\x5a\x7d\x2c\xf9\x14\xbf\x56\x01\xc0\x61\x7d\ \x48\x0d\x5e\x20\x22\x56\x1c\x4f\x86\x56\x0d\x53\x26\x87\x16\x2e\ \x5c\x78\x4a\x76\x03\x16\x3f\x40\x77\xa6\xc0\x08\x40\xdb\xe7\xd7\ \xda\xdf\x6b\xcd\x7e\x19\xe4\x93\x18\x42\xa3\x01\xe6\x08\xf6\x4c\ \x46\xd1\xbc\x44\x59\x02\xa0\x59\x3c\xc7\x08\xa0\xcf\xd6\xb2\xd8\ \xf2\x5e\x7d\xf5\xd5\xe5\xae\xd5\x41\xe3\xd0\xc3\x62\x3f\xa2\xca\ \x17\x00\xbd\x62\x23\xbf\x2a\x93\xef\x6a\xf5\x36\xc2\xb1\x2e\x4e\ \xb7\x79\x05\x83\x2d\xad\xcb\x12\x04\x46\x03\x3d\x22\x50\x01\xa7\ \x8c\x84\xed\xe7\x2f\x29\x44\x70\x83\x32\xbb\x9e\x68\x74\xe0\x24\ \x64\x01\xf0\xfc\x1f\xaa\x3c\x8d\x00\xe4\x38\xdf\x26\x80\x54\x2f\ \x3f\xd4\xd7\xd7\x42\x3e\x09\x24\x45\x00\x2e\x1f\xa0\x77\x4d\x62\ \x94\x0a\x3c\x45\xa4\xcb\x97\x2f\x2f\x08\xed\x25\x9c\x30\x61\xc2\ \x59\x45\x56\x7d\xa2\x20\xcd\x25\xd7\xd9\x82\xa8\xf3\x85\x00\xaf\ \xc7\x02\x70\x8f\x3f\xa5\xf5\xfb\x26\x77\xa4\x00\x64\xeb\x94\x04\ \x6a\x5a\x3d\x8f\x13\xe3\x08\x9a\x77\xf1\x09\x60\xc3\x86\x0d\xfa\ \x61\x94\x82\x39\xdf\x71\x35\xe3\x67\x29\xb2\xe9\x13\xe5\xc6\x1b\ \x6f\xfc\xa1\x4d\x00\x7c\x4e\x47\x95\xa7\x56\x00\xa9\xad\x9f\x80\ \xf6\x09\xa0\x6c\xf2\xa5\x23\xa8\x19\x02\x1a\xf1\x9a\x15\xc9\xb2\ \x05\xb0\x76\xed\xda\x67\x6c\x22\xe0\xe7\x1a\x41\x56\xd4\x89\xa3\ \xd3\xa7\x4f\xcf\x77\x4d\x04\xb1\xdb\x51\xa6\x04\x45\x40\x02\xb0\ \x99\xff\xb2\xc7\xfa\x65\xf7\xfd\x2e\x27\x91\x5b\x97\x14\x07\x90\ \xa6\xad\xcb\x16\xc0\x99\x33\x67\xe6\x49\x01\xc8\x13\xcc\x70\xae\ \x37\x07\xc9\x62\x11\xc8\x0f\x08\x09\x00\x65\x7e\x23\x98\xa7\x11\ \x80\x6d\xc8\xa7\xf1\xf8\x6d\xcb\xb8\x72\xac\x6f\x88\xe0\xe4\x70\ \x02\x63\x4d\xbe\x8c\xef\xeb\x02\x9a\xc1\x02\x10\x59\x21\x01\xc0\ \x4a\x1e\x09\x92\x25\x22\x84\x04\x00\xbc\x7f\x14\xcc\x33\x56\x00\ \xae\x2d\x5b\xb6\x85\x9d\x2a\x4d\xbf\xc6\xf9\xf3\x91\x4f\x22\xe5\ \x43\x40\x63\xfe\xab\xb0\x00\x44\x02\xba\xd0\xf7\x7c\xf7\x16\xc0\ \xe2\xbe\x1b\x24\x4b\x44\x40\x9a\xf7\xe4\x69\x63\xee\x03\xe0\xd9\ \x3f\x83\x79\xda\x04\xd0\x28\xf3\xaf\xb5\x04\x55\x99\x7f\x12\x41\ \x55\x02\xc0\xa4\xd0\x71\x9b\x00\xf8\xac\x6b\x90\x2c\x11\x01\x22\ \xfe\xa3\x9c\x00\x12\x0b\x7b\xef\x07\xf3\x8c\xb5\x00\x7c\xbb\xb6\ \xdc\xc6\x25\xd7\xf5\x35\x93\x3e\xda\x21\x60\xcc\x1a\x40\x4c\xcb\ \x37\x93\x3f\x86\xfc\xaa\x04\xb0\x78\xf1\xe2\x6e\x29\x00\xb9\xcb\ \x27\x48\x96\x88\xb0\x7c\xf9\xf2\x23\x3e\x01\x90\x18\x82\x79\xa2\ \xd5\xf5\x38\x81\xae\xc5\x9e\x54\xef\xdf\x46\xbe\xcb\x07\x20\x72\ \xb5\xad\x5f\x63\xfa\xf9\x0c\xa0\x66\xe2\x87\x9b\xff\xaa\x04\x70\ \xcf\x3d\xf7\x7c\xbe\x6c\x01\xe0\x14\xd1\xc1\x9a\x05\xa0\xed\x02\ \xe4\x29\x1d\x57\xeb\x27\x2b\xe0\x72\x02\x43\xce\x60\x19\xd3\xbf\ \x5a\xcf\x9f\xde\xd3\xd6\xfa\xa9\x9e\x65\x8f\x02\xa8\x15\xee\xdc\ \xb9\xf3\x3a\x79\x51\x55\xad\x16\x00\xf7\x1c\xed\xe7\xab\x80\xb6\ \xdb\x45\x82\x16\xa0\x8a\x2e\xc0\x26\x02\x6a\x89\x65\xad\xfa\xd9\ \x96\x7d\x43\xc4\x4b\xa7\xcf\x45\x7e\x55\x02\xd8\xb4\x69\xd3\x14\ \x49\xb8\x5c\xd5\x0b\x92\x25\x22\x60\x9a\xf9\x5b\x3e\x01\xd0\x45\ \x94\xc1\x3c\x63\xe6\x01\x6c\x67\xf5\x62\x2c\x41\x48\x04\x55\x6c\ \xfa\xe0\xc4\x9b\x56\xef\x23\x9f\xba\xbc\x2a\x2c\xc0\xcd\x37\xdf\ \x3c\xcd\x77\xc8\x83\xbc\xf9\x20\x59\x22\x02\x2c\xc0\x37\x7d\x17\ \x4c\xa9\x05\xe0\x9b\x0a\x0e\xcd\x05\xf0\xc3\x1c\x31\x7b\xfd\x52\ \x76\xfd\x68\xb6\x7b\xc9\xb3\x01\x72\xb5\x2f\x44\x7e\x55\x02\xc0\ \xf9\xff\x79\xb6\x0b\x20\xf8\x6f\xb1\x02\xb8\xe6\x9a\x6b\x0e\xb8\ \x04\x60\xae\xa1\x0d\xe6\x19\x63\x01\xf8\x51\x6d\xd7\x46\x4f\xd7\ \x2e\x5f\xd7\x88\x80\x48\x8d\x69\xf9\x36\x11\x84\xb6\x80\xdb\x96\ \x7c\xb9\xd7\x6f\x2c\x9b\x71\x78\xab\xb0\x00\xc0\xe5\x81\xb2\x05\ \x40\x4e\x60\xa9\x16\xc0\x37\x1a\xe0\x37\x74\x84\x76\xfb\x72\x11\ \x70\x7f\x80\xaf\x0b\xc8\xee\x20\x76\xbb\x37\xc5\x8f\x25\x5e\xd3\ \xfa\xa9\x9e\x55\x08\x00\xdf\x28\x7a\x2a\x74\x05\x4c\xb0\xb5\x8a\ \x08\xc0\xf6\xf9\x80\x05\xf8\x4f\x30\xcf\x98\xe5\x60\x9f\x08\x6c\ \x5d\x81\x4f\x08\x52\x0c\xb6\x25\x63\x1b\xc9\x3e\xd2\x5d\xfd\x3d\ \x27\xde\xd7\xf2\x4d\x77\x57\x85\x00\x30\x15\xfc\xae\x6d\xea\xd6\ \x38\x71\x78\x1e\x9e\xb4\x11\x6c\xa2\xc1\xfe\xcb\x71\xaf\x60\xcf\ \x4d\xe4\xc8\x3b\x7c\x89\x95\x6b\x43\x48\xcc\x26\x50\xdb\xe4\x50\ \xcc\x89\x1f\x97\x18\x42\x64\xdb\x36\x76\x72\x47\x2f\x44\x3c\xbd\ \xb7\x31\xfb\x7c\x03\x67\x15\x02\x08\x5d\x61\x8f\xba\xbe\x11\x6c\ \xad\x22\x82\x8f\x7c\x12\x00\xb8\x7d\x2d\x98\x67\x16\xc0\x27\xd7\ \xca\x35\x5a\x00\x2b\x57\xae\xec\x0e\x92\x15\x29\x00\x5c\x84\xf5\ \xfd\x60\x9e\x24\x00\xbe\x1d\x5c\xb3\x33\x48\xde\xd8\x25\x7d\x02\ \xdf\x31\x6f\xdb\x91\xed\xd0\xa9\x5f\xdb\xe9\x5e\x99\x8f\xbc\x43\ \x80\x1f\x33\xe7\x17\x4e\x48\x87\x4f\x92\x4f\xeb\x20\x65\x5b\x00\ \xe0\x7b\x9f\xcd\x02\xf0\x16\x7c\xf2\xe4\xc9\xeb\x83\x64\xf5\x8d\ \x80\xe4\x7d\x3f\x86\x25\xbf\x4f\xb4\x6d\xdb\xb6\xf5\xc1\x3c\x6b\ \xd9\x15\x6c\xf3\x09\x62\xaf\x76\xa9\xf5\xa2\x07\xb9\x99\x43\x4e\ \xeb\x12\xf9\x7c\xfe\x82\xdf\x38\xc6\xcf\xf2\xf1\x6d\x5b\x65\x0b\ \xc0\xd5\x57\x73\x02\x69\xc9\x38\x48\x16\x8b\x80\x2e\x7a\x9b\x49\ \x6f\xfb\x1c\x0d\x7d\xa0\xea\xd8\xb1\x63\xe1\x9d\x4d\xb6\x73\x01\ \xbe\xad\xe1\xb6\x83\x21\x2e\x8b\x10\x2b\x86\x98\x3b\x7f\x6c\x17\ \x41\xc9\x9b\xc0\x62\x89\x37\x6b\xf6\x2b\x56\xac\x08\x03\x17\xc1\ \x56\xe8\x7a\x78\x08\x24\xec\xac\x89\xf2\x20\xe4\x97\x5d\xdf\x21\ \x32\x1f\xc8\xa4\xeb\x6d\x82\xaf\x29\x4f\x06\xf9\xba\x03\x9b\x63\ \xc8\x8f\x86\xf9\x84\x20\xc5\x20\xbb\x89\xd0\xcd\x5e\xf2\xb9\xeb\ \xaa\x38\x79\xa5\x5c\xa8\xc5\xd3\xfb\xf3\xeb\x5f\xa9\x8e\xb1\xad\ \xd1\x07\x32\xc8\x7f\x28\x24\x00\x58\x9c\x27\x83\x44\x89\x08\xae\ \x56\x6f\xc8\x47\x99\x3a\x51\x69\x04\x60\xdb\x30\x2a\x6f\xeb\x96\ \x33\x86\x72\x15\xd1\x26\x80\x5a\x44\x60\x13\x80\x8f\x7c\x79\xcb\ \x97\x6d\xa7\x6e\xea\x06\xcd\x80\x00\x82\x9f\x8e\xc1\xf9\x81\xe9\ \x91\x02\x18\x1c\x12\xc0\xaa\x55\xab\x74\x3b\x8c\xb8\x00\x48\xa9\ \xf2\x94\x90\xad\x3b\xe0\x96\xc0\x25\x04\x69\x0d\x6c\x17\x3e\xba\ \x44\xa1\xb9\xfd\xd3\x75\x27\xb0\xbc\x4e\xd6\xd6\xcf\x4b\xf2\xf9\ \x32\xed\xea\xd5\xab\x9f\x89\x24\xc3\x19\x1d\x58\x7e\x36\xd4\xfa\ \x53\xcc\x3f\xc8\xdf\x2b\x1d\x3e\xfe\x5d\x64\xfa\x37\x2e\x98\x5a\ \xa8\xaa\x07\x3c\xec\x3e\xc7\xc3\xb9\x08\x6c\xdd\x81\xeb\xc0\xa8\ \xed\xfe\x7e\x79\x61\x42\x99\x77\xfd\xf2\x31\xbc\xcb\xcc\xdb\x0e\ \x67\xf2\xbd\x79\x9c\x78\x33\xfa\x81\xf9\x9f\xa5\x02\x4e\x11\x29\ \x44\x3e\x91\xf8\xf0\xc3\x0f\x7f\x45\x91\x55\x9f\x28\x94\x4e\x12\ \x6e\xfe\xc6\x17\x46\xe8\xeb\xa4\xd4\x8d\x0d\x51\xe5\x4b\x02\xa0\ \x0c\x6d\x2f\xeb\xbb\x2b\xc0\x77\x61\x84\xed\x08\xb9\xf4\x15\x6c\ \x16\xc2\x26\x10\xdf\x6f\xae\x1b\x39\xe4\x49\x1c\xdf\x86\x4c\xbe\ \x42\xb7\x75\xeb\xd6\xbd\x2a\xd0\x14\x91\x80\x67\xb7\xcf\x4b\x37\ \x2d\x18\xe6\x7f\x8c\x22\x3b\x1e\x65\x44\x88\x7c\xe0\xf2\xb6\x3a\ \xcf\x58\x01\xb8\x4e\x0f\xcb\x5d\xc5\x36\x8b\x60\x13\x41\xaa\x10\ \xb4\xe4\x73\x27\x4f\x3a\x7b\x7c\x83\xc6\xd5\x57\x5f\xfd\x1a\xc8\ \x98\xa4\x06\xce\x1f\xf1\x7f\x1f\x8d\xf4\x7c\x3a\xb6\x58\xb7\x6e\ \x5d\x78\xa2\x46\x94\x03\xf2\x4f\x84\x04\xb0\x63\xc7\x0e\xbd\x55\ \x31\x02\x30\x2f\xaa\xb5\x04\xf2\x3c\xa1\xec\x1a\xa4\x9f\xe0\xb2\ \x0a\x2e\x51\xf8\xee\xdb\xd1\x5c\xbe\xe0\x32\xf5\xb6\x4f\xc8\xe1\ \x06\xd0\x5f\x81\xfc\xc5\x25\x91\x3f\xc0\x47\x3a\x7f\x86\x32\xa3\ \xaf\xa7\xb1\x91\x6f\xcc\x3e\x33\xff\xe3\xd4\x75\x21\x01\x50\xa6\ \xfc\xc5\x7c\x7d\x97\xad\x5b\xb0\x89\x41\x2b\x08\x97\xa5\xd0\x9c\ \xad\xd7\x1c\xb9\xb2\x11\xce\x0f\x56\x1e\x38\x70\xe0\xfe\x32\xc9\ \x07\x96\xbf\x09\x8d\xcf\x09\x6f\xec\x11\x7c\x54\x4d\x52\x6f\x44\ \xa4\x3b\xd0\xfb\x05\xf2\x9e\x7e\xde\x16\xc0\x67\x78\xfe\x9f\x17\ \xbc\x79\xf3\xe6\xdd\xeb\xd7\xaf\xef\xb6\x85\x8d\x1b\x37\x76\x6b\ \xc3\x1d\x77\xdc\xd1\x2d\x43\x57\x57\x57\xb7\x2b\x6c\xd9\xb2\x65\ \x3f\x5a\xf2\x07\x2e\x4b\xe1\x23\xd7\x66\xca\x43\x1b\x2e\xe5\x69\ \x5a\x0c\x93\x7e\x42\xf7\xf9\xc0\x59\x2a\xed\x20\x28\x08\x39\xec\ \x32\xcf\xf2\xf7\x94\xee\xc6\x45\xba\xf9\xbd\xa3\xa3\xa3\xb8\x78\ \xf1\xe2\x8a\x28\x61\xf5\xde\x78\x39\x9d\xc6\xa2\xf5\x0c\x28\x77\ \x0a\xca\xbb\xc5\xb6\x57\x3e\xa6\x65\x87\xf6\xda\xbb\xb6\x61\xe1\ \x92\x85\x27\xa2\x80\x0a\x44\x06\xc1\x4f\x68\xc9\xff\xf0\xc3\x0f\ \xd7\xc5\x96\x0d\x72\x0f\xfb\x04\x40\xe4\x53\xa0\x4f\xd4\xc5\xe6\ \xdd\xd0\xf8\xd4\x0a\x6d\x9b\x25\x63\x88\xb5\xa5\x77\xed\xbe\x31\ \x5d\x58\x99\x5f\x0f\x07\x31\xcf\x6a\xc9\xc7\x01\x91\x9f\xaa\xa6\ \x68\x05\x2b\x2e\xf2\x0d\xf1\xf4\xff\x3d\x7b\xf6\xec\x6a\x28\x99\ \xa9\x85\x93\x08\x24\x61\xa1\x1d\xb4\xa1\xed\x55\xf2\xc8\x94\xdc\ \x3f\x5f\x96\x00\x40\xcc\xeb\x72\x0c\xee\x6b\xa9\xa8\x6b\xf4\xfd\ \x80\x43\x86\x0c\xf9\x2b\x27\xda\xf5\xef\x84\x21\x65\x2a\x65\xe5\ \xa7\xb3\x89\x40\x43\x72\x68\x9b\x95\x5c\x86\x35\x0e\x6e\x19\x02\ \xe0\xad\x3e\xd4\x3f\xd3\x73\xaa\x63\x2c\x72\x48\xf7\x05\x0d\xf9\ \xb8\x9a\x6e\x77\x6c\xde\x4d\x17\x9f\x00\x0a\xed\x9c\xd1\x3e\x0f\ \xcd\xc2\x75\x76\x76\x6a\xbf\x18\xf2\x29\x9c\x40\xca\x3e\x0d\xe1\ \x3c\xce\x85\x0b\x17\x36\xa4\x00\xae\x21\xbf\xb7\xef\xd7\x0f\xfd\ \x52\x5e\xa4\x5e\x69\x48\x04\x21\xf2\xca\x78\x9e\x28\x80\x0e\x0d\ \xf1\x92\xb4\x7d\xfb\xf6\xed\x48\x59\x61\x74\x91\x8f\x2e\xa1\xe0\ \xe1\xec\xd9\xb3\x9f\xab\x17\x3f\x75\x29\xa7\x0a\x11\xc8\xb1\x79\ \x8a\x00\xc8\x79\x23\x01\x68\x5b\x25\xc5\xdb\xb5\x6b\xd7\xd7\x51\ \x9f\xd1\xb1\xc0\x81\xe0\xd3\x92\x68\xdb\xdf\x58\x26\x7f\x13\xef\ \x35\x34\x36\xff\xa6\x8f\x5f\x96\x08\x5c\x93\x32\x29\x02\x20\xd0\ \x4e\x9c\x38\xb1\x45\x2b\x80\x07\x1f\x7c\xf0\x6b\x74\x6b\x68\x2c\ \xd8\xc8\xff\xcb\x1a\xf2\x29\x0e\xdd\x1f\x1c\x9b\x7f\xbf\x89\x4f\ \x22\xd0\x4e\xab\x86\xe2\xc9\x61\x1a\xf6\xe9\x27\xf9\x00\x78\xa7\ \x61\xd4\xea\x42\x22\xa0\xb1\x3e\xc8\x8f\xde\x59\x34\x78\xf0\xe0\ \x5b\xb5\xe4\xef\xdd\xbb\x77\x67\xbf\x21\x33\xf5\x45\x49\x04\xda\ \x31\xb6\x36\x1e\x99\xf1\x54\x01\x50\x3d\xa8\xd5\xf9\x48\xea\x9d\ \x61\x0c\x6f\xc7\x12\xa0\xf8\xc8\xc7\xb3\x82\x07\xec\xa5\xfc\x75\ \x4a\xd7\x92\xca\x43\x43\xd3\x95\x29\x02\xe3\xc4\xd5\x22\x00\x02\ \x03\xd7\xb4\xfd\x40\x8a\x00\x2b\x8a\x2f\xa6\x0c\xf5\x28\x3f\xe4\ \x75\x93\x4b\x54\x92\x7c\xfa\x1b\xe5\x44\xdf\x34\xde\x50\x12\x6b\ \x2d\x9c\x80\xd5\x78\xe0\xda\x38\xb5\x0a\x00\xef\x33\x93\x13\x76\ \xfe\xfc\xf9\x8d\x30\xf9\xf3\x52\xea\x39\x68\xd0\xa0\xed\x36\x92\ \x5d\xbf\xa5\x8a\x2c\xe5\xdd\x9a\x2a\x4d\x99\x22\x40\x6b\x4d\xf2\ \x01\x38\x20\x8f\x3d\xf6\xd8\x76\x58\x82\x23\xbd\x26\x3f\x6a\x5b\ \xb7\xc9\x07\xe4\x9f\x8a\x21\xff\xe0\xc1\x83\xf7\x35\x15\x29\xf5\ \x7e\x19\x02\x3b\xe4\x80\x69\x9e\x97\x21\x00\x5a\x49\x24\x4b\x90\ \x8a\x41\x0c\xf1\x14\x17\x2b\xb3\xdf\x43\x79\x51\xd7\xcb\xa7\xbe\ \x5b\x53\xa7\x4b\x11\x81\xa5\xbf\xae\xd9\x02\xa4\x82\x44\xce\x5e\ \x88\x7c\x58\x86\x82\x07\x9c\x55\x78\x16\xf5\x9e\x9a\x5a\x66\xcb\ \xa5\xd3\x88\xc0\xe7\xa9\x97\x61\x01\x52\x40\x05\xf1\x6f\xbb\xc8\ \x97\xa4\x9b\xbf\x71\x0f\xc0\x71\xd4\x77\x76\x4a\x79\x2d\x9d\x86\ \x44\xa0\x1d\x33\x37\xda\x02\x0c\x1c\x38\x70\xbf\x8b\x60\xdf\xef\ \xf8\x52\x18\x8d\x2c\xe6\xb4\x34\x91\xb5\x54\x2e\x45\x04\xd4\x02\ \xeb\x6d\x01\x52\xc8\xbf\xeb\xae\xbb\x1e\x4d\x1d\x59\xd4\x82\x69\ \xbf\x4b\x4b\x22\x08\xf5\xa9\xf2\x79\xbd\x05\x80\x6b\xe2\x1e\x88\ \x11\xc1\xe1\xc3\x87\xbf\x88\x7a\x95\xb5\x4b\xb9\xdf\x71\x1a\xfd\ \xc2\xb1\x22\xa8\xb7\x00\x68\x4d\x40\x2b\x00\xaa\x0b\x82\xee\x9b\ \x3f\xd1\x48\xb5\x70\x02\x29\x82\x40\xdf\x5a\xf7\x51\x00\xbe\xf5\ \xb3\x89\xbf\x13\xfc\x82\x82\x07\x7c\x05\xe4\xcd\xb6\x9d\xe4\x29\ \x4b\x97\x04\xa0\xa6\xa5\xc1\xb9\xaa\xbb\x00\x60\x05\x3a\xb0\x13\ \xfa\xf7\x92\x78\xfa\x1b\x47\xc4\x76\xd1\x1a\x43\x59\x38\xb4\x75\ \x3e\x1a\x11\x34\x42\x00\x44\x0a\x44\xb0\x8c\x0b\x00\x3b\x9c\xfe\ \xd6\x6b\xf2\x63\x8f\x88\xb5\x35\xc7\xc1\xca\x13\xa8\xb6\x96\x66\ \x7e\x6b\x94\x00\xe8\xc5\x71\xc1\xe3\x0b\xf4\x1e\x47\x8f\x1e\xbd\ \x13\xef\x19\xf5\xc5\xb0\x60\xc5\x73\x84\xff\x23\xe0\x13\x41\x23\ \x05\x80\xf7\x9a\xdb\xdb\xea\x87\x65\xbe\x2a\x46\xc0\x25\x82\x46\ \x0a\xa0\xe2\x2a\xe7\xec\x25\x02\x36\x11\x64\x01\xb4\x99\x4e\xa4\ \x08\xb2\x00\xda\x4c\x00\x54\x5d\x2e\x82\x2c\x80\x36\x14\x00\x17\ \x41\x16\x40\x9b\x0a\xc0\x88\x00\xdf\x1e\x7a\xbc\x8d\x21\xc8\x55\ \x47\x77\x10\x7d\x3b\x47\x46\x2d\x23\x90\x11\xc8\x08\x64\x04\x32\ \x02\x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\x64\x04\x32\x02\ \x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\x64\x04\x32\x02\x19\ \x81\x8c\x40\x46\x20\x23\xd0\xd4\x08\xfc\x17\xc3\xc4\x14\x53\xee\ \x88\xd5\x7b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0f\xda\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\x60\x49\x44\x41\x54\x78\x5e\xed\x5d\x3b\x6f\x54\ \x4b\x12\xe6\x6d\xf3\x7e\xbf\x16\xb8\x88\xb7\x40\x08\x10\x20\x21\ \x21\x56\x08\x19\xd8\x4b\x42\x80\x1d\x5a\x04\xdc\x95\x11\x22\x35\ \x12\x42\x22\x21\x62\x6f\x4c\xe0\xe0\x82\x04\x01\x3f\xe0\x6e\xb4\ \xd2\xc6\x9b\x22\xd9\x12\xc1\x66\x1b\xec\x68\x1c\x5c\x4b\x3b\x3f\ \x00\x6f\xd5\x68\xca\x2e\x97\xab\xbb\xab\x7b\xce\x39\x1e\xbb\xfb\ \x4a\x2d\x7c\x67\xba\xfb\x74\x7d\xf5\x75\x55\x75\x9f\x9a\xee\x75\ \xeb\xca\x7f\x05\x81\x82\x40\x41\xa0\x20\x50\x10\x28\x08\x14\x04\ \x3c\x08\x0c\x0f\x0f\xff\x7b\x68\x68\xa8\x05\xff\x2e\x94\xad\x5b\ \xb7\xce\xa6\x80\xb6\x73\xe7\xce\x7f\xee\xda\xb5\xab\xc5\xcb\xee\ \xdd\xbb\x5b\x39\x16\x81\xc3\x7f\x53\xf0\xc4\x36\xa0\x8b\xff\x90\ \x6e\x50\x4f\xa9\xfd\x38\xdb\xed\xd8\xb1\x63\x16\x1e\xd2\xe1\xe5\ \xfc\xf9\xf3\xbf\xa7\x3c\xe8\xd3\xa7\x4f\x0f\x80\x04\x1d\x10\x7e\ \x49\x01\x02\x74\x72\x2a\x52\xfe\xbd\x7b\xf7\x26\x4d\x28\xd4\x01\ \xe0\xd9\xe6\xba\x49\xd1\x8b\xb7\x8d\x24\xc0\xb6\x6d\xdb\x3a\xd7\ \xae\x5d\x7b\x9f\xf2\xa0\x0f\x1f\x3e\xec\x40\xe1\x5d\xca\xde\xb3\ \x67\x4f\x67\xad\x17\x4d\x76\xc4\x24\x05\x4f\x6c\x83\xfa\xa8\x95\ \x00\xc0\xb0\xae\x05\xc0\x07\x51\x81\x01\x27\x99\xac\xfd\xfb\xf7\ \x8f\x23\x00\x16\x25\xc3\xac\xe8\xac\xa5\xe2\x93\xb9\x47\x8a\x5f\ \x62\x49\x00\x93\x73\x8c\x74\x42\x24\x88\xed\x23\x58\x5f\x12\x60\ \xfb\xf6\xed\x1d\x2c\xc1\x86\x4a\x05\x0d\x84\xb5\xa4\xe4\x58\x59\ \x14\x3c\xc6\xad\xb8\x82\xf2\x47\x49\x17\x9c\x04\xd6\xf6\xe6\x7a\ \x30\xdb\x67\xf1\x01\xf4\x30\xfc\x17\x1e\xde\x2d\xc0\xdc\xd3\xd6\ \x8e\x50\x58\x17\x40\xfb\xf6\xed\xeb\xe4\x56\x24\x16\x82\x0c\xce\ \xc0\x18\x83\x47\x8c\xa3\x48\x07\x92\x04\x56\x7d\x98\xeb\x21\x01\ \xe8\x21\xf4\x50\x1c\x00\x95\x9e\x4f\x5f\x36\x60\x10\xa8\xd5\x2b\ \x6d\x29\xac\x45\xd9\x07\x0e\x1c\xe8\xc8\x62\x69\xd7\x44\x1d\x6d\ \x6c\x96\xcf\x5c\x63\xf3\x91\x81\x62\x06\x1e\x38\x12\xf6\xa4\x0f\ \xfc\xb7\x1f\xcb\xec\x25\x03\x0c\xa0\x4b\x00\xa9\x7c\x3e\x20\x1a\ \x24\x67\x31\x17\x4a\x0a\x6e\x01\x6b\xb5\xd4\x39\x78\xf0\x60\xc7\ \x52\x7c\xf2\x70\x7c\x38\x6e\x1c\x4f\x0b\x11\x52\x5d\x73\x90\x00\ \xa8\x7c\x3e\xe3\x49\xf9\x31\x8a\x97\x00\x58\x40\xeb\xa7\x4e\x0a\ \x81\xfa\x79\x1e\xb5\x3d\x74\xe8\x50\x87\x17\x4b\x9f\x7c\xac\x21\ \x32\x48\x22\x48\x6b\x60\x36\xed\xd6\x8a\xc0\xc2\x59\x22\x80\x54\ \x3c\x8f\xe8\x5d\x33\x9e\x0b\x67\x01\x63\xb5\xd5\x91\x0a\xb7\xfc\ \xbf\x4b\xc6\x10\x11\xc8\x22\xf8\x48\x60\xd5\xab\xb9\x1e\x12\x80\ \x6f\xde\xc8\x59\xaf\x29\x3e\xa4\x74\x0b\x48\xd6\x3a\x4d\x11\xc6\ \x3a\x9e\xc3\x87\x0f\x77\xb4\xe2\x6b\x2f\x65\xd0\x88\xa0\xb9\x06\ \x4e\x04\xb2\x04\x66\xc5\x5a\x2b\xe2\x2e\x15\x11\xc0\xa2\x7c\x34\ \x61\x24\x80\x14\x4c\x03\xc1\x05\x18\xff\xdc\x0a\x7e\xd5\x64\xb0\ \x3c\xd7\x32\x7e\x2b\x29\xf8\xf8\x63\x48\x40\x96\x19\xf5\x64\xd5\ \xab\xb9\x1e\x12\x80\xef\xde\x91\x19\x22\x46\x72\x9f\xa5\x29\x5e\ \x82\xd8\x0f\x60\x75\x92\xc2\xa2\x6c\xaa\x13\x92\xe1\xc8\x91\x23\ \x9d\x50\x91\x7d\xb8\x62\x07\xc2\x54\x8b\x0d\xb8\x4b\x20\x12\x98\ \x15\x6b\xad\x88\x04\xe0\x33\xdf\x67\xf2\x39\x83\xb9\x40\x52\xd8\ \x10\x38\xda\xf7\xd6\x59\x14\xa3\xc8\x98\xba\x3e\xa5\xa7\xc8\xc3\ \xdb\xb8\xc8\xa0\x59\x04\x22\x02\xe9\x41\x92\xc0\xaa\x57\x73\x3d\ \x22\x80\x6b\xe6\x87\x66\x7d\x48\xf9\x23\x23\x23\xbf\x7d\xff\xfe\ \xfd\x61\x2e\xc5\x45\x16\x97\x75\x0b\x91\x40\x06\x86\x66\xc5\x5a\ \x2b\x02\xe3\x66\xad\xca\xf7\x99\x7b\x97\xe0\x37\x6e\xdc\xf8\x75\ \x7e\x7e\x7e\x63\x2e\xe5\xe8\xd1\xa3\x1d\x5e\x24\x2e\x21\x22\x48\ \x97\x80\x96\x80\x93\xc0\xaa\x57\x73\x3d\x49\x00\x32\x41\x5a\xa4\ \xef\x32\xfb\x3e\x13\x09\x6f\x16\xff\x66\x1e\xcc\x1a\xa8\x18\x22\ \x00\x62\x45\x24\xd0\xf6\x13\x34\x02\x10\x09\xd0\x55\x57\x0e\x11\ \x11\x80\x07\x7d\x3e\xe5\x73\x06\x6b\x8a\x97\x00\x5c\xbf\x7e\x3d\ \x6b\x02\x10\x1e\x84\xd5\xc3\x87\x0f\xa7\x66\x66\x66\x9c\x2e\x11\ \xbf\x03\xb7\x39\x85\x3a\xe0\xf1\x00\x59\x81\x5a\x09\x20\x67\x3f\ \xfa\xa7\x27\x4f\x9e\xbc\xf7\xf9\xef\x77\xef\xde\x4d\x9c\x3d\x7b\ \x76\x1a\x05\x94\xca\xc7\xff\x2f\x04\x58\x74\x09\x3f\x7e\xfc\xf8\ \x33\xb8\xc2\x9f\xa0\x6c\xf2\xb8\x44\xfc\xee\x27\xac\xdb\x08\x01\ \xe0\x1d\xfe\xac\x5c\xf2\x21\xfb\x20\x2b\xe8\x5f\x38\x08\x28\x7f\ \xf2\xf9\x6f\xf8\x7e\x17\x94\xeb\x2f\x5f\xbe\x9c\x2c\x04\x58\xb7\ \x4e\xc3\x00\x3f\x43\x2c\x63\x67\xaf\x46\x82\xd8\x3e\x82\xf5\x25\ \x01\xc8\xfc\xc3\xc3\xaf\x06\x1b\xb3\x0a\x50\x7f\xff\xb9\x73\xe7\ \x66\x8a\x0b\x58\x1a\x04\xf6\xf0\xf8\x5f\x0c\x96\xbc\x2e\xe8\x63\ \x8e\x2f\x09\x53\xfb\x71\xb6\x23\x02\x70\xf3\x0f\x81\x5b\x52\x4e\ \xe0\xd7\xaf\x5f\x7f\x2e\x04\x58\x4e\x80\xe3\xc7\x8f\x27\xe7\x04\ \x42\xcc\xd5\x46\xdd\x10\x09\x1a\x21\xc0\xad\x5b\xb7\x92\x02\x37\ \xcc\x09\x94\x4b\xa0\xdc\x57\x01\x84\x47\xaa\xe2\x64\x1c\x90\xda\ \x4f\x94\x05\x00\xd6\x25\xe5\x04\x1e\x3b\x76\x6c\x5c\x5a\x80\x42\ \x80\x05\x8b\x10\x9d\x13\x08\x41\xf8\x18\xad\x06\x1a\xb1\x00\x7c\ \xd7\x2f\x85\x69\xda\xb2\x30\x37\x02\x10\x06\x8e\xfd\x00\x73\x4e\ \x20\x28\x7f\x94\xef\x09\xd4\x46\x00\x78\x48\x77\x15\xa0\xbd\xe5\ \x83\x8d\x0a\x73\x4e\xa0\x6b\x33\xa8\x10\x60\x31\x26\x60\x18\xb5\ \xe0\xef\x16\x58\xda\x25\x05\xf0\x6e\x61\xa1\xed\xe1\x46\x08\xc0\ \x83\x40\xb9\xef\xcf\x76\xaa\x96\x0d\x16\x05\xe8\x95\x76\xd9\x09\ \x5c\xb4\x97\x31\x2f\x8e\x62\xb6\x85\x6b\xb3\x00\xda\x2a\xa0\xaa\ \xb7\x7e\x28\x60\xae\x16\x20\x44\x84\x90\xf2\x51\x07\x72\x37\x10\ \x49\x90\xe2\x9a\xbd\x6d\x02\x2e\x60\x21\xff\x2d\xf4\xd6\xcf\xf5\ \x8a\xb7\x10\xc0\x9d\x3b\x10\x22\x81\xf6\x5e\xa0\x72\x02\xf8\x5c\ \x00\xb2\xd0\xf7\xde\x3f\x94\x38\x91\xa3\x05\x20\x4c\x7c\x16\xc0\ \x97\x2c\xe2\x7a\x3d\x5c\x9b\x0b\x48\xb5\x00\x3e\x41\xb9\x80\xb9\ \x59\x00\x0b\x01\xf8\x1b\xc1\xd8\x37\x83\x95\x5b\x00\x1f\x01\x8a\ \x05\x88\x87\x3b\xe4\x2a\x35\xab\x69\x4d\x17\xab\x2d\x06\xd0\xde\ \x02\x5a\x95\xef\x4b\x78\xc8\xd9\x05\xa0\xec\xfd\xba\x81\x46\x62\ \x80\x62\x01\xe2\x67\xb9\xaf\x85\x36\xc3\x89\x08\xd6\xbc\x47\x6d\ \x1f\x80\xde\x07\x54\x3b\x5a\xe8\x4d\x5b\x06\x22\xf3\x5c\xbf\x84\ \xb1\x04\x7e\xdc\xaf\xe5\x16\x03\xa0\x39\x8f\xc1\x08\xeb\xc6\x64\ \x06\x55\x4e\x80\x3a\x2d\x00\x0a\x56\x08\xa0\xff\x90\x24\xb4\x04\ \xa4\x7d\x80\x46\xdf\x05\xb8\x7e\xf4\x11\xfb\x83\x0f\x5e\x3f\x47\ \x02\x58\x7f\x5f\xa0\xe1\xea\x33\xff\x98\x16\x56\xb9\x05\x88\x75\ \x01\x56\x13\x47\xc2\xe5\x4a\x00\x97\x1b\xb8\x7f\xff\x7e\x30\x27\ \x10\xeb\xb8\x92\x43\x1b\x27\x80\x25\x27\xf0\xcc\x99\x33\xd3\xda\ \x7a\x16\x49\x70\xe5\xca\x95\xa4\xdc\x82\xca\x05\x6d\xa8\x43\x5f\ \xea\x7c\x6c\x4e\xa0\x96\x18\x5a\xb9\x18\xae\x9c\x40\x48\xef\xa2\ \x9c\xc0\xa3\x96\x9c\xc0\x17\x2f\x5e\x4c\x6a\xeb\xd9\xdc\x08\x20\ \x97\xcf\x84\x49\x3f\x39\x81\x8d\xa4\x84\xd1\x2b\x61\x8a\x03\x52\ \x72\x02\x4f\x9d\x3a\x35\x23\x23\xda\x42\x80\xee\x79\x02\x83\x9d\ \x13\x48\xe7\xfb\xd0\x86\xd0\xd5\xab\x57\x93\x73\x02\x91\x00\x7c\ \x3f\x3b\x47\x02\xc8\x25\x34\x24\x87\x24\xe7\x04\x42\x5f\xdd\x23\ \x78\x6a\xfb\x5d\x00\xba\x00\x49\x80\x7e\x72\x02\xc9\x02\x10\x08\ \xb9\x12\x40\xba\xc3\x54\xdf\x4d\x1b\x40\xb5\x11\x40\xfb\x65\x10\ \x28\x2f\x29\x27\x10\x76\xbc\xc6\xe5\x6f\xf8\x73\x25\x80\xcc\xa9\ \x80\x20\x39\x3a\x27\x10\x74\x33\xc6\xfd\x7f\xad\x3f\x0d\xe3\xc7\ \xbc\x21\xeb\x52\x18\xab\xbd\xca\xcc\x8d\x00\xda\xaf\xa9\x99\x4b\ \x30\xe7\x04\x82\x0e\x46\xb5\x9f\x88\xa7\xe8\xc5\xdb\xc6\xf7\xeb\ \xe0\x98\x9c\x40\xd7\x31\x28\x85\x00\xea\x29\x63\x98\xf7\xd7\x2d\ \xe0\x82\x97\x14\xd0\x47\xcb\x77\x46\x40\x2d\x04\xd0\x0e\x83\xe2\ \x27\x56\xc8\x41\x8a\xff\x6f\xf3\x6d\x4b\xfe\xc3\x52\xfc\xfb\xf2\ \xe5\xcb\x59\xed\x03\x48\xf9\xf9\x7b\x15\x1f\x4e\x1c\x6f\xfe\x43\ \x90\xda\xcf\x07\x90\x27\x84\xc8\x13\x3f\xe5\xc0\x34\x01\xb5\xcf\ \xa8\x5d\x6e\x04\xd0\x7e\x5e\xef\xc3\xcc\xa5\x78\x79\x2e\x00\x4e\ \xd2\x7e\x0e\x9d\x76\x5a\x8e\xba\x08\x40\xbb\x58\x85\x00\xcb\x4f\ \x44\xe5\x84\x18\x48\x02\x84\xac\x00\x1f\xb4\x64\xb7\x14\x28\x57\ \x02\xf8\x2c\x81\xc4\x48\xfa\x7c\x3e\xfb\x51\x17\xfc\xb8\xb8\xca\ \x63\x80\x90\x05\xe0\x3b\x84\x16\x77\x50\x08\xb0\x78\x30\xb6\xcb\ \xf4\x0f\x1c\x01\xb4\x63\xe2\x62\xac\x80\x4b\x20\xfc\x3c\x77\x0b\ \xe0\xc3\x86\x7f\xa7\x1d\x14\x29\x67\x7f\x6d\x31\x80\xf5\x6c\x60\ \xed\xec\xc0\x10\x9b\x73\x23\x40\x0a\x46\x56\xe5\xd7\x7a\x50\xa4\ \xc5\x0a\xf8\xdc\x81\x46\x04\xac\x0f\xef\x15\xde\x55\xee\xb7\x06\ \xb8\xc3\x14\x8c\x56\x9c\x00\xbe\xb3\x82\xe5\x11\x72\x7c\xb0\x96\ \xbf\x61\xcf\xe0\x0f\x76\xb7\x40\xf7\x8e\x01\xd7\x2d\x62\xfc\xa6\ \x2d\x18\x13\x5e\x9c\xd0\x2d\x70\x98\xf5\x42\x81\x23\xd3\x5b\x5a\ \x81\x2b\x55\x5a\xbe\xe2\x6a\xc7\xfb\xe6\xcf\xb4\xdc\x7c\x26\xe5\ \x02\x3c\x5a\x12\x13\x97\x99\x97\xf5\xc4\x85\x12\x4b\x02\xbf\xda\ \x8f\x8a\xd5\x08\xe0\xba\xfb\xc7\xa2\x74\x17\xa3\xb9\x4f\xa3\x75\ \x2d\x17\xce\x77\x51\x82\xbc\x39\x83\xdf\x71\x24\x6f\x3d\x73\xfd\ \x3f\x6f\x43\x7f\xf3\x9b\x52\xf8\xbd\x09\xfc\x08\x7d\x79\x13\x1a\ \xbf\x18\x4a\x2a\x2e\x16\x1f\x19\xf1\xbb\x30\x6a\xe4\xb0\x68\x79\ \xe3\x57\x15\xc2\xb9\x96\x34\xbe\x0b\x12\xf8\x95\x29\xfc\xb6\x0c\ \x1f\x09\x34\xe5\x86\x3e\xeb\x57\xf9\xda\x24\x59\x75\x04\xa0\xe3\ \xe2\xeb\xb0\x02\x2e\xb3\x16\x52\xfe\x20\x10\xc0\x6a\x01\x62\x49\ \x70\xef\xde\xbd\x6e\x4e\xa0\xaf\xdc\xbd\x7b\x77\x8a\x5b\x48\x6e\ \x19\x2b\x0f\x7f\x90\x00\xda\x8d\x21\xa4\xa4\xc7\x8f\x1f\xbf\xf7\ \x0d\xf6\xed\xdb\xb7\x13\x27\x4e\x9c\x98\x96\xca\x8e\x51\x3e\x5a\ \x1e\x7e\x4f\x91\x76\x57\x0e\x9f\xad\xa1\x99\x6d\xfd\x5e\x5a\x00\ \xab\x0b\xd0\xee\x46\x74\xc9\xcf\x2d\x42\x6c\x4e\x20\xc7\x85\x30\ \x69\x8c\x00\x90\xde\x15\x75\x4e\xe0\xf3\xe7\xcf\x27\x7d\xbe\x5f\ \xfa\x36\x19\x03\xc4\x92\x00\x95\x65\x55\xb4\xac\xa7\x29\xbe\x6a\ \xe5\x4b\x57\x90\x9a\x13\xd8\xe8\x95\x31\xfc\xde\xa0\x94\x9c\x40\ \xb0\x04\x33\xae\x99\x20\x6f\xd4\x94\xd7\xab\xba\x2c\x80\x16\x03\ \xf4\xa3\x7c\x4b\xf0\xe7\xba\x3d\x4d\xbb\x48\x4b\xbb\x57\x49\xc1\ \x20\x39\x27\x10\x9e\x39\xc7\x5d\x62\xe5\x16\x00\x6f\x0d\x93\x02\ \x5f\xbc\x78\xf1\xef\x29\x0f\xfa\xf2\xe5\xcb\xcf\x21\xd3\x1f\x9a\ \xf9\xd2\xff\xd7\x41\x00\x8b\x05\x90\x31\x80\x5c\x09\xb8\xae\xc8\ \xd5\x26\x00\xa6\xdd\xa5\xe0\x89\x6d\xa0\xbf\x36\xbf\x43\x30\xb5\ \x1f\x67\x3b\x8d\x00\xa9\xe7\xfb\xe2\x39\x81\x1a\x00\x72\xf6\x57\ \x45\x82\xd8\x55\x81\x4b\xf1\xd2\xfc\x57\xa9\xfc\x7e\x73\xf9\xe4\ \x25\x92\xb5\x10\x40\xde\x1b\x08\x0a\x4a\xca\x09\xc4\xbb\x83\x65\ \x02\x43\xc8\xf4\x4b\xdf\x6f\xb5\x00\xa9\x6e\xc0\x3a\xfb\x2d\x24\ \x70\x59\x01\x6d\x65\x00\x1b\x42\xd1\x39\x81\xd0\xcf\x98\xbc\x41\ \xb4\x76\x02\x90\xe0\x29\x0f\xd2\x66\xba\xb6\xe4\xd3\x36\x7f\xb4\ \x4d\x20\x29\x7c\x95\x2b\x81\xd0\x0a\x40\x8b\x03\xb4\xbb\x15\xb5\ \xab\xf6\x5c\x38\xc0\xe4\x30\xe7\x04\x42\x1f\xa3\x2b\x72\x73\x28\ \x67\x3e\x0c\xc2\x7c\x4e\xa0\x4f\xf9\x31\x24\xe0\x42\xfb\x08\x90\ \x6a\x01\xe4\x3d\xc9\xda\x9d\xc9\x7c\x0c\x3c\x38\xd5\xe2\x00\x9f\ \x15\xf0\x60\xa2\x6e\x87\xd3\xf6\xb3\x6f\x47\x34\x65\x62\x7a\xdb\ \xc0\x43\x17\xee\x0e\xd6\xae\x90\xed\x09\xdd\xc2\xc1\x39\xf6\xf0\ \xdb\xb1\x33\x5f\x33\xfb\x75\x9b\x7e\xeb\x52\xd0\x12\x0f\xb8\x88\ \x60\x21\x83\x5c\xfd\x84\xb0\x90\x56\xaf\x16\x02\xb8\x6e\x0f\xd7\ \xfc\xa0\x4f\x78\x4d\x38\xfe\x99\x9c\x4d\x4d\x9b\x7d\xd7\xbe\x41\ \x3f\xee\xa0\x6a\x3c\x5c\x9b\x60\x34\xf6\x55\x47\x80\xdb\xb7\x6f\ \xff\x16\xda\xfa\x5c\x4b\xdf\x87\x26\x41\x68\x42\x34\x4e\x00\x60\ \xf0\xac\xb6\x39\x22\x7d\xb1\x6b\xf6\xfa\x02\x23\xfc\xee\xd2\xa5\ \x4b\x59\xdd\x1a\xe6\xb3\x08\x3e\x0c\x25\xde\x5a\xc0\x8b\x6f\x39\ \x2b\xb7\x00\x48\x00\xec\x38\x75\x87\x2c\x44\x8c\x0b\x17\x2e\x64\ \xf5\xbb\x80\x10\x1e\xbe\x1d\x4f\xdf\x9b\x4f\x7a\xc5\x5d\x08\x50\ \x39\x02\xd5\x76\xb8\xea\x09\x10\x63\x09\xb4\x25\x9b\x8c\xe6\x73\ \xb3\x00\xae\xfd\x03\x0d\x2b\xdf\x5b\x4f\x19\xb0\x36\x66\x01\xfa\ \x25\x80\x14\x34\x57\x02\xf0\x15\x54\x48\xf9\x3e\xd3\x4f\xfa\xa8\ \x8d\x00\xf0\xf0\x6e\x0c\x40\xc5\xba\x5e\xb6\x08\x85\x75\x72\x26\ \x80\x0f\x23\xd7\x96\xb4\x6b\xe6\x37\x46\x00\x1e\x10\x5a\xc9\xe0\ \x7b\xc9\x92\x1b\x01\x7c\x58\x58\x95\x8e\xb8\xbb\xf2\x1a\xab\x8d\ \x58\xa0\x37\x69\x01\x5c\x96\xc0\xb7\x85\x5a\x08\xb0\xa8\x96\x55\ \x47\x00\x50\xec\x12\x17\x20\x99\x17\xca\xba\x09\xb1\x1a\x4e\x1b\ \xcb\x6a\x19\xe8\x8a\xa1\x08\xa7\x3b\x77\xee\x4c\x7d\xfb\xf6\xcd\ \x99\x13\x88\xdf\xc1\xe6\xd9\x54\x63\x16\x00\x09\x30\x3c\x3c\xec\ \x34\x39\x8f\x1e\x3d\xf2\xe6\x04\xbe\x79\xf3\x66\x02\x8e\x3f\x99\ \x76\x11\x25\x57\x02\x68\x78\xc4\xe6\x04\x72\x12\xa0\x8e\xb0\x54\ \xee\x02\x5c\x04\x80\x3b\x00\xa3\x72\x02\x9f\x3d\x7b\x36\xa9\x09\ \x5d\x08\xb0\xad\xbb\xc9\x96\x9a\x13\x48\x24\xa8\x9d\x00\xd2\x0a\ \xa4\xe4\x04\xc2\x09\x18\x33\xd2\x74\xe5\x46\x00\x87\xe9\x4e\xce\ \x09\x84\xfe\xe6\x48\xf9\xb5\x5a\x00\x4e\x00\xb8\x39\x3c\xe9\x9c\ \x40\xcc\x09\x2c\x04\x58\x5c\x52\x13\x16\xb8\xdd\x9e\x6a\xba\x21\ \x48\x6f\xd7\x4a\x00\x18\x64\x37\x06\xe0\x25\xf5\x60\x27\xcc\x09\ \x94\x04\x80\x73\x84\xb3\x0a\x02\xab\x0e\xde\xb8\x5e\x86\x86\x86\ \xaa\x8f\x01\x90\x00\xd8\x31\x7f\x10\xf8\xac\xa4\x9c\x40\x88\x74\ \xc7\x0b\x01\x96\x5b\x80\xde\xde\xca\x5f\x63\xad\x00\xb4\x1b\x23\ \xbd\xa0\x8e\x1a\x23\x40\xaa\xaf\xd1\xd8\x5f\x2c\xc0\x22\x21\x00\ \x57\x73\x4e\x20\x60\x39\x2a\x67\x7f\xad\x04\x20\x86\x71\x6b\x00\ \x7f\x9b\x73\x02\xa5\xf2\x69\xf0\xb9\x11\x80\xe4\x76\xb9\x02\xfc\ \x1c\xea\xb4\xb0\x00\xbe\x6a\x91\xb3\x9e\xeb\x26\xd6\x8a\x04\xeb\ \x93\x0b\xd0\x08\xc0\x06\xb2\x64\xa0\x24\x40\xef\xdf\xb6\x26\x6c\ \x21\x80\xee\x0a\xb4\xb5\xbd\x8c\xc1\x1a\x25\x00\x3c\x6c\x76\xcb\ \x96\x2d\x5d\xff\x22\x8b\x6b\x60\x31\x9f\xe7\x6a\x01\x62\x30\xd2\ \x4c\xbd\xd4\x05\xea\x08\x4b\x70\x46\xc7\x56\x20\x02\xd0\x03\x34\ \x22\xa4\x10\x83\xda\xc0\x8f\x4c\xb3\x5a\x05\x90\xdc\x16\x02\x58\ \xb0\x26\xbd\x14\x02\xc4\x32\x7b\x85\xea\xfb\x5c\xa9\x24\xc5\x40\ \x10\x00\x06\xd1\x75\x01\x5a\xb1\x0c\x30\x54\x27\x57\x0b\x10\xc2\ \xc5\xf7\xbd\x4b\x1f\x9b\x37\x6f\xae\xde\x05\x14\x02\x54\x6b\x2a\ \xfa\x51\x3c\xb5\x6d\x9c\x00\xc8\x2c\x2c\xae\x07\xcb\xcf\x2d\x42\ \x52\x9b\xdc\x2c\x40\x4c\x2c\x65\xc5\x9b\xf4\x53\x9b\x05\xa8\x9a\ \x00\x5c\xb0\x5c\x09\xe0\x5a\x59\xf1\xc9\x33\x70\x04\xe0\x4c\xb3\ \x0e\x2e\x54\x2f\x67\x02\x84\xb0\xf1\x7d\xcf\x75\x51\xab\x05\x80\ \x41\xcc\x6e\xda\xb4\xa9\xeb\x02\x42\x25\x56\x20\xec\xef\xe4\xc9\ \x93\x59\x2d\x03\x63\xad\x69\x08\x73\xfe\x3d\xea\xa9\xda\x88\x05\ \x7a\x8b\x21\x40\x4c\x9c\x40\x03\x2f\x04\xd0\x57\x58\x34\x99\xac\ \x04\x40\xe5\xd7\x4a\x00\x7a\x80\xd5\x1a\x58\x07\x9e\x2b\x01\x5c\ \xf8\xc0\x95\x7c\xc1\x9c\x40\xac\x83\xed\xb9\x4e\x56\x8c\x00\x0f\ \x1e\x3c\xf0\xe6\x04\xbe\x7e\xfd\x7a\x02\x8e\x3f\x99\x76\x09\x5c\ \x08\xb0\xe8\x5a\x63\x73\x02\x57\x8c\x00\xf8\x60\x48\xef\x8a\xca\ \x09\x7c\xfa\xf4\xe9\xa4\xf4\x57\xd8\x4f\x6e\x04\x20\xa5\xc9\x09\ \x91\x9a\x13\x28\x49\x50\x79\x0c\x00\x03\xed\x06\x81\xb2\xa4\xe4\ \x04\x82\x25\x98\x21\xc1\xa9\xbf\x5c\x09\x20\x5c\x69\x72\x4e\x20\ \xe0\x39\x47\x58\x6e\xdc\xb8\xb1\xfa\x20\x10\x09\x80\x1d\x53\xc1\ \x87\x9d\x3e\x7d\x3a\xe9\x9c\xc0\xcf\x9f\x3f\xff\x45\x12\x29\x67\ \x02\x10\x16\x18\x68\xa7\xce\x5c\xd0\x4f\x9b\xeb\x27\xb5\x1f\x67\ \x3b\x8d\x00\x70\x50\xe4\xfb\x94\x07\x61\x4e\x60\x21\xc0\x72\x6b\ \xda\x4f\xf4\xce\x95\xdf\x88\x05\xc0\x87\xc0\x80\x93\x72\x02\x31\ \xe5\x89\x9b\x2b\xec\x2b\x37\x0b\xc0\x2d\xa9\x58\x59\x45\xe7\x04\ \x42\x5f\x63\x2b\x42\x80\x54\xa6\x49\xe5\xe7\x4c\x80\xde\x44\x5a\ \x12\x5b\x6d\xd8\xb0\xc1\x9c\x13\x08\xed\x47\xa5\xf2\x53\xf5\xe2\ \xb5\xe6\xe8\x02\x60\x60\x0b\x31\x80\xf0\x37\xe6\x9c\x40\x6d\xb0\ \xb9\x13\xc0\x85\x09\x7c\xde\x0a\x94\x25\xfa\x40\xfd\x50\x49\x71\ \xcd\x26\x02\xb8\x48\xd0\x13\xc2\x37\xe0\x25\x41\x8a\x14\x3a\x57\ \x17\xe0\x51\xbe\x3a\xd9\x7c\xf5\x1b\x23\x00\x7f\x90\xeb\xef\x18\ \xc1\xb0\x0f\x78\x19\x94\xd5\xad\x61\x81\x89\xe4\x9c\xd9\x16\xec\ \xb1\x4e\xad\x16\xc0\x3a\x08\x2b\x09\x7a\x60\xfc\x01\xff\xb6\xea\ \x2c\xeb\xd7\xaf\x6f\x59\x4a\x9d\x63\x60\x7d\x77\xcd\x75\x08\x23\ \x2b\xd6\xb2\xde\x40\x10\x80\x06\x65\x35\x5b\xa9\xc2\xc6\xb6\x03\ \x12\x74\xb4\x12\xdb\x4f\x55\xf5\x35\x7c\xfa\xed\x7b\xa0\x08\xd0\ \xaf\x30\x96\xf6\x2e\xa5\xd6\xf5\xb9\x65\x4c\x2b\x59\x27\x3b\x02\ \x20\xd8\x75\x29\x5b\xf6\xbb\x92\x8a\xb5\x3e\xbb\x72\x02\xc0\xda\ \x7d\xd6\x07\xb0\x75\x60\xb1\xf5\x9a\x52\x6a\x9d\xcf\x89\x95\x39\ \x54\xdf\x32\xd6\xc6\x09\x80\x83\x0a\x0d\x3c\xe5\x7b\x8b\xb0\x83\ \x5c\x27\x45\x66\x5f\x1b\xab\xac\x2b\x42\x80\x3a\x48\x60\x15\x78\ \x50\xeb\x55\x49\x80\x18\x19\x57\x8c\x00\x31\x83\x2c\x75\xf5\xd5\ \x08\xe2\x72\xf3\xe6\xcd\x60\x46\x10\xd6\x71\x61\xd8\x38\x01\x46\ \x46\x46\xbc\x19\x41\xaf\x5e\xbd\x9a\x80\x33\xf0\xa7\x8b\xd2\xdd\ \x4a\x27\x6c\x62\x33\x82\x34\x4c\x1b\x23\x00\xdc\x00\x16\x95\x11\ \x34\x3e\x3e\x3e\x59\x48\xe0\x26\x41\x6a\x46\x90\xc4\xb4\x31\x02\ \xa4\x64\x04\x81\x25\x98\x29\x24\x50\x49\x90\x9c\x11\x04\xb1\xc6\ \x1c\xc7\xb4\x72\x02\x68\x0a\x83\x33\x02\xff\x91\xf2\xa0\x8f\x1f\ \x3f\x3e\x2a\x04\xd0\xad\x40\x0a\x9e\xd8\xa6\x76\x0b\x80\xa6\x49\ \x29\x97\x52\x06\x3c\x3f\x3f\x3f\xec\xe8\x4f\x7b\x46\x56\x9f\xa5\ \xe0\x89\x6d\x24\x9e\xa9\xfd\x94\x76\x05\x81\x82\x40\x41\xa0\x20\ \x90\x0d\x02\xff\x07\x6f\x72\x89\xbe\x3e\x72\x2b\xe5\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x10\x51\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x00\x09\ \x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\ \xfc\x00\x00\x0f\xd7\x49\x44\x41\x54\x78\x5e\xed\x9d\x5d\xc8\x56\ \x59\x15\xc7\xfd\xfe\x1e\xbf\xbf\xbf\x7d\x55\x1a\xa7\xd4\x98\x9c\ \x32\x27\x93\x1a\xc2\xc2\x40\x68\xa4\xc2\x9b\x40\xc8\x48\x22\x23\ \xc2\x0b\x99\xf0\xa2\x92\x08\x06\x04\xa1\xa9\x0b\xe7\x66\x12\x04\ \xeb\x66\x82\xa8\x0c\xe7\x26\x90\x02\xaf\xe6\x9d\x61\x2e\x0c\x9c\ \x60\x12\xa9\x68\x3c\x17\x5e\x6a\x6b\x3d\xb8\x6c\xb9\x5a\x6b\xaf\ \xb5\xcf\x39\x8f\xef\xd7\x12\x36\xbe\xef\xfb\xec\xe7\xec\xe7\x59\ \xff\xdf\x5e\x6b\xed\x8f\xb3\xcf\xb4\x69\xf9\x2f\x2d\x90\x16\x48\ \x0b\xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\ \xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\xa4\ \x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\xa4\x05\ \xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\xa4\x05\xd2\ \x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\xa4\x05\xd2\x02\ \x69\x81\xb4\x40\x5a\x60\x72\x58\x60\xde\xbc\x79\xa3\xf3\xe7\xcf\ \x6f\xac\xb2\x60\xc1\x82\x46\x2b\xa5\xf7\xc0\x35\x7f\x37\x39\xac\ \xd3\xff\xb7\x58\xb2\x64\xc9\xc8\xa2\x45\x8b\x9a\xfe\xaf\xfc\xe4\ \x15\xe7\xce\x9d\xfb\x05\xd0\xc1\x6f\x67\xe5\xca\x95\x4f\x00\x60\ \x09\xee\xfd\x9d\x03\xb1\x6e\xdd\xba\x3f\x0d\xfb\x0b\x4e\xb4\xeb\ \xaf\x58\xb1\xe2\x19\xf8\xf7\x21\x94\x06\xcb\xb0\x3e\x3f\xc0\xf5\ \x2c\xd7\xc2\x6d\x87\x00\xd0\x04\x5e\xb8\x70\x61\x53\x2a\x96\x67\ \x48\x00\x9e\x30\xfb\xcc\xc5\x8b\x17\xff\x1d\x4a\xc3\x8b\x2b\x4c\ \x65\x05\xf0\x2c\xcb\x50\x0f\xe9\x99\xdd\xcb\x20\x00\x5c\x48\x4b\ \x70\x74\x5b\x54\xac\x3a\x74\x9d\x0d\x1b\x36\xa4\x07\x00\xcb\x83\ \xe0\x37\x41\x98\x46\x2b\xae\x30\xf1\x0a\xd3\x41\x97\xbb\xa8\x09\ \xd7\x91\x40\x70\x2f\x83\x00\x48\x41\xb9\xd8\xd1\x9f\xf9\x35\xa6\ \x3a\x00\x20\xf8\x6f\xb9\xe8\x4b\x97\x2e\x6d\x64\x71\x85\x09\x54\ \x00\xc0\xde\xd6\x3a\x26\x81\x80\x10\xb8\x97\x59\xb5\x6a\xd5\x63\ \x00\xa4\xd8\x14\xaf\x4a\xff\xcb\xf7\x20\x08\x1b\x37\x6e\x9c\x92\ \x1e\x00\x44\xbf\xa8\x89\xbd\x6c\xd9\xb2\x46\x16\x57\x98\x42\x05\ \x04\x0c\xc3\x09\xd7\x45\x7a\x67\x82\xc0\x6d\x07\x01\xe0\x22\x4a\ \xb1\x65\xec\xa2\xdf\x35\x28\xe8\x3a\x53\x0d\x00\x10\xe4\x7b\x28\ \xbc\x14\x79\xf9\xf2\xe5\x8d\x55\x5c\x61\x94\x0a\xd0\xc6\xab\xdc\ \xb3\x68\x5a\x70\x10\x10\x02\xb7\x1d\x02\x80\x0b\x6a\x89\x5e\xfa\ \x3b\x7f\xff\x54\x01\x00\x04\x39\x12\x11\x1d\xc2\x6c\x23\x8b\x2b\ \x0c\xab\x00\x6d\x9c\xc4\x76\xb8\x77\x29\x81\xc0\x21\x70\xdb\x41\ \x00\x2c\xf1\xad\x04\x46\x6b\x9c\xd3\xb8\x69\xd3\xa6\x49\x1d\x02\ \x40\x8c\x8f\x72\xe1\x79\x2f\x97\x42\x83\x7d\x1b\xad\xb8\xc2\x40\ \x05\x18\x3a\x7e\x9e\xae\xcd\xdb\xd3\x40\x90\xde\x80\x20\x70\xdb\ \x59\xbd\x7a\xf5\x00\x00\xba\x80\x14\x5d\x8b\x69\xf4\x37\x59\x97\ \xae\xb1\x65\xcb\x96\x49\x09\x00\x18\x75\x25\x0a\x61\x09\xce\x85\ \x06\xbb\x36\xa5\x52\x12\x06\xde\x37\x82\xd7\x92\x30\x95\x60\x20\ \x2d\x38\x08\xa1\x09\x27\x04\xa0\x8d\xf8\x96\x3b\xc2\x0f\x32\x19\ \x01\x00\xe3\xff\x93\x04\xe0\xc2\x94\x44\x5f\xb3\x66\x4d\x63\x15\ \x0d\x00\x08\x9d\xf3\x41\x8f\x0f\x11\x1c\xe9\x35\x78\x9b\x12\x04\ \xd9\x21\x39\x04\xae\x07\x58\xbb\x76\xed\x00\x80\xd2\xb0\x45\xcb\ \x62\x65\x4c\xc2\x0f\x41\xd7\xd8\xba\x75\xeb\xa4\xf1\x00\xe0\x86\ \xdf\x91\xc2\x5b\xa2\x4b\xb1\xc1\xb6\x8d\x55\xa4\x30\x20\xfa\xfb\ \xfc\xfd\xd2\x7b\x50\x9b\x04\x02\xf7\x42\xa4\x0f\xd7\x80\x46\x09\ \x21\x00\x48\x38\xde\xab\x35\xd1\x35\x17\xa4\xc5\xa6\xc9\x00\x00\ \x08\xff\x07\xfc\xbe\x64\x70\x4f\x74\x2e\x34\xcc\x84\x36\x5e\x21\ \x61\xa0\xde\x5f\xa9\xae\x84\xc5\x02\xc2\x82\x81\x3a\x25\x0f\x07\ \x61\x00\x4a\xe2\x97\x86\x33\x12\x14\xbc\xce\x44\x06\x00\xbe\xeb\ \xcf\x3d\xe1\xb9\x30\x24\x9a\x14\x7c\xfd\xfa\xf5\x8d\x53\x7e\x42\ \xaf\x6b\xb0\x70\x18\x34\x10\x34\x08\xa4\x27\x40\x2f\xe0\x02\x00\ \x8d\x8f\x22\x31\x04\x80\x95\xdd\x96\x20\xc0\xd7\xf8\xfb\x26\x22\ \x00\xf0\x1d\xbe\xd3\x55\x78\x2e\x38\xcc\x86\x36\xd1\x22\x41\xe1\ \x40\x68\x20\x50\x78\xb0\x20\xe0\x39\x41\x15\x00\x25\xf1\xb5\xb1\ \xac\x84\x82\xde\xbf\x6d\xdb\xb6\x09\x93\x03\xc0\x67\xfe\x22\x17\ \x1e\xbf\x27\x19\x96\x0c\x4d\x3d\x50\x73\xf3\x25\xd1\x21\xa9\xc3\ \x59\x51\xb3\x68\x80\xf0\xeb\x69\x20\xd0\x67\xd1\x20\xe0\x21\x9a\ \xf2\x81\x10\x00\xb2\xf7\x4b\x61\x35\xf1\xb5\xac\x94\xde\x37\x11\ \x00\x80\xcf\xfa\x9c\x95\xdc\xd5\x08\xcf\x45\xb4\xc4\x86\x79\x91\ \x86\x17\xab\x9e\x04\x42\x0b\x11\x04\x21\x82\xc0\x21\xe0\xc9\x21\ \x0f\x05\x2e\x00\xd0\xc8\x28\x9f\xc6\xd4\x86\x3a\x1e\x00\x12\x86\ \xed\xdb\xb7\x8f\x5b\x0f\x80\xcb\xa6\x9a\xf0\x3c\xeb\x46\xe3\x96\ \x7a\xbb\x25\xba\x14\xba\xcd\xef\x1c\x0e\xde\x0e\xc2\x20\x3d\x02\ \xf7\x06\x3c\x1c\x50\x48\x46\x5d\x7b\x01\xc0\x9a\xcd\x92\x31\x08\ \x41\xc0\xc6\xc7\x29\x00\x33\xe0\xb3\x7d\xa0\xc5\x79\xab\xc7\x93\ \xc1\x35\x37\x4f\x42\x45\x44\xde\xbc\x79\x73\x43\x25\x52\x1f\xeb\ \x48\x10\x64\x68\x28\x79\x02\x1e\x0a\xaa\x00\xb0\x7a\xbf\x07\x80\ \x9c\xb5\xda\xb1\x63\xc7\xb8\xf2\x00\xe0\x12\x6f\xd6\xb8\x7b\xde\ \xd3\xc8\xf0\xd4\x1b\xb9\x30\x9a\x98\x5c\xec\xe8\xcf\x16\x14\xd4\ \x96\xe5\x09\x10\x02\xcf\x0b\x84\x00\xa0\x98\xe1\xcd\x74\x79\x20\ \x50\x28\x18\x2f\x00\xc0\xf7\xfa\x0d\x9f\xba\x8d\x24\x78\xb2\xd7\ \xb7\x15\x1e\x66\x43\x71\x46\xd4\x2c\x1a\x1c\x1a\x08\x12\x02\x9e\ \x17\x78\x5e\x00\xbf\xfb\x53\x05\x80\x3c\xc1\x58\x03\x00\x20\xff\ \x4c\x0a\xdf\x87\xf8\x56\x4f\xe5\x62\x7a\xc2\xcb\xd7\x25\x08\x51\ \x08\xf8\xe4\x91\xf4\x02\x14\x8a\xa7\x1c\x00\xf0\x85\xbf\x69\x79\ \x33\x6d\x68\xa7\x4d\xe2\x58\x2e\xdf\x73\xf7\x52\x58\x98\x0b\xc1\ \x09\x31\xb3\x94\x40\xb0\x20\x20\x6f\x54\xf2\x02\x3c\x1c\xa3\x47\ \xef\xe4\x01\x34\x97\x6f\xcd\x51\xf3\xba\x4f\xdb\x03\x40\xb6\x7b\ \x48\x9b\xc3\x90\xd3\xb8\x3c\xd9\x93\xe2\x4b\xe1\xd1\xd8\xa5\x44\ \xaf\xd4\xeb\x3d\xf1\xe9\xf5\x1a\x08\xb4\x50\x20\xbd\x00\x5f\x44\ \x22\x2f\xd0\x3b\x00\x28\xb4\x9c\x84\x90\xa0\x3c\x2d\x00\x40\xf8\ \x2d\xde\xba\x7c\xa4\xe7\xf7\x25\x7e\x54\x78\x5e\x8f\x43\x50\x1a\ \x2d\x0c\x1d\x80\xd2\x8a\x17\x17\xbd\xb4\xc6\x4d\xc6\x1e\x36\x00\ \xb8\x6c\x0a\xc2\xdf\x8b\xac\xcd\xd7\xf4\xfa\x36\x3d\x9e\x8b\x09\ \x13\x60\x4d\x6d\xf1\x60\xd0\x26\x91\x78\x28\x40\x2f\x20\x93\x41\ \x0a\x03\x55\x21\xc0\x1b\x01\x78\x1b\x1c\xb8\x57\x18\x26\x00\xf0\ \x39\x6f\x4b\xe1\x6b\xa6\x72\xbd\x2c\xbf\x26\xd6\x77\x15\x1f\x61\ \xe9\x03\x00\x82\x80\x66\x07\x5b\x01\x50\xca\x9a\xa5\x1b\xb5\x60\ \x18\xa6\x07\x00\x91\xff\xac\x09\x1f\x5d\xc0\xd1\x62\xbe\x36\xa3\ \x57\x02\x80\xbb\xeb\x88\xf8\x23\x23\x23\x0d\x15\xcb\x33\x4c\x2a\ \x00\x28\x09\xe9\xd3\x03\x80\xc0\x6f\xc8\xb5\x09\x6f\xc2\x2a\x3a\ \xb3\x27\xc7\xf8\x7d\xf6\x7e\x2e\x7e\x09\x82\x3e\x00\xe8\x25\x04\ \x68\x1e\x80\x8f\x9d\x23\x5e\xa0\x4f\x0f\x00\x22\x9f\xb3\x84\xb7\ \x5c\xbe\xcc\x55\xf8\x2a\x9e\xe7\xfa\x31\xfe\x4b\x00\xac\x4c\x5f\ \x26\x7b\xb2\x77\x6b\xe2\xe3\xdf\x34\x2f\x50\x03\x80\x95\x08\x6a\ \x33\x82\x55\xa3\x00\x5a\x0c\xe2\x06\xd7\x76\xc2\x94\x20\xe8\x6b\ \x18\x08\x20\x7e\x2d\x2a\xbc\x04\x54\x2e\xe8\xf0\x45\x1d\x0f\x80\ \xb6\xbd\x1f\x05\xb4\xdc\xbb\xe7\xfe\xad\x1c\xc0\x1a\x0d\x70\x00\ \xe4\x5c\x80\x35\x19\xe4\x0e\x03\x71\x43\x88\xb7\x1a\xe8\x4d\x01\ \xf7\x31\x0c\x04\xd1\x3f\x59\x12\x5e\xf6\xfa\xd2\x56\x2d\x6b\xc7\ \x4e\x97\x79\x7d\x2b\xfe\x97\x00\xf0\x46\x04\x35\xbd\x9f\x2f\x10\ \x61\xe8\xd2\x00\x90\xcb\xc3\xa1\x51\x80\x04\x20\x1a\x0a\x4a\x50\ \xd4\xe4\x00\xd0\xde\x26\x4f\x78\x2f\xe6\x97\x5c\x3f\xba\x47\xab\ \xf7\xf7\x39\xd9\xe3\x89\x2d\x5f\xf7\xc4\x47\x2f\xa0\xed\x21\x90\ \x43\x40\x6b\x04\x10\x0e\x01\x04\x80\xe6\x05\x4a\xb1\xb6\x2b\x00\ \x38\x96\x87\x8d\x97\x8f\xb7\x5a\x7b\x10\x68\x7b\x12\xf8\x67\x68\ \xe3\xfe\xbb\x00\x80\x1e\xc1\xcb\x05\xbc\x98\x8f\xef\xb7\x66\x03\ \xad\x4d\x24\x5a\xef\xa7\x1c\x80\x92\x70\x12\x3f\xec\x01\xe4\x9e\ \x40\x2d\x17\x88\xde\xf1\x82\xf5\x3c\x0f\x00\xd7\x7f\xcf\x13\xbc\ \xf6\x33\x0c\x03\x00\x14\xc1\x5b\xe8\x69\x33\xfb\xe7\x4d\x05\x97\ \xc4\x27\x00\xb4\x69\x60\x09\x40\x68\x31\x08\xef\x0b\xf0\x36\x85\ \xd6\xec\x08\x2a\x01\x00\xa2\x5e\xaf\x11\xde\x72\xfd\xb5\x5b\xb5\ \xbb\xac\xef\x4b\x08\x10\x08\x6d\xc5\xaf\x06\x84\x9a\x35\x00\x8a\ \xfd\xd1\x85\x20\x3e\x09\x54\x05\x80\x06\x81\x14\x2b\x0a\x82\xf4\ \x00\xe0\xea\x5f\x6f\x23\xbc\xe7\x05\xa2\x21\xa0\x4b\x1e\x40\xbd\ \x51\x2e\xdb\xb6\x81\xe0\x69\x2e\x05\xa3\xed\x3a\x03\x20\x97\x56\ \xbd\x1e\x49\x80\xd0\x96\x30\xa8\xff\x4a\x57\xe1\xdb\x40\x50\xda\ \xb7\x5f\xda\xde\xa5\xcd\x05\x94\xe6\x06\x08\x8a\x61\xec\x01\x90\ \x59\x7f\x24\xf6\xcb\xde\x1f\xda\x13\x28\x6f\x0d\xb3\x6e\x10\xa9\ \x11\x12\x37\x9a\xd6\xd4\xaf\xa9\x5b\xca\x45\xb4\x3c\xa0\x34\x17\ \x80\x30\xb4\xdd\xe0\x69\x6d\xf7\xb2\x60\x88\xee\x00\x22\xe0\xa2\ \x3b\x81\xb4\xf9\x7f\xea\xfd\x21\x00\xb4\x9b\x43\xbb\x42\x00\x31\ \xf7\x6f\x5c\x54\xbe\x64\x1b\xf9\xd9\x03\xa2\x16\x82\x9a\xfd\xfc\ \xde\x9e\x3f\x6f\xc2\x28\xb2\x0f\xb0\xb4\x31\xd4\xda\x07\xc8\x77\ \x05\x47\xf6\x02\x92\x86\xee\x44\x10\x02\xa0\xdd\x1e\x1e\xbd\x4f\ \x50\x13\x6b\xe7\xce\x9d\xd7\x1f\x3c\x78\x70\x70\xef\xde\xbd\x6f\ \x46\x04\xf7\xea\x68\x6d\xf4\x01\x01\x26\x87\xda\x5e\x00\x3e\x3c\ \xac\xd9\xfd\x1b\xdd\xf1\x5b\xda\xf6\x85\xed\xc9\x4d\xa0\x35\xe2\ \xf3\xde\x8f\x79\x5d\x35\x00\xfc\x4e\x61\x79\x36\x80\x27\x14\xbd\ \x4e\x37\x86\x00\x04\x1f\x41\x10\x20\x27\xf8\x4b\xf4\xbd\xa5\x7a\ \x1e\x08\x6d\x92\x42\x0e\x81\x0c\x09\x1a\x08\x91\x3c\xa1\x06\x84\ \xd2\x7d\x00\x52\x78\xd9\xf3\xf9\xb0\x8f\xef\x03\xac\xba\x35\x0c\ \x8c\xf6\xf8\x84\x10\x7e\x04\x8c\x77\xca\x55\x49\x28\x79\x67\x10\ \x40\xb0\x17\x41\xc0\xd0\x50\x3a\x70\x42\xbb\x3f\xd1\x6a\xa7\x94\ \x1c\x6a\x6b\x16\x5a\x62\xc8\x47\x07\x1e\x08\x16\x0c\xb5\x40\x68\ \x77\x05\x69\x3d\xbe\xad\xf8\x68\x2f\x7e\x9b\xb8\xeb\x01\x10\x00\ \x3c\x49\x82\x8e\x89\xb1\x20\xe0\xc3\x44\x4f\x44\xeb\xe6\x50\x80\ \xe0\x85\xdb\xb7\x6f\xbf\x04\xc3\xc2\x7f\x7b\xd7\x88\x7a\x1f\x0b\ \x04\xcf\x1b\x58\x77\xff\x48\x10\xac\x10\x51\x02\xc2\xbb\x27\x50\ \xba\x79\x9e\xe1\x6b\xc2\x47\x7a\x3e\x77\xfd\x04\x40\xe8\xee\x60\ \x02\x80\x43\xc0\x73\x02\x79\x78\x84\xe7\x19\xbc\xdb\xc3\x1f\x3e\ \x7c\x38\x03\x40\x78\xf1\xca\x95\x2b\x2f\x97\xce\x20\x2a\x01\x22\ \xbd\x42\x69\xbe\xa2\x0b\x08\xda\x9d\x41\x6d\xef\x00\xb6\xee\xfb\ \x2b\xdd\xff\x67\x09\x4f\xc3\x3d\x3e\xe5\x4b\x3d\x9f\x8b\x1f\x06\ \x00\xcf\xf6\xa3\x43\x85\x4a\xa7\x85\x45\x0e\x8d\xc2\x3a\x91\xdb\ \xc3\x01\x84\x79\x18\x16\xce\x9d\x3b\x77\x32\x7a\x5d\x0d\x8a\x12\ \x0c\x3c\x51\x8c\x80\x20\xbd\x82\x0c\x11\xda\x8c\xa2\xbc\xb5\xbb\ \xe6\x77\x79\x2e\x40\x9b\x33\x01\xac\x9e\x1f\x3e\x21\x04\x8c\xf4\ \x7f\x07\x45\x46\xcf\x0a\xb4\xbc\x43\xcd\x19\x41\x00\xc1\x33\x08\ \xc2\xf1\xe3\xc7\x5f\x29\x85\x1f\xef\xf0\xaa\xae\x20\x60\x42\x15\ \x3d\xe2\x45\x3b\xd0\xc1\x82\xa3\x54\x57\x3b\x3e\xa6\x74\x18\x44\ \xa4\xe7\xa3\x9d\xf8\x21\x92\x6e\x0e\xc0\x01\xe0\x9e\x40\x86\x04\ \x2d\x47\xb0\xce\x0d\xac\x01\x80\x3e\x20\x40\xb0\x1a\x41\x38\x74\ \xe8\xd0\x2f\x4b\xe7\x11\x6a\xde\xa2\x94\x2f\x44\x92\x45\x6b\xd7\ \xb3\x76\xc0\x93\x75\xe6\x8f\xfc\x3b\xdf\xad\x5b\x7a\x8f\x6c\x83\ \x4f\x66\x71\xaf\x45\xde\x8c\xbe\x0f\x01\xcf\x33\x7e\x29\x7e\xe8\ \x94\x30\x04\x80\x8e\x15\xe5\xe7\xfd\x96\x4e\x0f\xf5\x8e\x90\x85\ \x61\x50\xeb\x9b\x43\x21\x34\x6c\x46\x10\x76\xed\xda\xf5\xa6\xcc\ \x45\x34\x30\x4a\x9e\x21\xea\x15\x6a\xb6\xbe\x95\x4e\xfe\xd2\x0e\ \x92\xe0\x71\x5c\x7b\x6f\xe9\x46\x1b\x1e\xc2\xb4\x89\x35\x4f\xfc\ \x6a\x00\x10\x04\x0b\x82\x1a\x20\xba\x00\x40\x1e\x01\x40\x78\x16\ \x41\x80\x8c\xf9\xa6\x06\x5c\x17\x18\x22\x8b\x5c\xd6\x7e\x87\xe8\ \xf6\xf8\x68\x3d\xad\x9d\x36\xc2\x73\xb7\x5f\x75\x52\x28\x7a\x00\ \x3c\x55\x5a\x9e\xfd\xdf\xe5\x04\x71\x10\xad\xb5\x07\x90\x31\x0b\ \x40\xf8\x38\x82\x00\x43\xc7\xf7\x6b\xc2\x52\xcd\xb1\x77\xde\x04\ \x93\x95\x4c\xd6\x6e\x95\xf3\xc4\x96\x6e\x9e\x12\x3c\xe9\xee\xf9\ \x38\xdf\x3a\x21\x94\xf4\x73\x73\x00\x30\x6c\xf1\x89\x21\xde\x43\ \x23\x9e\xd6\x69\xe1\x00\xc1\xa7\x70\x0e\x01\xbc\xc1\x7f\x3c\x6f\ \x24\xbd\x43\x6d\x02\x69\xdd\x7f\x80\x82\x44\x97\xc4\xa3\xf5\x34\ \xf8\x64\xe8\x92\xae\x9e\x62\x3d\xef\xf5\xe8\x25\xe5\x41\xd1\xa1\ \xc3\xa2\x25\x00\xf4\xa0\x81\x36\x4f\x10\x21\x58\xfa\xf4\x00\x9c\ \x60\x9c\x43\x80\xf2\x99\xab\x57\xaf\x7e\x45\x26\xac\xda\x30\x36\ \x32\xb9\x65\x4d\x70\x45\x66\x20\xbd\x45\xab\xc8\xeb\x5a\x3b\x32\ \xa9\xd5\xce\x66\x8e\x1c\x15\x1f\x7a\x5e\x00\x7c\xc8\xe2\x43\xa3\ \xb4\xf0\xe0\x3d\x3f\x08\x26\x3d\x7a\x0b\x01\x9a\x0b\xa3\x39\x84\ \xb3\x67\xcf\x9e\xf4\x72\x16\x6f\x48\x6b\xcd\x41\xd4\x4c\x44\x75\ \x59\xe7\xd0\xda\xb1\xce\x60\xb6\x7a\x3c\xc2\x4f\x76\xe0\x0f\x8b\ \x98\xb4\x00\xb0\xa1\xe3\x62\xcc\x0f\x8e\x1d\x3b\x76\x8e\x0c\xa0\ \x3d\xe1\x64\x18\x10\xf0\x4d\xb4\x6d\x01\xb0\x20\xab\x05\x80\x77\ \x82\x56\x00\xe0\xe3\xc5\xb0\x94\x1e\x05\xe7\x3d\x56\x6e\x2c\x9f\ \x1a\x06\x10\xac\x41\x10\xf6\xef\xdf\xff\x7a\x24\x79\xf5\x80\xb0\ \x0e\xcf\xf6\x72\x89\xda\xf5\x0d\xcb\xfb\xc8\x1c\x46\x73\xf7\xbc\ \xd7\x5b\xcf\x0b\x0a\x79\x00\xf8\xd0\xa3\x04\x40\x17\x10\xc6\x12\ \x00\x36\x74\xdc\xfa\x68\xf9\xf9\x8f\xda\xdc\x46\x4d\xde\x10\x99\ \x83\x28\xad\x93\x78\xd3\xdb\xa5\xc9\x2e\x09\xa8\x96\x68\x4b\x97\ \xaf\x3d\x31\x2c\x0c\x00\x3c\x64\xb0\xc1\x22\x41\x68\xeb\x15\x60\ \xf2\x63\xa8\x39\x80\x37\xb4\x01\x08\x9e\x43\x10\x60\x2c\xfe\xb6\ \x37\xbc\xb5\xa0\x28\x25\x95\x51\x0f\x52\x23\xb2\xd5\xcb\xe5\xb3\ \x80\xa2\xc2\x93\x96\x9e\xad\xa6\xa1\x07\x20\x00\x4a\x20\x44\xbc\ \x04\xd5\x19\x6b\x00\x58\x8e\xf0\x3c\x82\x00\xbd\xf1\x1f\xa5\x64\ \xb6\x34\xd4\x8d\x3e\x35\xcd\x9b\x1d\xf5\x04\xd6\x9e\xfe\xa5\xc5\ \x76\x19\xe3\xb5\xd0\x4c\x3a\xa0\x9e\x2e\x00\x60\x9c\xd1\x39\x73\ \xe6\x34\x58\x24\x08\x35\x40\x70\x40\xc6\x0b\x00\x0c\x84\xfd\xb7\ \x6e\xdd\x7a\x09\x8c\x77\x4f\x33\x58\x69\x54\xe3\xcd\x83\x94\x92\ \x4f\x0b\x9e\xc8\x35\x6b\x1f\xd7\x8b\xdf\x8b\x6b\x40\xda\x55\x01\ \xe0\x81\x60\x01\x22\xff\x3e\xde\x00\x40\x23\xc0\xd0\x71\x26\xce\ \x21\x5c\xba\x74\xe9\xab\x35\xc9\xae\x37\xe4\x8d\x3c\x74\x53\x0a\ \x1e\xb9\x66\xf4\x33\x4a\xcf\xcc\xb5\x40\x3d\x5d\x00\x20\x4e\x8d\ \xce\x9e\x3d\x7b\xe0\x01\xbc\x12\x05\x00\x16\x3d\xc6\x34\x07\x28\ \x7d\x69\x08\x09\xf3\x31\x2c\x9c\x3a\x75\xea\xbb\x51\x23\x47\xeb\ \x45\x84\xb5\x92\xb5\x68\x1b\xb2\xa7\x23\x00\x52\x17\xae\x63\x18\ \x80\x3e\x20\xa0\x86\xc7\x33\x00\x6c\xc4\xb0\x0c\x41\x38\x7c\xf8\ \xf0\x4f\x6b\x8c\x3f\xd6\x75\xb5\x44\xbd\x37\x00\x10\x02\x2a\x9e\ \x37\x28\xbd\x3e\x11\x00\x60\xf9\xc1\x7a\x04\x61\xcf\x9e\x3d\xbf\ \xd2\x8c\xdb\x76\x24\xd4\x15\x14\xeb\xb3\x68\x3d\x1e\x01\x90\x7a\ \x90\x8e\x21\x0f\x30\x6b\xd6\xac\x06\x0b\x07\xa0\xcb\xcf\xb0\xea\ \x35\x6e\x43\x80\x65\x10\x80\x60\x3b\x82\x00\x4b\xd9\xd7\x79\x8f\ \x2a\x09\xd1\xe5\x35\x38\x3d\xe4\xf7\x91\xf7\x97\xc2\xae\xd6\x09\ \xa5\x6e\x55\x00\x10\x08\x5d\x81\x98\x88\x00\x30\x8f\xf0\x31\x04\ \x01\x86\xc7\xef\x46\x73\x9e\xe8\xe8\x89\xd7\x83\x36\x76\x61\x3b\ \x30\x52\xf8\xc0\x6b\xa7\xe4\x6d\xad\x8e\x4a\x1a\xba\x00\xc0\xf8\ \x74\x74\xe6\xcc\x99\x03\x0f\xd0\x57\x81\xa5\xd0\x09\xe7\x01\x94\ \x7d\x08\x9f\xb8\x7f\xff\xfe\x67\xc1\x95\xdf\xad\x09\x87\x9e\x98\ \x72\x78\x06\x10\xec\xbf\x73\xe7\xce\xe7\x22\x6d\x78\x5e\x59\xd3\ \x2f\x01\x70\x2d\x60\x57\x80\x61\xe3\x74\x10\xe8\xd3\x37\x6e\xdc\ \xf8\x52\x44\xa0\x9a\x3a\x72\x99\x1b\xbd\xc1\xe5\xcb\x97\x5f\xb6\ \xae\xd1\x46\x7c\x04\xc2\xfd\xfa\xe4\x01\xd0\x0b\x58\xa5\xc6\x33\ \xe0\x35\x26\x83\x07\x10\x02\xcd\x42\x81\x2e\x5c\xb8\x70\xdc\x13\ \x22\x3a\x9a\x2a\x2d\x73\x9f\x39\x73\xe6\x5b\xa5\x76\x3c\x3d\xb8\ \x8e\x2e\x00\x10\x83\x06\x21\xa0\xcf\x32\xd9\x00\x60\x43\xc7\x05\ \x08\xc2\x89\x13\x27\xbe\xdf\x35\x4f\x72\xe6\x2a\x06\xcb\xdc\x47\ \x8e\x1c\xf9\xb1\x27\x36\xbe\x5e\xd2\x2e\x04\xc0\x8c\x19\x33\x12\ \x00\xd7\x52\xff\xab\x00\xe2\x2c\x7f\xb4\x85\xfd\xd5\xb6\x89\x73\ \xa4\x39\x08\x41\x6b\xb1\x9d\xdd\xbb\x77\xbf\x61\x81\xe0\x75\x5c\ \xb7\x1d\xf4\x00\x08\x80\x57\x4a\x0d\xc9\xf7\xc2\x2e\xa3\x09\x9f\ \x04\xba\x86\x83\x0a\x20\xce\x46\x14\x08\x6e\x87\xbf\x1a\xe9\xa9\ \xbc\x4e\xe4\xfa\xcc\xf3\x8c\x60\x3b\x70\xaf\xc1\x5b\x9e\xe0\x52\ \x0b\xb7\x9d\x28\x00\x1e\x20\xfc\xf5\xa9\x02\x00\x1b\x3a\xee\x44\ \x81\x20\xf4\xdd\xf0\x04\xa2\xd7\x5d\x61\x94\x0a\xd0\xc6\x60\x88\ \x0a\x0b\x78\xef\x44\xf5\x70\xdb\x49\x00\x5c\x13\x85\x2b\x80\x38\ \x83\xdb\xe0\x61\xf1\xe7\x96\x07\x42\xf8\xa2\x3a\x08\xcf\xe3\x10\ \x15\x12\xc5\xbb\x1e\x08\x6e\x3b\xb0\x38\x31\x3a\x7d\xfa\xf4\x46\ \x2b\xde\xc5\xe5\xeb\x74\x0d\xd8\x23\x37\x25\x42\x80\x65\x5c\x80\ \xe0\x05\x14\x08\x5c\xfe\xbf\x2c\x1b\xba\xc2\x38\x15\xf8\x10\x15\ \xda\xb8\xc7\xdb\xe1\x5a\xba\xed\x94\x00\xb0\xc0\xf0\xfe\x3e\xd5\ \x01\x40\xa3\x3f\x12\xe8\xc5\x6b\xd7\xae\x7d\x59\x83\xc0\x15\x26\ \x58\x01\xda\x19\x0c\x51\x2f\x5e\xbc\xf8\x75\x4d\x17\xf7\x32\x09\ \x80\x6b\xa2\x4e\x15\x40\xa0\xd9\x28\xd0\xf9\xf3\xe7\xbf\xc1\x41\ \xe8\x74\x51\x3d\x2c\x0c\x96\xb9\x4f\x9f\x3e\xfd\xed\xf4\x00\x7d\ \x5b\xb7\x87\xeb\x81\x38\x0b\x51\xa0\xa3\x47\x8f\xfe\x10\x05\xea\ \xe1\x92\xea\x25\x00\xb8\x25\x55\xed\x1c\x38\x70\xe0\x47\xfb\xf6\ \xed\xfb\xc5\xa3\xf2\x1a\x0c\x69\xae\xc0\xa1\x4e\xbf\xae\x29\xf8\ \x1e\x78\xff\x6b\x74\x9d\x83\x07\x0f\xfe\x60\x58\x5f\x70\xa2\x5f\ \x17\xc4\x19\xdc\x06\x3f\xec\xef\x11\x6e\x07\x2a\xae\xc7\x5b\xb2\ \xa9\xc0\xef\x3b\xa0\xe0\xb0\xa6\xa6\xec\x10\xd7\x58\x3d\xec\x2f\ \x98\xd7\x4f\x0b\xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\ \x16\x48\x0b\xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\ \x48\x0b\xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\ \x0b\xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\ \xa4\x05\xd2\x02\x69\x81\xb4\x40\x5a\x20\x2d\x90\x16\x48\x0b\xa4\ \x05\xd2\x02\x69\x81\xb4\xc0\x14\xb4\xc0\x7f\x01\x6e\xd1\x23\x6b\ \x74\x44\xf6\x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ " qt_resource_name = "\ \x00\x05\ \x00\x6f\xa6\x53\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x0d\ \x01\x64\x69\xf2\ \x00\x44\ \x00\x65\x00\x76\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x49\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x32\ \x00\x03\ \x00\x00\x55\x27\ \x00\x50\ \x00\x4e\x00\x47\ \x00\x05\ \x00\x49\x27\x9b\ \x00\x42\ \x00\x6c\x00\x61\x00\x63\x00\x6b\ \x00\x0e\ \x0e\x72\xf5\x67\ \x00\x4e\ \x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\x00\x72\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0a\x2c\xf2\xa7\ \x00\x46\ \x00\x6c\x00\x69\x00\x63\x00\x6b\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0b\x63\x5c\x07\ \x00\x53\ \x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x06\x75\xf1\x87\ \x00\x46\ \x00\x6c\x00\x6f\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0b\x8c\x4f\x87\ \x00\x52\ \x00\x65\x00\x70\x00\x65\x00\x61\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x09\xb1\x2e\xa7\ \x00\x56\ \x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x20\x00\x4f\x00\x66\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x01\xa2\x93\x27\ \x00\x42\ \x00\x6f\x00\x6f\x00\x6b\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0c\x98\xfa\x47\ \x00\x50\ \x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x08\x9e\x5c\x07\ \x00\x54\ \x00\x61\x00\x73\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x01\xdc\x8e\x27\ \x00\x43\ \x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x73\x00\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x75\x00\x72\x00\x65\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x08\ \x02\x8c\x5d\xa7\ \x00\x50\ \x00\x6c\x00\x61\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\x36\xe1\x87\ \x00\x54\ \x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0a\x05\x2e\x47\ \x00\x43\ \x00\x61\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x20\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x08\x90\x60\x47\ \x00\x53\ \x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0f\xa8\xcb\x67\ \x00\x56\ \x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x20\x00\x46\x00\x75\x00\x6c\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0a\xc2\xee\xa7\ \x00\x56\ \x00\x69\x00\x64\x00\x65\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x0f\xf7\xd4\x67\ \x00\x50\ \x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x54\x00\x72\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ " qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x30\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x3c\x00\x02\x00\x00\x00\x11\x00\x00\x00\x05\ \x00\x00\x00\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x5c\xba\ \x00\x00\x01\x40\x00\x00\x00\x00\x00\x01\x00\x00\x85\x49\ \x00\x00\x01\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x9d\x47\ \x00\x00\x01\x82\x00\x00\x00\x00\x00\x01\x00\x00\xad\x7b\ \x00\x00\x00\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x2f\xea\ \x00\x00\x01\xb8\x00\x00\x00\x00\x00\x01\x00\x00\xd5\xa3\ \x00\x00\x01\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x76\xa3\ \x00\x00\x00\xd2\x00\x00\x00\x00\x00\x01\x00\x00\x4d\x51\ \x00\x00\x01\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xc2\x8e\ \x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x10\xe9\ \x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xf7\x2d\ \x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xbe\ \x00\x00\x00\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x3d\x45\ \x00\x00\x01\x12\x00\x00\x00\x00\x00\x01\x00\x00\x6b\x87\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\xd2\x00\x00\x00\x00\x00\x01\x00\x00\xe5\x69\ \x00\x00\x02\x0e\x00\x00\x00\x00\x00\x01\x00\x01\x07\x0b\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
UTF-8
Python
false
false
2,014
11,845,519,838,891
cc94c6925dfc4015eab3cb1b2f1e56a5a90c43c3
479a43b87fc321777a67f4ae429807e8f901b8a4
/audioplayer/releases/0.0.1/remus/player/player.py
e7d754f9e1d2c5fe72ebab1f857d2112518fd5b0
[ "GPL-2.0-only" ]
non_permissive
BackupTheBerlios/remusic-svn
https://github.com/BackupTheBerlios/remusic-svn
8b0a828ed65ffeb221a9a3160f7ebfc415574654
a0b2a4f354b7e6b76720ca5e0077be98254e8df4
refs/heads/master
2016-09-10T18:39:53.773594
2005-05-04T07:45:39
2005-05-04T07:45:39
40,748,600
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# # Copyright (C) 2004 Daniel Larsson # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # """Audio player. Plays audio files using the gstreamer framework. """ __author__ = "Daniel Larsson <[email protected]>" import time import gstreamer import gtk import remus_playlist STATE = { gstreamer.STATE_NULL: 'null', gstreamer.STATE_PAUSED: 'paused', gstreamer.STATE_PLAYING: 'playing', gstreamer.STATE_READY: 'ready', gstreamer.STATE_FAILURE: 'failure', } def entry_to_python(entry): name = entry.get_name() type = entry.get_props_type() if type == gstreamer.PROPS_INT_TYPE: ret, val = entry.get_int() elif type == gstreamer.PROPS_FLOAT_TYPE: ret, val = entry.get_float() elif type == gstreamer.PROPS_FOURCC_TYPE: ret, val = entry.get_fourcc() elif type == gstreamer.PROPS_BOOLEAN_TYPE: ret, val = entry.get_bool() elif type == gstreamer.PROPS_STRING_TYPE: ret, val = entry.get_string() elif type == gstreamer.PROPS_INT_RANGE_TYPE: ret, min, max = entry.get_int_range() val = (min, max) elif type == gstreamer.PROPS_FLOAT_RANGE_TYPE: ret, min, max = entry.get_float_range() val = (min, max) elif type == gstreamer.PROPS_LIST_TYPE: ret, _val = entry.get_list() val = [ entry_to_python(e) for e in _val ] else: print '%sWARNING: %s: unknown property type %d' % (indent, name, type) assert ret return name, type, val class Player(object): def __init__(self): self.playlist = remus_playlist.Playlist() self.cursong = 0 self.__eof = True self.__idle = None self.__timeout = None self.make_pipeline() def props(self, caps): props = caps.get_props() ret, plist = props.get_list() elems = {} for entry in plist: name, type, val = entry_to_python(entry) elems[name] = val return elems def streaminfo(self, props): pass def metadata(self, props): pass def decoder_notified(self, sender, pspec): caps = sender.get_property(pspec.name) props = self.props(caps) if pspec.name == 'streaminfo': self.streaminfo(props) elif pspec.name == 'metadata': self.metadata(props) else: print 'notify:', sender, pspec def make_pipeline(self): # create a new bin to hold the elements self.__bin = gstreamer.Pipeline('pipeline') self.__bin.connect('state_change', self.__state_change) # create a disk reader filesrc = gstreamer.gst_element_factory_make ('gnomevfssrc', 'vfs_source') if not filesrc: print 'could not find plugin "gnomevfssrc"' return -1 self.__filesrc = filesrc filesrc.connect('eos',self.eof) # now get the decoder decoder = gstreamer.gst_element_factory_make ('mad', 'parse') if not decoder: print 'could not find plugin "mad"' return -1 decoder.connect('notify', self.decoder_notified) # and an audio sink osssink = gstreamer.gst_element_factory_make ('osssink', 'play_audio') if not osssink: print 'could not find plugin "osssink"' return -1 # add objects to the main pipeline for e in (filesrc, decoder, osssink): self.__bin.add(e) # link the elements previous = None for e in (filesrc, decoder, osssink): if previous: previous.link(e) previous = e def eof(self, sender): self.__eof = True self.cursong += 1 self.stop() def quit(self): self.stop() gtk.main_quit() def state(self): return STATE[self.__bin.get_state()] def pause(self): if self.__bin.get_state() == gstreamer.STATE_PAUSED: self.__bin.set_state(gstreamer.STATE_PLAYING) else: self.__bin.set_state(gstreamer.STATE_PAUSED) def play(self): if self.cursong >= len(self.playlist): self.quit() return else: if not self.__filesrc.get_property('location'): self.__filesrc.set_property('location', self.playlist[self.cursong].geturl()) self.__bin.set_state(gstreamer.STATE_PLAYING) def stop(self): self.__bin.set_state(gstreamer.STATE_NULL) self.__filesrc.set_property('location', None) def start(self): self.play() gtk.main() def idle(self, *arg): if not self.__bin.iterate() and self.__eof: self.__eof = False self.play() return self.__bin.get_state() == gstreamer.STATE_PLAYING def __state_change(self, sender, oldstate, newstate): if newstate == gstreamer.STATE_PLAYING: if self.__idle: gtk.idle_remove(self.__idle) gtk.timeout_remove(self.__timeout) self.__idle = gtk.idle_add(self.idle, None) self.__timeout = gtk.timeout_add(200, self.time_tick) def time_tick(self, *args): clock = self.__bin.get_clock() time_nanos = clock.get_time() secs = time_nanos / 1000000000.0 self.elapsed_time(secs) return self.__bin.get_state() == gstreamer.STATE_PLAYING if __name__ == "__main__": class TestPlayer(Player): def elapsed_time(self, secs): print 't', secs def play(self): super(TestPlayer, self).play() song = self.playlist[self.cursong] print "S", song.title print "A", song.artist print "T", song.length p = TestPlayer() p.make_pipeline() p.playlist.add_url('http://127.0.0.1/music/list/remus') p.playlist.shuffle() p.start()
UTF-8
Python
false
false
2,005
14,663,018,364,090
fe17676c21e485526d6af8bdea4f3c8d73b7f51f
49d202ebf34899d4b64cd107602b1d981caec19e
/1/0/sabx10/map/utils.py
4bb9949bed247ddff2911f17b4eaff82e0db0cfa
[ "GPL-3.0-or-later", "LGPL-3.0-or-later", "GPL-3.0-only", "LGPL-3.0-only" ]
non_permissive
jfarrimo/sabx
https://github.com/jfarrimo/sabx
f174a87800344b5ef3b772db29c9a93eeb2c606e
48202f6bfbf9a60432545f5a961b30c534ef564a
refs/heads/master
2016-09-05T16:05:08.784086
2010-08-09T03:57:01
2010-08-09T03:57:01
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
############################################################################### # # sabx10 - an SABX file manipulation library # Copyright (C) 2009, 2010 Jay Farrimond ([email protected]) # # This file is part of sabx10. # # sabx10 is free software: you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation, either version 3 of the License, or (at your option) any later # version. # # sabx10 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 General Public License along with # sabx10. If not, see <http://www.gnu.org/licenses/>. # ############################################################################### """ Utility routines. """ import os, sys def determine_path(): """ Determine the path to the file containing this routine. This is handy for getting the directory a package is located in. Obviously, this works best when all the files for a package are in the same directory and not split into sub-directories. This is based on code found in the distutils tutorial at U{http://wiki.python.org/moin/Distutils/Tutorial}. Apparently the tutorial author found it in wxglade.py. @return: directory part of path this file is in @rtype: C{string} """ root = __file__ if os.path.islink (root): root = os.path.realpath (root) return os.path.dirname (os.path.abspath (root))
UTF-8
Python
false
false
2,010
953,482,788,109
bc3a176d3f3414122e287ec61fc9d41383ae4c1b
30c2be720f735d73ae6974146aa3a76398dbbd8a
/home_page/views.py
47e8d33c919b4c1c2b671cfecabf9443d4cebfc4
[]
no_license
JGulbronson/uwaft-django
https://github.com/JGulbronson/uwaft-django
5ce921f3b12bfd85c530841e43a14ef904305598
a039ca25a83684dda148f46a19961d3a9f8f188b
refs/heads/master
2016-04-03T00:37:40.223576
2014-04-08T00:20:42
2014-04-08T00:20:42
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.shortcuts import render, render_to_response from django.http import HttpResponse from django.template import RequestContext def index(request): return render_to_response('home_page/index.html', context_instance=RequestContext(request))
UTF-8
Python
false
false
2,014
6,141,803,234,557
b8bb94faf86c06eabde2543ccbce312ded1e0dae
220a44cf9813dc06d63223304c7c75090f2659b7
/pdbc/PdbcHive.py
8c025c8aa88fc51f8f8df80e2861bddeb27c3e99
[]
no_license
qiutiaoming/ComETL
https://github.com/qiutiaoming/ComETL
5014ce9aa0af9b61724c4efe7e31a75da8a68630
1f5fc67b539b3001e3d30d185b0f4d0dfc87ee48
refs/heads/master
2021-01-18T07:18:23.827174
2013-10-27T02:06:38
2013-10-27T02:06:38
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#-*-coding:UTF-8 -*- import PdbcUtility from hive_service import ThriftHive from hive_service.ttypes import HiveServerException from thrift import Thrift from thrift.transport import TSocket from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol from Pdbc import pdbc class PdbcHive(pdbc): """ hive db driver""" def __init__(self,logger): self.logger = logger def connect(self,ip,port,db,user='',passwd=''): try: self.ip = ip self.port = port self.db = db self.user = user self.passwd = passwd transport = TSocket.TSocket(ip,port) transport = TTransport.TBufferedTransport(transport) protocol = TBinaryProtocol.TBinaryProtocol(transport) client = ThriftHive.Client(protocol) transport.open() client.execute('use %s' % db) #client.execute('add jar /opt/modules/hive/HivePlugin.jar') #client.execute("create temporary function getpid as 'com.baofeng.data.hive.UDFGetPid'") #if mapred_queue != "": # client.execute('set mapred.job.queue.name=%s' % mapred_queue) self.transport = transport self.client = client return True except Thrift.TException, tx: self.transport = None self.client = None self.logger('pdbc hive error: %s' % (tx.message),'error') return False def execute(self,sql,**params): if self.client: self.client.execute(sql) return True def getone(self): if self.client: res = self.client.fetchOne() if res[-1] == '\n': res = res[:-1] if len(res) == 0: return None return tuple(res.split('\t')) def getn(self,n): if self.client: re_res = [] res = self.client.fetchN(n) for row in res: if len(row) == 0: continue if row[-1] == '\n': row = row[:-1] re_res.append(tuple(row.split('\t'))) return re_res def getall(self): if self.client: re_res = [] res = self.client.fetchAll() for row in res: if len(row) == 0: continue if row[-1] == '\n': row = row[:-1] re_res.append(tuple(row.split('\t'))) return re_res def save(self,outfile,args): if PdbcUtility.__dict__.has_key(args['data_save_type']): return PdbcUtility.__dict__[args['data_save_type']](self,outfile,args,self.logger) else: udf = __import__('PdbcUDF/%s' % args['data_save_type']) return udf.__dict__[args['data_save_type']](self,outfile,args,self.logger) def load(self,infile,args): if PdbcUtility.__dict__.has_key(args['data_load_type']): return PdbcUtility.__dict__[args['data_load_type']](self,infile,args,self.logger) else: udf = __import__('PdbcUDF/%s' % args['data_load_type']) return udf.__dict__[args['data_load_type']](self,infile,args,self.logger) #return True def close(self): self.transport.close() if __name__=="__main__": #test ok at 2012-03-16 12:02:00 213server home path def log(x,y): print x,y tbh = PdbcHive(log) if tbh.connect('192.168.1.43', 10000, "test",'',''): tbh.load('/home/zhaoxiuxiang/ComETL2.0/pdbc/hivetest.txt',{'data_load_type':'Internalload',"db_table":'u_data','db_table_partition':''}) tbh.execute('select * from u_data limit 10',officialsql=True) oneres = tbh.getone() print oneres nres = tbh.getn(3) print nres tbh.save('/tmp/test/hivetest.log',{"data_save_type":'SimpleOutput'}) ##假设表已经存在,如果不存在,需要在post sql中进行创建 tbh.load('/tmp/test/hivetest.log',{'data_load_type':'ExternalLoad',"db_path":'/tmp/cometl1'}) tbh.load('/tmp/test/hivetest.log',{'data_load_type':'ExternalLzoLoad',"db_path":'/tmp/cometl1'}) tbh.close()
GB18030
Python
false
false
2,013
13,185,549,622,829
561fe2a9e6d20785a7c0475438156e4df47ea1eb
daa8b361420adfc0d9c81670ab2dab8968efeb23
/Core/__init__.py
251b400ce22676a1fc329776abd078fd4f3c23d2
[]
no_license
ryskov/toolkit
https://github.com/ryskov/toolkit
c059c7e913d7e690b68e8c346ee056a51f22e224
b0e2b303b7692a02755ba96ae2bd592697bffc58
refs/heads/master
2020-06-06T20:24:09.587033
2014-08-10T20:41:17
2014-08-10T20:41:17
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
__all__ = ["CoreCommand", "CoreInvoker", "CoreLoop", "Extension", "Exception"]
UTF-8
Python
false
false
2,014
3,152,506,018,001
9c90302d4bddaee1ae93bbdf153a1c4730e33bc0
781184f33b34a94af1e562a8b999c38dddac47ba
/gerrit_checker/constants.py
43325727121acf55314bc64d11529deff9773531
[]
no_license
salv-orlando/gerrit-checker
https://github.com/salv-orlando/gerrit-checker
826420cbc18223b23cb2fa773e7f438cfa469209
81dca459213b40e05880786d3540e680d3169dbb
refs/heads/master
2021-01-06T20:41:55.391016
2014-05-29T08:24:09
2014-05-29T08:24:09
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# Constants used by the gerrit_checker app GERRIT_MAGIC_STRING = ")]}'\n" CHECK_DATA_FILE = 'gerrit_check_data.json' DEFAULT_REVIEW_AGE = 48 # Gerrit datetime format for parsing responses DATETIME_FORMAT_G = '%Y-%m-%d %H:%M:%S' # Output datetime format for output DATETIME_FORMAT = '%Y-%m-%dT%H:%M:%S'
UTF-8
Python
false
false
2,014
8,615,704,436,416
0ebb74902b54de298dce56c6a9217b0b6bfb063d
7efd0c2eb664f5dc488e5e88be6fa2c8a1f0b4f9
/final_project/bigramify/sentiment_task/bigram_construct_matrices.py
4d10d558f053fbbd2fd6efcee2dece992b4fcd01
[]
no_license
bubbleharth/cs224n-1
https://github.com/bubbleharth/cs224n-1
4a5ebd7ebd1d3119a8f7ea4fee7b8a59338d47a6
f032338ba85de628b894c39149c09750e97b0d75
refs/heads/master
2020-12-11T08:09:13.666408
2014-12-07T03:19:01
2014-12-07T03:19:01
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python import numpy as np import sys sys.path.insert(0, '../../') sys.path.insert(0, '../../evaluate') sys.path.insert(0, 'evaluate/') sys.path.insert(0, 'data/') import train_bigram_approximation as ap import test_bigrams as tb import argparse import linecache import train_neural_network as tnn import os parser = argparse.ArgumentParser(); parser.add_argument ("--batch", type = bool, default = False) #specify for batch construction on barley parser.add_argument ("--start_idx", type = int) parser.add_argument ("--end_idx", type = int) parser.add_argument ("--sentence_file", type = str) path = "10m_norm_bigramBatch/" VOCAB_FILENAME = 'data/vocab_bi.txt' VOCAB_THRESH = 5 # needs to be at least that of GloVe (otherwise the vocab bigrams won't occur in the vectors file) VECTORS_FILENAME = 'data/vectors.txt' word_vectors = {} def get_word_vectors (): print "Constructing dictionary of word vectors..." f = open (VECTORS_FILENAME); for line in f: arr = line.split (); word = arr[0]; vector = [float(x) for x in arr[1:]]; word_vectors[word] = np.array(vector); #least squares prediction # def predict (word1, word2): # return ap.predict(word_vectors[word1], word_vectors[word2]) #local nearest neighbors prediction with norm def predict (word1, word2): return tb.local_knn_pred(word_vectors, word1, word2, "norm") #cosine similarity prediction # def predict (word1, word2): # return tb.local_knn_pred(word_vectors, word1, word2, "cosine") # # svr prediction # def predict (word1, word2): # return tnn.predict (word_vectors[word1], word_vectors[word2]) def build_vectors (filename): print "Building matrix representation of ", filename, "using bigrams..." vector_representations = [] f = open (filename); sentence_number = 1 for line in f: sentence = line.split()[1:]; #stupidly construct representation of ABCD as AB BC CD.. for now (things to try: remove stopwords, AB CD, etc) avg = np.zeros(300); bigrams = [b for b in zip(sentence[:-1], sentence[1:])] num_vectors = 0.0; for b in bigrams: word1 = str(b[0]) word2 = str(b[1]) if word1 + "_" + word2 in word_vectors: avg += word_vectors[str(b[0] + "_" + b[1])] #use the glove bigram num_vectors += 1; elif word1 in word_vectors and word2 in word_vectors: # avg += predict(word_vectors[word1], word_vectors[word2]) #use our predicted bigram avg += predict(word1, word2) num_vectors += 1; if word1 in word_vectors: avg += word_vectors[word1] num_vectors += 1; elif word2 in word_vectors: avg += word_vectors[word2] num_vectors += 1; if num_vectors != 0: avg = avg / float(num_vectors); print avg vector_representations.append (avg); print "Finished test sentence number", sentence_number sentence_number += 1 return vector_representations; def build_vector_subset (filename, start, end): print "Building matrix representation of ", filename, "using bigrams..." vector_representations = [] for line_num in range(start, end): line = linecache.getline(filename, line_num) sentence = line.split()[1:]; #stupidly construct representation of ABCD as AB BC CD.. for now (things to try: remove stopwords, AB CD, etc) avg = np.zeros(300); bigrams = [b for b in zip(sentence[:-1], sentence[1:])] num_vectors = 0.0; for b in bigrams: word1 = str(b[0]) word2 = str(b[1]) if word1 + "_" + word2 in word_vectors: avg += word_vectors[str(b[0] + "_" + b[1])] #use the glove bigram num_vectors += 1; elif word1 in word_vectors and word2 in word_vectors: # avg += predict(word_vectors[word1], word_vectors[word2]) avg += predict(word1, word2) #use our predicted bigram num_vectors += 1; if word1 in word_vectors: avg += word_vectors[word1] num_vectors += 1; elif word2 in word_vectors: avg += word_vectors[word2] num_vectors += 1; if num_vectors != 0: avg = avg / float(num_vectors); vector_representations.append (avg); print "Finished ", filename, "number", line_num return vector_representations; if __name__ == "__main__": args = parser.parse_args() batch = args.batch get_word_vectors (); if batch: start_idx = args.start_idx end_idx = args.end_idx sentence_file = args.sentence_file vectors = build_vector_subset (sentence_file, start_idx, end_idx); mat = np.matrix(vectors); np.save(path + str(start_idx) + "_" + str(end_idx) + "_" + "pred_bigrams_" + sentence_file[:-4] + 'Matrix', mat); else: files = ['trainSentences.txt', 'testSentences.txt', 'devSentences.txt']; # ap.train(VECTORS_FILENAME, VOCAB_FILENAME, VOCAB_THRESH) for f in files: vectors = build_vectors (f); mat = np.matrix(vectors); np.save("tb_bigrams_" + f[:-4] + 'Matrix', mat);
UTF-8
Python
false
false
2,014
8,022,998,942,526
26e0c93e0609545f986e81fa9baa6612f180f651
905a226b397698b528f867ce945a4605195dd81e
/CMGTools/H2TauTau/th_analysis/MuMuTau/analysis/plot.py
668afe8653c1a69c4b5dc24513106865a3e385de
[]
no_license
gitytakahas/cmg-cmssw
https://github.com/gitytakahas/cmg-cmssw
f6dfff8827427676e08e1d6d098d72cc9bc01022
34b51fff47a11ad8a51b3949aaa433ac1ea88b55
refs/heads/CMG_PAT_V5_18_from-CMSSW_5_3_14
2021-07-07T05:30:24.122663
2014-12-16T21:22:34
2014-12-16T21:22:34
16,833,702
0
1
null
true
2015-03-10T17:07:19
2014-02-14T10:05:16
2014-12-16T21:23:00
2015-03-10T17:07:19
594,741
0
1
0
C++
null
null
import ROOT, os, numpy #from officialStyle import officialStyle from ROOT import TLegend, TCanvas from CMGTools.RootTools.DataMC.DataMCPlot import DataMCPlot from CMGTools.H2TauTau.proto.plotter.officialStyle import officialStyle from ROOT import TColor, kMagenta, kOrange, kRed, kBlue, kGray, kBlack ROOT.gROOT.SetBatch(True) officialStyle(ROOT.gStyle) #ROOT.gStyle.SetOptTitle(1) #ROOT.gStyle.SetPadLeftMargin(0.18) #ROOT.gStyle.SetPadBottomMargin(0.15) col_qcd = TColor.GetColor(250,202,255) col_tt = TColor.GetColor(155,152,204) col_ttv = TColor.GetColor(155,182,204) col_ewk = TColor.GetColor(222,90,106) col_zll = TColor.GetColor(100,182,232) col_red = TColor.GetColor(248,206,104) colours = [2, 3, 4, 6, 7, 8] nbin=20 variables = { 'bdt_muon_pt': {'nbin':nbin, 'xtitle':'muon pT (GeV)', 'xmin':0, 'xmax':200}, 'bdt_muon_pdg': {'nbin':40, 'xtitle':'muon PDG', 'xmin':-20, 'xmax':20}, 'bdt_muon_mva_neu_iso': {'nbin':nbin, 'xtitle':'muon MVA neutral iso', 'xmin':0, 'xmax':1}, 'bdt_muon_mva_ch_iso': {'nbin':nbin, 'xtitle':'muon MVA charged iso', 'xmin':0, 'xmax':1}, 'bdt_muon_dB3D': {'nbin':nbin, 'xtitle':'muon log(abs(dB3D))', 'xmin':-15, 'xmax':0.}, 'bdt_muon_dz': {'nbin':nbin, 'xtitle':'muon log(abs(dz))', 'xmin':-15, 'xmax':0}, 'bdt_muon_dxy': {'nbin':nbin, 'xtitle':'muon log(abs(dxy))', 'xmin':-15, 'xmax':0}, 'bdt_muon_mva_csv': {'nbin':nbin, 'xtitle':'muon MVA CSV', 'xmin':0, 'xmax':1}, 'bdt_muon_mva_jet_dr': {'nbin':nbin, 'xtitle':'muon MVA jet dR', 'xmin':0, 'xmax':0.4}, 'bdt_muon_mva_ptratio': {'nbin':nbin, 'xtitle':'muon MVA p_{T} ratio', 'xmin':0, 'xmax':1.5}, 'bdt_muon_mva': {'nbin':nbin, 'xtitle':'muon MVA', 'xmin':0, 'xmax':1.}, 'bdt_muon_new_mva': {'nbin':nbin, 'xtitle':'muon new MVA', 'xmin':-1, 'xmax':1.}, 'bdt_smuon_pt': {'nbin':nbin, 'xtitle':'smuon pT (GeV)', 'xmin':0, 'xmax':200}, 'bdt_smuon_pdg': {'nbin':40, 'xtitle':'smuon PDG', 'xmin':-20, 'xmax':20}, 'bdt_smuon_mva_neu_iso': {'nbin':nbin, 'xtitle':'smuon MVA neutral iso', 'xmin':0, 'xmax':1}, 'bdt_smuon_mva_ch_iso': {'nbin':nbin, 'xtitle':'smuon MVA charged iso', 'xmin':0, 'xmax':1}, 'bdt_smuon_dB3D': {'nbin':nbin, 'xtitle':'smuon log(abs(dB3D))', 'xmin':-15, 'xmax':0}, 'bdt_smuon_dz': {'nbin':nbin, 'xtitle':'smuon log(abs(dz))', 'xmin':-15, 'xmax':0}, 'bdt_smuon_dxy': {'nbin':nbin, 'xtitle':'smuon log(abs(dxy))', 'xmin':-15, 'xmax':0}, 'bdt_smuon_mva_csv': {'nbin':nbin, 'xtitle':'smuon MVA CSV', 'xmin':0, 'xmax':1}, 'bdt_smuon_mva_jet_dr': {'nbin':nbin, 'xtitle':'smuon MVA jet dR', 'xmin':0, 'xmax':0.4}, 'bdt_smuon_mva_ptratio': {'nbin':nbin, 'xtitle':'smuon MVA p_{T} ratio', 'xmin':0, 'xmax':1.5}, 'bdt_smuon_mva': {'nbin':nbin, 'xtitle':'smuon MVA', 'xmin':0, 'xmax':1.}, 'bdt_smuon_new_mva': {'nbin':nbin, 'xtitle':'smuon new MVA', 'xmin':-1, 'xmax':1.}, 'bdt_evt_missing_et': {'nbin':nbin, 'xtitle':'missing E_{T}', 'xmin':0, 'xmax':200}, 'bdt_tau_pdg': {'nbin':40, 'xtitle':'tau PDG', 'xmin':-20, 'xmax':20}, 'bdt_tau_pt': {'nbin':nbin, 'xtitle':'tau pT (GeV)', 'xmin':0, 'xmax':200}, 'bdt_evt_nbjet': {'nbin':5, 'xtitle':'Number of bjet', 'xmin':0, 'xmax':5}, 'bdt_evt_centrality': {'nbin':10, 'xtitle':'Centrality', 'xmin':0, 'xmax':1}, 'bdt_evt_LT': {'nbin':nbin, 'xtitle':'M(#tau, sub leading lepton)', 'xmin':0, 'xmax':400}, 'bdt_evt_njet_or30': {'nbin':10, 'xtitle':'Number of jets (p_{T} > 30GeV)', 'xmin':0, 'xmax':10}, 'bdt_evt_max_jet_eta':{'nbin':10, 'xtitle':'Max. jet #eta', 'xmin':0, 'xmax':5}, 'bdt_evt_sphericity':{'nbin':10, 'xtitle':'Sphericity', 'xmin':0, 'xmax':1}, 'bdt_evt_aplanarity':{'nbin':10, 'xtitle':'Aplanarity', 'xmin':0, 'xmax':0.2} } selections = { # 'VV':{'selection':'bdt_evt_processid<=2', 'col':col_zll, 'order':1}, # 'ttV':{'selection':'bdt_evt_processid>=17 && bdt_evt_processid<=19', 'col':col_tt, 'order':2}, # 'data':{'selection':'bdt_evt_processid==100', 'col':1, 'order':2999} 'Diboson':{'selection':'bdt_evt_processid<=2', 'col':46, 'order':1}, # 'ttbar':{'selection':'bdt_evt_processid>=3 && bdt_evt_processid<=5', 'col':col_tt, 'order':5}, 'ttV':{'selection':'bdt_evt_processid>=17 && bdt_evt_processid<=18', 'col':kOrange-2, 'order':4}, 'ttH':{'selection':'bdt_evt_processid==19', 'col':col_zll, 'order':2}, # 'EWK':{'selection':'bdt_evt_processid>=6 && bdt_evt_processid<=15', 'col':col_ewk, 'order':3}, # 'ST':{'selection':'bdt_evt_processid>=21 && bdt_evt_processid<=24', 'col':col_qcd, 'order':6}, 'reducible':{'selection':'bdt_evt_processid==20', 'col':col_qcd, 'order':3}, 'signal':{'selection':'bdt_evt_processid==16 || bdt_evt_processid==25', 'col':kBlue, 'order':1001}, 'data':{'selection':'bdt_evt_processid==100', 'col':1, 'order':2999} } def ensureDir(directory): if not os.path.exists(directory): os.makedirs(directory) def makePlotsVars(tree, isSignal=False): for ivar, var in variables.items(): c = TCanvas() h_stack = DataMCPlot('hs_' + ivar) h_stack.legendBorders = 0.65, 0.6, 0.85, 0.85 for iprocess, process in selections.items(): if not isSignal and iprocess=='signal': continue if isSignal and iprocess=='data': continue hist = ROOT.TH1F('h_'+ivar+'_'+iprocess, '', var['nbin'], var['xmin'], var['xmax']) hist.GetXaxis().SetTitle(var['xtitle']) hist.GetYaxis().SetNdivisions(507) hist.Sumw2() sel = '(' + process['selection'] + ')*bdt_evt_weight' # print hist.GetName(), ivar, sel _ivar_ = ivar if ivar == 'bdt_evt_max_jet_eta': _ivar_ = 'TMath::Abs(' + ivar + ')' tree.Project(hist.GetName(), _ivar_, sel) if iprocess=='data': hist.SetMarkerStyle(20) elif iprocess=='signal': hist.Scale(10.) hist.SetLineWidth(2) hist.SetLineColor(process['col']) hist.SetMarkerColor(process['col']) hist.SetMarkerSize(0) else: hist.SetFillStyle(1) hist.SetLineWidth(2) hist.SetFillColor(process['col']) hist.SetLineColor(process['col']) h_stack.AddHistogram(hist.GetName(), hist, process['order']) h_stack.Hist(hist.GetName()).legendLine = iprocess if iprocess=='data' or iprocess=='signal': h_stack.Hist(hist.GetName()).stack = False if iprocess=='signal': h_stack.Hist(hist.GetName()).legendLine = 'signal (x10)' if iprocess=='ttH': h_stack.Hist(hist.GetName()).legendLine = 't#bar{t}H' if iprocess=='ttV': h_stack.Hist(hist.GetName()).legendLine = 't#bar{t}V' print h_stack # h_stack.NormalizeToBinWidth() h_stack.DrawStack('HIST') # h_stack.DrawRatioStack('HIST') ensureDir('plots') cname = 'plots/' + ivar + '.gif' if isSignal: cname = cname.replace('.gif', '_f12.gif') else: cname = cname.replace('.gif', '_f3.gif') print cname c.Print(cname) c.Print(cname.replace('gif','pdf')) if __name__ == '__main__': # tfile = ROOT.TFile('BDT_training_separate_ss_f3.root') tfile = ROOT.TFile('BDT_training_ss_f3.root') tree = tfile.Get('Tree') makePlotsVars(tree) # tfile = ROOT.TFile('BDT_training_separate_ss_f12.root') tfile = ROOT.TFile('BDT_training_ss_f12.root') tree = tfile.Get('Tree') makePlotsVars(tree, True)
UTF-8
Python
false
false
2,014
13,056,700,623,102
a9c15c2a2a14aceea510afcb25efbd48dfe50e84
c6cf8d1c0c09a2205c7328c143e5a6000835af32
/obplatform/apps/users/views/views.py
58e6bba6f284a4b01198c32b696e059be39c239c
[]
no_license
ZoomQuiet/openbookplatform
https://github.com/ZoomQuiet/openbookplatform
9bb82972a92bc60aea616a89d8fbc46d1b9b741d
6d8700598138a240ddd8c9ffdf14d413518df3e2
refs/heads/master
2021-01-19T03:23:16.424255
2009-08-01T11:15:08
2009-08-01T11:15:08
34,236,466
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#coding=utf-8 from utils.common import render_template from django.contrib.auth.models import User from utils import ajax from apps.users.views.authvalidator import ChangeValidator def user_detail(request, object_id): person = User.objects.get(pk=int(object_id)) return render_template(request, 'users/user_detail.html', {'person':person}) def user_edit(request, object_id): if request.POST: v = ChangeValidator(request, object_id) f, obj = v.validate_and_save(request) if f: return ajax.ajax_ok(message=_('User infomation updated successful!')) return ajax.ajax_fail(obj) else: user = User.objects.get(pk=int(object_id)) d = {'person':user} return render_template(request, 'users/user_edit.html', d)
UTF-8
Python
false
false
2,009
16,767,552,331,319
198652f856ece797f827d220f208a6ad2552ce92
a173365d939a5b9c0f28b73485ae1494dae3f36e
/src/pyherc/test/unit/test_effects.py
b1b8c6189c15757e143d4356a27e75880b8b3e7f
[ "GPL-3.0-only", "CC-BY-NC-SA-3.0", "GPL-1.0-or-later" ]
non_permissive
briguy47/pyherc
https://github.com/briguy47/pyherc
2d63fc4de3060a2d79b05b3c793c88522ba57c0f
67b964835d79aeb5ee61f5aae6ff879ba01cf71e
refs/heads/master
2021-01-18T10:23:00.904551
2012-07-31T08:02:30
2012-07-31T08:02:30
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2010-2012 Tuukka Turto # # This file is part of pyherc. # # pyherc is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # pyherc 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 General Public License # along with pyherc. If not, see <http://www.gnu.org/licenses/>. """ Module for testing effects """ #pylint: disable=W0614 from pyherc.rules.effects import Heal from pyherc.rules.effects import Poison from pyherc.rules.effects import Effect from pyherc.rules.effects import EffectsFactory from pyherc.rules.effects import EffectHandle from pyherc.rules.public import ActionFactory from pyherc.rules.consume.factories import DrinkFactory from pyherc.events import PoisonAddedEvent, Event from random import Random from pyherc.test.builders import CharacterBuilder, ItemBuilder from pyherc.test.builders import EffectHandleBuilder, ActionFactoryBuilder from pyherc.test.builders import EffectBuilder from pyherc.test.builders import LevelBuilder from pyherc.test.matchers import has_effect, has_effects, has_no_effects from mockito import mock, when, any, verify from hamcrest import * #pylint: disable=W0401 class TestEffects(object): """ Tests for effects in general """ def test_effect_triggered_while_drinking(self): """ Test that effect will be triggered when drinking potion """ effect_factory = mock(EffectsFactory) effect_spec = mock(EffectHandle) effect = mock (Effect) effect.duration = 0 potion = mock() effect_spec.charges = 2 when(potion).get_effect_handles('on drink').thenReturn([effect_spec]) when(effect_factory).create_effect(any(), target = any()).thenReturn(effect) model = mock() action_factory = ActionFactory(model = model, factories = [DrinkFactory(effect_factory)]) character = (CharacterBuilder() .with_model(model) .with_action_factory(action_factory) .build()) character.drink(potion) verify(effect).trigger() def test_effect__triggered_when_hitting_target(self): """ Test that effect is triggered when attack hits target """ effect = mock() effect.duration = 0 model = mock() effect_factory = mock(EffectsFactory) when(effect_factory).create_effect(any(), target = any()).thenReturn(effect) action_factory = (ActionFactoryBuilder() .with_model(model) .with_attack_factory() .with_effect_factory(effect_factory) .build()) attacker = (CharacterBuilder() .with_effect_handle( EffectHandleBuilder() .with_trigger('on attack hit')) .with_action_factory(action_factory) .with_location((5, 5)) .build()) defender = (CharacterBuilder() .with_location((6, 5)) .build()) level = (LevelBuilder() .with_character(attacker) .with_character(defender) .build()) attacker.perform_attack(3) verify(effect).trigger() def test_creating_effect(self): """ Test that effect can be created and triggered immediately """ effect_factory = EffectsFactory() effect_factory.add_effect( 'major heal', {'type': Heal, 'duration': 0, 'frequency': 0, 'tick': 0, 'healing': 10}) potion = (ItemBuilder() .with_effect( EffectHandleBuilder() .with_trigger('on drink') .with_effect('major heal') .with_charges(2)) .build()) action_factory = ActionFactory(model = mock(), factories = [DrinkFactory(effect_factory)]) character = (CharacterBuilder() .with_action_factory(action_factory) .with_hit_points(1) .with_max_hp(10) .build()) character.drink(potion) assert_that(character.hit_points, is_(equal_to(10))) assert_that(character, has_no_effects()) def test_timed_effect_is_triggered(self): """ Test that timed effect is triggered only after enough time has passed """ effect_factory = EffectsFactory() effect_factory.add_effect( 'major heal', {'type': Heal, 'duration': 12, 'frequency': 3, 'tick': 3, 'healing': 10}) potion = (ItemBuilder() .with_effect( EffectHandleBuilder() .with_trigger('on drink') .with_effect('major heal') .with_charges(2)) .build()) action_factory = ActionFactory(model = mock(), factories = [DrinkFactory(effect_factory)]) character = (CharacterBuilder() .with_action_factory(action_factory) .with_hit_points(1) .with_max_hp(10) .build()) character.drink(potion) assert_that(character, has_effects(1)) def test_effect_expiration_event_is_raised(self): """ Test that effect expiration raises an event """ model = mock() character = (CharacterBuilder() .with_effect(EffectBuilder() .with_duration(0) .with_tick(10) .with_frequency(10)) .with_model(model) .build()) character.remove_expired_effects() verify(model, times = 2).raise_event(any(Event)) class TestEffectsInMelee(object): """ Test of effect creation and handling in melee """ def __init__(self): """ Default constructor """ super(TestEffectsInMelee, self).__init__() self.attacker = None self.defender = None self.model = None def setup(self): """ Setup test case """ self.model = mock() effect_factory = EffectsFactory() effect_factory.add_effect( 'poison', {'type': Poison, 'duration': 12, 'frequency': 3, 'tick': 3, 'damage': 5}) action_factory = (ActionFactoryBuilder() .with_attack_factory() .with_effect_factory(effect_factory) .build()) self.attacker = (CharacterBuilder() .with_action_factory(action_factory) .with_location((5, 5)) .with_effect_handle(EffectHandleBuilder() .with_trigger('on attack hit') .with_effect('poison')) .with_model(self.model) .build()) self.defender = (CharacterBuilder() .with_action_factory(action_factory) .with_location((5, 4)) .with_hit_points(50) .with_model(self.model) .build()) level = (LevelBuilder() .with_character(self.attacker) .with_character(self.defender) .build()) def test_add_effect_in_melee(self): """ Test that effect can be added as a result of unarmed combat """ self.attacker.perform_attack(1) assert_that(self.defender, has_effect()) def test_effects_do_not_stack(self): """ Test that single type of effect will not added twice """ self.attacker.perform_attack(1) self.attacker.perform_attack(1) assert_that(self.defender, has_effects(1)) def test_effect_creation_event_is_raised(self): """ Test that event is raised to indicate an effect was created """ self.attacker.perform_attack(1) verify(self.model).raise_event(any(PoisonAddedEvent))
UTF-8
Python
false
false
2,012
816,043,811,593
40d01c4bc9fc8b1cbdf73f59b92f3e8a7bd45d88
abffc6e141e0f4482e291d34da8b1e0f1affb175
/parse text file to unigram
71bdf4d4d0b61f50a5ed3388b667b1555a9ce451
[]
no_license
cadancai/Python-Codes
https://github.com/cadancai/Python-Codes
2df870d4e5ac2a2e4bde1ed68562228e979d76ae
2e2167efd564d1833c9fd0abb77e3bb527db45fe
refs/heads/master
2021-01-23T13:45:05.944403
2014-02-11T05:41:24
2014-02-11T05:41:24
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python __author__ = 'Lee Cai' #this program is used to parse text files that contains movie reviews #these movies are labeled positive or negative #The output would be sth like below: """ class,word,count,probability neg,love,476,0.00188239760508 pos,love,708,0.00256943461551 neg,crazy,1,3.9546168174e-06 pos,crazy,41,0.000148794942424 """ #The text files locate in two folders with names pos and neg, which indicate the class of #the reviews. These pos and neg folders reside in the same parent folder. import argparse import re import os import csv import glob import string # Stop word list stopWords = ['a', 'able', 'about', 'across', 'after', 'all', 'almost', 'also', 'am', 'among', 'an', 'and', 'any', 'are', 'as', 'at', 'be', 'because', 'been', 'but', 'by', 'can', 'cannot', 'could', 'dear', 'did', 'do', 'does', 'either', 'else', 'ever', 'every', 'for', 'from', 'get', 'got', 'had', 'has', 'have', 'he', 'her', 'hers', 'him', 'his', 'how', 'however', 'i', 'if', 'in', 'into', 'is', 'it', 'its', 'just', 'least', 'let', 'like', 'likely', 'may', 'me', 'might', 'most', 'must', 'my', 'neither', 'no', 'nor', 'not', 'of', 'off', 'often', 'on', 'only', 'or', 'other', 'our', 'own', 'rather', 'said', 'say', 'says', 'she', 'should', 'since', 'so', 'some', 'than', 'that', 'the', 'their', 'them', 'then', 'there', 'these', 'they', 'this', 'tis', 'to', 'too', 'twas', 'us', 've', 'wants', 'was', 'we', 'were', 'what', 'when', 'where', 'which', 'while', 'who', 'whom', 'why', 'will', 'with', 'would', 'yet', 'you', 'your'] def parseArgument(): """ Code for parsing arguments """ parser = argparse.ArgumentParser(description='Parsing a file.') parser.add_argument('-d', nargs=1, required=True) args = vars(parser.parse_args()) return args def getFileList(direc): FILES = [] for r,d,f in os.walk(direc): for files in f: if files.endswith(".txt"): fle = os.path.join(r,files) FILES.append(fle) return FILES def getFileContent(filename): input_file = open(filename,'r') text = input_file.read() input_file.close() return text def removeStopwords(wordlist, stopwords): return [w for w in wordlist if w not in stopwords and w.isdigit() == False and re.match(r'\W+',w) == None and re.match(r'\d+',w) == None] def parseFile(FILES): unigram = {'neg': {}, 'pos': {}} for first_file in FILES: if re.match(r'.*/neg/.*',first_file) is not None: text = getFileContent(first_file) text_without_pun = text.translate(string.maketrans("",""),string.punctuation) word_list = text_without_pun.strip().lower().split() word_list = removeStopwords(word_list, stopWords) for wd in word_list: count = unigram['neg'].get(wd, 0) + 1 unigram['neg'][wd] = count else: text = getFileContent(first_file) text_without_pun = text.translate(string.maketrans("",""),string.punctuation) word_list = text_without_pun.lower().split() word_list = removeStopwords(word_list, stopWords) for wd in word_list: count = unigram['pos'].get(wd, 0) + 1 unigram['pos'][wd] = count return unigram def getTotalCounts(unigram): count_neg = float(sum(unigram['neg'].values())) count_pos = float(sum(unigram['pos'].values())) print "Total count of negative words: ", count_neg print "Total count of positive words: ", count_pos tot_counts = [count_neg,count_pos] return tot_counts def writeOutput(unigram): tot_counts = getTotalCounts(unigram) out = [] for key1 in unigram: for key2 in unigram[key1]: if key1 == 'neg': line = [key1 ,key2 ,str(unigram[key1][key2]),unigram[key1][key2]/tot_counts[0]] else: line = [key1 ,key2 ,str(unigram[key1][key2]),unigram[key1][key2]/tot_counts[1]] out.append(line) out.sort(key=lambda x: x[1]) outfile_name = "movie_unigram.csv" output_file = open(outfile_name, 'wa') output_file.write('class,word,count,probability\n') for ele in out: row = ele[0] + ',' + ele[1] + ',' + ele[2] + ',' + str(ele[3]) +'\n' output_file.write(row) output_file.close() def main(): args = parseArgument() directory = args['d'][0] print directory FILES = getFileList(directory) unigram = parseFile(FILES) writeOutput(unigram) if __name__ == '__main__': main()
UTF-8
Python
false
false
2,014
17,093,969,867,517
307ace0b27f78d52e045542b2abfc80dfc440068
98c6ea9c884152e8340605a706efefbea6170be5
/examples/data/Assignment_3/dlmmay001/question2.py
b30e1517fc53aa1e6e4e5f02dc1bc8e6694c3cdb
[]
no_license
MrHamdulay/csc3-capstone
https://github.com/MrHamdulay/csc3-capstone
479d659e1dcd28040e83ebd9e3374d0ccc0c6817
6f0fa0fa1555ceb1b0fb33f25e9694e68b6a53d2
refs/heads/master
2021-03-12T21:55:57.781339
2014-09-22T02:22:22
2014-09-22T02:22:22
22,372,174
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
def isoceles_triangle(): height = eval(input('Enter the height of the triangle:\n')) last = (height*2)-1 for i in range(1,last+1,2): line = '*'*i line = line.center(last,' ') print(line) isoceles_triangle()
UTF-8
Python
false
false
2,014
7,670,811,613,217
9d723557639ee859d1f947d03e8944a8b809118b
f355660eab43d67cfe82b45dcd5f9700a5a0b90d
/rateable/tests/tests.py
1c6294dfa63da9a2a5bb66781fab2459827e451b
[]
no_license
350dotorg/localpower
https://github.com/350dotorg/localpower
ff3def139e3da3ef92c10a3096167768ae03f030
973ba511428d0f7fc77b033cfcd293017900237b
refs/heads/master
2021-01-16T20:33:19.166788
2013-03-02T03:05:44
2013-03-02T03:05:44
2,094,385
2
0
null
true
2012-12-11T16:58:31
2011-07-23T20:11:50
2012-12-11T16:58:31
2012-12-11T16:58:31
228
null
2
59
JavaScript
null
null
from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType from django.core.urlresolvers import reverse from django.db import models from django.test import TestCase from django.test.client import Client from rateable.models import Rating from models import Post class RatingManagerTest(TestCase): fixtures = ["test_ratings.json",] def setUp(self): self.post_content_type = ContentType.objects.get(app_label="rateable", model="post") self.first_post = Post.objects.get(pk=1) self.second_post = Post.objects.get(pk=2) self.third_post = Post.objects.get(pk=3) self.test_user = User.objects.get(username="test") self.example_user = User.objects.get(username="example") def test_get_users_score(self): self.failUnlessEqual(Rating.objects.get_users_current_score(self.first_post, self.test_user), 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.first_post, self.example_user), 0) self.failUnlessEqual(Rating.objects.get_users_current_score(self.second_post, self.test_user), 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.second_post, self.example_user), 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.third_post, self.test_user), 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.third_post, self.example_user), None) def test_create_or_update(self): Rating.objects.create_or_update(self.post_content_type, self.third_post.pk, self.test_user, 2) self.failUnlessEqual(Rating.objects.get_users_current_score(self.third_post, self.test_user), 2) Rating.objects.create_or_update(self.post_content_type, self.third_post.pk, self.example_user, 3) self.failUnlessEqual(Rating.objects.get_users_current_score(self.third_post, self.example_user), 3) class RateViewTest(TestCase): def setUp(self): self.client = Client() self.user = User.objects.create_user(username="1", email="[email protected]", password="test") self.post = Post.objects.create(content="test post") self.post_content_type = ContentType.objects.get(app_label="rateable", model="post") self.url = reverse("rateable-rate") def test_login_required(self): response = self.client.get(self.url, follow=True) self.failUnlessEqual(response.template[0].name, "registration/login.html") def test_post_required(self): self.client.login(username="[email protected]", password="test") response = self.client.get(self.url) self.failUnlessEqual(response.status_code, 405) def test_missing_parameter(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk}) self.failUnlessEqual(response.status_code, 404) def test_invalid_parameters(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": "9876"}) self.failUnlessEqual(response.status_code, 404) def test_missing_score(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk}) self.failUnlessEqual(response.status_code, 404) def test_success_with_next(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "1", "next": "/login/"}, follow=True) self.failUnlessEqual(response.template[0].name, "registration/login.html") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 1) def test_successful_helpful(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "1"}) self.failUnlessEqual(response.template.name, "rateable/rated.html") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(response.context["rating"].score, 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 1) def test_successful_not_helpful(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "0"}) self.failUnlessEqual(response.template.name, "rateable/rated.html") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(response.context["rating"].score, 0) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 0) def test_successful_helpful_ajax(self): self.client.login(username="[email protected]", password="test") response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "1"}, HTTP_X_REQUESTED_WITH="XMLHttpRequest") self.failUnlessEqual(response.template.name, "rateable/ajax/rated.json") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(response.context["rating"].score, 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 1) def test_already_rated_changed(self): self.client.login(username="[email protected]", password="test") Rating.objects.create(content_type=self.post_content_type, object_pk=self.post.pk, user=self.user, score=2) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 2) response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "1"}) self.failUnlessEqual(response.template.name, "rateable/rated.html") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(response.context["rating"].score, 1) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 1) def test_already_rated_not_changed(self): self.client.login(username="[email protected]", password="test") Rating.objects.create(content_type=self.post_content_type, object_pk=self.post.pk, user=self.user, score=0) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 0) response = self.client.post(self.url, {"content_type": self.post_content_type.pk, "object_pk": self.post.pk, "score": "0"}) self.failUnlessEqual(response.template.name, "rateable/rated.html") message = iter(response.context["messages"]).next() self.failUnless("success" in message.tags) self.failUnlessEqual(response.context["rating"].score, 0) self.failUnlessEqual(Rating.objects.get_users_current_score(self.post, self.user), 0)
UTF-8
Python
false
false
2,013
3,547,643,013,523
a827f7757352a673780a8985f76d78036e73ea1a
a96589764ece1801657b79fbed4b24be21bf77fd
/dispatcher/management/commands/export_stats.py
7fa3dfe5beeb2e7a6c36acb23d30024abc00641b
[]
no_license
jokkolabs/hotline_dispatch
https://github.com/jokkolabs/hotline_dispatch
496e96f07072afa1ceae2d4d320ee02fb0e8d25a
e04eb7deb0a66574b30e6f7c5bad72c99cbbf274
refs/heads/master
2021-01-10T19:25:42.648138
2013-11-21T19:11:48
2013-11-21T19:11:48
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 nu from __future__ import (unicode_literals, absolute_import, division, print_function) import os import json import zipfile from django.core.management.base import BaseCommand from django.template import loader, Context from dispatcher.views import get_status_context, get_graph_context class Command(BaseCommand): help = "Export Stats in HTML and JSON" def handle(self, *args, **kwargs): html_filename = "index.html" json_hotline_data = "hotline_data.json" json_graph_data = "graph_data.json" context = get_status_context() # generate HTML page html_content = loader.get_template("status_for_export.html").render(Context(context)) myfile = open(html_filename, 'w') myfile.write(html_content.encode('utf-8')) myfile.close() # generate JSON file data_event = {'total_events': context.get('total_events'), 'last_event': context.get('last_event').received_on.isoformat()} hotline_data_fp = open(json_hotline_data, 'w') json.dump(data_event, hotline_data_fp) hotline_data_fp.close() # generate JSON file graph_data = get_graph_context() graph_data_fp = open(json_graph_data, 'w') json.dump(graph_data, graph_data_fp) graph_data_fp.close() # create ZIP archive static_dir = os.path.join('dispatcher', 'static') zf = zipfile.ZipFile('hotline_export.zip', mode='w') zf.write(html_filename) zf.write(json_hotline_data) zf.write(json_graph_data) for folder in os.listdir(static_dir): for asset in os.listdir(os.path.join(static_dir, folder)): zf.write(os.path.join(static_dir, folder, asset), os.path.join('static', folder, asset)) zf.close() os.remove(html_filename) os.remove(json_hotline_data) os.remove(json_graph_data) print("Fin.")
UTF-8
Python
false
false
2,013
17,789,754,540,341
157690ed7698f64ba95ae7f9adba8446cbd4589c
0c8f08d61e1783be7d68337c19755caf547c53c6
/1_1.py
cfa804a81dc65983a930feca4637e5c28b138b90
[]
no_license
Beat30/Exercise_CS1
https://github.com/Beat30/Exercise_CS1
e7ae4c93e301b3c8e70ab85ed81afb7024808b68
435c202c166d650f062349920e637b849e1dcf26
refs/heads/master
2021-01-19T09:24:23.523051
2013-12-16T21:22:21
2013-12-16T21:22:21
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#Ex. 1.1 #Deadline for changing to 64-bit integers: import time print('Deadline for changing to 64-bit integers is',time.gmtime(pow(2,32)-1)) #find the number of bits of a floating number eps=.5 n=0 while 1+eps!=1: eps=eps/2 n+=1 print('No. of bits for mantissa=', n) #exp e=1 while 2**(-2**e) != 0: e+=1 print('No. of bits for exponent=', e) print('No. of bits for sign=', 64-e-n)
UTF-8
Python
false
false
2,013
8,486,855,414,702
391377d35fc58b455105c132b30baf0d5797b778
14b6f75aca1fa4a756b6ec1bee90c6ea936084d8
/dobspider/pipelines.py
3fab8beb2edd89149957b4060088bceee9f4ae24
[]
no_license
bighat4/dobban-pic-simple-spider
https://github.com/bighat4/dobban-pic-simple-spider
a9c0a6659b048f9cbc4c2b3a5951c0eaf348a5a5
506a0601f5e5d4f4dea597ec4e5a5a9edfcc76ec
refs/heads/master
2015-08-17T17:40:25
2014-12-05T13:54:52
2014-12-05T13:54:52
27,593,586
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html import scrapy import os import django import sys import time import datetime from scrapy import log sys.path.append('/root/dob/ndmeizi') os.environ['DJANGO_SETTINGS_MODULE'] = 'ndmeizi.settings' os.environ['ST_AUTH']='https://auth.sinas3.com/v1.0' os.environ['ST_USER']='jm10om52wj' os.environ['ST_KEY']='2kjwjy5i2k40420miw53jjlkxk2wy22kx5z4iimm' from dob.models import * from scrapy.contrib.pipeline.images import ImagesPipeline from scrapy.exceptions import DropItem def end_url(): count = dobImage.objects.count() return dobImage.objects.filter(id__gte=count-1000).latest('add_date').add_date def convert(path,width=300): from PIL import Image import os im = Image.open('/root/dobImage/'+path) size = im.size rate = float(width) / float(size[0]) new_size = (int(width), int(size[1] * rate)) new = im.resize(new_size, Image.BILINEAR) if os.path.exists('/root/dobImage/'+path.split('/')[0]+'/thumbnail/'): new.save('/root/dobImage/'+path.split('/')[0]+'/thumbnail/'+path.split('/')[1]) else: os.mkdir('/root/dobImage/'+path.split('/')[0]+'/thumbnail/') new.save('/root/dobImage/'+path.split('/')[0]+'/thumbnail/'+path.split('/')[1]) class PostAvatarPipeline(ImagesPipeline): #def process_item(self, item, spider): # return item def get_media_requests(self,item,info): for Image_url in item['dobImage_url']: yield scrapy.Request(Image_url) def item_completed(self,results,item,info): if dobImage.objects.filter(topic_url=item['url']): log.msg("Item chongfu", level=log.WARNING) raise DropItem('Too old,drop.') item['dobImage'] = [x for ok,x in results if ok] for x in item['dobImage']: convert(x['path']) os.environ['ST_AUTH']='https://auth.sinas3.com/v1.0' os.environ['ST_USER']='jm10om52wj' os.environ['ST_KEY']='2kjwjy5i2k40420miw53jjlkxk2wy22kx5z4iimm' os.system('swift upload ziluimg '+'/root/dobImage/'+x['path']+' --insecure') os.system('swift upload ziluimg '+'/root/dobImage/'+x['path'].split('/')[0]+'/thumbnail/'+x['path'].split('/')[1]+' --insecure') return item #image_paths = [x['path'] for ok,x in results if ok] #if not image_paths: # raise DropItem("Item contains no images") #item['image_paths'] = image_paths #return item class dobItemPipeline(object): def process_item(self, item, spider): #if int(time.mktime(spider.enddate.timetuple()))>int(time.mktime(datetime.datetime.strptime(item['post_date'][0],'%Y-%m-%d %X').timetuple())): # raise DropItem('Too old,drop.') if dobman.objects.filter(dob_id=item['owner'][0]): dobman_o = dobman.objects.filter(dob_id=item['owner'][0])[0] else: dobman_o=dobman.objects.create(dob_id=item['owner'][0],home_url=item['owner_url'][0]) topic = item['url'] if dobImage.objects.filter(topic_url=topic): pass else: try : title = item['title'][0] except IndexError,e: title = u'error' for y in item['dobImage']: dobImage.objects.create(image='root/dobImage/full/'+y['path'].split('/')[1],image_thumbnail='root/dobImage/full/thumbnail/'+y['path'].split('/')[1],owner=dobman_o,topic_url=topic,title=title,add_date=item['post_date'][0]) return item
UTF-8
Python
false
false
2,014
10,806,137,756,460
304a6d9d2e785772495f48510f85471ae13ed320
1634e3242fe842b7d76c7a4d21c802f1cca9e51d
/gir2rst/__init__.py
635da0a62b9c76a63f6015401a15910ef5f94abf
[ "GPL-3.0-only" ]
non_permissive
matze/gir2rst
https://github.com/matze/gir2rst
082d8df507d9af78b708a58b242d1857406d6f0b
8b00af95882693ce40f20e9a9817f7cfd10f8832
refs/heads/master
2023-08-21T11:13:03.721164
2012-03-11T10:40:51
2012-03-11T10:40:51
3,552,123
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
__version__ = '0.5dev'
UTF-8
Python
false
false
2,012
9,259,949,492,663
74180ad28ad94db336479047222e070979d7a551
2ca4955c18c3db96b73af5485301c2fb5ee871fa
/e_dit/opt/eDit/menus.py
2d1c21618d1642f55ecd0a498c425175540c5949
[]
no_license
antcer1213/edit
https://github.com/antcer1213/edit
036872db53350753c443bae8f7f7a5fbca4f8fcd
aefaa44188c20a133c32ef416cc77533fff8e269
refs/heads/master
2020-04-23T17:48:18.720578
2013-07-01T14:02:08
2013-07-01T14:02:08
8,640,717
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # encoding: utf-8 import os import elementary as elm import evas import edje import ecore import mimetypes """eDit An lxde/e17 menu-editor GUI built on Python-EFL's. By: AntCer ([email protected]) Started: March 4, 2013 """ HOME = os.getenv("HOME") local = "%s/.local/share/desktop-directories/" %HOME system = "/usr/share/desktop-directories/" class Menus(object): def __init__(self, tb=False, tbentry=False, win=False, vbox=False): #----Main Window if vbox: vbox.delete() self.win = win self.vipbox() def vipbox(self): from edit import Launchers vbox = self.vbox = elm.Box(self.win) vbox.padding_set(5, 5) vbox.size_hint_weight_set(1.0, 1.0) vbox.show() tb = elm.Toolbar(self.win) tb.size_hint_weight_set(1.0, 0.0) tb.size_hint_align_set(-1.0, -1.0) tb.item_append("", "Launcher View", Launchers, self.win, vbox) tb.item_append("", "Menu View") tb.homogeneous_set(True) tb.select_mode_set(2) vbox.pack_end(tb) tb.show() self.separator(vbox) gl = self.maingl = elm.Genlist(self.win) gl.size_hint_weight_set(1.0, 1.0) gl.size_hint_align_set(-1.0, -1.0) gl.bounce_set(False, True) gl.callback_clicked_double_add(self.dubclick) gl.multi_select_set(False) gl.show() vbox.pack_end(gl) self.add_files(gl, None, local) self.separator(vbox) tb = elm.Toolbar(self.win) tb.size_hint_weight_set(1.0, 0.0) tb.size_hint_align_set(-1.0, -1.0) tb.item_append("", "Add", self.system_launcher) tb.item_append("", "Edit", self.editor, vbox) tb.item_append("", "Create", self.editor_core, vbox) tb.item_append("", "Remove", self.rm_popup) tb.homogeneous_set(True) tb.select_mode_set(2) vbox.pack_end(tb) tb.show() self.win.resize_object_add(vbox) self.win.resize(380, 425) self.win.show() #-----Crucial def add_files(self, gl, bt= None, fil=None ): if fil: if not os.path.isdir(fil): data = {};data['fullpath'] = fil split = fil.split("/") fil = os.path.basename(fil);fil = os.path.splitext(fil)[0] data['name'] = fil split.remove(split[len(split)-1]) if not split[0]: split.remove(split[0]) path = "/".join(split) data['path'] = "/%s/"%path self.add_file(gl, data) return else: files = os.listdir(fil) for f in files: if not f.endswith('.directory'): files.remove(f) name = ['one'] for f in files: location = "%s%s"%(fil, f) name = self.get_name(location, name) namefile = dict() for i, n in enumerate(name): namefile.setdefault(n, files[i]) old = namefile.values();new = old[:] for i, k in enumerate(new): new[i] = k.capitalize() capfile = dict() for i, n in enumerate(new): capfile.setdefault(n, old[i]) new.sort() for n in new: l = capfile.get(n) n = "%s%s" %(fil, l) self.add_files(gl, False, n) def add_file(self, gl, data ): itc = elm.GenlistItemClass(item_style="default", text_get_func=self.name_return, content_get_func=self.icon_return) gl.item_append(itc, data, None) def add_group(self, gl, data ): itc = elm.GenlistItemClass(item_style="default", text_get_func=self.name_return, content_get_func=self.icon_return) gl.item_append(itc, data, None) def get_name(self, path, name=False): with open(path) as file: data = file.readlines() for x in data: full = " ".join(data) if not "Name=" in full: label = "None" if name: if name[0] == "one": name[0] = label else: name.append(label) break if "Name=" in x: label = x.split("=")[-1] label = label[:-1] if "lxde" in path: label = "LXDE - " + label if "X-Ubuntu" in full: label = "GNOME - " + label if name: if name[0] == "one": name[0] = label else: name.append(label) break if name: return name else: return label def name_return(self, obj, part, data ): path = data["fullpath"] label = "" label = self.get_name(path) return label def icon_return(self, obj, part, data ): if part == "elm.swallow.icon": f = elm.Box(self.win) f.horizontal_set(True) f.show() sep = elm.Separator(self.win) sep.show() path = data['fullpath'] icon = "none" with open(path) as file: data = file.readlines() for x in data: if "Icon=" in x: icon = x.split("=")[-1] if not icon == "\n": icon = icon[:-1] else: icon = "none" break ic = elm.Icon(self.win) if ic.standard_set(icon): pass else: ic.standard_set("none") ic.size_hint_weight_set(1.0, 1.0) ic.size_hint_align_set(-1.0, -1.0) ic.show() f.pack_end(ic) f.pack_end(sep) return f def sys_cb(self, bt=False): item = self.sysgl.selected_item_get() if item: path = item.data["fullpath"] name = item.data["name"] newpath = "%s%s.directory" %(local, name) if not os.path.exists(newpath): ecore.Exe("cp '%s' '%s'" %(path, local)) ecore.Timer(0.3, self.add_files, self.maingl, None, newpath) #-----------INNER WINDOWS def system_launcher(self, tb, bt): obt = bt obt.disabled_set(True) vbox = elm.Box(self.win) vbox.size_hint_weight_set(1.0, 1.0) vbox.show() gl = self.sysgl = elm.Genlist(self.win) gl.size_hint_weight_set(1.0, 1.0) gl.size_hint_align_set(-1.0, -1.0) gl.callback_clicked_double_add(self.dubclick) gl.bounce_set(False, True) gl.multi_select_set(False) gl.show() vbox.pack_end(gl) btnb = elm.Box(self.win) btnb.horizontal_set(True) btnb.size_hint_weight_set(1.0, 0.0) vbox.pack_end(btnb) btnb.show() bt = elm.Button(self.win) bt.text_set("Add") bt.callback_clicked_add(self.sys_cb) bt.size_hint_align_set(-1.0, -1.0) bt.size_hint_weight_set(1.0, 0.0) btnb.pack_end(bt) bt.show() iw = elm.InnerWindow(self.win) iw.content = vbox iw.show() iw.activate() bt = elm.Button(self.win) bt.text_set("Close") bt.callback_clicked_add(self.iwin_close, obt, iw) bt.size_hint_align_set(-1.0, -1.0) bt.size_hint_weight_set(1.0, 0.0) btnb.pack_end(bt) bt.show() self.add_files(gl, None, system) def editor(self, tb, bt, vbox): item = self.maingl.selected_item_get() if item: self.editor_core(tb, bt, vbox, item) def editor_core(self, tb, bt, vbox, item=None, n=False): if n: self.n.delete() if item: if not type(item) is str: path = item.data['fullpath'] else: path = item else: dest = "%sblank.directory" %local ecore.Exe("echo '[Desktop Entry]' > %s" %dest) ecore.Exe("echo 'Name=Default' >> %s" %dest) path = "%sblank.directory" %local name = self.oldname = "" icon = self.oldicon = "" com = self.oldcom = "" with open(path) as deskfile: for x in deskfile: if "Name=" in x: name = x.split("=")[-1] break with open(path) as deskfile: for x in deskfile: if "Comment=" in x: com = x.split("=")[-1] break with open(path) as deskfile: for x in deskfile: if "Icon=" in x: icon = x.split("=")[-1] break vbox.delete() vbox = elm.Box(self.win) self.win.resize_object_add(vbox) self.win.resize(380, 425) vbox.padding_set(2, 2) vbox.size_hint_weight_set(1.0, 1.0) vbox.show() fr = elm.Frame(self.win) fr.text = "Name:" fr.size_hint_weight_set(1.0, 1.0) fr.size_hint_align_set(-1.0, -1.0) vbox.pack_end(fr) fr.show() en = self.name = elm.Entry(self.win) en.size_hint_weight_set(1.0, 1.0) en.text = name en.scrollable_set(True) en.single_line = True fr.content_set(en) ib = elm.Box(self.win) ib.horizontal_set(True) ib.size_hint_weight_set(1.0, 1.0) ib.size_hint_align_set(-1.0, -1.0) vbox.pack_end(ib) ib.show() ic = self.ic = elm.Icon(self.win) ic.size_hint_weight_set(0.0, 1.0) ic.size_hint_align_set(-1.0, -1.0) if item: inic = "%s"%icon ic.standard_set(inic) else: ic.standard_set("none") ib.pack_end(ic) ic.show() self.separator(ib) fr = elm.Frame(self.win) fr.text = "Icon:" fr.size_hint_weight_set(1.0, 1.0) fr.size_hint_align_set(-1.0, -1.0) ib.pack_end(fr) fr.show() en = self.icon = elm.Entry(self.win) if item: en.text = icon else: en.text = "none" en.scrollable_set(True) en.single_line = True fr.content_set(en) fr = elm.Frame(self.win) fr.text = "Comment:" fr.size_hint_weight_set(1.0, 1.0) fr.size_hint_align_set(-1.0, -1.0) vbox.pack_end(fr) fr.show() en = self.com = elm.Entry(self.win) en.text = com en.scrollable_set(True) en.single_line = True fr.content_set(en) plb = elm.Box(self.win) plb.size_hint_weight_set(1.0, 1.0) plb.size_hint_align_set(-1.0, -1.0) vbox.pack_end(plb) plb.show() pl = elm.Panel(self.win) pl.hidden_set(False) pl.orient_set(elm.ELM_PANEL_ORIENT_RIGHT) pl.size_hint_weight_set(1.0, 1.0) pl.size_hint_align_set(-1.0, -1.0) lbb = elm.Box(self.win) plb.padding_set(0, 5) lbb.horizontal_set(True) lbb.size_hint_weight_set(1.0, 1.0) lbb.size_hint_align_set(-1.0, -1.0) pl.content_set(lbb) lbb.show() plb.pack_end(pl) pl.show() bt = elm.Button(self.win) if item: bt.text = "File Path:" else: bt.text = "File Name(no suffix):" bt.size_hint_weight_set(0.0, 1.0) bt.size_hint_align_set(-1.0, -1.0) bt.disabled_set(True) lbb.pack_end(bt) bt.show() en = self.dtfp = elm.Entry(self.win) if item: en.text = path en.editable_set(False) else: en.text = "Default" en.editable_set(True) en.single_line = True en.scrollable_set(True) en.size_hint_weight_set(1.0, 1.0) en.size_hint_align_set(-1.0, -1.0) lbb.pack_end(en) en.show() self.separator(lbb) btnb = elm.Box(self.win) btnb.horizontal_set(True) btnb.size_hint_weight_set(1.0, 1.0) vbox.pack_end(btnb) btnb.show() if item: bt = elm.Button(self.win) bt.text_set("Save") bt.callback_clicked_add(self.editor_save) btnb.pack_end(bt) bt.show() bt = elm.Button(self.win) bt.text_set("Manual") if item: bt.callback_clicked_add(self.manual_win, path, vbox, item) else: bt.callback_clicked_add(self.manual_win, path, vbox) btnb.pack_end(bt) bt.show() btnb = elm.Box(self.win) btnb.horizontal_set(True) btnb.size_hint_weight_set(1.0, 1.0) vbox.pack_end(btnb) btnb.show() bt = elm.Button(self.win) if item: bt.text_set("Done") bt.callback_clicked_add(self.editor_save, vbox) else: bt.text_set("Create") bt.callback_clicked_add(self.creator_create, vbox, dest) btnb.pack_end(bt) bt.show() bt = elm.Button(self.win) bt.text_set("Cancel") if item: bt.callback_clicked_add(self.editor_close, vbox) else: bt.callback_clicked_add(self.creator_close, vbox, dest) btnb.pack_end(bt) bt.show() #---------POPUPS def rm_popup(self, tb, bt): if self.maingl.selected_item_get(): popup = self.rmp = elm.Popup(self.win) popup.size_hint_weight = (1.0, 1.0) popup.text = "<b>Confirmation</><br><br>Click <i>Delete</i> if you wish to delete the launcher. Otherwise, click <i>Close</i>." bt = elm.Button(self.win) bt.text = "Close" val = 2 bt.callback_clicked_add(self.remove_files, val) popup.part_content_set("button1", bt) bt = elm.Button(self.win) bt.text = "Delete" val = 1 bt.callback_clicked_add(self.remove_files, val) popup.part_content_set("button2", bt) popup.show() #---------GENERAL def separator(self, vbox): sep = elm.Separator(self.win) sep.horizontal_set(True) sep.show() vbox.pack_end(sep) def iw_close(self, bt=False, obt=False): self.iw.delete() if obt: obt.disabled_set(False) def iwin_close(self, bt=False, obt=False, iw=False): iw.delete() if obt: obt.disabled_set(False) def editor_save(self, bt=False, vbox=False): repl = self.line_list() search = self.search_list() path = self.dtfp.entry_get() with open(path) as file: data = file.readlines() for i, line in enumerate(data): data[i]= line.decode('utf-8') for x in search: if x: y = search.index(x) data = self.return_data(data, repl, x, y) for x in search: if x: y = search.index(x) data = self.return_new(data, repl, x, y) for i, line in enumerate(data): data[i]= line.encode('utf-8') with open(path, 'w') as file: file.writelines(data) if vbox: vbox.delete() self.vipbox() def creator_create(self, bt=False, vbox=False, dest=False): new = self.line_list() path = self.dtfp.entry_get() with open(dest) as file: data = file.readlines() data[1] = new[0] del new[0] data.extend(new) with open(dest, 'w') as file: file.writelines(data) ecore.Exe("mv '%s' '%s%s.directory'" %(dest, local, path)) vbox.delete() self.vipbox() def manual_win(self, bt, path, vbox, item=False): if not item: with open(path) as file: data = file.readlines() new = self.line_list() data[1] = new[0] del new[0] data.extend(new) with open(path, 'w') as file: file.writelines(data) item = path vbox.delete() vbox = elm.Box(self.win) self.win.resize_object_add(vbox) self.win.resize(380, 425) vbox.padding_set(0 , 5) vbox.size_hint_weight_set(1.0, 1.0) vbox.show() self.separator(vbox) self.desktop_file(path, vbox, item) def dubclick(self, maingl, item): path = item.data['fullpath'] box = elm.Box(self.win) box.padding_set(0 , 5) box.size_hint_weight_set(1.0, 1.0) box.show() iw = self.iw = elm.InnerWindow(self.win) iw.content_set(box) iw.show() iw.activate() val = 1 self.desktop_file(path, box, item, val) def desktop_file(self, path, vbox, item, val=None): sc = elm.Scroller(self.win) sc.size_hint_align_set(-1.0, -1.0) sc.size_hint_weight_set(1.0, 1.0) sc.policy_set(True, True) vbox.pack_end(sc) sc.show() man = self.man = elm.Entry(self.win) man.line_wrap_set(0) if val: man.autosave_set(False) else: man.autosave_set(True) man.file_set(path, 0) man.size_hint_align_set(-1.0, -1.0) man.size_hint_weight_set(1.0, 1.0) sc.content_set(man) if val: man.editable_set(False) else: man.editable_set(True) man.scrollable_set(False) man.show() bt = elm.Button(self.win) if val: bt.text_set("Close") else: bt.text_set("Done") if val: bt.callback_clicked_add(self.iw_close) else: bt.callback_clicked_add(self.delay, vbox, item) vbox.pack_end(bt) bt.show() def editor_full(self, bt=False, vbox=False): vbox.delete() self.vipbox() def creator_full(self, bt=False, vbox=False, dest=False): ecore.Exe("rm '%s'" %dest) vbox.delete() self.vipbox() def editor_close(self, bt=False, vbox=False): vbox.delete() self.vipbox() def creator_close(self, bt=False, vbox=False, dest=False): ecore.Exe("rm '%s'" %dest) vbox.delete() self.vipbox() def remove_files(self, bt, val): item = self.maingl.selected_item_get() path = item.data["fullpath"] self.rmp.delete() if val == 2: return if os.path.exists(path): ecore.Exe("rm '%s'" %path) item.delete() def return_data(self, data=False, repl=False, x=False, y=False): for i, line in enumerate(data): if x == "Name=": if x in line: data[i] = repl[y] break if x in line: data[i] = repl[y] break return data def return_new(self, data=False, repl=False, x=False, y=False): for line in data: if x == "Name=": break check = " ".join(data) if x in check: break if not x in data: data.append(repl[y]) break return data def line_list(self): L = [] name = "Name=%s" %self.name.entry_get();L.append(name) typ = "Type=Directory";L.append(typ) com = "Comment=%s" %self.com.entry_get();L.append(com) icon = "Icon=%s" %self.icon.entry_get();L.append(icon) L = [x+"\n" for x in L] return L def search_list(self): S = [] name = "Name=";S.append(name) typ = "";S.append(typ) com = "Comment=";S.append(com) icon = "Icon=";S.append(icon) return S def delay(self, bt, vbox, item): bt.disabled_set(True) n = self.n = elm.Notify(self.win) n.orient = 1 n.allow_events_set(False) n.show() tb = "filler" ecore.Timer(1.5, self.editor_core, tb, bt, vbox, item, n)
UTF-8
Python
false
false
2,013
12,532,714,587,816
89883edfcbf59022221494fe8c11e984fbbf5263
cdf05ad0412245d6e3bc62116a4b3e996fa1a59f
/wawel/polls/customclasses.py
2966b11671ba4ede24d059a8bb5a57f3b3a510de
[]
no_license
figield/Wawel
https://github.com/figield/Wawel
f5bf881340df9ed569edf31f705adf63838a62a1
0dc92c57d82a1ff1391a805e85805990a49091c3
refs/heads/master
2016-09-05T23:36:18.798960
2012-01-11T15:06:54
2012-01-11T15:06:54
2,256,477
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
class Cost: def __init__(self, period, usage, cost): self.period = period self.usage = usage self.cost = cost class Usage: def __init__(self, period, usage, cost, thermal): self.period = period self.usage = usage self.cost = cost self.thermal = thermal if usage == 0: self.cop = 0 else: self.cop = round(thermal/usage, 3)
UTF-8
Python
false
false
2,012
5,111,011,082,876
6a6413db93ca1679aa969ce2f25a50e5aeef54e3
40f3f419f1faba5a052edcdde871806a953b5a3e
/cgi-bin/whatismyip.py
52b2a6a7d85d415fccec9af26122e24918ab1657
[]
no_license
haxwithaxe/haxwithaxe.net
https://github.com/haxwithaxe/haxwithaxe.net
ccfd879140cb380e4d0b764522bf9fac8bcc21db
eb6a0d14f113a50ba217de78a24b0556ddb4c8a9
refs/heads/master
2020-04-18T22:50:49.271706
2014-03-25T01:17:32
2014-03-25T01:17:32
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- # vim: set noexpandtab tabstop=4 shiftwidth=4 : import web import page class WhatIsMyIP(page.Page): ''' ''' page = 'whatismyip' def on_GET(self): return web.ctx.env.get('REMOTE_ADDR')
UTF-8
Python
false
false
2,014
9,062,381,022,720
a3efc87a66c2f0c520cdb60c7fa9e79ef39429ee
4f0952c29d5c01a772c350d46adfee177920c29e
/web/context_processors.py
abf4683ed7059398e32b9f592e7ad4a8f684afed
[]
no_license
sa2ajj/myLibrary
https://github.com/sa2ajj/myLibrary
7c7e86070ea7f7e0e3cee73608c9339aca53b4c4
77acb1be571bc0f44c4649dd9e75b5087240b6a6
refs/heads/master
2021-01-01T20:35:18.997001
2010-11-30T06:06:40
2010-11-30T06:06:40
1,125,209
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
""" ... """ from django.conf import settings def site(request): """...""" data = { 'SITE_TITLE': settings.SITE_TITLE, 'SITE_SUBTITLE': settings.SITE_SUBTITLE, 'MAIN_MENU': settings.MAIN_MENU, 'COMPANY': settings.COMPANY } if request.user.is_authenticated(): data['USER_OBJECT'] = request.user if user.is_staff: data['USER_ADMIN'] = 'Admin' data['USER_NAME'] = request.user.username # TODO: change to some configurable thingie data['USER_ACTION_URL'] = settings.LOGOUT_URL else: data['USER_ACTION_URL'] = settings.LOGIN_URL return data
UTF-8
Python
false
false
2,010
6,751,688,603,115
0b176d7955fdb7599050f4291192eab006981717
747f759311d404af31c0f80029e88098193f6269
/addons/multi_company_share/__init__.py
80d047ca491c0085edea303abf19ebdc33bf07bc
[]
no_license
sgeerish/sirr_production
https://github.com/sgeerish/sirr_production
9b0d0f7804a928c0c582ddb4ccb7fcc084469a18
1081f3a5ff8864a31b2dcd89406fac076a908e78
refs/heads/master
2020-05-19T07:21:37.047958
2013-09-15T13:03:36
2013-09-15T13:03:36
9,648,444
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
/home/openerp/production/extra-addons/multi_company_share/__init__.py
UTF-8
Python
false
false
2,013
790,273,983,328
87180f4ae312dd42d315f07413bbb910a2513fdc
1928c2b4029dbdd9b96f31d3c626018b78167a56
/lesson_str_list_tuple/lesson_str_list_tuple.py
bbd41454c760d4ee665dd73af932f5125267badc
[ "GPL-2.0-only" ]
non_permissive
inkfountain/learn-py-a-little
https://github.com/inkfountain/learn-py-a-little
1414b54f8895e37d6057dc3e0e2a0f7ae894c366
9a3687c9a0a1a4612e5ebec08785dc62069823c6
refs/heads/master
2018-01-07T17:05:11.101726
2014-10-22T11:15:21
2014-10-22T11:15:21
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- """ str、list、tuple类型数据示例: """ str_a = 'ab' list_a = ['a', 'b'] tuple_a = ('c', 'd') str_b = 'xy' list_b = [5, 6] tuple_b = (7, 8) list_c = [1, 2, 3] u"__♥__________________________________________________________________________" #### 1. str、list、tuple类型 ''' 字符串(str)、列表(list)、元组(tuple)都表示有序序列 字符串: 表示的是字符的序列,而列表和元组的序列项是任意类型的 元组: 元组的表达式是`(1,2,3)`, 可以对比list的表达式`[1,2,3]`, 和列表一样的是,元组的项的个数是任意的,项的类型也是任意的 列表: 和字符串、元组不一样的是,list的项是可修改的,比如底下代码 ''' list_c[1] = 100 print 'now list_c is :', list_c # [1, 100, 3] ''' 空字符串是 '' 空元组是 () 空数组是 [] 长度为一的字符串 'a' 长度为一的元组 (3,) # 注意逗号 长度为一的数组 [4] *****注意,对于长度为1的元组,需要有一个逗号,不能省略***** 其实每个元组或数组的最后一项后头都可以有一个逗号 由于语法结构的原因,长度为1的元组,不能省略最后一个逗号,其他情况下写不写都行 ''' print u'没有逗号:', [1, 2, 3], (1, 2, 3) print u'有逗号:', [1, 2, 3, ], (1, 2, 3,) u"__♥♥__________________________________________________________________________" #### 2. 运算: +、*、+=、*= ''' 加法 + ''' print u'str相加:', str_a + str_b # 'abxy' print u'list相加:', list_a + list_b # ['a', 'b', 5, 6] print u'tuple相加:', tuple_a + tuple_b # ('c', 'd', 7, 8) ''' 乘法 * ''' print u'str乘以整数', str_a * 3 # 'ababab' print u'list乘以整数', list_a * 3 # ['a', 'b', 'a', 'b', 'a', 'b'] print u'tuple乘以整数', tuple_a * 3 # ('c', 'd', 'c', 'd', 'c', 'd') ''' 增量运算 += 、*= 是一种简写方式,且对于str、list、tuple都能用 ''' str_a += str_b # 等价于`str_a = str_a + str_b` list_a *= 4 # 等价于`list_a = list_a * 4` u"__♥♥♥__________________________________________________________________________" #### 3. 运算: 索引、切片 ''' 之前学过获取列表的某一项值和获取列表的连续几个值 前者叫索引运算`[]` 后者叫切片运算`[:]`(顾名思义,切出一个子集来) ''' print u'索引运算:', list_c[2] # 3 print u'切片运算:', list_c[1:3] # [2, 3] ''' *****对于字符串和元祖,这两个运算同样适用**** ''' print u'str 索引运算:', str_a[1] # "b" print u'str 切片运算:', str_a[0:1] # "a" print u'tuple 索引运算:', tuple_a[1] # "d" print u'tuple 索引运算:', tuple_a[1:2] # ("d",) ''' 索引运算的索引值必须在有效范围内,比如`str_a[100]`, str_a没有那么长,所以会出错 而切片运算的两个索引值可以不在范围内,这个时候,切片运算就会有多少显示多少 ''' print list_c[1:100] # [2, 3] ;`list_c = [1, 2, 3]`中只有两个值属于区间[1, 100) ''' 切片运算的索引参数甚至可以省略 冒号前边的索引省略时,就会当成0来处理 冒号后边的索引值省略时,就会当成序列的长度n来处理 ''' print list_c[1:] # 等价于`list_c[1:len(list_c)]` print list_c[:2] # 等价于`list_c[0:2]` print list_c[:] # 等价于`list_c[0:len(list_c)]` ''' 还记得range函数有三个参数时的情形不,range(x, y, d), d表示递增序列的递增因子 这里的切片运算也可以有三个值,list_a[x:y:d], d表示我要切片的区间[x, y)中的值是这样子的[x, x+d, x+d+d, ... y),不包括y ''' list_n = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] print u'区间[2, 10)的值:', list_n[2:10] # [2, 3, 4, 5, 6, 7, 8, 9] print u'区间[2, 10), 索引间隔为2:', list_n[2:10:2] # [2, 4, 6, 8] print u'区间[2, 10), 索引间隔为3:', list_n[2:10:3] # [2, 5, 8] ''' 默认情况下的list_a[x:y]等价于list_a[x:y:1] list_a[x:y:d]中的d也可以是负数,比如d为-2时,代表的索引值就是[x, x-2, x-4, ... y),不包括y ''' print u'间隔-1:', list_n[10:2:-1] # [10, 9, 8, 7, 6, 5, 4, 3] print u'间隔-3:', list_n[10:2:-3] # [10, 7, 4] print u'倒序', list_n[::-1] # [13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0] u"__♥♥♥♥__________________________________________________________________________" #### 4. 获取类型 ''' 基本类型有: (数值) int, long, float, bool, complex(这个是复数类型) (序列) str, list, tuple (字典) dict ''' ''' 获取类型的函数`type(a)` ''' print 'type of 12:', type(12) # int print 'type of 1.4:', type(1.4) # float print 'type of "12":', type('12') # str print 'type of [2,3]:', type([2, 3]) # list print 'type of (3,4):', type((3, 4)) # tuple ''' 这里可以通过type函数查看长度为1的元组的类型,以及没有逗号时python解释器识别出类型 ''' print 'type of (3,):', type((3,)) # tuple print 'type of (3):', type((3)) # int (3)和3 对于python来说,是一样的 u"__♥♥♥♥♥__________________________________________________________________________" #### 5. 练习 ''' 1. 写一个函数n_star, 该函数接受一个参数n,返回一个字符串,字符串由n个'*'组成,其中n为正整数 ''' def n_star(n): pass
UTF-8
Python
false
false
2,014
5,446,018,551,892
2696dfda736517c97a47f48b3354ddbb0d3dad67
b9876e3cb179b07db0e12b61977e21bcdf2df22d
/setup.py
d60e3e66a80a11f72a558254d7405f4465622b07
[ "GPL-2.0-only" ]
non_permissive
jmroot/iomkc
https://github.com/jmroot/iomkc
dd71347b608fddfb282bcec162bccc8ebaa3c9f8
a8ab2e980b95f4bcdbd06aad1a93b879c3b85150
refs/heads/master
2021-03-12T21:19:53.371540
2008-04-09T01:30:23
2008-04-09T01:30:23
34,831,483
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from distutils.core import setup, Extension directrwmodule = Extension('directrw', sources = ['directrwmodule.c']) btrecordmodule = Extension('btrecord', sources = ['btrecordmodule.c', 'btrecord.c']) setup (name = 'DirectRW', version = '0.1', description = 'Call read/write with correctly aligned buffers for O_DIRECT', author = 'Joshua Root', author_email = '[email protected]', ext_modules = [directrwmodule]) setup (name = 'btrecord', version = '0.1', description = 'Output I/O op data in btrecord format', author = 'Joshua Root', author_email = '[email protected]', ext_modules = [btrecordmodule]) # still to come: posix aio
UTF-8
Python
false
false
2,008
19,602,230,746,394
a49d82d621ea3de764aa8f7e0670e2de20bd602f
c56689e1096a61be2ba99fc4c522fbe85178efeb
/deploy/git_helpers.py
81c36ada663d1edfedef978340f5d6f3aae4873d
[ "AGPL-3.0-only" ]
non_permissive
bargaorobalo/unisubs
https://github.com/bargaorobalo/unisubs
2624ef348210067628eefe6e662299b52bab6436
9f910a3f65f7eeebce94b1e0cec471cb989b8982
HEAD
2017-12-03T10:15:04.833185
2013-03-17T18:44:34
2013-03-17T18:44:34
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import os, sys, re from subprocess import Popen, PIPE def get_current_commit_hash(short=True, skip_sanity_checks=False): if not skip_sanity_checks: if os.path.islink('.git'): sys.stderr.write('WARNING: .git is a symlink. ' 'Things may not work correctly.\n') process = Popen(["git", "rev-parse", "HEAD"], stdout=PIPE) guid = process.communicate()[0].strip() if guid: guid = guid[:8] if not skip_sanity_checks: try: import commit if commit.LAST_COMMIT_GUID.split('/')[-1] != guid: sys.stderr.write('WARNING: commit.py is out of date. ' 'Things may not work correctly. ' 'Use "python deploy/create_commit_file.py" to update it.\n') except ImportError: sys.stderr.write('WARNING: commit.py does not exist. ' 'Things may not work correctly. ' 'Use "python deploy/create_commit_file.py" to create it.\n') return guid def get_current_branch(): if os.path.islink('.git'): sys.stderr.write('WARNING: .git is a symlink. ' 'Things may not work correctly.\n') process = Popen(["git", "branch"], stdout=PIPE) branches = process.communicate()[0].strip() branch = re.search(r"\* ([^\n]+)", branches).group(1) return branch def get_guid(skip_sanity_checks=False): guid = get_current_commit_hash(skip_sanity_checks=skip_sanity_checks) branch = get_current_branch() return "%s/%s" % (branch, guid)
UTF-8
Python
false
false
2,013
8,478,265,481,644
759ecad405bcd57af4fa57a2bad4db32841e09c8
3be5bcc43327fec4376424b9da8f276ff201611e
/pknyx/stack/backends/eibd/vBusMonitor2.py
b9a01e92365da07f6318458f0c0d0213bb1980cd
[]
no_license
tolgauen/pKNyX
https://github.com/tolgauen/pKNyX
76c8894abfb7c7d48241532ad9d5c5c6305b80cc
d35aab293cb03bcf6dad8924d1a702c99f1d03d2
refs/heads/master
2016-10-22T20:55:26.879199
2014-12-12T18:40:28
2014-12-12T18:40:28
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- """ Python KNX framework License ======= - B{pKNyX} (U{http://www.pknyx.org}) is Copyright: - (C) 2013-2014 Frédéric Mantegazza This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 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 General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or see: - U{http://www.gnu.org/licenses/gpl.html} Module purpose ============== KNX Bus management Implements ========== - B{VBusMonitor2} @author: Frédéric Mantegazza @copyright: (C) 2013-2014 Frédéric Mantegazza @license: GPL """ __revision__ = "$Id$" import os import sys import subprocess from pknyx.services.logger import Logger from pknyx.stack.backends.eibd.eibConnection import EIBConnection, EIBBuffer, EIBAddr class EIBAddress(EIBAddr): def toGroup(self): return "%d/%d/%d" % ((self.data >> 11) & 0x1f, (self.data >> 8) & 0x07, (self.data) & 0xff) def toIndividual(self): return "%d.%d.%d" % ((self.data >> 12) & 0x0f, (self.data >> 8) & 0x0f, (self.data) & 0xff) class VBusMonitor2(object): """ """ def __init__(self, url): """ """ super(VBusMonitor2, self).__init__() self._connection = EIBConnection() err = self._connection.EIBSocketURL(url) if err: Logger().critical("VBusMonitor2.__init__(): %s" % os.strerror(self._connection.errno)) Logger().critical("VBusMonitor2.__init__(): call to EIBConnection.EIBSocketURL() failed (err=%d)" % err) sys.exit(-1) def run(self): """ """ err = self._connection.EIBOpenVBusmonitor() if err: Logger().critical("VBusMonitor2.run(): %s" % os.strerror(self._connection.errno)) Logger().critical("VBusMonitor2.run(): call to EIBConnection.EIBOpenVBusmonitor() failed (err=%d)" % err) sys.exit(-1) while True: buffer_ = EIBBuffer() lenght = self._connection.EIBGetBusmonitorPacket(buffer_) if length == -1: Logger().critical("VBusMonitor2.run(): %s" % os.strerror(self._connection.errno)) Logger().critical("VBusMonitor2.run(): call to EIBConnection.EIBGetBusmonitorPacket() failed") sys.exit(-1) print buffer_ class KNX(object): """ From Domogik project """ def __init__(self): """ """ super(KNX, self).__init__() def listen(self): #command = "groupsocketlisten ip:linknxwebbox" command = "vbusmonitor2 ip:linknxwebbox" self.pipe = subprocess.Popen(command, shell = True, bufsize = 1024, stdout = subprocess.PIPE ).stdout self._read = True while self._read: data = self.pipe.readline() if not data: break print repr(data) def stop_listen(self): self._read = False if __name__ == "__main__": vBusMonitor2 = VBusMonitor2("ip:linknxwebbox") vBusMonitor2.run() #device = "ipt:192.168.1.148" #obj = KNX() #obj.listen()
UTF-8
Python
false
false
2,014
4,398,046,541,705
032a4367134595fe68b6fdb8ee134bd296b9a524
cc570764c63b62cf826517412ff7465e176fa7ce
/xdoc/app.py
3dba5a6142b9047b6412dc5a838277b8a4868eae
[ "MIT" ]
permissive
oqbmdpo/xdoc
https://github.com/oqbmdpo/xdoc
4f393c07156b1570ff5a1cf470b4b8a0ec5a68c8
374663c7d2002b7b21a9cc1c0ecc77464125d2fe
refs/heads/master
2020-04-07T06:23:10.775611
2013-09-23T03:09:45
2013-09-23T03:09:45
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import tornado.ioloop import tornado.httpserver import tornado.web from tornado.options import define, options import git from handlers import * define('port', default=8000, help='run on the given port', type=int) define('db', default='xdoc', help='database name', type=str) class XdocApp(tornado.web.Application): def __init__(self, db_name): self.db_name = db_name settings = { 'template_path': os.path.join(os.path.dirname(__file__), 'templates'), 'static_path': os.path.join(os.path.dirname(__file__), 'static'), 'login_url': '/login', } html_path = os.path.join(settings['static_path'], 'html') handlers = [ (r'/draft/(.*)', DraftHandler), (r'/draft', DraftHandler), (r'/editor', StaticHandler, {'path': html_path, 'filename': 'edit.html'}), ] super(XdocApp,self).__init__(handlers, **settings) if __name__ == '__main__': options.parse_command_line() XdocApp(options.db).listen(options.port) tornado.ioloop.IOLoop.instance().start()
UTF-8
Python
false
false
2,013
11,373,073,434,566
6f04d741d13ba01a7c440d9f2d6b6933c170c30c
5bda5599b899e247dd8e4180390a898abc7ebb51
/openstates/ri/committees.py
d9d5c0de5c91de7bc361b6e8be53e7f1ee237826
[ "GPL-3.0-only" ]
non_permissive
JoeGermuska/openstates
https://github.com/JoeGermuska/openstates
81ad79cf683c8237d7a1f98c1c57d0d3001479b2
d1a7b13fe9dfbc91df2bcf52a0256dd9f2aa5621
refs/heads/master
2021-01-18T10:19:50.766209
2013-03-08T23:09:40
2013-03-08T23:09:40
525,202
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import re import urlparse import datetime from billy.scrape import NoDataForPeriod from billy.scrape.committees import CommitteeScraper, Committee import lxml.etree, lxml.html COMM_BLACKLIST = [ "Constitutional and Regulatory Issues" # This page is timing out. This is most likely an issue with Upstream, # it seems to happen all over the place. ] class RICommitteeScraper(CommitteeScraper): jurisdiction = 'ri' def scrape(self, chamber, term_name): self.validate_term(term_name, latest_only=True) if chamber == 'upper': self.scrape_senate_comm() # scrape joint committees under senate self.scrape_joint_comm() elif chamber == 'lower': self.scrape_reps_comm() def scrape_comm_list(self, ctype): url = 'http://webserver.rilin.state.ri.us/Sitemap.html' self.log("looking for "+ctype) page = self.urlopen(url) root = lxml.html.fromstring(page) return root.xpath("//a[contains(@href,'"+ctype+"')]") def add_members(self,comm,url): page = self.urlopen(url) self.log(comm) root = lxml.html.fromstring(page) # The first <tr> in the table of members membertable=root.xpath('//p[@class="style28"]/ancestor::table[1]')[0] members = membertable.xpath("*")[1:] order = { "name" : 0, "appt" : 1, "email" : 2 } prefix = "Senator" for member in members: name = member[order['name']].text_content().strip() if name[:len(prefix)] == prefix: name = name[len(prefix):].strip() appt = member[order['appt']].text_content().strip() self.log("name "+ name +" role " + appt) comm.add_member(name, appt) def scrape_reps_comm(self): base = 'http://webserver.rilin.state.ri.us' linklist = self.scrape_comm_list('ComMemR') if linklist is not None: for a in linklist: link=a.attrib['href'] commName=a.text url=base+link self.log("url "+url) c=Committee('lower',commName) self.add_members(c,url) c.add_source(url) self.save_committee(c) def scrape_senate_comm(self): base = 'http://webserver.rilin.state.ri.us' linklist = self.scrape_comm_list('ComMemS') if linklist is not None: for a in linklist: link=a.attrib['href'] commName=a.text self.log( commName ) if commName in COMM_BLACKLIST: self.log( "XXX: Blacklisted" ) continue url=base+link self.log("url "+url) c=Committee('upper',commName) self.add_members(c,url) c.add_source(url) self.save_committee(c) def scrape_joint_comm(self): base = 'http://webserver.rilin.state.ri.us' linklist = self.scrape_comm_list('ComMemJ') if linklist is not None: for a in linklist: link=a.attrib['href'] commName=a.text url=base+link self.log("url "+url) c=Committee('joint',commName) self.add_members(c,url) c.add_source(url) self.save_committee(c)
UTF-8
Python
false
false
2,013
5,660,766,930,163
015d6704d7a51ae71b16460ac8b927317e0e4add
4403bbf0f43300dca349a6531bce427cbe25631a
/base/models.py
e33b11bc113a9708ba16d24821b2b211d4ca8ecb
[]
no_license
jslopez/django-project-template
https://github.com/jslopez/django-project-template
0c80ff55a7847b2bec07b8f0ef526a9f5d1a5e94
0e6dedb8a7f19d8e533d4779f777fbb623d8dace
refs/heads/master
2020-12-28T20:31:59.099371
2014-02-26T20:15:48
2014-02-26T20:15:48
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# -*- coding: utf-8 -*- """ Models for the base application. All apps should use the BaseModel as parent for all models """ # base from base.managers import BaseManager # django from django.conf import settings from django.db import models # other from django.utils import timezone class BaseModel(models.Model): """ An abstract class that every model should inherit from """ created_at = models.DateTimeField( auto_now_add=True, help_text="creation date", ) updated_at = models.DateTimeField( auto_now=True, null=True, help_text="edition date", ) # using BaseManager objects = BaseManager() class Meta: """ set to abstract """ abstract = True # public methods def update(self, **kwargs): """ proxy method for the QuerySet: update method highly recommended when you need to save just one field """ kwargs['updated_at'] = timezone.now() for kw in kwargs: self.__setattr__(kw, kwargs[kw]) self.__class__.objects.filter(pk=self.pk).update(**kwargs) def get_image_url(self, field_name="picture", width=None, height=None): """ returns the url of an image stored in the attribute with the name field_name and with the size specified by width and height """ if width and height: file_path = "{}{}x{}/{}".format( settings.MEDIA_URL, width, height, str(self.picture)) else: file_path = "{}{}".format(settings.MEDIA_URL, str(self.picture)) return file_path
UTF-8
Python
false
false
2,014
8,770,323,261,127
1a82fb020c06f37a4e594b90d5805a24a0c07253
ec76fd46db4221d0a3ac15187285da6b61773bcc
/writer.py
98d6862f24d0e39d9f06d69a54d44f31c77e89aa
[]
no_license
rick446/mongodb-sdas
https://github.com/rick446/mongodb-sdas
7f693d4270e2390fba099a834d05acfc8a338b21
60cac38f5cac01cbc4f95cd152e0b15780aaaf21
refs/heads/master
2021-01-19T05:29:07.056202
2012-09-12T20:47:24
2012-09-12T20:47:24
5,770,811
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import sys from itertools import cycle import random import time as tm_time from datetime import datetime, time, timedelta import pymongo measures = [ 'measure-%d' % i for i in xrange(100) ] conn = pymongo.Connection(sys.argv[1]) # 'mongodb://ip-10-190-131-134.ec2.internal:27017') option = eval(sys.argv[2]) if option == 0: PREALLOC=False HIER=False elif option == 1: PREALLOC=True HIER=False elif option == 2: PREALLOC=True HIER=True DILATION=300 def main(): coll = conn.test.hits coll.drop() fp = open('times.csv', 'w') rt_begin = sim_now = tm_time.time() measure_iter = cycle(measures) while True: # Simulate a minute writes = 0 sim_min_begin = sim_now rt_min_begin = tm_time.time() while sim_now - sim_min_begin < 60.0: rt_elapsed = tm_time.time() - rt_begin sim_now = rt_begin + (rt_elapsed * DILATION) sim_dt = datetime.utcfromtimestamp(sim_now) if HIER: record_hit_hier(coll, sim_dt, measure_iter.next()) else: record_hit(coll, sim_dt, measure_iter.next()) writes += 1 if writes % 100 == 0: conn.test.command('getLastError') conn.test.command('getLastError') rt_min_elapsed = tm_time.time() - rt_min_begin # Write that minute's results wps = writes / float(rt_min_elapsed) minute = sim_dt.hour * 60 + sim_dt.minute csv_line = '%d,%f\n' % ( minute, wps) line = '%d,%f %s' % (minute, wps,'*'*(writes/10)) fp.write(csv_line) if minute % 10 == 0: fp.flush() print line def preallocate(coll, dt, measure): sdate = dt.strftime('%Y%m%d') metadata = dict( date=datetime.combine( dt.date(), time.min), measure=measure) id='%s/%s' % (sdate, measure) hourly_doc = dict( ('hourly.%.2d' % i, 0) for i in range(24)) minute_doc = dict( ('minute.%.4d' % i, 0) for i in range(1440)) update = { '$set': { 'metadata': metadata }, '$inc': { 'daily': 0 } } update['$inc'].update(hourly_doc) update['$inc'].update(minute_doc) coll.update( { '_id': id }, update, upsert=True, safe=True) def record_hit(coll, dt, measure): if PREALLOC and random.random() < (1.0/2000.0): preallocate(coll, dt + timedelta(days=1), measure) sdate = dt.strftime('%Y%m%d') metadata = dict( date=datetime.combine( dt.date(), time.min), measure=measure) id='%s/%s' % (sdate, measure) minute = dt.hour * 60 + dt.minute coll.update( { '_id': id, 'metadata': metadata }, { '$inc': { 'daily': 1, 'hourly.%.2d' % dt.hour: 1, 'minute.%.4d' % minute: 1 } }, upsert=True) def preallocate_hier(coll, dt, measure): sdate = dt.strftime('%Y%m%d') metadata = dict( date=datetime.combine( dt.date(), time.min), measure=measure) id='%s/%s' % (sdate, measure) hourly_doc = dict( ('hourly.%.2d' % i, 0) for i in range(24)) minute_doc = dict( ('minute.%.2d.%.2d' % (h,m), 0) for h in range(24) for m in range(60)) update = { '$set': { 'metadata': metadata }, '$inc': { 'daily': 0 } } update['$inc'].update(hourly_doc) update['$inc'].update(minute_doc) coll.update( { '_id': id }, update, upsert=True, safe=True) def record_hit_hier(coll, dt, measure): if PREALLOC and random.random() < (1.0/1500.0): preallocate_hier(coll, dt + timedelta(days=1), measure) sdate = dt.strftime('%Y%m%d') metadata = dict( date=datetime.combine( dt.date(), time.min), measure=measure) id='%s/%s' % (sdate, measure) coll.update( { '_id': id, 'metadata': metadata }, { '$inc': { 'daily': 1, 'hourly.%.2d' % dt.hour: 1, ('minute.%.2d.%.2d' % (dt.hour, dt.minute)): 1 } }, upsert=True) if __name__ == '__main__': main()
UTF-8
Python
false
false
2,012
223,338,312,242
92772b9c3faac85ed9eb18dacc2f491790f3b2fc
adaa48b3c5a19d16ce33f1e061235f284a56decf
/07-adapter/adapter.py
4af99db72e6241189905d6d212eeb0e5b96dcad5
[]
no_license
venthur/design-patterns
https://github.com/venthur/design-patterns
19528f42444dd316dd9bea876c04e03e7c5feaf3
b7b155651bbb2b9d402258c3d78493152ebd2ae5
refs/heads/master
2020-07-26T13:37:34.865914
2012-10-08T12:44:27
2012-10-08T12:44:27
6,124,144
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python class Duck(object): def quack(self): pass def fly(self): pass class MallardDuck(Duck): def quack(self): print 'Quack' def fly(self): print "I'm flying." class Turkey(object): def gobble(self): pass def fly(self): pass class WildTurkey(Turkey): def gobble(self): print 'Gobble gobble.' def fly(self): print "I'm flying a short distance" class TurkeyAdapter(Duck): def __init__(self, turkey): self.turkey = turkey def quack(self): self.turkey.gobble() def fly(self): for i in range(5): self.turkey.fly() if __name__ == '__main__': md = MallardDuck() wt = WildTurkey() ta = TurkeyAdapter(wt) print 'The turkey says...' wt.gobble() wt.fly() print 'The duck says...' md.quack() md.fly() print 'The TurkeyAdapter says...' ta.quack() ta.fly()
UTF-8
Python
false
false
2,012
12,558,484,391,272
597ae1e58c95319cf8b41a7fe05cb8033bda9c56
236c603ca9fb2eb008eb92c1cd37fc796d1fa50b
/ap/attendance/models.py
308ff63234a337dd14feee488c58faf8b116a7e0
[]
no_license
lifedispenser/djattendance
https://github.com/lifedispenser/djattendance
7c3366c9cd34b44c86931f584668fca591fad79e
e765d0f31c8cde8a4795d8037684dd8faa7d5145
refs/heads/master
2020-04-06T07:11:03.816217
2014-07-07T21:43:17
2014-07-07T21:43:17
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.db import models from schedules.models import Event from accounts.models import Trainee from terms.models import Term """ attendance models.py The attendance module takes care of data and logic directly related to tracking attendance. It does not handle things such as schedules or leave slips. DATA MODELS: - Roll: an attendance record per trainee, per event. for example, if 10 trainees are supposed to be at an event, then there will be 10 roll objects associated to that event, as well as each trainee. - Period: a set of attendance records, generally a 2-week period """ class Roll(models.Model): ROLL_STATUS = ( ('A', 'Absent'), ('T', 'Tardy'), ('U', 'Uniform'), ('L', 'Left Class'), ('P', 'Present') ) event = models.ForeignKey(Event) trainee = models.ForeignKey(Trainee) status = models.CharField(max_length=1, choices=ROLL_STATUS, default='P') # once a roll is finalized, it can no longer be edited # except by a TA, attendance monitor, or other admin finalized = models.BooleanField(default=False) notes = models.CharField(max_length=200, blank=True) # the one who submitted this roll monitor = models.ForeignKey(Trainee, null=True) # when the roll was last updated timestamp = models.DateTimeField(auto_now=True) def __unicode__(self): # return status, trainee name, and event return "[%s] %s @ %s" % (self.status, self.trainee, self.event) class Period(models.Model): # the beginning week of this period start = models.SmallIntegerField() # the ending week of this period end = models.SmallIntegerField() term = models.ForeignKey(Term) def _period_number(self): return self.start/2 - 1 num = property(_period_number) def __unicode__(self): return "period " + str(self.num) + ", " + str(self.term.code)
UTF-8
Python
false
false
2,014
8,031,588,889,984
554b56465295a166530c2f8d92e79e5c1db2c587
623ee9d5453b9dcad8954e5f4d4ae878fbb8588d
/15.2.py
7699dd48ade6dd2460d4a1ebe6d4ba4359d43d9c
[]
no_license
romperstomper/thinkpython
https://github.com/romperstomper/thinkpython
6d887043c8e64e6d94b0ba92aac68280b4ae25a4
8ab81599f90f606107d66956d38888f1a2127277
refs/heads/master
2021-01-17T13:08:17.001180
2014-09-17T21:58:54
2014-09-17T21:58:54
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import sys a= sys.argv[1] b= sys.argv[2] class Rect(): def __init__(self, origin=(0,0), acorner=(0,0), bcorner=(3,3)): self.origin = origin self.acorner = acorner self.bcorner = bcorner def move_rect(self, a, b): self.acorner = (self.acorner[0] + int(a), self.acorner[1] + int(b)) self.bcorner = (self.bcorner[0] + int(a), self.bcorner[1] + int(b)) def main(a, b): rec = Rect() rec.move_rect(a, b) print rec.acorner, rec.bcorner if __name__ == '__main__': main(a, b)
UTF-8
Python
false
false
2,014
14,671,608,297,719
359193646b0b74ff3dcb2cda4571980134d0adfd
6dc8a8cca60502fba19c99c3d2a1c07d0c79b676
/MW86.bas.8.S4xI.D4C4.py
97c2932ebcdcacb9b327b066c593b4109a41ff49
[]
no_license
marcelteun/UniformPolyhedra
https://github.com/marcelteun/UniformPolyhedra
7d7970d412c515360d896166dead40b0801314b4
ce41d6be97bdd984c4baf485b7a583f9c9b82ea3
refs/heads/master
2021-01-20T06:55:13.454746
2012-02-17T23:07:15
2012-02-17T23:07:15
1,103,365
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
MW69.bas.8.S4xI.D4C4.py
UTF-8
Python
false
false
2,012
2,697,239,485,976
1353b82a9fd3b5d37b6b82fa62220741fd37cd02
3b8548d9e35a62775946302e09163cf013b54ff0
/flux/resources/execution.py
db840b275b9e9a8230f2c2e2965849b786d78ce2
[ "LicenseRef-scancode-warranty-disclaimer" ]
non_permissive
siq-legacy/flux
https://github.com/siq-legacy/flux
62361f6c3cf510ea7101f5e2a4a96da19d906822
2d10bfbe8c54e874b58eadfeddfcbfde949b9248
refs/heads/master
2021-01-10T22:07:50.809047
2013-05-21T22:03:20
2013-05-21T22:03:20
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from mesh.standard import * from scheme import * from flux.constants import * __all__ = ('Execution',) class Execution(Resource): """A step execution.""" name = 'execution' version = 1 requests = 'get query update' class schema: id = UUID(readonly=True, operators='equal') run_id = UUID(readonly=True, operators='equal') execution_id = Integer(readonly=True, operators='equal') ancestor_id = UUID(readonly=True, operators='equal') step = Token(segments=2, readonly=True, operators='equal') name = Text() status = Enumeration(RUN_STATUSES, nonnull=True, oncreate=False), started = DateTime(utc=True, readonly=True) ended = DateTime(utc=True, readonly=True) parameters = Field(readonly=True) class update(Resource.update): fields = { 'status': Enumeration('aborted', nonempty=True), }
UTF-8
Python
false
false
2,013
9,792,525,474,867
be3e8daa16e3903d29a08ccc1d1e528f34e05a94
ee2dd89921b8964976a8cf236d372254538e1b86
/display-count
441b978f088fb39098c27212ba391592325ce598
[]
no_license
arges/LCDIndicator
https://github.com/arges/LCDIndicator
c99c4056e99a0db0327833a2ae5a5dad73db1835
b0cbb1877a06b3b32f43d5de0cae8db6ee8cf10e
refs/heads/master
2016-09-06T21:42:06.642712
2014-12-24T18:57:50
2014-12-24T18:57:50
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python from LCDIndicator.Email import Email from LCDIndicator.AdafruitUSBBackpackLCD import AdafruitUSBBackpackLCD from time import sleep import configparser import datetime import keyring import sys def get_color(num, thresholds): if num < thresholds[0]: return [0,0x0f,0] # GREEN elif num < thresholds[1]: return [0x0f,0x0f,0x00] # YELLOW else: return [0x0f,0,0] # RED def main(args=None): """ Sanity check the arguments """ if len(args) != 2: print("Usage: %s <conffile>" % args[0]) exit() """ First argument is the filename """ conffile = args[1] """ Read configuration file """ config = configparser.ConfigParser() rc = config.read(conffile) if not rc: print("Configuration file not found.") exit() """ Read email parameters """ username = config.get('global','username') password = config.get('global','password') if password == 'keyring': password = keyring.get_password("system", username) if password is None: password = raw_input("Enter your password for %s: " % username) keyring.set_password("system", username, password) server = config.get('global','server') port = int(config.get('global','port')) interval = int(config.get('global','interval')) thresholds = [int(e.strip()) for e in config.get('global','thresholds').split(',')] device_port = config.get('global','device_port') """ Log into email """ email = Email(server, port) try: email.login(username, password) except: print("Couldn't log into email") exit() """ Start the display """ try: display = AdafruitUSBBackpackLCD(device_port) except: print "Display not found." exit() """ Display count in loop """ while True: count = email.get_unread_count() color = get_color(count, thresholds) time = datetime.datetime.now().strftime("%m/%d %I:%M %p") display.background(color[0],color[1],color[2]) display.home() display.write("%s unread\r" % count) display.write("%s" % time) sleep(interval) if __name__ == "__main__": main(sys.argv)
UTF-8
Python
false
false
2,014
6,227,702,623,061
a1b61826c7a8bf328d1fea83568e230dc1698a69
9290731b1d9010eb2e607875f74f52b5bd3585b7
/users/views.py
5045ebad0cddaf8bcc946ebd8bf9752a7c071686
[]
no_license
konton14/warmup
https://github.com/konton14/warmup
11b0e8109d43fd4e7366e4de0ade983ec0b6f8fb
1465cda02f574b4558db2a8331e3573a1132924e
refs/heads/master
2020-04-17T09:30:44.646803
2014-02-19T03:27:22
2014-02-19T03:27:22
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from django.shortcuts import render from django.views.generic import View from django.http import HttpResponse import json import subprocess from subprocess import CalledProcessError import re import models class HandlerView(View): def get(self, request, *args, **kwargs): from os import curdir, sep f = open(curdir + sep + request.path) if request.path.endswith(".html"): _content_type = 'text/html' elif request.path.endswith(".css"): _content_type = 'text/css' elif request.path.endswith(".js"): _content_type = 'text/javascript' else: assert False send_out = HttpResponse(content=f.read(), content_type=_content_type, status=200) f.close() return send_out def post(self, request, *args, **kwargs): data_in = json.loads(request.body) username = data_in['user'] password = data_in['password'] if request.path == '/users/login': data_out = models.g_users.login(username, password) #return HttpResponse(str(data_out) + ' -- Hello, POST-LOGIN request!\n') else: data_out = models.g_users.add(username, password) #return HttpResponse(str(data_out) + ' -- Hello, POST-ADD request!\n') if data_out < 0: response = {"errCode" : data_out} else: response = {"errCode" : models.g_users.SUCCESS, "count" : data_out} j_resp = json.dumps(response) print "data out: " + j_resp return HttpResponse(content=j_resp, content_type='application/json', status=200) class ResetView(View): def post(self, request, *args, **kwargs): models.g_users.TESTAPI_resetFixture() response = {"errCode" : models.g_users.SUCCESS} data_out = json.dumps(response) return HttpResponse(content=data_out, content_type='application/json', status=200) class TestView(View): def post(self, request, *args, **kwargs): try: test_results = subprocess.check_output(['python', 'manage.py', 'test', 'users.tests'], stderr=subprocess.STDOUT) regex = re.compile('[EF.]{2,}') match = regex.match(test_results).group() totalTests = len(match) response = {"nrFailed" : 0, "output" : test_results, "totalTests" : totalTests } data_out = json.dumps(response) return HttpResponse(content=data_out, content_type='application/json', status=200) except CalledProcessError as error_result: response = {"nrFailed" : 0, "output" : error_result, "totalTests" : 25} test_data = json.dumps(response) return HttpResponse(content=test_data, content_type='application/json', status=200) # comment out before submission regex = re.compile('[EF.]{2,}') print "***************#@#@******************" + error_result.output match = regex.match(error_result.output).group() totalTests = len(match) failures = 0 for ch in match: if ch != '.': failures = failures + 1 response = {"nrFailed" : failures, "output" : error_result.output, "totalTests" : totalTests } data_out = json.dumps(response) return HttpResponse(content=data_out, content_type='application/json', status=200)
UTF-8
Python
false
false
2,014
8,349,416,471,914
c5f3fc01ee65b6bdc7f4e906dd2ad40f699334de
bc76a043c7f08213d8bee124ec902a852c995b21
/mezzanine/utils/messages.py
3a27545b0766ff1b92f8e41c24a5e96bcce28ecf
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
geros/mezzanine
https://github.com/geros/mezzanine
436d696eb9f95c5101f55b04c284d83132fad4a5
bd96cafd9b29fdc0a9a3b611dbfdc9ccd2e93a55
refs/heads/master
2021-01-18T16:51:50.550854
2012-01-21T02:54:42
2012-01-21T02:54:42
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
""" Backward compatible user messaging functions. """ def message_fallback(request, message, extra_tags="", fail_silently=True): """ Fallback for Django prior to ``django.contrib.messages``. """ if request.user.is_authenticated() or not fail_silently: request.user.message_set.create(message=message) try: from django.contrib.messages import debug, info, success, warning, error except ImportError: debug = info = success = warning = error = message_fallback
UTF-8
Python
false
false
2,012
18,554,258,729,808
9fc45c995028d2790b0bae4f935e2524b842d4fb
bb1b8589e132aaf0fa2c25849a6e15d90cf33b2e
/euler 353.py
53b90ff534bfd8fdbb6473526322bc6d77429c65
[]
no_license
grimley517/euler_solns
https://github.com/grimley517/euler_solns
d9b682143f94d99a1869bc7ccd197537172b4f92
063051b02599a31cc79c496fee0ca7b1222469c8
refs/heads/master
2023-06-02T09:44:03.980378
2013-04-11T01:29:19
2013-04-11T01:29:19
8,867,275
0
0
null
false
2023-05-19T06:45:23
2013-03-19T00:16:54
2014-02-07T02:03:30
2023-05-19T06:45:21
776
0
0
1
Python
false
false
import math def risk(d,r): output = pow((d/(r*math.pi)),2) return output def paths (r): pathlist=[] for x in range(-r,r): for y in range(-r,r): for z in range(-r,r): if (x**2 +y**2 + z**2)==(r**2): pathlist.append([x,y,z]) paths = len(pathlist) print('r= {0}, path list'.format(r)) print (pathlist) return paths def Cfn(r): PathDistance =math.pi*r/paths (r) Mfn = paths(r) * risk(PathDistance,r) return Mfn total = 0 for n in range (1,16): r = 2**n-1 total = total + Cfn(r) print ('n= {0}, M = {1}, Total = {2}'.format(r, Cfn(r),total))
UTF-8
Python
false
false
2,013
11,665,131,190,042
6eeea60f5c3c75c6e58c8edb282d572ce6b8b96d
b4e85c91208b152a4a536b97d2f928a7e9923d8e
/queue/test_queue.py
ef4b168e3d0886896dd607324d74fc4b2d68315e
[]
no_license
MikeDelaney/data-structures
https://github.com/MikeDelaney/data-structures
abae7c7531a39adae65bee31a26465d2b3504ac2
72626c9aeae373b6a9338cfd3a0dd7bdbf05166f
refs/heads/master
2020-06-05T01:37:52.166089
2014-08-29T00:13:48
2014-08-29T00:13:48
20,530,207
0
0
null
false
2014-08-29T00:13:49
2014-06-05T15:21:26
2014-06-30T19:51:01
2014-08-29T00:13:49
1,292
0
0
0
Python
null
null
import pytest from queue import Queue, Node def test_node(): """ Ensure Node() is correctly constructed """ node = Node(500) assert node.value == 500 assert node.next_node is None def test_enqueue_empty(): """ If a node is added to the back of the queue if the queue it empty it should become the back and the front of the queue. It should also not reference any other node """ queue = Queue() queue.enqueue(500) assert queue.back.value == 500 assert queue.back.next_node is None assert queue.head.value == 500 assert queue.head.next_node is None def test_enqueue(): """ If an node is added to the back of the queue and there is already an item in the queue then there it should become the back of the queue and the previous tail will reference the new tail """ queue = Queue() queue.enqueue(500) old_back = queue.back queue.enqueue(600) assert queue.back is old_back.next_node assert queue.back.next_node is None assert queue.back.value == 600 assert old_back.value == 500 def test_dequeue(): """ When an item is removed from the queue, it's value should be returned """ queue = Queue() queue.enqueue(500) queue.enqueue(600) queue.enqueue(700) assert queue.dequeue() == 500 assert queue.dequeue() == 600 assert queue.dequeue() == 700 def test_dequeue_empty(): """ If an attempt is made to remove and item from an empty queue, an error should be raised """ queue = Queue() with pytest.raises(LookupError): queue.dequeue() def test_size(): """ The size of the queue should be accurately pollable """ queue = Queue() queue.enqueue(500) queue.enqueue(600) queue.enqueue(700) assert queue.size() == 3 def test_size_empty(): """ The size of an empty queue should be zero """ queue = Queue() assert queue.size() == 0
UTF-8
Python
false
false
2,014
300,647,713,373
87cfb51f58095d3dc6a0b94e33cd5c27d9683eb3
59566ba107f18b3d752082c361f266efbd2964b8
/littlefield_calc/excel/excel_ctrl.py
b9ec55b0c1b84eaade458cad805b6b2becec6c76
[]
no_license
dranophoenix/om_littlefield
https://github.com/dranophoenix/om_littlefield
92c5d9811059c47284218f48a0f5288a2c0e4dcb
828df896291393629be5cacd67e6db9a687ca370
refs/heads/master
2016-09-05T14:33:54.220077
2013-05-29T03:25:57
2013-05-29T03:25:57
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import csv class DataController(): def _load_array_of_content(self, filename): content = [] with open(filename, 'r') as station_machine: c = csv.reader(station_machine, delimiter='\t', skipinitialspace=True) for line in c: content.append(line) return content def _cal_average_value(self, contents, days_ago): content = contents[1:] amount = 0 value_summary = 0 for data in reversed(content): value = float(data[1]) value_summary += value amount += 1 if amount == days_ago: break return value_summary/amount, amount job_arrival_contents = _load_array_of_content([], 'd:/test/job_arrival.xls') job_queue_contents = _load_array_of_content([], 'd:/test/job_q.xls') station_1_queue_contents = _load_array_of_content([], 'd:/test/s1q.xls') station_1_utilization_contents = _load_array_of_content([], 'd:/test/s1u.xls') station_2_queue_contents = _load_array_of_content([], 'd:/test/s2q.xls') station_2_utilization_contents = _load_array_of_content([], 'd:/test/s2u.xls') station_3_queue_contents = _load_array_of_content([], 'd:/test/s3q.xls') station_3_utilization_contents = _load_array_of_content([], 'd:/test/s3u.xls') complete_job_contents = _load_array_of_content([], 'd:/test/comp_job.xls') lead_time_contents = _load_array_of_content([], 'd:/test/lead_time.xls') revenue_contents = _load_array_of_content([], 'd:/test/rev.xls') job_arrival_contents[0][1] = 'job arrived' job_queue_contents[0][1] = 'job queue' station_1_queue_contents[0][1] = 'S1Q' station_2_queue_contents[0][1] = 'S2Q' station_3_queue_contents[0][1] = 'S3Q' station_1_utilization_contents[0][1] = 'S1U' station_2_utilization_contents[0][1] = 'S2U' station_3_utilization_contents[0][1] = 'S3U' complete_job_contents = complete_job_contents[1:] #remove header complete_job_contents[0][1] = 'job completed' lead_time_contents = lead_time_contents[1:] #remove header lead_time_contents[0][1] = 'lead time' revenue_contents = revenue_contents[1:] #remove header revenue_contents[0][1] = 'revenue' empty_queue_dates = [] #def _cal_maximum_capaity_of_each_station(self): for s1 in reversed(station_1_queue_contents): if s1[1] == '0': for s2 in station_2_queue_contents: if s2[0] == s1[0]: if s2[1] == '0': for s3 in station_3_queue_contents: if s3[0] == s2[0]: if s3[1] == '0': empty_queue_dates.append(s3[0]) def _calculate_maximum_capacity(self, station_utilization_contents, empty_queue_dates, complete_job_contents): max_capacities = [] for empty_queue_date in empty_queue_dates: for station in station_utilization_contents: if station[0] == empty_queue_date: for completed_job in complete_job_contents: if completed_job[0] == empty_queue_date: kit_amount = int(completed_job[1]) * 60 try: maximum_capacity = kit_amount/float(station[1]) except ZeroDivisionError: maximum_capacity = 'no work' max_capacities.append([empty_queue_date, maximum_capacity]) return max_capacities empty_queue_capa_1 = _calculate_maximum_capacity([], station_1_utilization_contents, empty_queue_dates, complete_job_contents) empty_queue_capa_2 = _calculate_maximum_capacity([], station_2_utilization_contents, empty_queue_dates, complete_job_contents) empty_queue_capa_3 = _calculate_maximum_capacity([], station_3_utilization_contents, empty_queue_dates, complete_job_contents) with open('d:/test/summary.xls', 'w') as little_field_summary: # merge content to summary.xls for index in range(len(job_arrival_contents)): #assume that the date is all the same little_field_summary.write(job_arrival_contents[index][0]) #date little_field_summary.write('\t') little_field_summary.write(job_arrival_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(job_queue_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_1_queue_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_1_utilization_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_2_queue_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_2_utilization_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_3_queue_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(station_3_utilization_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(complete_job_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(lead_time_contents[index][1]) little_field_summary.write('\t') little_field_summary.write(revenue_contents[index][1]) little_field_summary.write('\n') for i in range(5): i += 1 avg_util_1, working_1_day = _cal_average_value([], station_1_utilization_contents, i * 10) little_field_summary.write('AVG s1u for last %s days' % (working_1_day)) little_field_summary.write('\t') little_field_summary.write('%s' % avg_util_1) little_field_summary.write('\n') avg_util_2, working_2_day = _cal_average_value([], station_2_utilization_contents, i * 10) little_field_summary.write('AVG s2u for last %s days' % (working_2_day)) little_field_summary.write('\t') little_field_summary.write('%s' % avg_util_2) little_field_summary.write('\n') avg_util_3, working_3_day = _cal_average_value([], station_3_utilization_contents, i * 10) little_field_summary.write('AVG s3u for last %s days' % (working_3_day)) little_field_summary.write('\t') little_field_summary.write('%s' % avg_util_3) little_field_summary.write('\n') little_field_summary.write('%s' % avg_util_1) little_field_summary.write('\t') little_field_summary.write('%s' % avg_util_2) little_field_summary.write('\t') little_field_summary.write('%s' % avg_util_3) little_field_summary.write('\n') little_field_summary.write('\n') for i in range(5): i += 1 avg_value_1, working_1_day = _cal_average_value([], lead_time_contents, i * 10) little_field_summary.write('AVG lead-time for last %s days' % (working_1_day)) little_field_summary.write('\t') little_field_summary.write('%s' % (avg_value_1)) little_field_summary.write('\n') little_field_summary.write('\n') little_field_summary.write('date\tS1\tS2\tS3') little_field_summary.write('\n') for index, date in enumerate(empty_queue_dates): little_field_summary.write(date) little_field_summary.write('\t') little_field_summary.write(str(empty_queue_capa_1[index][1])) little_field_summary.write('\t') little_field_summary.write(str(empty_queue_capa_2[index][1])) little_field_summary.write('\t') little_field_summary.write(str(empty_queue_capa_3[index][1])) little_field_summary.write('\n')
UTF-8
Python
false
false
2,013
11,897,059,424,106
18db667ade1a741774a88adb59eb25b6122d5c21
7d4409ba4b4c1a12992c0e2a14643dde15c3ca32
/pyfea/util/tests/test_checksum.py
f0111a00ee6e533e5432c1963e27eb53d37c0a34
[ "BSD-2-Clause" ]
permissive
dnkbln/pyfea
https://github.com/dnkbln/pyfea
13f499e099ccd0cd2e42dcc3e9cbe023557ca884
d02268ada7f0dfe716ce8f0448985653711121d1
refs/heads/master
2020-03-03T22:01:31.628541
2013-08-14T18:31:08
2013-08-14T18:31:08
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from tempfile import NamedTemporaryFile import os import os.path from pyfea.util.checksum import md5sum def test_md5sum(): f = NamedTemporaryFile(delete=False) f.write(b"Hello, there\n") f.close() assert "dd65e7913928ce7fcf0b8f7f5145e287" == md5sum(f.name) os.unlink(f.name) assert not os.path.exists(f.name)
UTF-8
Python
false
false
2,013
16,552,803,974,848
e2a8172e65a16c4bf5ab6d9a0a34aa4acd4e1059
671de051bc015aafcb51ada75cfb4312259490db
/HW2/dis_reader.py
5873e5b1b88edb05bd3451019ba5465637382ba4
[ "MIT" ]
permissive
yding9527/pg2014_Ding
https://github.com/yding9527/pg2014_Ding
195f93fabe7a71dc090401ee877dbbdbeed807b8
a3c6baab9d089c49ffdd5d7a8098754eb0d61ebf
refs/heads/master
2020-12-26T03:43:33.984994
2014-12-13T03:53:19
2014-12-13T03:53:19
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# Yifeng Ding # 2014-10-06 # #Create a class to read discharge data #[date, discharge] = data_inquire(self, year) # import datetime import numpy as np import matplotlib.pyplot as plt class Discharge(object): def __init__(self,filename): self.name=filename def reader(self): f = open(self.name) result=list() date=list() dates=list() disch=list() for line in f.readlines(): if not len(line) or line.startswith('#') : continue result.append(line) for line in result: if line.split()[0] == 'USGS' and len(line.split()) >3 : date.append(line.split()[2]) disch.append(float(line.split()[3])*0.0283168) for line in date: time=line.split('-') if len(time) == 3: year=int(time[0]) month=int(time[1]) day=int(time[2]) times=datetime.date(year, month, day) dates.append(times) return dates, disch def data_inquire(self,year=None): dates, disch = self.reader() self.dates = list() self.disch = list() if year is None: self.dates, self.disch = dates, disch else: for yr in dates: if yr.year == year: if yr.month == 2 and yr.day ==29: continue self.dates.append(yr) self.disch.append(disch[dates.index(yr)]) self.dates = np.array(self.dates) self.disch = np.array(self.disch) return self.dates, self.disch def hydro_plot(self): fig = plt.figure() dates, disch = self.reader() plt.plot(dates, disch) fig.suptitle('Hydrograph Over %d to %d'%((dates[0].year), (dates[-1].year)),fontsize=20) plt.xlabel('Time Series', fontsize=16) plt.ylabel('Discharge($m^3/s$)', fontsize=16) def annual_mean(self, year=None): if year is None: print "No specific year indicated..." else: dates,disch = self.data_inquire(year) mean = np.zeros(365) for iyear in year: idate,idisch = self.data_inquire(iyear) mean=mean+idisch mean = mean/float(len(year)) self.mean = mean return self.mean def compare_plot(self, year=None): if year is None: print "No specific year indicated..." elif year == 1967 or year == 2014: print "Not enough samples within the year..." else: dates,disch = self.data_inquire(year) lst = np.arange(1968,2014).tolist() lst.remove(1980) lst.remove(1981) lst.remove(1982) lst.remove(1983) lst.remove(1984) m_disch = self.annual_mean(lst) dis=[] std_dv=np.zeros(365) for yr in lst: tmp_dat,tmp_dis = self.data_inquire(yr) dis.append(tmp_dis) for i in range(365): tmp = np.zeros(len(lst)) for j in range(len(lst)): tmp[j]=dis[j][i] std_dv[i]=np.std(tmp) plt.plot(dates,disch,'r-') plt.plot(dates,m_disch,'k-') # plt.fill(dates,abs(std_dv),'grey') # plt.fill(dates,-abs(std_dv),'grey') # plt.fill(dates,m_disch+abs(std_dv),'grey') # plt.fill(dates,m_disch-abs(std_dv),'grey') plt.fill_between(dates,m_disch,m_disch+abs(std_dv),facecolor='grey') plt.fill_between(dates,m_disch,m_disch-abs(std_dv),facecolor='grey')
UTF-8
Python
false
false
2,014
13,640,816,172,323
deb62ec2a5c170f064779d87dabe74307f5b9f56
92954437d30a53e75fddf1fa299d71eabdd8c382
/project-7b/scheduling.py
03ed4875189cc6eafc4ec2a386b9518eef3a52a3
[]
no_license
ZhangXector/cns3060-ZhangXector
https://github.com/ZhangXector/cns3060-ZhangXector
a8116f06d0970750d995609490f185cfbf552c95
dbdb77631e1d78cccea7563b53f43fc795b183f8
refs/heads/master
2021-01-01T16:14:00.854536
2012-12-09T03:12:48
2012-12-09T03:12:48
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
# Cliff Kelley # Project 7 - Scheduling Simulation from __future__ import division import sys from copy import deepcopy # "Constants" TIME_SLICE = 4 CONTEXT_SWITCH = 0.4 #============================================================================================ # Process Class #-------------------------------------------------------------------------------------------- class Process(object): # Constructor def __init__(self, _pid, _arrival, _complete): self.pid = _pid self.arrival = _arrival self.complete = _complete self.wait = 0 self.turnaround = 0 self.firstProcess = True # Overloaded string def __str__(self): return_string = "\nProcess " + str(self.pid) + ":\n Arrival Time: " + str(self.arrival) +\ " - Completion Time: " + str(self.complete) + " - Wait Time: {0:.4g}".format(self.wait) +\ " - Turnaround: {0:.4g}".format(self.turnaround) return return_string #============================================================================================ #============================================================================================ # Main Function #-------------------------------------------------------------------------------------------- def main(inList): print "============================================================================", print "\nFirst Come First Serve", print "\n----------------------------------------------------------------------------", CalcTimes(inList) print "\n============================================================================", print "\nShortest Job First", print "\n----------------------------------------------------------------------------", CalcTimes(SJF_Sim(inList)) print "\n============================================================================", print "\nShortest Job Remaining", print "\n----------------------------------------------------------------------------", SJR_Sim(inList) print "\n============================================================================", print "\nRound Robin", print "\n----------------------------------------------------------------------------", RR_Sim(inList, False) print "\n============================================================================", print "\nRound Robin with Context Switch Time", print "\n----------------------------------------------------------------------------", RR_Sim(inList, True) #============================================================================================ #============================================================================================ # Calculate Wait and Turnaround Times #-------------------------------------------------------------------------------------------- def CalcTimes(inList): avg_wait = 0 avg_turn = 0 total_time = 0 i = 0 # Calculate wait time and turnaround time for each process while i < len(inList): inList[i].wait = total_time - inList[i].arrival total_time += inList[i].complete inList[i].turnaround = total_time - inList[i].arrival avg_wait += inList[i].wait avg_turn += inList[i].turnaround i += 1 # Calculate average wait and turnaround times avg_wait /= len(inList) avg_turn /= len(inList) # Sort list based on process ID inList.sort(key=lambda process: process.pid) # Print all process and averages for each in inList: print each, print "\n\nAverage Wait: {0:.4g} - Average Turnaround: {1:.4g}".format(avg_wait, avg_turn) print "============================================================================", #============================================================================================ #============================================================================================ # Determine Order of Shortest Job First #-------------------------------------------------------------------------------------------- def SJF_Sim(inList): # Create deep copy of input list procList = deepcopy(inList) procOrder = [] readyList = [] processing = None procTime = 0 time = 0 # While loop to visit all processes finished_all_procs = False while not finished_all_procs: for each in procList: if time >= each.arrival: # Move process to ready list when arrived readyList.append(each) procList.remove(each) if procTime == 0 and processing != None: # Move finished process to order list procOrder.append(processing) processing = None if processing == None: if len(readyList) == 0: pass else: # Find the shortest complete time and start processing it max_complete_time = 1000 for those in readyList: if those.complete < max_complete_time: max_complete_time = those.complete processing = those procTime = processing.complete readyList.remove(processing) # Increment time time += 1 # Decrement process complete time procTime -= 1 # Detect if all processes have finished if len(procList) == 0 and len(readyList) == 0 and processing == None: finished_all_procs = True # Return order of processes return procOrder #============================================================================================ #============================================================================================ # Shortest Job Remaining Simulation #-------------------------------------------------------------------------------------------- def SJR_Sim(inList): # Create deep copy of input list procList = deepcopy(inList) finishedList = [] readyList = [] waitList = [] processing = None procTime = 0 time = 0 # While loop to visit all processes finished_all_procs = False while not finished_all_procs: for each in procList: if time >= each.arrival: # Move process to ready list when arrived readyList.append(each) procList.remove(each) if processing != None and procTime == 0: # Calculate process turnaround processing.turnaround = time - processing.arrival # Move finished process to finished list finishedList.append(processing) processing = None if processing == None: if len(readyList) == 0 and len(waitList) == 0: pass else: # Combine lists to check through all waiting processes checkList = readyList + waitList max_complete_time = 1000 for those in checkList: # Find the shortest complete time and start processing it if those.complete < max_complete_time: max_complete_time = those.complete processing = those # Set the wait time on the first process cycle if processing.firstProcess: processing.wait = time - processing.arrival processing.firstProcess = False procTime = processing.complete # Remove the process from either the ready or wait list try: readyList.remove(processing) except: pass try: waitList.remove(processing) except: pass # Every time tick check if there is a shorter process waiting for each in readyList: if each.complete < processing.complete: # Put current process on wait list waitList.append(processing) processing = each # Set the wait time on the first process cycle if processing.firstProcess: processing.wait = time - processing.arrival processing.firstProcess = False procTime = processing.complete # Remove the process from the ready list readyList.remove(processing) # Increment time time += 1 # Decrement process complete time procTime -= 1 # Decrement process time if there is one processing if processing != None: processing.complete -= 1 # Detect if all processes have finished if len(procList) == 0 and len(readyList) == 0 and len(waitList) == 0 and processing == None: finished_all_procs = True # Sort list based on process ID finishedList.sort(key=lambda process: process.pid) i = 0 avg_wait = 0 avg_turn = 0 # Iterate through list while i < len(finishedList): # Calculate times avg_wait += finishedList[i].wait avg_turn += finishedList[i].turnaround # Reset complete time values to original finishedList[i].complete = inList[i].complete i += 1 # Calculate averages avg_wait /= len(finishedList) avg_turn /= len(finishedList) # Print all process and averages for each in finishedList: print each, print "\n\nAverage Wait: {0:.4g} - Average Turnaround: {1:.4g}".format(avg_wait, avg_turn) print "============================================================================", #============================================================================================ #============================================================================================ # Round Robin Simulation #-------------------------------------------------------------------------------------------- def RR_Sim(inList, ContextSwitchTime): # Create deep copy of input list procList = deepcopy(inList) finishedList = [] readyList = [] processing = None procTime = 0 time = 0 # While loop to visit all processes finished_all_procs = False while not finished_all_procs: for each in procList: if time >= each.arrival: # Move process to ready list when arrived readyList.append(each) procList.remove(each) if processing != None and procTime == 0: if processing.complete > 0: readyList.append(processing) else: # Calculate process turnaround processing.turnaround = time - processing.arrival # Move finished process to finished list finishedList.append(processing) # Add context switch time if desired if ContextSwitchTime: time += CONTEXT_SWITCH processing = None if processing == None: if len(readyList) == 0: pass else: # Start processing the next item in the queue processing = readyList.pop(0) # Set the wait time on the first process cycle if processing.firstProcess: processing.wait = time - processing.arrival processing.firstProcess = False # Set processing time to the complete time for the process # unless the process complete time is greater than the time slice # if processing.complete > TIME_SLICE: procTime = TIME_SLICE else: procTime = processing.complete # Increment time time += 1 # Decrement process complete time procTime -= 1 # Decrement process time if there is one processing if processing != None: processing.complete -= 1 # Detect if all processes have finished if len(procList) == 0 and len(readyList) == 0 and processing == None: finished_all_procs = True # Sort list based on process ID finishedList.sort(key=lambda process: process.pid) i = 0 avg_wait = 0 avg_turn = 0 # Iterate through list while i < len(finishedList): # Calculate times avg_wait += finishedList[i].wait avg_turn += finishedList[i].turnaround # Reset complete time values to original finishedList[i].complete = inList[i].complete i += 1 # Calculate averages avg_wait /= len(finishedList) avg_turn /= len(finishedList) # Print all process and averages for each in finishedList: print each, print "\n\nAverage Wait: {0:.4g} - Average Turnaround: {1:.4g}".format(avg_wait, avg_turn) print "============================================================================", #============================================================================================ #============================================================================================ # Terminal interaction and STDIN read #-------------------------------------------------------------------------------------------- if __name__ == "__main__": # Inform user if paramters are used that they are not allowed if len(sys.argv) > 1: print "Parameters not allowed. Usage - python scheduling.py" else: # Read STDIN with sys.stdin as stdin: lines = stdin.readlines() # Bool to make sure we can continue with program canProceed = True # Parse string data processList = [] for each in lines: valList = each.split(); # Fail if there are not 3 values per line if len(valList) != 3: print "Incorrect data. Each entry must consist of 3 numbers." print "1 - Process ID, 2 - Arrival Time, 3 - Completion time." canProceed = False # Create Process objects based on input values processList.append(Process(int(valList[0]), int(valList[1]), int(valList[2]))) # Fail if no processes are present if len(processList) == 0: canProceed = False # If all is well, you may protheed if canProceed: main(processList) #============================================================================================
UTF-8
Python
false
false
2,012
7,773,890,832,014
a609f227ae3f3da8753af5b239f20bec836a7409
9909bd0d8626f5a74572e5348b54d72f13a563f1
/app/views/allocs/allocDB3.py
3e2ba18d9e847fafb2e28d52043a799290783988
[]
no_license
Moroj/ProjectAllocation
https://github.com/Moroj/ProjectAllocation
0b00044dff6a6fe1f56fbe76c5ffb187beed8ac1
1a65c60c19c5518c81b1a3b18bcf37af15e35e25
refs/heads/master
2016-09-05T23:09:03.083218
2013-08-25T12:58:39
2013-08-25T12:58:39
10,903,887
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python import os import networkx as nx import csv G = nx.DiGraph() #f = open("/Users/morojalsulaimani/ProjectAllocation/app/views/allocs/report.txt", 'w') f = open(os.path.realpath("app/views/allocs/report.txt"), 'w') with open (os.path.realpath('app/views/allocs/inputs.csv'),'rU') as Data: #with open("/Users/morojalsulaimani/ProjectAllocation/app/views/allocs/inputs.csv",'rb') as Data: reader = csv.reader(Data, delimiter=',', quoting=csv.QUOTE_NONNUMERIC) Students, C_Weight, Choice, P_Capacity, Academics, A_Capacity = zip(*reader) academics = tuple(set(Academics)) source = tuple(set(Students)) count_sink = len(source) count_source = len(source) if count_source > 0 : count_source = -count_source; Tm = len(Academics) Sm = len(Students) T = tuple('T' * Tm) S = tuple('S' * Sm) APA = tuple('P' * Tm) APS = tuple('P' * Sm) A_Capacity_dict = dict(zip(zip(Academics, T), A_Capacity)) P_Capacity_dict = dict(zip(zip(Choice, Academics),P_Capacity)) G.add_node('S', demand = count_source) G.add_node('T', demand = count_sink) List1 = zip(S, Students) List2 = zip(Students, Choice, C_Weight) List3 = zip(Choice, Academics, P_Capacity) List4 = zip(Academics, T, A_Capacity) List5 = zip(Students, APS) List6 = zip(APA, Academics) G.add_edges_from(List1, capacity= 1, weight= 1) G.add_weighted_edges_from(List2, capacity= 1) G.add_edges_from(P_Capacity_dict, weight=1) for u,v,d in List3: G[u][v]['capacity']=d G.add_edges_from(A_Capacity_dict, weight= 1) for u,v,d in List4: G[u][v]['capacity']=d G.add_edges_from(List5, capacity= 1, weight= 10) G.add_edges_from(List6, capacity= 3, weight= 5) flowCost, flowDict = nx.network_simplex(G) print "Optimum: %s" %flowCost for u, v in sorted(G.edges_iter()): print('(%s, %s) %.2f' % (u, v, flowDict[u][v])) r = str(flowCost) f.write("Flow Cost: ") f.write(r) f.write('\nFlowDict: \n') for u, v in sorted(G.edges_iter()): f.write('(%s, %s) %.2f \n' % (u, v, flowDict[u][v])) f.close()
UTF-8
Python
false
false
2,013
1,898,375,581,016
400c9f2bf886b1d985fdda4d49150a49974f3a46
4eef6646ea7eb7beaebe78cdeae5915d79db7bc2
/main.py
4c9ee70a4734ae625c7d2b289144d0bdcdda3125
[ "MIT" ]
permissive
xhackff/webshellmanagement
https://github.com/xhackff/webshellmanagement
43bb3eae6ac15403b7b0448d7ae0e7126b5c0d8a
ad12f5e8889c5e03bab7efadc5c3d65f7155290c
refs/heads/master
2023-01-28T03:24:49.040734
2014-02-20T07:11:18
2014-02-20T07:11:18
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import sqlite3 import signal import sys import urllib2 import threading import socket import shells import encoders import random import time from classes import connection,connectionManager #variables related to threading database_lock = threading.Lock()#serialize access to the database #condition to tell the socket listener to prematurely exit or not #automatically will create a lock due to conditions listener_abort_event = threading.Event() listener_success_event = threading.Event() #global variables database_name = "" prompt = "wsmi>" directory = "" current_shell_id = 0 connection_manager = None connect = None #might have to change this to being per listener #need to get rid of this so that we can have more than one thread derp ###next section is for threading combined with sockets class threading_network_listener(threading.Thread): """ This class represents the ability for the program to thread off and set up a listener and makes an http request to trigger the candidate web shell sitting on the compromised web server. """ def __init__(self, port = None): threading.Thread.__init__(self) self.connect = connection.connection(1)#need a way to pair connections with shells self.port = port#the intended port for the thread to listen on self.listen_sock = None#the actual socket listening on the port self.message = None self.connection = connect#TODO handle mapping of connections with threads self.port = port #print "self.port in the threading_network_listener init: ",self.port self.socket = self.create_socket(port) def create_socket(self,port): """ Creates a socket for the thread to listen on """ listen_socket = None print port print type(port) try: listen_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)#create a socket listen_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) listen_socket.bind(("0.0.0.0", int(port)))#listens on any interface's ip address listen_socket.listen(5)#actually listen to a port #print "network listener socket bound to port ",self.port," ",port except socket.error:#need to handle the fact that both threads are using the same socket pass return listen_socket def run(self): """ Responsible for the running of the thread. Creates a socket and receives data from the network. If there is a transmission on this socket then this thread will add the entry to the database """ global listener_abort_event #we only need to accept once in this scenario. socks, address = self.socket.accept() data = socks.recv(1024) time.sleep(.4)#waiting for .4 seconds for the network to respond print 'woke up from my nap' if listener_abort_event.isSet():#need to abort pass #if(data == "ok"):#the network message that will be sent to let us know the firewall is open else:#should be the case that the firewall is open global database_name global current_shell_id print str(data) #synchronize access to the database database_lock.acquire() conn = sqlite3.connect(database_name) cursor = conn.cursor() cursor.execute("insert into open_ports(id,port_no) values (?,?)",[(current_shell_id),(self.port)]) conn.commit() database_lock.release() #cleanup sock.close() self.socket.close() print "closing socket" ##TODO: move over to a curses interface class threading_http_request(threading.Thread): """ Class that spawns off a thread to perform an http request. Will notify the threading_network_listener thread in the event of an error that the remote server can't connect back. """ def __init__(self,url=None,port=None,self_ip=None,message="ok"): threading.Thread.__init__(self) self.url = url#the url that this thread will connect to. self.port = port#the port that the web request will connect to self.ip = self_ip#the attacker's machine self.message = message#the message to send to the listening socket def run(self): """ Handles making a request to the instance of this class's url. """ try: query_string = "http://" +self.url + "?p=" + str(self.port) +"&i=" + self.ip + "&m=" + self.message response = urllib2.urlopen(query_string) if response == "error":#port is blocked #global listener_abort_event.set() global listener_abort_event listener_abort_event.set() except ValueError:#something is wrong with the url print "something went wrong" def print_banner(): print " _ __ __ _ __ __ __" print " / \\ \\ \\ / / | | | || " print " / \\ \\ \\ / / |" print " /_____\\ \\ \\ / / |" def upload_shell(): """ Handles the interaction to the user to handle all the details of file uploading to the server. """ url = raw_input("url:") page = raw_input("page:") method = raw_input("http method:") file_name = raw_input("filename:") def help(): print "Interactive help menu type help <module> to get more information on a module\n" print "upload-shell\t\t Upload a shell to target webserver" print "new-database\t\t Start a new database to keep track of webshells" print "view-shells\t\t View information about the currently running shells" def router(command): """ Handles routing of functions that a simple dictionary will not accomplish Takes the last part of the command that the user entered and interprets it. """ global prompt global directory if command[0:6] == "shells": if len(command) == 6: prompt = "wsmi (shells)>" directory = "shells" elif command[6:] == "/php": prompt = "wsmi (shells/php)>" directory = "shells/php" def get_input(): """ gets the user's input and routes it accordingly""" global prompt userinput = raw_input(prompt) if userinput[:3] == "use": router(userinput[4:]) else: try: functions[userinput]() except KeyError: print "caught error" def initialize_database(): """ Responsible for initializing a new database for storing user interactions with their webshells.Will prompt the user for a database name and a new sqlite3 database will be created. The only thing that will be committed is the changes to the schema """ name = raw_input("database name:")#prompting the user for a database name conn = sqlite3.connect(name)#creating the database global database_name database_name = name cursor = conn.cursor() #sample data for the time being try: cursor.execute("create table vulnerable_sites(url text,id integer, page text, method text, uploaded_shell text, attackurl text, language text)") cursor.execute("insert into vulnerable_sites(url,page,method,uploaded_shell,attackurl) values(?,?,?,?,?)",\ [("192.168.56.101"),("upload.php"),("POST"),("<?php passthru($_GET['a']); ?>"),("www.google.com/view?id=5")]) cursor.execute("create table open_ports(id integer, port_no integer, time text)") conn.commit() except sqlite3.OperationalError as e: print str(e) def show_shells(): """ Shows the currently uploaded shells at specified urls """ try: conn = sqlite3.connect(database_name) cursor = conn.cursor() query = "select attackurl from vulnerable_sites" cursor.execute(query) rows = cursor.fetchall() print "number\t\tattackurl" print "------\t\t---------" i=0 for row in rows: print str(i)+'\t\t',row[0] i+=1 except sqlite3.OperationalError: print "Need to have a database before you can view shells" def exit(): sys.exit(1) """ def manage_random_list(): "" Will manage a list of port numbers for scanning candidate shells randomly and not having a repeat in port numbers. Yields the port number to scan on. Having an element of randomness will help not to be easily discovered. will generate port numbers from 1025-65535(non privileged ports) "" global port_list random.seed() random_index = random.randrange(0,len(port_list)) port_number = port_list.pop(random_index) yield port_number """ def run_candidate_threads(thread_count, timing, shell_id): """ Runs and manages threads for checking whether or not a server would be a good command and control candidate. """ global connection_manager listener_array = []#holds all of the current threads temp_gen = 0 for i in range(thread_count):#create all the new network listeners temp_gen = connect.new_get_port_number() temp_listener = threading_network_listener(temp_gen) listener_array.append(threading_network_listener(temp_gen)) for thread in listener_array:#herp derp want the object not a pointer to it. thread.start() http_thread = threading_http_request("192.168.56.101/shell.php",temp_gen,"192.168.56.102","ok")#url,port,self_ip http_thread.start() def check_candidacy(): """ script that starts the process of checking a candidacy for a specific web server. """ num_threads = int(raw_input("number of threads:")) #timing = int(raw_input("timing level(0-5):")) run_candidate_threads(num_threads,0,1) def show_contents(): global directory print "showing contents" def open_database(): """ Opens an already existing database and prints out the webshells running as a part of the database """ try: db_name = raw_input("Existing database name:") conn = sqlite3.connect(db_name) global database_name database_name = db_name cursor = conn.cursor() cursor.execute("select id, attackurl from vulnerable_sites") print "number\t\tattackurl" print "------\t\t---------" rows = cursor.fetchall() for row in rows: print row[0],"\t\t",row[1] except sqlite3.OperationalError as e: print e.message #Todo: add prettier error messages #a dictionary of functions that we can call based off of a user's input functions = { "help":help, "upload-shell":upload_shell, "new-database":initialize_database, "open-database":open_database, "view-shells":show_shells, "exit":exit, "quit":exit, #"back":traverse_up, "show":show_contents, "check-candidacy":check_candidacy } def keyboardHandler(signal, frame): """Handles keyboard interrupts and exits gracefully""" print "" sys.exit(0) #TODO: eventually write out to the database def initialize(): """Handles the initialization for the entire program""" global connection_manager connection_manager = connectionManager() #global connect #TODO I know this is going to come in handy but for the #moment with only one connection object that is ever going to be #created then this will be used again. def main(): #initialization function initialize() #handles keyboard interrupts gracefully signal.signal(signal.SIGINT, keyboardHandler) while 1: get_input() def http_file_upload(url,filename): """ Responsible for the actual uploading of a file. Will handle the entirety of uploading the file via http methods. @param url the url of the malicious file upload @param filename the name of the file to upload at the moment must be inside the current directory """ file = open(filename,'r') file_contents = file.read() file.close() boundary = '-----------------WhenIwalkIntheClub' headers = {'User-Agent':'Mozilla 5.0', 'Content-Type':'multipart/form-data; boundary='+boundary,} data = boundary + '\r\n' + "Content-Disposition: form-data; name=\"MAX FILE SIZE\"\r\n\r\n100000\r\n" data += boundary + '\r\nContent-Disposition: form-data; name="uploadedfile";name="' + filename + "\"\r\n" data += "Content-Type: application/x-object\r\n\r\n"+file_contents+'\r\n'+boundary+'--\r\n' request = urllib2.Request(url,data,headers) main()
UTF-8
Python
false
false
2,014
11,699,490,947,398
0fd4862329ef25a5c6fa1a8dde43f1b6328ce3a3
5a722179281a83e7b472d19a19d4003975e432f6
/BreakpointsFrame.py
8450699eb4c5e970cd73837bf4ffba2ec177f436
[]
no_license
adityamohan93/pygdb
https://github.com/adityamohan93/pygdb
eb87d590e37614bcbae41bc83ae5200784b8f7a8
130212e7b1b62336779c78754573c76f09c9a1e3
refs/heads/master
2021-01-20T07:48:35.457621
2008-07-04T00:00:00
2010-10-18T01:56:00
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python #shuber, 2008-06-04 __author__ = "shuber" import gobject import gtk import re import string import vte import DbgTerminal import StatusFrame class BreakpointsFrame (StatusFrame.StatusFrame): def __init__(self, debugger): StatusFrame.StatusFrame.__init__(self, debugger) self.set_label("Breakpoints") debugger.gotActiveCallback += [self.updateValues] vbox = gtk.VBox(False, 5) self.add(vbox) hbox = gtk.HBox() vbox.pack_start(hbox, False, False) self.bpEntry = gtk.Entry() hbox.add(self.bpEntry) hbox = gtk.HBox() vbox.pack_start(hbox, False, False) self.addBtn = gtk.Button(stock=gtk.STOCK_ADD) self.delBtn = gtk.Button(stock=gtk.STOCK_REMOVE) self.updBtn = gtk.Button("Update") hbox.add(self.addBtn) hbox.add(self.delBtn) hbox.add(self.updBtn) sw = gtk.ScrolledWindow() sw.set_shadow_type(gtk.SHADOW_ETCHED_IN) sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) vbox.add(sw) self.model = self.__createModel() self.tv = gtk.TreeView(self.model) self.tv.set_rules_hint(True) self.tv.get_selection().set_mode(gtk.SELECTION_MULTIPLE) self.tv.get_selection().connect("changed", self.selChanged) self.__addColumns(self.tv) sw.add(self.tv) self.addBtn.connect("clicked", self.addBtnClicked) self.delBtn.connect("clicked", self.delBtnClicked) self.updBtn.connect("clicked", self.updBtnClicked) def __createModel(self): #Breakpoint number, position and a boolean flag indicating whether BP has been set #at debugger yet model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING) return model def __addColumns(self, tv): model = tv.get_model() renderer = gtk.CellRendererText() renderer.set_data("column", 0) col = gtk.TreeViewColumn("No", renderer, text=0) col.set_resizable(True) tv.append_column(col) renderer = gtk.CellRendererText() renderer.set_data("column", 1) col = gtk.TreeViewColumn("Specification", renderer, text=1) col.set_resizable(True) tv.append_column(col) def selChanged(self, sel): model, paths = sel.get_selected_rows() if len(paths) > 0: path = paths[0] iter = model.get_iter(path) bpspec, = model.get(iter, 1) self.bpEntry.set_text(bpspec) def addBreakpoint(self, file, lineno, cond=None): no = self.debugger.setBreakpoint(file, lineno, cond) if no!=None: self.addBreakpointToList(no, file, lineno, cond) else: dialog = gtk.MessageDialog(None, \ gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, \ gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, \ "Invalid specification!") dialog.run() dialog.destroy() def applyConfiguration(self, conf): for b in conf.breakpoints: self.addBreakpoint(b["file"], b["lineno"], b["cond"]) self.updateValues(None, None) def fillConfiguration(self, conf): iter = self.model.get_iter_first() while iter != None: spec, = self.model.get(iter, 1) #Replacing file by absolute path file = string.split(spec, ":")[0] file = self.debugger.toAbsPath(file) postfile = string.join( string.split(spec,":")[1:], ":") conf.parseBreak(file + ":" + postfile ) iter = self.model.iter_next(iter) def addBreakpointToList(self, no, file, lineno, cond=None): if cond==None: expr = "%s:%s" % (str(file), str(lineno)) else: expr = "%s:%s if %s" % (str(file), str(lineno), str(cond)) iter = self.model.get_iter_first() while iter != None: newiter = self.model.iter_next(iter) #Found a expression which is the same --> remove the breakpoint if (expr,) == self.model.get(iter,1): self.debugger.delBreakpoint(no) return iter = newiter #Add the entry to the breakpoint list iter = self.model.append() self.model.set(iter, 0, no) self.model.set(iter, 1, expr) def addBtnClicked(self, btn): if not self.debugger.isActive(): return bpspec = self.bpEntry.get_text() bpspec = bpspec.strip() rx = re.compile("^[\w/\._\-]+:\d+(\s+if\s+\S+.*)?$") #Check if format is correct if not rx.search(bpspec): dialog = gtk.MessageDialog(None, \ gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, \ gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, \ "Invalid format!") dialog.run() dialog.destroy() return ifsplit = string.split(bpspec, " if ") if len(ifsplit)>1: cond = ifsplit[1].strip() else: cond = None pos = ifsplit[0].strip() [file,lineno] = string.split(pos, ":") self.addBreakpoint(file, lineno, cond) def delBtnClicked(self, btn): if not self.debugger.isActive(): return selection = self.tv.get_selection() model, paths = selection.get_selected_rows() for path in reversed(paths): iter = model.get_iter(path) bpno, = self.model.get(iter, 0) self.debugger.delBreakpoint(bpno) model.remove(iter) def updBtnClicked(self, btn): if not self.debugger.isActive(): return self.updateValues(None, None) def updateValues(self, status, param): bpnts = self.debugger.getBreakpoints() #Remove them all iter = self.model.get_iter_first() while iter != None: newiter = self.model.iter_next(iter) self.model.remove(iter) iter = newiter for bp in bpnts: [no, file, lineno, cond] = bp self.addBreakpointToList(no, file, lineno, cond)
UTF-8
Python
false
false
2,008
11,046,655,885,658
2f1e4bf07f1108aabf5782f2a4c617c5d44cefb9
84f45b3aea241edc75ee06876d882e7181cf7e13
/traits/kablui/usr/bin/nm-wifi-config-n-connect
3179b95c4e7fd5f4d7862143077eaa236cd90901
[]
no_license
e606/VirOS
https://github.com/e606/VirOS
2e8795aa505ced82380149e08b4597e7d3c6e5a7
339e6ccf2e5cd4b4cffedb67e2651ee1fb5d58a4
refs/heads/master
2021-01-20T16:44:44.368568
2011-01-13T06:46:59
2011-01-13T06:46:59
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/python -tt ############################################################################# ############################################################################# ## ## nm-wifi-config-n-connect ## ## A commandline tool to configure and thus connect to a wifi network ## ## usage: ./nm-wifi-config-n-connect <wifi ssid(network name)> ## ## Copyright 2009 Douglas McClendon <dmc AT filteredperception DOT org> ## ############################################################################# ############################################################################# ############################################################################# ############################################################################# # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 3 of the License. # # 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 Library General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################# ############################################################################# ############################################################################# ############################################################################# ## ## libraries ## ############################################################################# ############################################################################# # for sys.exit import sys # for mkstemp import tempfile # for fdopen import os ############################################################################# ############################################################################# ## ## functions ## ############################################################################# ############################################################################# def cloudsession_initiate(network_name): # # define the template for the xml configuration we will load # new_gconf_config_part_a = """<gconfentryfile> <entrylist base="/"> <entry> <key>/system/networking/connections/1/802-11-wireless/mode</key> <value> <string>infrastructure</string> </value> </entry> <entry> <key>/system/networking/connections/1/802-11-wireless/name</key> <value> <string>802-11-wireless</string> </value> </entry> <entry> <key>/system/networking/connections/1/802-11-wireless/seen-bssids</key> <value> <list type="string"> </list> </value> </entry> <entry> <key>/system/networking/connections/1/802-11-wireless/ssid</key> <value> <list type="int"> """ ## between the first and the second part, goes a 'spelling' out of ## the ssid's characters ascii values, like this # <value> # <int>106</int> # </value> new_gconf_config_part_b = """ </list> </value> </entry> <entry> <key>/system/networking/connections/1/connection/id</key> <value> """ ## between the second and third part, goes the network longname, ## e.g. <string>Auto my_wifi_network</string> ## note: had to fold string open/close there due to wierd python issue new_gconf_config_part_c = """ </value> </entry> <entry> <key>/system/networking/connections/1/connection/name</key> <value> <string>connection</string> </value> </entry> <entry> <key>/system/networking/connections/1/connection/timestamp</key> <value> <string>3333333333</string> </value> </entry> <entry> <key>/system/networking/connections/1/connection/type</key> <value> <string>802-11-wireless</string> </value> </entry> </entrylist> </gconfentryfile> """ (new_gconf_config_fd, new_gconf_config_filename) = tempfile.mkstemp() new_gconf_config_file = os.fdopen(new_gconf_config_fd, 'w') # note, the comma at end suppresses newline #print "%s" % (new_gconf_config_part_a,), new_gconf_config_file.write(new_gconf_config_part_a) for char in list(network_name): new_gconf_config_file.write(" <value>\n") new_gconf_config_file.write(" <int>%s</int>\n" % (str(ord(char)),)) new_gconf_config_file.write(" </value>\n") # lots of equivalencies, python is like perl that way #print "%s" % (new_gconf_config_part_b,), new_gconf_config_file.write(new_gconf_config_part_b) new_gconf_config_file.write(" <string>Auto %s</string>\n" % (network_name,)) new_gconf_config_file.write(new_gconf_config_part_c) new_gconf_config_file.close() # load new connection configuration os.system("gconftool-2 --load=%s" % (new_gconf_config_filename,)) # poke networkmanager os.system("((nm-connection-editor &) ; sleep 3 ; killall nm-connection-editor) > /dev/null 2>&1") # delete temporary file os.unlink(new_gconf_config_filename) ############################################################################# ############################################################################# ## ## main ## ############################################################################# ############################################################################# if __name__ == "__main__": # # parse commandline # if len(sys.argv) == 2: network_name = sys.argv[1] else: print """\n\nusage: nm-wifi-config-n-connect <wifi ssid (network name)>\n\n""" sys.exit(1) # # connect to the specified network # cloudsession_initiate(network_name) sys.exit(0) ############################################################################# ############################################################################# ## ## end code (only notes below) ## ############################################################################# #############################################################################
UTF-8
Python
false
false
2,011
1,236,950,616,710
0aef53f91db16f31a63d94e5458fa473be341ea5
6cfcb5bf2794bd4238bdfbfa22f82be891692e52
/optimizer/__init__.py
13ad9fcb6fa21aa9a83cef5ac2a762e66318e9e6
[]
no_license
epegzz/coder-layout
https://github.com/epegzz/coder-layout
cf1fd7ac61b7b1fe8e1d7d3240148bfc757f5510
ac3c2393f3872aecc6195fa87a4b8781f92394cf
refs/heads/master
2016-09-08T04:18:11.807410
2013-03-02T21:42:20
2013-03-02T21:42:20
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import lib as lib
UTF-8
Python
false
false
2,013
4,784,593,608,722
2fd2cac8cbb8307053b01ece75438fa55cb060b8
fe968dcd78556eeeb3b976a4b8019612b9adf17a
/flask_wtf/files.py
b5c9276f9b86bbd352e4dc99d3ae51e488ec74de
[ "BSD-3-Clause" ]
permissive
insmo/flask-wtf
https://github.com/insmo/flask-wtf
1ba513629579cbe8c2027e7ca6fa2f7b3fe7bc16
4d40f12e28b3e9759383b79e746f56921aeabc1f
refs/heads/master
2021-05-26T18:30:13.642934
2012-02-06T08:50:29
2012-02-06T08:50:29
3,251,764
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
import wtforms from flask import request class FileField(wtforms.FileField): """ Subclass of **wtforms.FileField** providing a `file` property returning the relevant **FileStorage** instance in **request.files**. """ @property def file(self): """ Returns FileStorage class if available from request.files or None """ return request.files.get(self.name, None) class FileRequired(object): """ Validates that field has a **FileStorage** instance attached. `message` : error message You can also use the synonym **file_required**. """ def __init__(self, message=None): self.message=message def __call__(self, form, field): file = getattr(field, "file", None) if not file: raise wtforms.ValidationError, self.message file_required = FileRequired class FileAllowed(object): """ Validates that the uploaded file is allowed by the given Flask-Uploads UploadSet. `upload_set` : instance of **flaskext.uploads.UploadSet** `message` : error message You can also use the synonym **file_allowed**. """ def __init__(self, upload_set, message=None): self.upload_set = upload_set self.message = message def __call__(self, form, field): file = getattr(field, "file", None) if file is not None and \ not self.upload_set.file_allowed(file, file.filename): raise wtforms.ValidationError, self.message file_allowed = FileAllowed
UTF-8
Python
false
false
2,012
18,726,057,429,446
574c3761c66447a5072dfdf64ac54da221bfa5bb
968aa9bac548662b49af4e2b873b61873ba6f680
/buildframework/helium/sf/python/pythoncore/lib/nokia/nokiaccm.py
e1c4604d639e59539feec5a13e168ea6e232c36b
[]
no_license
anagovitsyn/oss.FCL.sftools.dev.build
https://github.com/anagovitsyn/oss.FCL.sftools.dev.build
b3401a1ee3fb3c8f3d5caae6e5018ad7851963f3
f458a4ce83f74d603362fe6b71eaa647ccc62fee
refs/heads/master
2021-12-11T09:37:34.633852
2010-12-01T08:05:36
2010-12-01T08:05:36
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#============================================================================ #Name : nokiaccm.py #Part of : Helium #Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). #All rights reserved. #This component and the accompanying materials are made available #under the terms of the License "Eclipse Public License v1.0" #which accompanies this distribution, and is available #at the URL "http://www.eclipse.org/legal/epl-v10.html". # #Initial Contributors: #Nokia Corporation - initial contribution. # #Contributors: # #Description: #=============================================================================== """ Nokia specific interface to Synergy sessions. """ import logging import netrc import os import os.path import fileutils import ccm import nokia.gscm # Uncomment this line to enable logging in this module, or configure logging elsewhere #logging.basicConfig(level=logging.DEBUG) _logger = logging.getLogger("nokia.nokiaccm") def open_session(username=None, password=None, engine=None, dbpath=None, database=None, reuse=True): """Provides a Session object. Attempts to return a Session, based either on existing Synergy sessions or by creating a new one. - If a .netrc file can be found on the user's personal drive, that will be read to obtain Synergy login information if it is defined there. This will be used to fill in any missing parameters not passed in the call to open_session(). The format of the .netrc file entries should be: machine synergy login USERNAME password foobar account DATABASE_PATH@SERVER If the details refer to a specific database, the machine can be the database name, instead of "synergy". - If an existing session is running that matches the supplied parameters, it will reuse that.""" # See if a .netrc file can be used if password == None or username == None or engine == None or dbpath == None: if os.sep == '\\': os.environ['HOME'] = "H:" + os.sep _logger.debug('Opening .netrc file') try: netrc_file = netrc.netrc() netrc_info = None # If settings for a specific database if database != None: netrc_info = netrc_file.authenticators(database) # if not found just try generic one if netrc_info == None: netrc_info = netrc_file.authenticators('synergy') if netrc_info != None: (n_username, n_account, n_password) = netrc_info if username == None: username = n_username if password == None: password = n_password if n_account != None: (n_dbpath, n_engine) = n_account.split('@') if dbpath == None and n_dbpath is not None: _logger.info('Database path set using .netrc (%s)' % n_dbpath) dbpath = n_dbpath if engine == None and n_engine is not None: _logger.info('Database engine set using .netrc (%s)' % n_engine) engine = n_engine except IOError: _logger.warning('Warning: Cannot access .netrc file') # using environment username in case username is not defined. if username == None: username = os.environ['USERNAME'] # looking for dbpath using GSCM database if dbpath == None and database != None: _logger.info('Database path set using the GSCM database.') dbpath = nokia.gscm.get_db_path(database) # looking for engine host using GSCM database if engine == None and database != None: _logger.info('Database engine set using the GSCM database.') engine = nokia.gscm.get_engine_host(database) _sessions = [] # See if any currently running sessions can be used, only if no password submitted, else use a brand new session! if password == None and reuse: current_sessions = ccm.running_sessions() for current_session in current_sessions: if current_session.dbpath == dbpath: return current_session raise ccm.CCMException('No existing session found') else: if ccm.CCM_BIN == None: raise ccm.CCMException("Could not find CM/Synergy executable in the path.") # Looking for router address using GSCM database router_address = None if database == None and dbpath != None: database = os.path.basename(dbpath) lock = fileutils.Lock(ccm.CCM_SESSION_LOCK) try: lock.lock(wait=True) # if we have the database name we can switch to the correct Synergy router if database != None: router_address = nokia.gscm.get_router_address(database) if os.sep == '\\' and router_address != None: routerfile = open(os.path.join(os.path.dirname(ccm.CCM_BIN), "../etc/_router.adr"), 'r') current_router = routerfile.read().strip() routerfile.close() if current_router != router_address.strip(): _logger.info('Updating %s' % (os.path.normpath(os.path.join(os.path.dirname(ccm.CCM_BIN), "../etc/_router.adr")))) routerfile = open(os.path.join(os.path.dirname(ccm.CCM_BIN), "../etc/_router.adr"), "w+") routerfile.write("%s\n" % router_address) routerfile.close() # If no existing sessions were available, start a new one new_session = ccm.Session.start(username, password, engine, dbpath) lock.unlock() return new_session finally: lock.unlock() raise ccm.CCMException("Cannot open session for user '%s'" % username)
UTF-8
Python
false
false
2,010
1,529,008,389,361
126a4e2f4f5526520f77e4eaf088e936c85d6f6a
e471bca38bc4633057f50bbe68bf9f0f0f234b74
/SCRIBES/GUI/MainGUI/Toolbar/ToolbarVisibility/Animator.py
79da3b7e9394c4912423e818ec737b72a62568d5
[ "GPL-2.0-or-later", "GPL-2.0-only", "LGPL-2.0-or-later" ]
non_permissive
styx/scribes
https://github.com/styx/scribes
4e3a9b2fc5228a0e3b8357aa09144fc584512c0b
2a9112fec5a5bc34980a6695e972913fbd37de22
refs/heads/master
2016-03-30T10:20:21.526437
2011-10-03T06:58:40
2011-10-03T06:58:40
1,041,343
2
1
null
null
null
null
null
null
null
null
null
null
null
null
null
from SCRIBES.SignalConnectionManager import SignalManager REFRESH_TIME = 5 # units in milliseconds class Animator(SignalManager): def __init__(self, manager, editor): SignalManager.__init__(self) self.__init_attributes(manager, editor) self.connect(editor, "quit", self.__quit_cb) self.connect(manager, "slide", self.__slide_cb) self.connect(manager, "deltas", self.__deltas_cb) self.connect(manager, "size", self.__size_cb) from gobject import idle_add, PRIORITY_LOW idle_add(self.__compile, priority=PRIORITY_LOW) editor.register_object(self) def __init_attributes(self, manager, editor): self.__manager = manager self.__editor = editor self.__view = editor.view self.__container = editor.get_data("ToolContainer") self.__start_point = 0 self.__end_point = 0 self.__hdelta = 0 self.__vdelta = 0 self.__height = 0 self.__width = 0 self.__busy = False self.__count = 0 return def __slide(self, direction="left"): self.__manager.emit("animation", "begin") self.__update_animation_start_point(direction) self.__update_animation_end_point(direction) from gobject import timeout_add self.__timer1 = timeout_add(REFRESH_TIME, self.__move, direction) return False def __move(self, direction): try: if self.__count >= 50: raise ValueError self.__count += 1 self.__editor.refresh(False) animate = True self.__can_end(direction) self.__reposition_in(direction) except ValueError: self.__remove_all_timers() self.__editor.refresh(False) if direction == "up": self.__container.hide() self.__editor.refresh(False) self.__manager.emit("animation", "end") animate = False self.__busy = False self.__count = 0 return animate def __can_end(self, direction): self.__editor.refresh(False) if direction == "up" and self.__start_point <= -self.__height - 4: raise ValueError if direction == "down" and self.__start_point >= -2: raise ValueError return False def __reposition_in(self, direction): try: x = int(self.__get_x(direction)) y = int(self.__get_y(direction)) self.__editor.refresh(False) self.__view.move_child(self.__container, x, y) self.__editor.refresh(False) self.__container.show_all() self.__editor.refresh(False) except AttributeError: pass return False def __get_x(self, direction): self.__editor.refresh(False) if direction in ("up", "down"): return -2 if direction == "left": self.__start_point -= self.__hdelta if direction == "right": self.__start_point += self.__hdelta if self.__start_point < -2: return -2 return self.__start_point def __get_y(self, direction): self.__editor.refresh(False) if direction in ("left", "right"): return -2 if direction == "up": self.__start_point -= self.__vdelta if direction == "down": self.__start_point += self.__vdelta if self.__start_point >= -2: return -2 return self.__start_point def __update_animation_start_point(self, direction): dictionary = { "up": -2, "down": -self.__height, "left": self.__width, "right":0, } self.__start_point = dictionary[direction] return False def __update_animation_end_point(self, direction): dictionary = { "up": -self.__height - 4, "down": -2, "left": -2, "right": self.__width, } self.__end_point = dictionary[direction] return False def __remove_timer(self, _timer=1): try: timers = { 1: self.__timer1, 2: self.__timer2, } from gobject import source_remove source_remove(timers[_timer]) except AttributeError: pass return False def __remove_all_timers(self): [self.__remove_timer(_timer) for _timer in xrange(1, 3)] return False def __compile(self): self.__editor.optimize((self.__move, self.__reposition_in)) return False def __destroy(self): self.disconnect() self.__editor.unregister_object(self) del self return False def __slide_cb(self, manager, direction): if self.__busy: return False self.__busy = True self.__remove_all_timers() from gobject import idle_add, PRIORITY_LOW self.__timer2 = idle_add(self.__slide, direction, priority=PRIORITY_LOW) return False def __deltas_cb(self, manager, deltas): self.__hdelta, self.__vdelta = deltas return False def __size_cb(self, manager, size): self.__width, self.__height = size return False def __quit_cb(self, *args): from gobject import idle_add idle_add(self.__destroy) return False
UTF-8
Python
false
false
2,011
1,168,231,117,888
b5719979ba646ac210c2830b5a37617ca118a77f
3e300ec008727afe36b1d334309492ad5aedb6d1
/Fourier/Laban/analysis/bindVsFree.py
e3e2667d245333801ad3075f4cdeb2922b1d3dda
[]
no_license
ranBernstein/GaitKinect
https://github.com/ranBernstein/GaitKinect
c9b4f37d041c31442b66bea40f952ccf14be165a
6402092e8366f6ad507580388f2328d877202df8
refs/heads/master
2020-06-04T00:54:52.346636
2014-10-11T14:46:15
2014-10-11T14:46:15
15,319,959
8
0
null
null
null
null
null
null
null
null
null
null
null
null
null
from Laban.LabanUtils import AbstractLabanAnalyzer from Laban.LabanUtils import AbstractAnalysis import utils.kinect.angleExtraction as ae import numpy as np class FreeAndBind(AbstractAnalysis.AbstractAnalysis): def getPositiveAndNegetive(self): return 'free', 'bind' def extract(self, fileName): data, headers = ae.fromFileToFloats(fileName) jointsIndices = self.extractor.getJointsIndices(headers) centerXIndex = self.extractor.getCenterJointIndex(headers) dataRelativeToCenter = ae.subCenterFromDataForIndecies(data, centerXIndex, jointsIndices) velocities = np.diff(dataRelativeToCenter,1, 0)[1:] accelarations = np.diff(velocities,1, 0) #h = [np.sum(np.abs(line))*np.sum(acc) for acc,line in zip(velocities, accelarations)] h = [np.sum(np.abs(line)) for line in velocities] return h def analyze(inputFile): extractor = AbstractLabanAnalyzer.getExtractor(inputFile) analysis = FreeAndBind(extractor) return analysis.extract(inputFile)
UTF-8
Python
false
false
2,014
6,682,969,137,711
e386b7189688e714a1d8c62f472b167933ef6f4c
4af34dbdf75f5a2bcdbd7c40433070a8be2ed794
/web/__init__.py
d759eefc1a66632a3c6e1c3500d115905b63f5f7
[]
no_license
reedboat/dcron
https://github.com/reedboat/dcron
a5c45e413bd9916a47bddfe842f4a2cb37505c03
f48dc1e3ddc376cca69aef9175da6e446e5711ae
refs/heads/master
2016-09-06T12:12:42.047926
2013-12-16T00:28:51
2013-12-16T00:28:51
14,969,142
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
#!/usr/bin/env python # -*- coding:utf-8 -*- REDIS_KEYS = { 'job_prefix' : 'jobs.', 'active_jobs_pool' : 'set_active_jobs', 'job_stats_prefix' : 'job_stats_prefix', 'job_sync_queue' : 'queue_job_changes', }
UTF-8
Python
false
false
2,013