seq_id
stringlengths
4
11
text
stringlengths
113
2.92M
repo_name
stringlengths
4
125
sub_path
stringlengths
3
214
file_name
stringlengths
3
160
file_ext
stringclasses
18 values
file_size_in_byte
int64
113
2.92M
program_lang
stringclasses
1 value
lang
stringclasses
93 values
doc_type
stringclasses
1 value
stars
int64
0
179k
dataset
stringclasses
3 values
pt
stringclasses
78 values
28984377057
n = int(input()) start = 0 #지수 인덱스 end = int((2**63)**(0.5))+1 target = 0 while start <= end: mid = (start+end)//2 if n > mid**2: start = mid + 1 elif n <= mid**2: target = mid end = mid - 1 print(target)
youkyoungJung/solved_baekjoon
백준/Silver/2417. 정수 제곱근/정수 제곱근.py
정수 제곱근.py
py
265
python
en
code
0
github-code
36
31002250811
import numpy as np def apply_poly(poly, x, y, z): """ Evaluates a 3-variables polynom of degree 3 on a triplet of numbers. Args: poly: list of the 20 coefficients of the 3-variate degree 3 polynom, ordered following the RPC convention. x, y, z: triplet of floats. They may be numpy arrays of same length. Returns: the value(s) of the polynom on the input point(s). """ out = 0 out += poly[0] out += poly[1]*y + poly[2]*x + poly[3]*z out += poly[4]*y*x + poly[5]*y*z +poly[6]*x*z out += poly[7]*y*y + poly[8]*x*x + poly[9]*z*z out += poly[10]*x*y*z out += poly[11]*y*y*y out += poly[12]*y*x*x + poly[13]*y*z*z + poly[14]*y*y*x out += poly[15]*x*x*x out += poly[16]*x*z*z + poly[17]*y*y*z + poly[18]*x*x*z out += poly[19]*z*z*z return out def apply_rfm(num, den, x, y, z): """ Evaluates a Rational Function Model (rfm), on a triplet of numbers. Args: num: list of the 20 coefficients of the numerator den: list of the 20 coefficients of the denominator All these coefficients are ordered following the RPC convention. x, y, z: triplet of floats. They may be numpy arrays of same length. Returns: the value(s) of the rfm on the input point(s). """ return apply_poly(num, x, y, z) / apply_poly(den, x, y, z) class RPCModel(object): def __init__(self, meta_dict): rpc_dict = meta_dict['rpc'] # normalization constant self.colOff = rpc_dict['colOff'] self.colScale = rpc_dict['colScale'] self.rowOff = rpc_dict['rowOff'] self.rowScale = rpc_dict['rowScale'] self.latOff = rpc_dict['latOff'] self.latScale = rpc_dict['latScale'] self.lonOff = rpc_dict['lonOff'] self.lonScale = rpc_dict['lonScale'] self.altOff = rpc_dict['altOff'] self.altScale = rpc_dict['altScale'] # polynomial coefficients self.colNum = rpc_dict['colNum'] self.colDen = rpc_dict['colDen'] self.rowNum = rpc_dict['rowNum'] self.rowDen = rpc_dict['rowDen'] # img_width, img_height self.width = meta_dict['width'] self.height = meta_dict['height'] def projection(self, lat, lon, alt): cLon = (lon - self.lonOff) / self.lonScale cLat = (lat - self.latOff) / self.latScale cAlt = (alt - self.altOff) / self.altScale cCol = apply_rfm(self.colNum, self.colDen, cLat, cLon, cAlt) cRow = apply_rfm(self.rowNum, self.rowDen, cLat, cLon, cAlt) col = cCol*self.colScale + self.colOff row = cRow*self.rowScale + self.rowOff return col, row def to_string(self): string = '' tmp = [str(x) for x in self.colNum] string += ' '.join(tmp) + '\n' tmp = [str(x) for x in self.colDen] string += ' '.join(tmp) + '\n' tmp = [str(x) for x in self.rowNum] string += ' '.join(tmp) + '\n' tmp = [str(x) for x in self.rowDen] string += ' '.join(tmp) + '\n' string += '{} {} {} {} {} {} {} {} {} {}\n'.format(self.latOff, self.latScale, self.lonOff, self.lonScale, self.altOff, self.altScale, self.colOff, self.colScale, self.rowOff, self.rowScale) return string ################################################################################################## # local approximation of the rpc model with an affine model ################################################################################################## def generate_grid(x_points, y_points, z_points): x_point_cnt = x_points.size y_point_cnt = y_points.size z_point_cnt = z_points.size point_cnt = x_point_cnt * y_point_cnt * z_point_cnt xx, yy = np.meshgrid(x_points, y_points, indexing='ij') xx = np.reshape(xx, (-1, 1)) yy = np.reshape(yy, (-1, 1)) xx = np.tile(xx, (z_point_cnt, 1)) yy = np.tile(yy, (z_point_cnt, 1)) zz = np.zeros((point_cnt, 1)) for j in range(z_point_cnt): idx1 = j * x_point_cnt * y_point_cnt idx2 = (j + 1) * x_point_cnt * y_point_cnt zz[idx1:idx2, 0] = z_points[j] return xx, yy, zz def solve_affine(xx, yy, zz, col, row, valid_mask=None): diff_size = np.array([yy.size - xx.size, zz.size - xx.size, col.size - xx.size, row.size - xx.size]) assert (np.all(diff_size == 0)) if valid_mask is not None: xx = xx[valid_mask].reshape((-1, 1)) yy = yy[valid_mask].reshape((-1, 1)) zz = zz[valid_mask].reshape((-1, 1)) row = row[valid_mask].reshape((-1, 1)) col = col[valid_mask].reshape((-1, 1)) # construct a least square problem point_cnt = xx.size all_ones = np.ones((point_cnt, 1)) all_zeros = np.zeros((point_cnt, 4)) # construct the least square problem A1 = np.hstack((xx, yy, zz, all_ones, all_zeros)) A2 = np.hstack((all_zeros, xx, yy, zz, all_ones)) A = np.vstack((A1, A2)) b = np.vstack((col, row)) res = np.linalg.lstsq(A, b, rcond=-1) P = res[0].reshape((2, 4)) return P def affine_approx(rpc_model, bbx): lat_min, lat_max, lon_min, lon_max, alt_min, alt_max = bbx xy_axis_grid_points = 100 z_axis_grid_points = 20 lat_points = np.linspace(lat_min, lat_max, xy_axis_grid_points) lon_points = np.linspace(lon_min, lon_max, xy_axis_grid_points) alt_points = np.linspace(alt_min, alt_max, z_axis_grid_points) lat_points, lon_points, alt_points = generate_grid(lat_points, lon_points, alt_points) col, row = rpc_model.projection(lat_points, lon_points, alt_points) valid_mask = np.logical_and.reduce((col>=0, row>=0, col<rpc_model.width, row<rpc_model.height)) P = solve_affine(lat_points, lon_points, alt_points, col, row, valid_mask) return P if __name__ == '__main__': pass
Kai-46/rpc_triangulation_solver
rpc_model.py
rpc_model.py
py
5,918
python
en
code
14
github-code
36
9288624612
# Given a string S, you need to remove all the duplicates. That means, the output string should contain each character only once. The respective order of characters should remain same, as in the input string. # Input format: # The first and only line of input contains a string, that denotes the value of S. # Output format : # The first and only line of output contains the updated string, as described in the task. # Constraints : # 0 <= Length of S <= 10^8 # Time Limit: 1 sec # Sample Input 1 : # ababacd # Sample Output 1 : # abcd # Sample Input 2 : # abcde # Sample Output 2 : # abcde def removeDublicate(s): d=dict() s1="" for i in s: if d.get(i,0)==0: s1+=i d[i]=d.get(i,0)+1 return s1 if __name__=='__main__': s=input() print(removeDublicate(s))
sam-072/data-structure
hash map/remove dublicate.py
remove dublicate.py
py
818
python
en
code
1
github-code
36
38841107343
import re import random from django.shortcuts import render from django.views.decorators.csrf import csrf_exempt import razorpay from django.db.models import Q from operator import itemgetter from django.core.paginator import Paginator import datetime from property_management_system.settings import razorpay_api_key, razorpay_api_secret_key from django.contrib.auth.decorators import login_required from django.shortcuts import redirect, render from django.contrib import messages from django.contrib.auth.models import User from django.conf import settings from django.db.models import Sum, Func, Count from django.contrib.auth import login, logout, authenticate from pms.send_mail import send_customise_mail from django.db import models from pms.models import Blogs, Contact, Property, PropertyContacts, PropertyImages, PropertyMembership, UserProfile months_mapping = { 1: "January", 2: "February", 3: "March", 4: "April", 5: "May", 6: "June", 7: "July", 8: "August", 9: "September", 10: "October", 11: "November", 12: "December", } def index(request): try: property_list = list(Property.objects.filter( is_listed=True).order_by('-membership_purchased')) if len(property_list) > 6: random_properties = random.sample(property_list, 6) else: random_properties = (Property.objects.filter( is_listed=True).order_by('-membership_purchased')) except Exception as e: print(e) try: agents_list = list(UserProfile.objects.filter( user_type="Agent").order_by('-created_at')) if len(agents_list) > 3: random_agents = random.sample(agents_list, 3) else: random_agents = UserProfile.objects.filter( user_type="Agent").order_by('-created_at') except Exception as e: print(e) all_properties = Property.objects.filter(is_listed=True) blogs = Blogs.objects.all().order_by('-created_at') index_page_blogs = None if len(blogs) > 6: index_page_blogs = blogs[:6] else: index_page_blogs = blogs context = { 'random_properties': random_properties, 'all_properties': all_properties, 'random_agents': random_agents, 'index_page_blogs': index_page_blogs, } return render(request, 'ui_templates/index.html', context) def error_404_view(request, exception): return render(request, 'ui_templates/404.html') def about(request): registered_users = UserProfile.objects.filter(user_type='').count() agents = UserProfile.objects.filter(user_type='').count() total_properties = Property.objects.all().count() context = { 'registered_users': registered_users, 'agents': agents, 'total_properties': total_properties } return render(request, 'ui_templates/about.html', context) def all_properties(request): filtered_properties = Property.objects.filter( is_listed=True).order_by('-membership_purchased') if request.method == 'GET': search_filter = request.GET.get('searching_filters') sorting_properties = request.GET.get('sort') property_size = request.GET.get('property_size') nearbuy_location = request.GET.get('nearbuy_location') if search_filter: filtered_properties = Property.objects.filter( Q(city__icontains=search_filter) | Q(state__icontains=search_filter) | Q(address__icontains=search_filter) | Q(type__icontains=search_filter) | Q(zip_code__icontains=search_filter) | Q(furnishing__icontains=search_filter) | Q(availability__icontains=search_filter) | Q(ownership__icontains=search_filter) | Q(expected_price__icontains=search_filter) | Q(details__icontains=search_filter) ).order_by('-membership_purchased') if sorting_properties and sorting_properties == 'lth': filtered_properties = filtered_properties.order_by( 'expected_price') if sorting_properties and sorting_properties == 'htl': filtered_properties = filtered_properties.order_by( '-expected_price') if property_size: filtered_properties = filtered_properties.filter( area__gte=property_size) if nearbuy_location: filtered_properties = filtered_properties.filter( Q(city__icontains=nearbuy_location) | Q(state__icontains=nearbuy_location) | Q(address__icontains=nearbuy_location)) paginator = Paginator(filtered_properties, 9) page_number = request.GET.get('page') page_obj = paginator.get_page(page_number) context = { 'active_properties': filtered_properties, 'page_obj': page_obj, } return render(request, 'ui_templates/properties.html', context) else: active_properties = Property.objects.filter( is_listed=True).order_by('-membership_purchased') paginator = Paginator(active_properties, 9) page_number = request.GET.get('page') page_obj = paginator.get_page(page_number) context = { 'active_properties': active_properties, 'page_obj': page_obj, } return render(request, 'ui_templates/properties.html', context) def property_details(request, id): property = Property.objects.get(id=id) property_images = PropertyImages.objects.filter(property=property) amenities = [] if property.amenities: amenities = [amenity.strip() for amenity in property.amenities.split(',')] context = { 'property': property, 'amenities': amenities, 'property_images': property_images, } return render(request, 'ui_templates/property_detail.html', context) def blog(request): recent_blogs = Blogs.objects.all().order_by('-created_at') paginator = Paginator(recent_blogs, 8) page_number = request.GET.get('page') page_obj = paginator.get_page(page_number) context = { 'recent_blogs': recent_blogs, 'page_obj': page_obj, } return render(request, 'ui_templates/blog.html', context) def blog_description(request, id): requested_blog = Blogs.objects.filter(id=id) context = {'requested_blog': requested_blog} return render(request, 'ui_templates/blog_description.html', context) @login_required(login_url='login') def add_new_blog(request): user = request.user if not user.is_superuser: return redirect('index') else: if request.method == 'POST': blog_image = None title = request.POST.get('title') body = request.POST.get('body') try: blog_image = request.FILES.get('blog_image') except Exception as e: print(e) if blog_image: create_new_blog = Blogs( blog_title=title, blog_body=body, blog_image=blog_image, uploaded_by=user) create_new_blog.save() messages.add_message(request, messages.WARNING, "New Blog Created Successfully.") else: messages.add_message(request, messages.WARNING, "Blog Image is Required") return render(request, 'dashboard_templates/blog/add_new_blog.html') @login_required(login_url='login') def view_blogs_list(request): user = request.user if not user.is_superuser: return redirect('index') else: all_blogs = Blogs.objects.all() context = {'all_blogs': all_blogs} return render(request, 'dashboard_templates/blog/blogs_view.html', context) @login_required(login_url='login') def update_blog(request, id): user = request.user if not user.is_superuser: return redirect('index') else: requested_blog = Blogs.objects.filter(id=id) if request.method == 'POST': blog_update = Blogs.objects.filter(id=id).first() updated_title = request.POST.get('title') updated_body = request.POST.get('body') blog_update.blog_title = updated_title blog_update.blog_body = updated_body try: updated_blog_image = request.FILES['blog_image'] blog_update.blog_image = updated_blog_image except Exception as e: print(e) blog_update.save() messages.add_message(request, messages.WARNING, "Blog Updated Successfully.") context = { 'requested_blog': requested_blog } return render(request, 'dashboard_templates/blog/update_blog.html', context) @login_required(login_url='login') def delete_blog(request, id): user = request.user if not user.is_superuser: return redirect('index') else: requested_blog = Blogs.objects.filter(id=id) requested_blog.delete() return redirect('blog_list') def auth_login(request): if request.user.is_authenticated: messages.add_message(request, messages.WARNING, "You already logged in.") return redirect('index') else: if request.method == 'POST': email = request.POST.get('email') password = request.POST.get('password') user = authenticate(username=email, password=password) if user: login(request, user) messages.add_message( request, messages.WARNING, f"Welcome, {request.user.first_name} {request.user.last_name} you logged in successfully.") return redirect('index') else: messages.add_message( request, messages.WARNING, "Sorry, check again your email or password.") return render(request, 'ui_templates/login_page.html') @login_required(login_url='login') def user_logout(request): logout(request) messages.add_message(request, messages.SUCCESS, "Success, You Logged Out Successfully.") return redirect('index') @login_required(login_url='login') def profile(request): requested_user = request.user user_profile = UserProfile.objects.get(user=requested_user) context = { 'profile_details': user_profile } return render(request, 'dashboard_templates/profile/user_profile.html', context) def contact_us(request): if request.method == 'POST': name = request.POST.get('name') email = request.POST.get('email') contact_no = request.POST.get('contact_no') subject = request.POST.get('subject') message = request.POST.get('message') if name and email and contact_no and subject and message: new_contact = Contact(name=name, email=email, contact_no=contact_no, subject=subject, message=message) new_contact.save() messages.add_message( request, messages.SUCCESS, "Thanks for Contacting us. We will contact you shortly.") return redirect('index') else: messages.add_message(request, messages.WARNING, "Please fill all the required details.") return render(request, 'ui_templates/contact.html') return render(request, 'ui_templates/contact.html') def auth_register(request): password_validation = False if request.method == 'POST': profile_image = None fname = request.POST.get('fname') lname = request.POST.get('lname') email = request.POST.get('email') contact = request.POST.get('contact') password = request.POST.get('password') user_type = request.POST.get('user_type') try: profile_image = request.FILES.get('profile_image') except Exception as e: print(e) user_exists = User.objects.filter(username=email) # Minimum six characters, Maximum 20 Characters, at least one Uppercase and Lowecase letter and one number: password_regex = ( "(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!#%*?&]{6,20}$") password_regex_compile = re.compile(password_regex) if (re.search(password_regex_compile, password)): password_validation = True if password_validation: if profile_image: if not user_exists: if user_type == "Agent": new_user = User.objects.create_user( first_name=fname, last_name=lname, username=email, email=email, password=password, is_active=True, is_staff=True) new_user.save() subject = "Dream Homes: Registration Successfully" body = ( "Hi "+fname+". Thanks for Registering with Dream Homes as a " + user_type+".") send_customise_mail( subject=subject, body=body, email_id=email) else: new_user = User.objects.create_user( first_name=fname, last_name=lname, username=email, email=email, password=password, is_active=True) new_user.save() subject = "Dream Homes: Registration Successfully" body = ( "Hi "+fname+". Thanks for Registering with Dream Homes as a " + user_type+".") send_customise_mail( subject=subject, body=body, email_id=email) user_profile = UserProfile( contact=contact, user=new_user, user_type=user_type, user_image=profile_image) user_profile.save() messages.add_message( request, messages.SUCCESS, "Thanks for Registering with us.Please Login") return redirect('login') else: messages.add_message( request, messages.WARNING, "You Already have an Account. Please Login") else: messages.add_message( request, messages.SUCCESS, "Profile Image is Required") else: messages.add_message( request, messages.WARNING, "Please Create Strong Password as mentioned criteria.") return render(request, 'ui_templates/register_page.html') class Month(Func): function = 'EXTRACT' template = "%(function)s(MONTH from %(expressions)s)" output_field = models.IntegerField() @login_required(login_url='login') def dashboard(request): logged_in_user = request.user if logged_in_user.is_superuser: total_membership_amount = PropertyMembership.objects.aggregate( Sum('property_membership_amount'))['property_membership_amount__sum'] total_membership_taken = PropertyMembership.objects.all().count() approved_properties = Property.objects.filter( approved=True).count() pending_properties = Property.objects.filter( approved=False).count() listed_properties = Property.objects.filter( is_listed=True).count() unlisted_properties = Property.objects.filter( is_listed=False).count() # In case of admin all responses current_time = datetime.datetime.now() response_summary = (PropertyContacts.objects.filter(created_at__year=current_time.year) .annotate(response_by_month=Month('created_at')) .values('response_by_month') .annotate(total=Count('id'))) response_data = [] for data in response_summary: response_data.append( { "month": months_mapping.get(data.get('response_by_month')), "total_responses": int(data.get('total')) } ) for month in months_mapping.keys(): result = [i for i in response_data if i['month'] == month] if not result: response_data.append( {"month": months_mapping.get(month), "total_responses": 0}) sorted_response_data = sorted(response_data, key=lambda d: datetime.datetime.strptime(d['month'], "%B") ) context = { 'approved_properties': approved_properties, 'listed_properties': listed_properties, 'unlisted_properties': unlisted_properties, 'pending_properties': pending_properties, 'total_membership_amount': total_membership_amount, 'total_membership_taken': total_membership_taken, 'response_data': sorted_response_data, 'current_year': current_time.year, } else: approved_properties = Property.objects.filter( uploaded_by=logged_in_user, approved=True).count() pending_properties = Property.objects.filter( uploaded_by=logged_in_user, approved=False).count() listed_properties = Property.objects.filter( uploaded_by=logged_in_user, is_listed=True).count() unlisted_properties = Property.objects.filter( uploaded_by=logged_in_user, is_listed=True).count() properties_uploaded_by_user = Property.objects.filter( uploaded_by=logged_in_user) current_time = datetime.datetime.now() response_summary = (PropertyContacts.objects.filter(property_id__in=properties_uploaded_by_user, created_at__year=current_time.year) .annotate(response_by_month=Month('created_at')) .values('response_by_month') .annotate(total=Count('id'))) response_data = [] for data in response_summary: response_data.append( { "month": months_mapping.get(data.get('response_by_month')), "total_responses": int(data.get('total')) } ) for month in months_mapping.keys(): result = [i for i in response_data if i['month'] == month] if not result: response_data.append( {"month": months_mapping.get(month), "total_responses": 0}) sorted_response_data = sorted(response_data, key=lambda d: datetime.datetime.strptime(d['month'], "%B") ) context = { 'approved_properties': approved_properties, 'listed_properties': listed_properties, 'unlisted_properties': unlisted_properties, 'pending_properties': pending_properties, 'response_data': sorted_response_data, 'current_year': current_time.year, } return render(request, 'dashboard_templates/dashboard.html', context) @login_required(login_url='login') def add_new_property(request): user = request.user last_property_id = Property.objects.all().order_by('id').last() if not last_property_id: prop_id = 'WHPR' + '000001' else: last_prop_id = last_property_id.property_id prop_no_int = int(last_prop_id[4:10]) new_property_id = prop_no_int + 1 prop_id = 'WHPR' + str(new_property_id).zfill(6) if request.method == 'POST': property_sr = request.POST.get('property_sr') property_type = request.POST.get('property_type') property_address = request.POST.get('property_address') property_city = request.POST.get('property_city') property_state = request.POST.get('property_state') no_bedrooms = request.POST.get('no_bedrooms') no_bathrooms = request.POST.get('no_bathrooms') no_balconies = request.POST.get('no_balconies') area_details = request.POST.get('area_details') furnishing_type = request.POST.get('furnishing_type') open_parking = request.POST.get('open_parking') covered_parking = request.POST.get('covered_parking') availability_status = request.POST.get('availability_status') property_age = request.POST.get('property_age') property_ownership = request.POST.get('property_ownership') expected_price = request.POST.get('expected_price') price_sq_ft = request.POST.get('price_sq_ft') property_unique_details = request.POST.get('property_unique_details') zip_code = request.POST.get('zip_code') amenities = request.POST.get('amenities') create_new_property = Property( property_id=prop_id, sell_rent=property_sr, type=property_type, address=property_address, city=property_city, state=property_state, zip_code=zip_code, bedrooms=no_bedrooms, bathrooms=no_bathrooms, balconies=no_balconies, area=area_details, furnishing=furnishing_type, open_parking=open_parking, covered_parking=covered_parking, availability=availability_status, age=property_age, ownership=property_ownership, expected_price=expected_price, area_price=price_sq_ft, details=property_unique_details, approved=False, uploaded_by=request.user, amenities=amenities ) create_new_property.save() try: property_images = request.FILES.getlist('property_images') for img in property_images: new_img = PropertyImages( property=create_new_property, images=img ) new_img.save() except Exception as e: print(e) subject = "Dream Homes: Property Added Successfully" body = ("Hi "+user.first_name+". New Property Added Successfully. Your Property ID: " + prop_id+". It will be listed once all details are verified.") send_customise_mail( subject=subject, body=body, email_id=user.email) messages.add_message(request, messages.WARNING, "New Property Created Successfully.") return render(request, 'dashboard_templates/property/add_new_property.html') @login_required(login_url='login') def list_uploaded_properties(request): properties_list_by_user = Property.objects.filter(uploaded_by=request.user) membership_amount = 50000 # In Paisa = Rs 500 membership_currency = 'INR' client = razorpay.Client(auth=(razorpay_api_key, razorpay_api_secret_key)) payment_data = {"amount": membership_amount, "currency": membership_currency, 'payment_capture': '1'} payment_order = client.order.create(data=payment_data) payment_order_id = payment_order['id'] context = { 'amount': membership_amount, 'api_key': razorpay_api_key, 'order_id': payment_order_id, 'property_list': properties_list_by_user } return render(request, 'dashboard_templates/property/list_uploaded_properties.html', context) @login_required(login_url='login') def list_property_contacts(request, id): property_contacts = PropertyContacts.objects.filter(property=id, property__membership_purchased=True) context = { 'property_contacts': property_contacts } return render(request, 'dashboard_templates/property/property_contacts.html', context) @login_required(login_url='login') def delete_property(request, id): requested_property = Property.objects.get(id=id) requested_property.delete() return redirect('property_list') @login_required(login_url='login') def update_property(request, id, view=None): user = request.user requested_property = Property.objects.filter(id=id) if request.method == 'POST': property_update = Property.objects.filter(id=id).first() property_sr = request.POST.get('property_sr') property_type = request.POST.get('property_type') property_address = request.POST.get('property_address') property_city = request.POST.get('property_city') property_state = request.POST.get('property_state') no_bedrooms = request.POST.get('no_bedrooms') no_bathrooms = request.POST.get('no_bathrooms') no_balconies = request.POST.get('no_balconies') area_details = request.POST.get('area_details') furnishing_type = request.POST.get('furnishing_type') open_parking = request.POST.get('open_parking') covered_parking = request.POST.get('covered_parking') availability_status = request.POST.get('availability_status') property_age = request.POST.get('property_age') property_ownership = request.POST.get('property_ownership') expected_price = request.POST.get('expected_price') price_sq_ft = request.POST.get('price_sq_ft') property_unique_details = request.POST.get('property_unique_details') zip_code = request.POST.get('zip_code') amenities = request.POST.get('amenities') property_update.sell_rent = property_sr property_update.type = property_type property_update.address = property_address property_update.city = property_city property_update.state = property_state property_update.bedrooms = no_bedrooms property_update.bathrooms = no_bathrooms property_update.balconies = no_balconies property_update.area = area_details property_update.furnishing = furnishing_type property_update.open_parking = open_parking property_update.covered_parking = covered_parking property_update.availability = availability_status property_update.age = property_age property_update.ownership = property_ownership property_update.expected_price = expected_price property_update.area_price = price_sq_ft property_update.zip_code = zip_code property_update.details = property_unique_details property_update.amenities = amenities try: updated_blog_image = request.FILES['blog_image'] property_update.blog_image = updated_blog_image except Exception as e: print(e) requested_property_images = PropertyImages.objects.filter( property=property_update) try: property_images = request.FILES.getlist('property_images') if property_images: for old_img in requested_property_images: old_img.delete() for img in property_images: new_images = PropertyImages( property=property_update, images=img ) new_images.save() except Exception as e: print(e) property_update.save() subject = "Dream Homes: Property Updated Successfully" body = ("Hi "+user.first_name+". Your Property " + property_update.property_id+" Updated Successfully.") send_customise_mail( subject=subject, body=body, email_id=user.email) messages.add_message(request, messages.WARNING, "Property Details Updated Successfully.") if view: context = {'requested_property': requested_property, 'view_property': True} else: context = {'requested_property': requested_property} return render(request, 'dashboard_templates/property/update_property.html', context) @login_required(login_url='login') def view_property_images(request, id): property_images = PropertyImages.objects.filter(property=id) context = { 'property_images': property_images } return render(request, 'dashboard_templates/property/property_images.html', context) @csrf_exempt def payment_success_membership(request, id): user = request.user if request.method == 'POST': payment_id = request.POST.get('razorpay_payment_id', '') property = Property.objects.get(id=id) property.membership_purchased = True amount = 500 create_property_membership = PropertyMembership( property=property, user=request.user, property_membership_plan=True, payment_order_id=payment_id, property_membership_amount=amount ) create_property_membership.save() property.save() subject = "Dream Homes: Property Membership" body = ("Hi "+user.first_name+". Thanks for Purchasing Property " + property.property_id+" Membership.") send_customise_mail( subject=subject, body=body, email_id=user.email) return redirect('property_list') @login_required(login_url='login') def pending_properties_view(request): user = request.user if not user.is_superuser: return redirect('index') else: pending_properties_list = Property.objects.filter( approved=False) context = { 'pending_properties_data': pending_properties_list } return render(request, 'dashboard_templates/property/pending_properties.html', context) @login_required(login_url='login') def approve_property(request, id): user = request.user if not user.is_superuser: return redirect('index') else: property = Property.objects.get(id=id) property.approved = True property.approved_on = datetime.datetime.now() property.is_listed = True property.save() return redirect('pending_properties') @login_required(login_url='login') def unlist_property(request, id): property = Property.objects.get(id=id) property.is_listed = False property.unlisted_date = datetime.datetime.now() property.save() return redirect('unlisted_properties') @login_required(login_url='login') def listed_properties_view(request): listed_properties_list = Property.objects.filter( approved=True, is_listed=True, uploaded_by=request.user) context = { 'listed_properties_data': listed_properties_list } return render(request, 'dashboard_templates/property/listed_properties.html', context) @login_required(login_url='login') def unlisted_properties_view(request): unlisted_properties_list = Property.objects.filter( approved=True, is_listed=False, uploaded_by=request.user) context = { 'unlisted_properties_data': unlisted_properties_list } return render(request, 'dashboard_templates/property/unlisted_properties.html', context) @login_required(login_url='login') def calculate_emi(request): if request.method == 'POST': amount = request.POST.get('amount') interest = request.POST.get('interest') tenure = request.POST.get('tenure') if not amount or not interest or not tenure: messages.add_message(request, messages.WARNING, "Fill All the Details Properly") return render(request, 'emi_calculate.html') else: rate_of_interest_per_month = float(interest)/(12*100) monthly_emi = float(amount) * float(rate_of_interest_per_month) * ((1+float(rate_of_interest_per_month)) ** float(tenure))/((1+float(rate_of_interest_per_month)) ** float(tenure) - 1) total_interest_amount = ( float(monthly_emi)*float(tenure)) - float(amount) context = { 'amount': amount, 'rate_of_interest_per_month': rate_of_interest_per_month, 'tenure': tenure, 'monthly_emi': monthly_emi, 'total_interest_amount': total_interest_amount, 'interest': interest, 'total_amount': round((float(amount)+float(total_interest_amount)), 2), } return render(request, 'dashboard_templates/emi_calculate.html', context) else: return render(request, 'dashboard_templates/emi_calculate.html') @login_required(login_url='login') def agents_list_view(request): user = request.user if not user.is_superuser: return redirect('index') else: agents_data = UserProfile.objects.filter(user_type='Agent').all() context = { 'agents_list': agents_data } return render(request, 'dashboard_templates/reports/agents_list.html', context) @login_required(login_url='login') def properties_uploaded_by_user(request): user = request.user if not user.is_superuser: return redirect('index') else: properties = Property.objects.all() context = { 'properties': properties } return render(request, 'dashboard_templates/reports/user_uploaded_properties.html', context) @login_required(login_url='login') def customers_list_view(request): user = request.user if not user.is_superuser: return redirect('index') else: customers_data = UserProfile.objects.filter(user_type='Buyer').all() context = { 'customers_data': customers_data } return render(request, 'dashboard_templates/reports/customers_list.html', context) @login_required(login_url='login') def total_uploaded_properties(request): user = request.user if not user.is_superuser: return redirect('index') else: all_uploaded_properties = Property.objects.all() context = { 'all_uploaded_properties': all_uploaded_properties } return render(request, 'dashboard_templates/reports/total_uploaded_properties.html', context) @login_required(login_url='login') def total_listed_properties(request): user = request.user if not user.is_superuser: return redirect('index') else: all_listed_properties = Property.objects.filter(is_listed=True) context = { 'all_listed_properties': all_listed_properties } return render(request, 'dashboard_templates/reports/total_listed_properties.html', context) @login_required(login_url='login') def total_unlisted_properties(request): user = request.user if not user.is_superuser: return redirect('index') else: all_unlisted_properties = Property.objects.filter( is_listed=False, unlisted_date__isnull=False) context = { 'all_unlisted_properties': all_unlisted_properties } return render(request, 'dashboard_templates/reports/total_unlisted_properties.html', context) @login_required(login_url='login') def revenue_details(request): user = request.user if not user.is_superuser: return redirect('index') else: if request.method == 'POST': from_date = request.POST.get('from_date') to_date = request.POST.get('to_date') if from_date and to_date: from_date = datetime.datetime.strptime(from_date, "%Y-%m-%d") to_date = datetime.datetime.strptime(to_date, "%Y-%m-%d") to_date = datetime.datetime( to_date.year, to_date.month, to_date.day, 23, 59, 59) revenue_details = PropertyMembership.objects.filter( payment_date__gte=from_date, payment_date__lte=to_date) context = { 'revenue_details': revenue_details } if revenue_details: messages.add_message(request, messages.SUCCESS, "Revenue Details From: "+str(from_date)+" To: "+str(to_date)) else: messages.add_message(request, messages.WARNING, "No Revenue Details Found !!") return render(request, 'dashboard_templates/reports/revenue_details.html', context) else: return render(request, 'dashboard_templates/reports/revenue_details.html') else: return render(request, 'dashboard_templates/reports/revenue_details.html') def property_comments(request, id): if request.method == 'POST': property = Property.objects.get(id=id) name = request.POST.get('name') email = request.POST.get('email') contact = request.POST.get('contact') comment = request.POST.get('comment') new_property_contact = PropertyContacts( name=name, email=email, contact=contact, comments=comment, property=property) new_property_contact.save() subject = "Dream Homes: Property Response" body = ("Hi "+property.uploaded_by.first_name + ". Someone Shows Interest in your Property. Property ID: "+property.property_id+".") send_customise_mail( subject=subject, body=body, email_id=property.uploaded_by.email) messages.add_message(request, messages.WARNING, "Query Submitted Successfully...") return redirect("property_details", id=id) else: return redirect("index") @login_required(login_url='login') def view_user_image(request, id): user_profile_image = UserProfile.objects.filter(user=id) context = { 'user_profile_image': user_profile_image } return render(request, 'dashboard_templates/reports/user_images.html', context)
karan7864/property_management
pms/views.py
views.py
py
38,362
python
en
code
0
github-code
36
36478211178
from django import forms from ..models import Modelo class ModeloForm(forms.ModelForm): class Meta: model = Modelo fields = ["marca", "nombre"] def __init__(self, *args, **kwargs): super(ModeloForm, self).__init__(*args, **kwargs) for i, (fname, field) in enumerate(self.fields.iteritems()): field.widget.attrs['class'] = 'form-control'
xcarlx/Venta
apps/producto/formstotal/modelo.py
modelo.py
py
390
python
en
code
0
github-code
36
16475137310
''' Cognitively Expanding The Game of Life Spring 2023 Term Project CS 6795 Intro to Cognitive Science Team - Swole Member - Scott Pickthorne Member - Zackary Clark-Williams This class is the data form for all the experiments tracking data. Information Currently Tracking: Average Cellurlar Life Span, ... @license Copyright [2023] [Scott Pickthorn and Zachary Clark-Williams] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ''' import numpy as np class conclusion: def getMaxLifespan (grid, N): max_val = -np.inf for i in range(len(grid)): for j in range(len(grid[i])): max_val = max(max_val, np.max(grid[i][j].avgLifespan)) print(max_val) return max_val def getAverageLifeSpan (grid, N): avg = 0 iWasAlive = 0 for i in range(N): rowavg = 0 for j in range(N): rowavg += grid[i][j].avgLifespan if grid[i][j].avgLifespan > 0: iWasAlive +=1 avg += (rowavg / iWasAlive) avg = round (avg / N) print(avg) return avg
Zclarkwilliams/DiseasedCognitiveGameOfLife
src/conclusion.py
conclusion.py
py
1,681
python
en
code
1
github-code
36
2881063504
import glob import numpy as np from get_c_point import Point, Final_point class File_Parser: """Create an object from datas that is a list of Points objects from the different files fed to it. Attributes: file_names (list): List of the files used to generate datas. list_of_points (list): List of the different points across a file. For more info, see the Point class. list_of_final_point (list): List of "final points", for all the files in file_names aggregate all the points corresponding to one given concentration. list_of_conc (list): List of each concentration used. For now, it wont work if the files used to create data have different concentrations across them. """ def __init__(self, input_dic, data=None, user_input=None): """Initialise a File_Parser object from a list of files Args: input_dic (dict): Dictionary of user inputs(given by GUI) data (str): A string with the type of data. For now, only 'csv' is supported. Pandas compatible file will be explored later. user_input (str): A string for input_dict. Original plan was to take all file in the same folder that finish with the same text. For example 'Plate1good' and 'Plate2good" will be parsed together in a File_Parser object and 'good' should be user_input. As the program (for now) is built, we expect userinput1 or userinput2. """ # Init lists self.file_names = [] self.list_of_points = [] self.list_of_final_point = [] self.list_of_conc = [] if data == 'csv': for files in glob.glob("*%s.csv" % user_input): self.file_names.append(files) # This is the delimitation used in the original repository and # the files i'm using to test the program. We could extend the # program to let user choose the data input (here it's array) array = np.genfromtxt(files, delimiter=';', skip_header=input_dic['user_input3']-1, usecols=(input_dic['user_input4']-1, input_dic['user_input5']-1)) list_of_slices = [array[0:3], array[3:6], array[6:9], array[9:12], array[12:15], array[15:18], array[18:21], array[21:24]] for elements in list_of_slices: point = Point(elements) self.list_of_points.append(point) if point.mean[0] not in self.list_of_conc: self.list_of_conc.append(point.mean[0]) elif data == 'pandas': # Pandas handling is planned. Pandas is much more easier to use # than random arrays and would require an formated input with clear # labels on values. pass else: print('Unknown data format') self.mask = list(range(len(self.file_names))) # Take all points of a same concentration and average them into the # Final_point class for concentration in self.list_of_conc: dummy_list = [] for point in self.list_of_points: if point.mean[0] == concentration: dummy_list.append(point) self.list_of_final_point.append(Final_point(dummy_list))
Elesh-Norn/ELISA_QC
Extract_data.py
Extract_data.py
py
3,569
python
en
code
null
github-code
36
70539338983
from intrinsic_types import intrinsic_types, is_float from bitstring import Bits, BitArray import random from tempfile import NamedTemporaryFile import os import subprocess from interp import interpret from compiler import compile from bit_util import * import math import z3 import functools import operator from spec_serializer import dump_spec, load_spec src_path = os.path.dirname(os.path.abspath(__file__)) def get_imm_mask(imm8, outs): ''' Given imm8 and the semantic of the outputs, figure out a mask that identifies the bits of imm8 that are actually useful ''' # TODO: don't assume there is only one output y = outs[0] mask = (1 << 33)-1 s = z3.Solver() for i in range(33, 0, -1): cur_mask = (1<<(i+1))-1 y_masked = z3.substitute(y, (imm8, imm8 & cur_mask)) ok = z3.is_true(z3.simplify(y_masked == y)) if not ok: return mask mask = cur_mask return mask def extract_float(bv, i, bitwidth): ''' extract i'th float from bv bitwidth is the size of a one floating point (either 32 or 64) ''' if bitwidth == 32: ty = z3.Float32() else: assert bitwidth == 64 ty = z3.Float64() sub_bv = z3.Extract(i * bitwidth + bitwidth - 1, i * bitwidth, bv) return z3.fpBVToFP(sub_bv, ty) def equal(a, b, ty): if is_float(ty): if ty.is_float: elem_bw = 32 else: elem_bw = 64 assert ty.bitwidth % elem_bw == 0 num_elems = ty.bitwidth // elem_bw return z3.Or(a == b, z3.And([ z3.fpAbs(extract_float(a, i, elem_bw) - extract_float(b, i, elem_bw)) < 1e-5 for i in range(num_elems)])) return a == b def check_compiled_spec_with_examples(param_vals, outs, out_types, inputs, expected_outs): s = z3.Solver() s.set(timeout=20000) constraints = [] for input, expected in zip(inputs, expected_outs): subs = [(param, z3.BitVecVal(x, param.size())) for param, x in zip(param_vals, input)] outs_concrete = [z3.simplify(z3.substitute(out, *subs)) for out in outs] constraints.append( z3.And([equal(z3.BitVecVal(y_expected, y.size()), y, out_type) for y_expected, y, out_type in zip(expected, outs_concrete, out_types)])) #preconditions = [x_sym == x_conc #for x_sym, x_conc in zip(param_vals, input)] #postconditions = [equal(z3.BitVecVal(y_expected, y.size()), y, out_type) # for y_expected, y, out_type in zip(expected, outs, out_types)] #constraints.append( # z3.Implies(z3.And(preconditions), z3.And(postconditions))) spec_correct = z3.And(constraints) s.add(z3.Not(spec_correct)) correct = s.check() == z3.unsat #if not correct: # print(s.model().evaluate(outs[0]), expected_outs[0][0]) return correct def line_to_bitvec(line, ty): qwords = list(map(int, line.split())) if ty.bitwidth <= 64: assert len(qwords) == 1 [bits] = qwords mask = (1 << ty.bitwidth) - 1 return bits & mask assert ty.bitwidth % 64 == 0 components = [bits << (i * 64) for i, bits in enumerate(qwords)] return functools.reduce(operator.or_, components, 0) load_intrinsics = { '_m512i': '_mm512_loadu_si512', '__m512i': '_mm512_loadu_si512', '__m256i': '_mm256_loadu_si256', '__m128i': '_mm_loadu_si128', # single precision floats '__m512': '_mm512_loadu_ps', '__m256': '_mm256_loadu_ps', '__m128': '_mm_loadu_ps', '_m512': '_mm512_loadu_ps', '_m256': '_mm256_loadu_ps', '_m128': '_mm_loadu_ps', # double precision floats '__m512d': '_mm512_loadu_pd', '__m256d': '_mm256_loadu_pd', '__m128d': '_mm_loadu_pd', '_m512d': '_mm512_loadu_pd', '_m256d': '_mm256_loadu_pd', '_m128d': '_mm_loadu_pd', } # functions that prints these vector registers printers = { '_m512i': 'print__m512i', '__m512i': 'print__m512i', '__m256i': 'print__m256i', '__m128i': 'print__m128i', # single precision floats '__m512': 'print__m512i', '__m256': 'print__m256i', '__m128': 'print__m128i', '_m512': 'print__m512i', '_m256': 'print__m256i', '_m128': 'print__m128i', # double precision floats '__m512d': 'print__m512i', '__m256d': 'print__m256i', '__m128d': 'print__m128i', '_m512d': 'print__m512i', '_m256d': 'print__m256i', '_m128d': 'print__m128i', } def emit_load(outf, dst, src, typename): if typename in load_intrinsics: load_intrinsic = load_intrinsics[typename] outf.write('%s %s = %s((%s *)%s);\n' % ( typename, dst, load_intrinsic, typename, src )) else: outf.write('%s %s = *(%s *)(%s);\n' % ( typename, dst, typename, src )) def gen_rand_data(outf, name, typename): ''' declare a variable of `data_type` called `name` print result to `outf` and return the actual bytes in bits e.g. for ty=__m512i, name = x1, we declare the following unsigned char x1[64] = { ... }; ''' if typename.endswith('*'): is_pointer = True typename = typename[:-1].strip() else: is_pointer = False ty = intrinsic_types[typename] # generate floats separates for integer because we don't # want to deal with underflow and other floating point issues if not is_float(ty): num_bytes = ty.bitwidth // 8 bytes = [random.randint(0, 255) for _ in range(num_bytes)] outf.write('unsigned char %s_aux[%d] = { %s };\n' % ( name, num_bytes, ','.join(map(str, bytes)) )) bits = BitArray(length=ty.bitwidth) for i, byte in enumerate(bytes): update_bits(bits, i*8, i*8+8, byte) else: float_size = 32 if ty.is_float else 64 c_type = 'float' if ty.is_float else 'double' num_floats = ty.bitwidth // float_size floats = [random.random() for _ in range(num_floats)] outf.write('%s %s_aux[%d] = { %s };\n' % ( c_type, name, num_floats, ','.join(map(str, floats)) )) bits = float_vec_to_bits(floats, float_size=float_size) if not is_pointer: # in this case we need to load the bytes emit_load(outf, src='%s_aux'%name, dst=name, typename=typename) else: # in this case we just take the address outf.write('%s *%s = (%s *)(&%s_aux);\n' % ( typename, name, typename, name )) return bits def emit_print(outf, var, typename): if typename.endswith('*'): typename = typename[:-1].strip() ty = intrinsic_types[typename] is_pointer = True else: is_pointer = False ty = intrinsic_types[typename] if is_pointer: # need to load the value first first tmp = get_temp_name() emit_load(outf, dst=tmp, src=var, typename=typename) var = tmp if typename in printers: # use the predefined printers printer = printers[typename] if ty.is_float: param_ty = 'unsigned long' elif ty.is_double: param_ty = 'unsigned long' else: param_ty = 'unsigned long' outf.write('%s((%s *)&%s);\n' % (printer, param_ty, var)) else: if ty.is_float: outf.write('printf("%%u\\n", float2int(%s));\n' % var) elif ty.is_double: outf.write('printf("%%lu\\n", double2long(%s));\n' % var) else: outf.write('printf("%%lu\\n", (unsigned long)%s);\n' % var) counter = 0 def get_temp_name(): global counter counter += 1 return 'tmp%d' % counter def fuzz_intrinsic_once(outf, spec, sema): ''' 1) generate test (in C) that exercises the intrinsic 2) run the interpreter per the spec and return the expected output ''' xs, ys = sema # generate random arguments c_vars = [] arg_vals = [] out_params = [] out_param_types = [] inst_form = spec.inst_form.split(', ') no_imm8 = 'imm8' not in (param.name for param in spec.params) # TODO: refactor out this signature parsing logic for i, param in enumerate(spec.params): if ((no_imm8 and i < len(inst_form) and inst_form[i] == 'imm') or param.name == 'imm8'): param_id = len(arg_vals) mask = get_imm_mask(xs[param_id], ys) byte = random.randint(0, 255) & mask c_vars.append(str(byte)) arg_vals.append(Bits(uint=byte, length=8)) continue c_var = get_temp_name() arg_val = gen_rand_data(outf, c_var, param.type) c_vars.append(c_var) arg_vals.append(arg_val) if param.type.endswith('*'): out_params.append(c_var) out_param_types.append(param.type[:-1].strip()) # call the intrinsic has_return_val = spec.rettype != 'void' if has_return_val: ret_var = get_temp_name() outf.write('%s %s = %s(%s);\n' % ( spec.rettype, ret_var, spec.intrin, ','.join(c_vars) )) # print the result emit_print(outf, ret_var, spec.rettype) else: outf.write('%s(%s);\n' % ( spec.intrin, ','.join(c_vars) )) out_types = [] for param, param_type in zip(out_params, out_param_types): emit_print(outf, param, param_type+'*') return arg_vals, out_param_types, has_return_val def get_err(a, b, is_float): err = a - b if not is_float: return err if math.isnan(a) and math.isnan(b): return 0 return err def identical_vecs(a, b, is_float): errs = [get_err(aa, bb, is_float) for aa,bb in zip(a, b)] if is_float: return all(abs(err) <= 1e-6 for err in errs) return all(err == 0 for err in errs) def bits_to_vec(bits, typename): if typename.endswith('*'): ty = intrinsic_types[typename[:-1]] else: ty = intrinsic_types[typename] if ty.is_float: return bits_to_float_vec(bits, float_size=32) elif ty.is_double: return bits_to_float_vec(bits, float_size=64) # integer type return bits_to_long_vec(bits) def fuzz_intrinsic(spec, num_tests=100): ''' spec -> (spec correct, can compile) ''' param_vals, outs = compile(spec) sema = param_vals, outs interpreted = [] exe = NamedTemporaryFile(delete=False) exe.close() with NamedTemporaryFile(suffix='.c', mode='w') as outf: outf.write(''' #include <emmintrin.h> #include <immintrin.h> #include <nmmintrin.h> #include <pmmintrin.h> #include <smmintrin.h> #include <tmmintrin.h> #include <wmmintrin.h> #include <xmmintrin.h> #include <stdio.h> #include "printers.h" #define __int64_t __int64 #define __int64 long long union float_and_int { float f; unsigned int i; }; union double_and_long { double d; unsigned long l; }; unsigned int float2int(float f) { union float_and_int x; x.f = f; return x.i; } unsigned long double2long(double d) { union double_and_long x; x.d = d; return x.l; } int main() { ''') x = [] y = [] for _ in range(num_tests): arg_vals, out_param_types, has_return_val = fuzz_intrinsic_once(outf, spec, sema) out_types = [intrinsic_types[ty] for ty in out_param_types] if spec.rettype != 'void': out_types = [intrinsic_types[spec.rettype]] + out_types x.append([val.uint for val in arg_vals]) outf.write(''' return 0; } ''') outf.flush() os.system('cp %s %s' % (outf.name, 'debug.c')) # TODO: add CPUIDs try: subprocess.check_output( 'clang %s -o %s -I%s %s/printers.o >/dev/null 2>/dev/null -mavx -mavx2 -march=native -mfma' % ( outf.name, exe.name, src_path, src_path), shell=True) except subprocess.CalledProcessError: return False, False num_outputs_per_intrinsic = len(out_types) stdout = subprocess.check_output([exe.name]) lines = stdout.decode('utf-8').strip().split('\n') assert(len(lines) == num_tests * num_outputs_per_intrinsic) os.system('rm '+exe.name) for i in range(0, len(lines), num_outputs_per_intrinsic): outputs = [] for ty, line in zip(out_types, lines[i:i+num_outputs_per_intrinsic]): outputs.append(line_to_bitvec(line, ty)) y.append(outputs) correct = check_compiled_spec_with_examples(param_vals, outs, out_types, x, y) return correct, True if __name__ == '__main__': import sys import xml.etree.ElementTree as ET from manual_parser import get_spec_from_xml from intrinsic_types import IntegerType sema = ''' <intrinsic tech="Other" rettype='unsigned int' name='_bextr_u32'> <type>Integer</type> <CPUID>BMI1</CPUID> <category>Bit Manipulation</category> <parameter type='unsigned int' varname='a' /> <parameter type='unsigned int' varname='start' /> <parameter type='unsigned int' varname='len' /> <description>Extract contiguous bits from unsigned 32-bit integer "a", and store the result in "dst". Extract the number of bits specified by "len", starting at the bit specified by "start".</description> <operation> tmp := ZeroExtend_To_512(a) dst := ZeroExtend(tmp[start[7:0]+len[7:0]-1:start[7:0]]) </operation> <instruction name='bextr' form='r32, r32, r32'/> <header>immintrin.h</header> </intrinsic> ''' intrin_node = ET.fromstring(sema) spec = get_spec_from_xml(intrin_node) ok = fuzz_intrinsic(spec, num_tests=32) print(ok)
ychen306/upgraded-succotash
fuzzer.py
fuzzer.py
py
12,802
python
en
code
0
github-code
36
33938514931
import pytest from schema import cities async def test_database(sqlite_database): tables_query = "SELECT * FROM sqlite_master where type='table';" tables = await sqlite_database.fetch_all(query=tables_query) assert len(tables) != 0 city_query = cities.insert( values={"name": 'London', "lattitude": 51.509865, "longitude": -0.118092}) last_record_id = await sqlite_database.execute(query=city_query) assert last_record_id == 1
roman808080/route_planner
tests/test_db_manager.py
test_db_manager.py
py
497
python
en
code
0
github-code
36
37457505741
def circle(r): #calculate area of circle s=3.14*r**2 return s def rectangle(length,width): #calculate area of rectangle s=length*width return s def square(side): #calculate area of square s=side**2 return s def triangle(base,height): #calculate area of triangle s=base*height/2 return s def get_func(ls): #vared kardane ashkal dar yek list print("Enter name of 4 shape:") for i in range(0,4): shape=input() ls.append(shape) return ls ls=[] print(get_func(ls)) choose=input("choose a shape from list:") #entekhabe yek shekl baraye hesab kardan va neshan dadane masahat if choose=='circle': r=int(input("Enter Radius:")) print("Area of circle is:",circle(r)) elif choose=='rectangle': length=int(input("Enter length of rectangle:")) width=int(input("Enter width of rectangle:")) print("Area of rectangle is:",rectangle(length,width)) elif choose=='triangle': height=int(input("Enter height of triangle:")) base=int(input("Enter base of triangle:")) print("Area of triangle is:",triangle(height,base)) elif choose=='square': side=int(input("Enter side of square:")) print("Area of square is:",square(side)) else: print("character you are Entered is invalid")
matinntb/project1
soal 1.py
soal 1.py
py
1,354
python
en
code
0
github-code
36
28613380166
#!/usr/bin/env python #Author velociraptor Genjix <aphidia@hotmail.com> from PySide.QtGui import * from PySide.QtCore import * class LightWidget(QWidget): def __init__(self, colour): super(LightWidget, self).__init__() self.colour = colour self.onVal = False def isOn(self): return self.onVal def setOn(self, on): if self.onVal == on: return self.onVal = on self.update() @Slot() def turnOff(self): self.setOn(False) @Slot() def turnOn(self): self.setOn(True) def paintEvent(self, e): if not self.onVal: return painter = QPainter(self) painter.setRenderHint(QPainter.Antialiasing) painter.setBrush(self.colour) painter.drawEllipse(0, 0, self.width(), self.height()) on = Property(bool, isOn, setOn) class TrafficLightWidget(QWidget): def __init__(self): super(TrafficLightWidget, self).__init__() vbox = QVBoxLayout(self) self.redLight = LightWidget(Qt.red) vbox.addWidget(self.redLight) self.yellowLight = LightWidget(Qt.yellow) vbox.addWidget(self.yellowLight) self.greenLight = LightWidget(Qt.green) vbox.addWidget(self.greenLight) pal = QPalette() pal.setColor(QPalette.Background, Qt.black) self.setPalette(pal) self.setAutoFillBackground(True) def createLightState(light, duration, parent=None): lightState = QState(parent) timer = QTimer(lightState) timer.setInterval(duration) timer.setSingleShot(True) timing = QState(lightState) timing.entered.connect(light.turnOn) timing.entered.connect(timer.start) timing.exited.connect(light.turnOff) done = QFinalState(lightState) timing.addTransition(timer, SIGNAL('timeout()'), done) lightState.setInitialState(timing) return lightState class TrafficLight(QWidget): def __init__(self): super(TrafficLight, self).__init__() vbox = QVBoxLayout(self) widget = TrafficLightWidget() vbox.addWidget(widget) vbox.setContentsMargins(0, 0, 0, 0) machine = QStateMachine(self) redGoingYellow = createLightState(widget.redLight, 1000) redGoingYellow.setObjectName('redGoingYellow') yellowGoingGreen = createLightState(widget.redLight, 1000) yellowGoingGreen.setObjectName('redGoingYellow') redGoingYellow.addTransition(redGoingYellow, SIGNAL('finished()'), yellowGoingGreen) greenGoingYellow = createLightState(widget.yellowLight, 3000) greenGoingYellow.setObjectName('redGoingYellow') yellowGoingGreen.addTransition(yellowGoingGreen, SIGNAL('finished()'), greenGoingYellow) yellowGoingRed = createLightState(widget.greenLight, 1000) yellowGoingRed.setObjectName('redGoingYellow') greenGoingYellow.addTransition(greenGoingYellow, SIGNAL('finished()'), yellowGoingRed) yellowGoingRed.addTransition(yellowGoingRed, SIGNAL('finished()'), redGoingYellow) machine.addState(redGoingYellow) machine.addState(yellowGoingGreen) machine.addState(greenGoingYellow) machine.addState(yellowGoingRed) machine.setInitialState(redGoingYellow) machine.start() if __name__ == '__main__': import sys app = QApplication(sys.argv) widget = TrafficLight() widget.resize(110, 300) widget.show() sys.exit(app.exec_())
pyside/Examples
examples/state-machine/trafficlight.py
trafficlight.py
py
3,483
python
en
code
357
github-code
36
34993761644
#!/usr/bin/env python3 # 深さ優先検索 def walk(f, x, y): # 10*10 のマップ範囲外に出るな!!!!!!禁じられた森に入ってはならん!!! if not (0 <= x < 10 > y >= 0): return i = y * 10 + x # 海歩くな!!!!!!!!! if f[i] == "x": return # 歩いた所を海に書き換えておこ f[i] = "x" # x, y の上下左右を歩いてみよ # 陸続きなら進むけどそうじゃないんだったらそこで止まるで walk(f, x, y + 1) walk(f, x, y - 1) walk(f, x + 1, y) walk(f, x - 1, y) *j, = open(0) field = "".join(map(str.strip, j)) for i, f in enumerate(field): # 陸なら無視 if f == "o": continue ### リセット walking = list(field) y, x = divmod(i, 10) # 海ならそこだけ一旦埋め立ててみるで walking[i] = "o" walk(walking, x, y) # 陸が全て無くなったら陸続きやで。お疲れ様 if "o" not in walking: print("YES") exit() print("NO")
mpses/AtCoder
Contest/ARC031/b/main.py
main.py
py
1,076
python
ja
code
0
github-code
36
5993595252
class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: counter = defaultdict(int) for num in nums: counter[num] += 1 freq = [[] for i in range(len(nums) + 1)] for key, val in counter.items(): freq[val].append(key) result = [] for i in reversed(freq): for n in i: result.append(n) if len(result) == k: return result
alexneysis/leetcode
347-top-k-frequent-elements/347-top-k-frequent-elements.py
347-top-k-frequent-elements.py
py
479
python
en
code
0
github-code
36
9588266467
import unittest from tests import PluginTest from plugins.basketball import basketball from mock import patch, call import requests import datetime from packages.memory.memory import Memory class BasketballTest(PluginTest): """ Tests For Basketball Plugin !!! test will be executed only if user has added his own api.basketball.com API_KEY """ def setUp(self): self.test = self.load_plugin(basketball) m = Memory("basketball.json") self.unable_to_test_plugin = False if m.get_data("API_KEY") is None: self.unable_to_test_plugin = True else: self.headers = {"x-rapidapi-host": "api-basketball.p.rapidapi.com", "x-rapidapi-key": m.get_data("API_KEY")} def test_todays_games(self): if self.unable_to_test_plugin: return with patch.object(requests, 'get', headers=self.headers) as get_mock: self.test.get_api_key(self.jarvis_api) self.test.todays_games(self.jarvis_api) date = datetime.datetime.now().strftime('%Y-%m-%d') get_mock.assert_called_with( "https://api-basketball.p.rapidapi.com/games?date={}".format(date), headers=self.headers) def test_search_team(self): if self.unable_to_test_plugin: return with patch.object(requests, 'get', headers=self.headers) as get_mock: self.test.get_api_key(self.jarvis_api) self.queue_input("boston") self.test.search_team(self.jarvis_api) get_mock.assert_called_with( "https://api-basketball.p.rapidapi.com/teams?search=boston", headers=self.headers) def test_search_league(self): if self.unable_to_test_plugin: return with patch.object(requests, 'get', headers=self.headers) as get_mock: self.test.get_api_key(self.jarvis_api) self.queue_input("nba") self.test.search_league(self.jarvis_api) get_mock.assert_called_with( "https://api-basketball.p.rapidapi.com/leagues?search=nba", headers=self.headers) def test_list_leagues(self): if self.unable_to_test_plugin: return with patch.object(requests, 'get', headers=self.headers) as get_mock: self.test.get_api_key(self.jarvis_api) self.test.list_leagues(self.jarvis_api) get_mock.assert_called_with( "https://api-basketball.p.rapidapi.com/leagues", headers=self.headers) if __name__ == '__main__': unittest.main()
sukeesh/Jarvis
jarviscli/tests/test_basketball.py
test_basketball.py
py
2,571
python
en
code
2,765
github-code
36
7919024721
from __future__ import division import geojson from helper import load_geom, degrees_to_radians, get_coord, PRECISION from math import pow, sqrt, pi, tan, cos, sin from measurement import rhumb_destination from transformation import transform_rotate def ellipse(center, x_semi_axis, y_semi_axis, options={}): steps = 64 if 'steps' in options: steps = options['steps'] units = 'kilometers' units_mapping = { 'miles': 'mi', 'kilometers': 'km', 'meters': 'm', 'degrees': 'degrees', } if 'units' in options: units = options['units'] angle = 0 if 'angle' in options: angle = options['angle'] # validation if center is None: raise Exception('center is required') if x_semi_axis is None: raise Exception('x_semi_axis is required') if y_semi_axis is None: raise Exception('y_semi_axis is required') if units not in units_mapping: raise Exception('non valid units') units = units_mapping[units] center = load_geom(center) center_coords = get_coord(center) angle_rad = 0 if units == 'degrees': angle_rad = degrees_to_radians(angle) else: x_semi_axis = rhumb_destination(center, x_semi_axis, 90, {'units': units}) y_semi_axis = rhumb_destination(center, y_semi_axis, 0, {'units': units}) x_semi_axis = get_coord(x_semi_axis)[0] - center_coords[0] y_semi_axis = get_coord(y_semi_axis)[1] - center_coords[1] coordinates = [] for i in range(0, steps): step_angle = (i * -360) / steps x = (x_semi_axis * y_semi_axis) / sqrt( pow(y_semi_axis, 2) + pow(x_semi_axis, 2) * pow(get_tan_deg(step_angle), 2) ) y = ( 0 if pow(get_tan_deg(step_angle), 2) == 0 else (x_semi_axis * y_semi_axis) / sqrt( pow(x_semi_axis, 2) + pow(y_semi_axis, 2) / pow(get_tan_deg(step_angle), 2) ) ) if step_angle < -90 and step_angle >= -270: x = -x if step_angle < -180 and step_angle >= -360: y = -y if units == 'degrees': newx = x * cos(angle_rad) + y * sin(angle_rad) newy = y * cos(angle_rad) - x * sin(angle_rad) x = newx y = newy coordinates.append([x + center_coords[0], y + center_coords[1]]) coordinates.append(coordinates[0]) if units == 'degrees': return geojson.dumps( geojson.Feature( geometry=geojson.Polygon([coordinates], precision=PRECISION) )['geometry'] ) else: return geojson.dumps( transform_rotate( geojson.Feature( geometry=geojson.Polygon([coordinates], precision=PRECISION) ), angle, mutate=True, )['geometry'] ) def get_tan_deg(deg): rad = (deg * pi) / 180 return tan(rad)
CartoDB/analytics-toolbox-core
clouds/redshift/libraries/python/lib/constructors/ellipse/__init__.py
__init__.py
py
3,027
python
en
code
181
github-code
36
6797122561
import logging import requests from django.urls import reverse from django.conf import settings from django.core.mail import get_connection from django.core.mail.backends.base import BaseEmailBackend from .engine import send_email from mail.models import Message logger = logging.getLogger('mails') def get_admins(): return [mail for name, mail in settings.ADMINS] class StoreBackend(BaseEmailBackend): def __get_category_from_header(self, email): category = None if settings.MAIL_CATEGORY_HEADER_KEY in email.extra_headers: category = email.extra_headers.get(settings.MAIL_CATEGORY_HEADER_KEY, None) email.extra_headers.pop(settings.MAIL_CATEGORY_HEADER_KEY) return category def __is_error_or_test_mail(self, subject): return subject.startswith(settings.MAIL_ERROR_MESAGE_SUBJECT) or subject.startswith( settings.MAIL_TEST_MESSAGE_SUBJECT) def send_messages(self, email_messages, notify_webhook=None): AUTOSEND = getattr(settings, 'MAILER_AUTOSEND', False) num_sent = 0 for email in email_messages: if self.__is_error_or_test_mail(email.subject): email.to = get_admins() email.connection = get_connection( backend=settings.MAILER_EMAIL_BACKEND ) email.send() else: msg = Message.objects.create( subject=email.subject, to_email=email.to, from_email=email.from_email, reply_to=email.reply_to, cc=email.cc, bcc=email.bcc, body=email.body, category=self.__get_category_from_header(email), attachment=email.attachments) if notify_webhook: mail_url = '{}{}'.format( settings.DOMAIN_NAME, reverse('mail:inbox-message', kwargs={'pk': msg.pk}), ) try: requests.put( notify_webhook, data={ 'email_url': mail_url, 'email_status': settings.MAIL_NOTIFY_WEBHOOK_STATUS_OK, }, ) except Exception as e: # noqa logger.error('Notify webhook Exception: {}'.format(e)) if AUTOSEND: send_email(msg) num_sent += 1 return num_sent
tomasgarzon/exo-services
service-exo-mail/mail/backend.py
backend.py
py
2,657
python
en
code
0
github-code
36
15618824234
#!/usr/bin/env python3 import argparse from datetime import datetime import json import os import sys import time import uuid from aiosmtpd.controller import Controller import mailparser DATA_PATH = 'messages' class Handler(object): # noinspection PyPep8Naming,PyMethodMayBeStatic async def handle_DATA(self, _, session, envelope): print('Recieved message...') # noinspection PyBroadException try: file_name = os.path.join('messages', str(uuid.uuid4().hex)) with open(file_name, 'w') as open_file: content = envelope.original_content.decode('utf-8').replace("\r\r\n", "\r\n") message = mailparser.parse_from_string(content) json.dump({'mail_from': envelope.mail_from, 'rcpt_tos': envelope.rcpt_tos, 'subject': message.subject, 'body': message.body, 'data': content, 'timestamp': datetime.utcnow().isoformat()}, open_file) return '250 OK' except Exception: return '500 Could not process your message' if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('host', type=str) parser.add_argument('port', type=int) args = parser.parse_args() handler = Handler() controller = Controller(handler, hostname=args.host, port=args.port) # noinspection PyBroadException try: controller.start() pid = str(os.getpid()) pidfile = "/run/postoffice/postoffice.pid" open(pidfile, 'w').write(pid) print("Running smtpd server on {}:{}\n".format(args.host, args.port)) while True: time.sleep(3) except Exception as exc: print(exc, file=sys.stderr) controller.stop() finally: os.unlink(pidfile)
OPSnet/PostOffice
smtpd.py
smtpd.py
py
1,929
python
en
code
1
github-code
36
8346930934
import os import random import tempfile from copy import copy from functools import partial from multiprocessing import cpu_count import pickle import numpy as np import tensorflow as tf from joblib import Parallel, delayed from .tokenization import printable_text from .utils import (BOS_TOKEN, EOS_TOKEN, add_special_tokens_with_seqs, create_instances_from_document, create_mask_and_padding, create_masked_lm_predictions, punc_augument, tokenize_text_with_seqs, truncate_seq_pair) def create_single_problem_single_instance(problem, ex_index, example, label_encoder, params, tokenizer, mode, problem_type, is_seq): raw_inputs, raw_target = example # punctuation augumentation if params.punc_replace_prob > 0 and mode == 'train': raw_inputs = punc_augument(raw_inputs, params) # tokenize inputs, now the length is fixed, target == raw_target if isinstance(raw_inputs, dict): tokens_a, target = tokenize_text_with_seqs( tokenizer, raw_inputs['a'], raw_target, is_seq) tokens_b, _ = tokenize_text_with_seqs( tokenizer, raw_inputs['b'], raw_target) else: tokens_a, target = tokenize_text_with_seqs( tokenizer, raw_inputs, raw_target, is_seq) tokens_b = None if tokens_b is not None and is_seq: raise NotImplementedError( 'Sequence Labeling with tokens b is not implemented') if not tokens_a: return # check whether tokenization changed the length if is_seq: if len(target) != len(tokens_a): tf.logging.warning('Data %d broken' % ex_index) return # truncate tokens and target to max_seq_len tokens_a, tokens_b, target = truncate_seq_pair( tokens_a, tokens_b, target, params.max_seq_len, is_seq=is_seq) # add [SEP], [CLS] tokens tokens, segment_ids, target = add_special_tokens_with_seqs( tokens_a, tokens_b, target, is_seq) # train mask lm as augument task while training if params.augument_mask_lm and mode == 'train': rng = random.Random() (mask_lm_tokens, masked_lm_positions, masked_lm_labels) = create_masked_lm_predictions( tokens, params.masked_lm_prob, params.max_predictions_per_seq, list(tokenizer.vocab.keys()), rng) _, mask_lm_tokens, _, _ = create_mask_and_padding( mask_lm_tokens, copy(segment_ids), copy(target), params.max_seq_len, is_seq, dynamic_padding=params.dynamic_padding) masked_lm_weights, masked_lm_labels, masked_lm_positions, _ = create_mask_and_padding( masked_lm_labels, masked_lm_positions, None, params.max_predictions_per_seq) mask_lm_input_ids = tokenizer.convert_tokens_to_ids( mask_lm_tokens) masked_lm_ids = tokenizer.convert_tokens_to_ids(masked_lm_labels) input_mask, tokens, segment_ids, target = create_mask_and_padding( tokens, segment_ids, target, params.max_seq_len, is_seq, dynamic_padding=params.dynamic_padding) # create mask and padding for labels of seq2seq problem if problem_type in ['seq2seq_tag', 'seq2seq_text']: # tokenize text if target is text if problem_type == 'seq2seq_text': # assign num_classes for text generation problem params.num_classes[problem] = len(label_encoder.vocab) target, _ = tokenize_text_with_seqs( label_encoder, target, None, False) target, _, _ = truncate_seq_pair( target, None, None, params.decode_max_seq_len, is_seq=is_seq) # since we initialize the id to 0 in prediction, we need # to make sure that BOS_TOKEN is [PAD] target = [BOS_TOKEN] + target + [EOS_TOKEN] label_mask, target, _, _ = create_mask_and_padding( target, [0] * len(target), None, params.decode_max_seq_len) input_ids = tokenizer.convert_tokens_to_ids(tokens) if isinstance(target, list): if problem_type == 'seq2seq_text': label_id = label_encoder.convert_tokens_to_ids(target) else: label_id = label_encoder.transform(target).tolist() label_id = [np.int32(i) for i in label_id] else: label_id = label_encoder.transform([target]).tolist()[0] label_id = np.int32(label_id) if not params.dynamic_padding: assert len(input_ids) == params.max_seq_len assert len(input_mask) == params.max_seq_len assert len(segment_ids) == params.max_seq_len, segment_ids if is_seq: assert len(label_id) == params.max_seq_len # logging in debug mode if ex_index < 5: tf.logging.debug("*** Example ***") tf.logging.debug("tokens: %s" % " ".join( [printable_text(x) for x in tokens])) tf.logging.debug("input_ids: %s" % " ".join([str(x) for x in input_ids])) tf.logging.debug("input_mask: %s" % " ".join([str(x) for x in input_mask])) tf.logging.debug("segment_ids: %s" % " ".join([str(x) for x in segment_ids])) if is_seq or problem_type in ['seq2seq_tag', 'seq2seq_text']: tf.logging.debug("%s_label_ids: %s" % (problem, " ".join([str(x) for x in label_id]))) tf.logging.debug("%s_label: %s" % (problem, " ".join([str(x) for x in target]))) else: tf.logging.debug("%s_label_ids: %s" % (problem, str(label_id))) tf.logging.debug("%s_label: %s" % (problem, str(target))) if params.augument_mask_lm and mode == 'train': tf.logging.debug("mask lm tokens: %s" % " ".join( [printable_text(x) for x in mask_lm_tokens])) tf.logging.debug("mask lm input_ids: %s" % " ".join([str(x) for x in mask_lm_input_ids])) tf.logging.debug("mask lm label ids: %s" % " ".join([str(x) for x in masked_lm_ids])) tf.logging.debug("mask lm position: %s" % " ".join([str(x) for x in masked_lm_positions])) # create return dict if not params.augument_mask_lm: return_dict = { 'input_ids': input_ids, 'input_mask': input_mask, 'segment_ids': segment_ids, '%s_label_ids' % problem: label_id } else: if mode == 'train' and random.uniform(0, 1) <= params.augument_rate: return_dict = { 'input_ids': mask_lm_input_ids, 'input_mask': input_mask, 'segment_ids': segment_ids, '%s_label_ids' % problem: label_id, "masked_lm_positions": masked_lm_positions, "masked_lm_ids": masked_lm_ids, "masked_lm_weights": masked_lm_weights, } else: return_dict = { 'input_ids': input_ids, 'input_mask': input_mask, 'segment_ids': segment_ids, '%s_label_ids' % problem: label_id, "masked_lm_positions": np.zeros([params.max_predictions_per_seq]), "masked_lm_ids": np.zeros([params.max_predictions_per_seq]), "masked_lm_weights": np.zeros([params.max_predictions_per_seq]), } if problem_type in ['seq2seq_tag', 'seq2seq_text']: return_dict['%s_mask' % problem] = label_mask return return_dict def _multiprocessing_wrapper( problem, example_list, label_encoder, params, tokenizer, mode, problem_type, is_seq): return_list = [] for ex_index, example in enumerate(example_list): return_list.append(create_single_problem_single_instance( problem, 999, example, label_encoder, params, tokenizer, mode, problem_type, is_seq)) return return_list def create_single_problem_generator(problem, inputs_list, target_list, label_encoder, params, tokenizer, mode): """Function to create iterator for single problem This function will: 1. Do some text cleaning using original bert tokenizer, if problem type is sequential tagging, corresponding labels will be removed. Example: Before: inputs: ['a', '&', 'c'] target: [0, 0, 1] After: inputs: ['a', 'c'] target: [0, 1] 2. Add [CLS], [SEP] tokens 3. Padding 4. yield result dict Arguments: problem {str} -- problem name inputs_list {list } -- inputs list target_list {list} -- target list, should have the same length as inputs list label_encoder {LabelEncoder} -- label encoder params {Params} -- params tokenizer {tokenizer} -- Bert Tokenizer epoch {int} -- Deprecate """ problem_type = params.problem_type[problem] # whether this problem is sequential labeling # for sequential labeling, targets needs to align with any # change of inputs is_seq = problem_type in ['seq_tag'] if not params.multiprocess: for ex_index, example in enumerate(zip(inputs_list, target_list)): return_dict = create_single_problem_single_instance(problem, ex_index, example, label_encoder, params, tokenizer, mode, problem_type, is_seq) yield return_dict else: return_dict_list = [] pickle_file = os.path.join( params.tmp_file_dir, '{0}_{1}_data.pkl'.format(problem, mode)) if not os.path.exists(pickle_file): # params.tmp_file_dir = tempfile.mkdtemp(dir='.') os.makedirs('tmp', exist_ok=True) params.tmp_file_dir = 'tmp' pickle_file = os.path.join( params.tmp_file_dir, '{0}_{1}_data.pkl'.format(problem, mode)) tf.logging.info( 'Saving preprocessing files to {0}'.format(pickle_file)) partial_fn = partial(_multiprocessing_wrapper, problem=problem, label_encoder=label_encoder, params=params, tokenizer=tokenizer, mode=mode, problem_type=problem_type, is_seq=is_seq) example_list = list(zip(inputs_list, target_list)) num_process = cpu_count() def split(a, n): k, m = divmod(len(a), n) return (a[i * k + min(i, m):(i + 1) * k + min(i + 1, m)] for i in range(n)) example_list = list(split(example_list, num_process)) return_dict_list_list = Parallel(num_process)(delayed(partial_fn)( example_list=example) for example in example_list ) pickle.dump(return_dict_list_list, open(pickle_file, 'wb')) else: return_dict_list_list = pickle.load(open(pickle_file, 'rb')) for return_dict_list in return_dict_list_list: for return_dict in return_dict_list: yield return_dict def create_pretraining_generator(problem, inputs_list, target_list, label_encoder, params, tokenizer ): """Slight modification of original code Raises: ValueError -- Input format not right """ if not isinstance(inputs_list[0][0], list): raise ValueError('inputs is expected to be list of list of list.') all_documents = [] for document in inputs_list: all_documents.append([]) for sentence in document: all_documents[-1].append(tokenizer.tokenize('\t'.join(sentence))) all_documents = [d for d in all_documents if d] rng = random.Random() rng.shuffle(all_documents) vocab_words = list(tokenizer.vocab.keys()) instances = [] print_count = 0 for _ in range(params.dupe_factor): for document_index in range(len(all_documents)): instances = create_instances_from_document( all_documents, document_index, params.max_seq_len, params.short_seq_prob, params.masked_lm_prob, params.max_predictions_per_seq, vocab_words, rng) for instance in instances: tokens = instance.tokens segment_ids = list(instance.segment_ids) input_mask, tokens, segment_ids, _ = create_mask_and_padding( tokens, segment_ids, None, params.max_seq_len) masked_lm_positions = list(instance.masked_lm_positions) masked_lm_weights, masked_lm_labels, masked_lm_positions, _ = create_mask_and_padding( instance.masked_lm_labels, masked_lm_positions, None, params.max_predictions_per_seq) input_ids = tokenizer.convert_tokens_to_ids(tokens) masked_lm_ids = tokenizer.convert_tokens_to_ids( masked_lm_labels) next_sentence_label = 1 if instance.is_random_next else 0 yield_dict = { "input_ids": input_ids, "input_mask": input_mask, "segment_ids": segment_ids, "masked_lm_positions": masked_lm_positions, "masked_lm_ids": masked_lm_ids, "masked_lm_weights": masked_lm_weights, "next_sentence_label_ids": next_sentence_label } if print_count < 3: tf.logging.debug('%s : %s' % ('tokens', ' '.join([str(x) for x in tokens]))) for k, v in yield_dict.items(): if not isinstance(v, int): tf.logging.debug('%s : %s' % (k, ' '.join([str(x) for x in v]))) print_count += 1 yield yield_dict def create_generator(params, mode): """Function to create iterator for multiple problem This function dose the following things: 1. Create dummy labels for each problems. 2. Initialize all generators 3. Sample a problem to train at this batch. If eval, take turns 4. Create a loss multiplier 5. Tried to generate samples for target problem, if failed, init gen 6. Add dummy label to other problems Example: Problem: cws|NER|weibo_ner&weibo_cws 1. Dummy labels: cws_label_ids: [0,0,0] ... 2. Blablabla 3. Sample, say (weibo_ner&weibo_cws) 4. loss multipliers: {'cws_loss_multiplier': 0, ..., 'weibo_ner_loss_multiplier': 1, ...} ... Arguments: params {Params} -- params mode {mode} -- mode """ # example # problem_list: ['NER', 'cws', 'weibo_ner', 'weibo_cws'] # problem_chunk: [['NER'], ['cws'], ['weibo_ner', 'weibo_cws']] problem_list = [] problem_chunk = [] for problem_dict in params.run_problem_list: problem_list += list(problem_dict.keys()) problem_chunk.append(list(problem_dict.keys())) # get dummy labels def _create_dummpy_label(problem_type): if problem_type == 'cls': return 0 elif problem_type == 'seq_tag': return [0]*params.max_seq_len else: return [0]*params.decode_max_seq_len dummy_label_dict = {problem+'_label_ids': _create_dummpy_label( params.problem_type[problem]) for problem in problem_list if params.problem_type[problem] != 'pretrain'} dummy_label_dict.update({problem+'_mask': _create_dummpy_label( params.problem_type[problem]) for problem in problem_list if params.problem_type[problem] in ['seq2seq_tag', 'seq2seq_text']}) # init gen try: gen_dict = {problem: params.read_data_fn[problem](params, mode) for problem in problem_list} except KeyError: not_exist_problem = [ p for p in problem_list if p not in params.read_data_fn] raise KeyError( 'The preprocessing function of {0} not found, make sure you called params.add_problem. If you\'re using train_bert_multitask, please make sure you provided problem_type_dict and processing_fn_dict.'.format(not_exist_problem)) while gen_dict: # sample problem to train if len(problem_chunk) > 1: data_num_list = [params.data_num_dict[chunk[0]] for chunk in problem_chunk] if params.multitask_balance_type == 'data_balanced': sample_prob = np.array(data_num_list) / np.sum(data_num_list) current_problem_chunk_ind = np.random.choice( list(range(len(problem_chunk))), p=sample_prob) current_problem_chunk = problem_chunk[current_problem_chunk_ind] elif params.multitask_balance_type == 'problem_balanced': sample_prob = np.array( [1]*len(data_num_list)) / np.sum([1]*len(data_num_list)) current_problem_chunk_ind = np.random.choice( list(range(len(problem_chunk))), p=sample_prob) current_problem_chunk = problem_chunk[current_problem_chunk_ind] else: current_problem_chunk = problem_chunk[0] # create loss multiplier loss_multiplier = { problem+'_loss_multiplier': 0 for problem in problem_list} for problem in current_problem_chunk: loss_multiplier[problem+'_loss_multiplier'] = 1 base_dict = {} base_input = None for problem in current_problem_chunk: try: instance = next(gen_dict[problem]) except StopIteration: if mode == 'train': gen_dict[problem] = params.read_data_fn[problem]( params, mode) instance = next(gen_dict[problem]) else: del gen_dict[problem] continue except KeyError: continue if not instance: continue base_dict.update(instance) if base_input is None: base_input = instance['input_ids'] elif not params.augument_mask_lm: assert base_input == instance[ 'input_ids'], 'Inputs id of two chained problem not aligned. Please double check!' if not base_dict: continue for problem in problem_list: problem_type = params.problem_type[problem] problem_label_name = '{0}_label_ids'.format(problem) if problem_label_name not in base_dict: if problem_type == 'seq_tag': base_dict[problem_label_name] = dummy_label_dict[problem_label_name][:len( base_dict['input_ids'])] else: base_dict[problem_label_name] = dummy_label_dict[problem_label_name] if problem_type in ['seq2seq_tag', 'seq2seq_text']: base_dict['{0}_mask'.format( problem)] = dummy_label_dict['{0}_mask'.format(problem)] # add loss multipliers base_dict.update(loss_multiplier) yield base_dict
hauwenc/bert-multitask-learning
bert_multitask_learning/create_generators.py
create_generators.py
py
20,858
python
en
code
null
github-code
36
21891037955
import json import logging import traceback from django.views import View from django.http import JsonResponse from backend.models import AnnotationCategory, Video # from django.core.exceptions import BadRequest class AnnoatationCategoryCreate(View): def post(self, request): try: if not request.user.is_authenticated: return JsonResponse({"status": "error"}) # decode data try: body = request.body.decode("utf-8") except (UnicodeDecodeError, AttributeError): body = request.body try: data = json.loads(body) except Exception as e: return JsonResponse({"status": "error", "type": "wrong_request_body"}) if "name" not in data: return JsonResponse({"status": "error", "type": "missing_values"}) try: query_args = {"name": data.get("name"), "owner": request.user} if "video_id" in data: query_args["video__id"] = data.get("video_id") annotation_category_db = AnnotationCategory.objects.get(**query_args) except AnnotationCategory.DoesNotExist: create_args = {"name": data.get("name"), "owner": request.user} if "color" in data: create_args["color"] = data.get("color") if "video_id" in data: try: video_db = Video.objects.get(id=data.get("video_id")) except Video.DoesNotExist: return JsonResponse({"status": "error", "type": "not_exist"}) create_args["video"] = video_db annotation_category_db = AnnotationCategory.objects.create(**create_args) return JsonResponse({"status": "ok", "entry": annotation_category_db.to_dict()}) except Exception as e: logging.error(traceback.format_exc()) return JsonResponse({"status": "error"}) class AnnoatationCategoryList(View): def get(self, request): try: if not request.user.is_authenticated: return JsonResponse({"status": "error"}) query_args = {} query_args["owner"] = request.user if "video_id" in request.GET: query_args["video__id"] = request.GET.get("video_id") query_results = AnnotationCategory.objects.filter(**query_args) entries = [] for annotation_category in query_results: entries.append(annotation_category.to_dict()) return JsonResponse({"status": "ok", "entries": entries}) except Exception as e: logging.error(traceback.format_exc()) return JsonResponse({"status": "error"})
TIBHannover/tibava-backend
backend/views/annotation_category.py
annotation_category.py
py
2,854
python
en
code
0
github-code
36
32331024727
#!/usr/bin/python3 """Contains a class named Base""" import json class Base: """Class named Base""" __nb_objects = 0 def __init__(self, id=None): """initialize Base class""" if id is None: Base.__nb_objects += 1 self.id = Base.__nb_objects else: self.id = id @staticmethod def to_json_string(list_dictionaries): """returns JSON string representation of list_dictionaries""" if not list_dictionaries or list_dictionaries is None: return "[]" return json.dumps(list_dictionaries) @staticmethod def from_json_string(json_string): """returns list of the JSON string json_string""" if not json_string or json_string is None: return [] return json.loads(json_string) @classmethod def save_to_file(cls, list_objs): """writes JSON string of list_objs to a file""" file_name = cls.__name__ + ".json" with open(file_name, "w", encoding="utf-8") as f: if list_objs is None: f.write("[]") else: f.write(cls.to_json_string([i.to_dictionary() for i in list_objs])) @classmethod def create(cls, **dictionary): """returns instance with attributes already set""" if cls.__name__ == "Rectangle": dummy = cls(1, 1) if cls.__name__ == "Square": dummy = cls(1) dummy.update(**dictionary) return dummy @classmethod def load_from_file(cls): """returns a list of instances""" file_name = cls.__name__ + ".json" ls = [] try: with open(file_name, "r", encoding="utf-8") as f: ls2 = cls.from_json_string(f.read()) for i in ls2: ls.append(cls.create(**i)) except: pass return ls
ammartica/holbertonschool-higher_level_programming
0x0C-python-almost_a_circle/models/base.py
base.py
py
1,956
python
en
code
0
github-code
36
74146205863
from flair.data import Sentence from flair.models import SequenceTagger from flair.embeddings import (DocumentPoolEmbeddings, FlairEmbeddings, StackedEmbeddings) from torch import dot, norm, squeeze from pathlib import Path import pickle from odm.nlp.tensors import PCA, plot_embeddings, normalize_tensors from odm.nlp.parse import parse_veclang class Model: modelpath = '/data/model/' def __init__(self): # Sequence Tagging Model tagger_file = self.modelpath + 'tagger.pt' if Path(tagger_file).is_file(): print('loading tagger from file') self.tagger = SequenceTagger.load_from_file(tagger_file) else: print('downloading pretrained tagger') self.tagger = SequenceTagger.load('ner-ontonotes') self.tagger.save(tagger_file) # Text Embedding Model embeddings_file = self.modelpath + 'embeddings.pickle' if Path(embeddings_file).is_file(): print('loading embedder from file') filestream = open(embeddings_file, 'rb') self.embeddings = pickle.load(filestream) else: print('downloading pretrained embedders') self.embeddings = [ # WordEmbeddings('glove'), FlairEmbeddings('multi-forward') # FlairEmbeddings('multi-backward') ] filestream = open(embeddings_file, 'wb') pickle.dump(self.embeddings, filestream) self.token_embedder = StackedEmbeddings(self.embeddings) self.doc_embedder = DocumentPoolEmbeddings(self.embeddings) def parse(self, text): sentence = Sentence(text) self.tagger.predict(sentence) self.token_embedder.embed(sentence) self.doc_embedder.embed(sentence) return sentence def mindmap(self, text): # parsing lines, arrows = parse_veclang(text) sentences = [self.parse(line) for line in lines] tensors = [s.get_embedding() for s in sentences] # tensor processing norm_tensors = normalize_tensors(tensors) flat_tensors = PCA(norm_tensors) # plot map filename = plot_embeddings(lines, flat_tensors, arrows) return f'Plotted mindmap to {filename}' def similarity(self, text): lines = text.split('//') sentences = [self.parse(line) for line in lines] vecs = [squeeze(s.embedding) for s in sentences] sim = dot(vecs[0], vecs[1])/(norm(vecs[0])*norm(vecs[1])) return f'the similarity is {sim}'
ixxie/odm
src/odm/nlp/model.py
model.py
py
2,615
python
en
code
0
github-code
36
34983429354
#!/usr/bin/env python3 # 2次元累積和 S の [x1, x2) × [y1, y2) 総和 def ac2(s, x1, x2, y1, y2): return s[x2][y2] - s[x1][y2] - s[x2][y1] + s[x1][y1] import numpy as np _, *d = open(0) n, k = map(int, _.split()) B = np.zeros((2*k, 2*k)) for e in d: *z, c = e.split() x, y = map(int, z) B[x % (2*k)][(y + k * (z == "W")) % (2*k)] += 1 B.cumsum(axis = 0) B.cumsum(axis = 1) B = np.tile(B, (2,2)) print(B) # 書きかけ
mpses/AtCoder
Contest/ABC086/d/main.py
main.py
py
441
python
en
code
0
github-code
36
13509904582
#!/usr/bin/env python # -*- coding: utf-8 -*- """Resize and add text to videos Usage example: $ python transform.py """ import random import os import shutil from moviepy.editor import * from moviepy.video.tools.subtitles import SubtitlesClip from sqlite import * class VideoTransform: def __init__(self, videos=[]): print(' ----> {} videos to transform'.format(len(videos))) for video in videos: video['clip'] = VideoFileClip(video['filepath']) self.videos = videos print(' --> {} videos converted to clips'.format(len(self.videos))) def adjustSize(self, clip,width,height): # get current dimensions and ratio clipWidth,clipHeight = clip.size ratio = clipWidth / clipHeight # resize the clip if ratio > (width/height): clip2 = clip.resize(width=width) else: clip2 = clip.resize(height=height) return clip2 def adjustSizes(self,width=1920,height=1080): for video in self.videos: video['clip'] = self.adjustSize(video['clip'],width,height) def addSubtitle(self, clip, subtitle, howLong, maxLength=15): # trim the subtitle if it's too long if len(subtitle) > maxLength: subtitle = subtitle[:maxLength] + '...' # set how long the subtitle will show howLong = min(howLong,clip.duration) subs = [((0, howLong), subtitle)] # create clip with subtitle subtitles = SubtitlesClip(subs, lambda txt: TextClip(txt, font='Arial', fontsize=72, color='white', stroke_color='black')) # merge clip and subtitles result = CompositeVideoClip([clip, subtitles.set_position(('center','bottom'))]) # return resulting clip return result def addSubtitles(self, howLong=10): print(' ----> Adding subtitles') for index, video in enumerate(self.videos): video['clip'] = self.addSubtitle(video['clip'],video['title'],howLong) print(' --> {}/{} subtitles added'.format(index+1,len(self.videos))) def addSource(self,clip,source,howLong): howLong = min(howLong,clip.duration) subs = [((0, howLong), source)] # create clip with source subtitles = SubtitlesClip(subs, lambda txt: TextClip(txt, font='Arial', fontsize=24, color='white', bg_color='black')) # merge clip and text result = CompositeVideoClip([clip, subtitles.set_position((0,0))]) # return resulting clip return result def addSources(self, howLong=10): print(' ----> Adding sources') for index, video in enumerate(self.videos): video['clip'] = self.addSource(video['clip'],video['link'],howLong) print(' --> {}/{} sources added'.format(index+1,len(self.videos))) def save(self, clip, filename, threads=1): filepath = os.path.join(os.getcwd(),filename) clip.write_videofile(filepath, codec='mpeg4', audio=True, threads=threads) return filepath if __name__ == '__main__': # get videos from DB sql = Sqlite() result = sql.run('SELECT * FROM videos WHERE duration IS NULL') videos = [ row for row in result if os.path.isfile(row['filepath']) ] # convert them to clips limit = 10 transform = VideoTransform(videos[:limit]) # resize them transform.adjustSizes() # add subtitles transform.addSubtitles() # add link to original transform.addSources() # backup the original videos # and save the updated versions for video in transform.videos: shutil.move(video['filepath'],video['filepath']+'.original') transform.save(video['clip'],video['filepath']) # update their durations and sizes on the DB for video in transform.videos: filepath = video['filepath'] duration = video['clip'].duration width,height = video['clip'].size sql.run(''' UPDATE videos SET duration = {duration}, width = {width}, height = {height} WHERE filepath = '{filepath}' '''.format( duration=duration, filepath=filepath, width=width, height=height ))
miguel-faggioni/zap-bot
transform.py
transform.py
py
4,335
python
en
code
0
github-code
36
8415334938
#!/usr/bin/python3 """This is a module for the island func """ def island_perimeter(grid): """This is a function that returns perimeter of the island: traverse the grid to find a 1 and then check all four directions """ peri = 0 xrows = grid if grid != []: ycols = grid[0] for x in range(len(xrows)): for y in range(len(ycols)): if grid[x][y] == 1: # check the left if y == 0 or grid[x][y - 1] == 0: peri += 1 # check the top if x == 0 or grid[x - 1][y] == 0: peri += 1 # check the right if y == len(ycols) - 1 or grid[x][y + 1] == 0: peri += 1 # check the bottom if x == len(xrows) - 1 or grid[x + 1][y] == 0: peri += 1 return peri
logicalperson0/alx-low_level_programming
0x1C-makefiles/5-island_perimeter.py
5-island_perimeter.py
py
918
python
en
code
0
github-code
36
5340113648
from globals import * class MainHandler(webocrat_Request): @need_registered_user def get(self): template_vals = {} self.render_simple_template('HomePage.django.html', template_vals) class HartaCainilorHandler(webocrat_Request): # @need_registered_user def get(self): template_vals = { 'login_iframe': LOGIN_IFRAME, 'BASE_URL': BASE_URL, 'lat' : '44.44', 'lng' : '26.1', 'zoom' : 14 } self.session['redirect_after_login'] = self.request.url self.render_template('HartaCainilor.django.html', template_vals) from webapp2_extras import routes app = webapp2.WSGIApplication([ routes.DomainRoute('localhost', [webapp2.Route('/hartacainilor', handler=HartaCainilorHandler, name='hartacainilor-home0'), ]), routes.DomainRoute('hartacainilor.webocrat.com', [webapp2.Route('/', handler=HartaCainilorHandler, name='hartacainilor-home'), ]), routes.DomainRoute('www.webocrat.com', [webapp2.Route('/hartacainilor', handler=HartaCainilorHandler, name='hartacainilor-home'), ]), routes.DomainRoute('www.webocrat.com', [webapp2.Route('/', handler=MainHandler, name="webocrat-home"), ]), routes.DomainRoute(BASE_URL, [webapp2.Route('/', handler=MainHandler, name="webocrat-home2"), ]), ])
webocrat/webocrat
py/main.py
main.py
py
1,451
python
en
code
1
github-code
36
36182217190
import os _basedir = os.path.abspath(os.path.dirname(__file__)) DEBUG = True ADMINS = frozenset(['volodymyr.dehtiarenko@gmail.com']) SECRET_KEY = 'This string will be replaced with a proper key in production.' SQLALCHEMY_ECHO = True SQLALCHEMY_DATABASE_URI = "mysql+pymysql://admin:12345@localhost/24servis" SQLALCHEMY_TRACK_MODIFICATIONS = False WTF_CSRF_ENABLED = True WTF_CSRF_SECRET_KEY = "somethingimpossibletoguess"
volodymyr-dehtiarenko/webservis
config.py
config.py
py
428
python
en
code
0
github-code
36
35614129449
import msgpack import redis import click import socket import pandas as pd import numpy as np import ujson as json #Extra Functions (for enrichment purpose) df_port_name = pd.read_csv('enrichments/port_name.txt',delimiter=",", names=['port_num','port_name']) df_ip_proto_name = pd.read_csv('enrichments/ip_proto_name.txt',delimiter=",", names=['proto_num','proto_name']) @click.group() def cli(): pass @click.command() def receive(): r = redis.StrictRedis(host='localhost', port=6379, db=0) p = r.pubsub() p.subscribe('patterns') try: # non-blocking # while True: # print(p.get_message()) # blocking for message in p.listen(): if isinstance(message['data'], bytes): payload = msgpack.unpackb(message['data'], encoding='utf-8') print(payload) except KeyboardInterrupt as e: print('Keyboard interrupt') def get_ip_proto_name(ip_proto_number): try: return df_ip_proto_name[df_ip_proto_name['proto_num']==ip_proto_number]['proto_name'].values[0] except: return str(ip_proto_number) def get_port_name(port_number): try: return df_port_name[df_port_name['port_num']==port_number]['port_name'].values[0]+" service port" except: return "port "+str(int(port_number)) def get_tcp_flag_name(tcp_flags_str): tcp_flags="" try: tcp_flags += ("FIN" if (tcp_flags_str.find('F') != -1) else next) except: next try: tcp_flags += ("SYN" if (tcp_flags_str.find('S')!= -1) else next) except: next try: tcp_flags += ("RST" if tcp_flags_str.find('R') != -1 else next) except: next try: tcp_flags += ("PUSH" if tcp_flags_str.find('P') != -1 else next) except: next try: tcp_flags += ("ACK" if tcp_flags_str.find('A') != -1 else next) except: next try: tcp_flags += ("URG" if tcp_flags_str.find('U') != -1 else next) except: next try: tcp_flags += ("ECE" if tcp_flags_str.find('E') != -1 else next) except: next try: tcp_flags += ("CWR" if tcp_flags_str.find('C') != -1 else next) except: next return tcp_flags def analyse(df): """ Analysis only top traffic stream :param df: :return: """ debug = True attack_case = "-1" ttl_variation_threshold = 4 result = { "reflected":False, "spoofed":False, "fragmented":False, "pattern_traffic_share":0.0, "pattern_packet_count":0, "pattern_total_megabytes":0, "start_timestamp":0, "end_timestamp":0, "dst_ports":[], #(port,share) "src_ports":[], #(port,share) "ttl_variation":[], "src_ips":[], "dst_ips":[], "packets":[] } if debug: print("\n\n\n") top_ip_dst = df['ip_dst'].value_counts().index[0] if debug: print("Top dst IP: "+ top_ip_dst) result["dst_ips"] = top_ip_dst top_ip_proto = df[df['ip_dst'] == top_ip_dst]['ip_proto'].value_counts().index[0] if debug: print("Top IP protocol: "+str(top_ip_proto)) #### # Performing a first filter based on the top_ip_dst (target IP), the source IPs canNOT be from the \16 of the # target IP, and the top IP protocol that targeted the top_ip_dst df_filtered = df[ (df['ip_dst'] == top_ip_dst) & ~df['ip_src'].str.contains(".".join(top_ip_dst.split('.')[0:2]), na=False) & ( df['ip_proto'] == top_ip_proto)] #### # Calculating the number of packets after the first filter total_packets_filtered = len(df_filtered) if debug: print("Number of packets: "+str(total_packets_filtered)) result["total_nr_packets"] = total_packets_filtered #### # For attacks in the IP protocol level attack_label = get_ip_proto_name(top_ip_proto) + "-based attack" result["transport_protocol"] = get_ip_proto_name(top_ip_proto) #### # For attacks based on TCP or UDP, which have source and destination ports if ((top_ip_proto == 6) or (top_ip_proto == 17)): if debug: print("\n####################\nREMAINING :\n####################") #### # Calculating the distribution of source ports based on the first filter percent_src_ports = df_filtered['sport'].value_counts().divide(float(total_packets_filtered) / 100) if debug: print("\nSource ports frequency") if debug: print(percent_src_ports.head()) #### # Calculating the distribution of destination ports after the first filter percent_dst_ports = df_filtered['dport'].value_counts().divide(float(total_packets_filtered) / 100) if debug: print("\nDestination ports frequency") if debug: print(percent_dst_ports.head()) ##### ## WARNING packets are filtered here again##### # Using the top 1 (source or destination) port to analyse a pattern of packets if (len(percent_src_ports) > 0) and (len(percent_dst_ports) > 0): if percent_src_ports.values[0] > percent_dst_ports.values[0]: if debug: print('Using top source port: ', percent_src_ports.keys()[0]) df_pattern = df_filtered[df_filtered['sport'] == percent_src_ports.keys()[0]] result["selected_port"] = "src_" + str(percent_src_ports.keys()[0]) else: if debug: print('Using top dest port: ', percent_dst_ports.keys()[0]) df_pattern = df_filtered[df_filtered['dport'] == percent_dst_ports.keys()[0]] result["selected_port"] = "dst_" + str(percent_dst_ports.keys()[0]) else: if debug: print('no top source/dest port') return None if debug: print("\n####################\nPATTERN "+ "\n####################") ##### # Calculating the total number of packets involved in the attack pattern_packets = len(df_pattern) result["pattern_packet_count"] = pattern_packets #WARNING Can be wrong result['raw_attack_size_megabytes'] = (df_pattern['raw_size'].sum() /1000000).item() result["pattern_total_megabytes"] = (df_pattern[df_pattern['fragments'] == 0]['ip_length'].sum() / 1000000).item() ##### # Calculating the percentage of the current pattern compared to the raw input file representativeness = float(pattern_packets) * 100 / float(total_packets_filtered) result["pattern_traffic_share"] = representativeness attack_label = 'In %.2f' % representativeness + "\n " + attack_label ##### # Checking the existence of HTTP data http_data = df_pattern['http_data'].value_counts().divide(float(pattern_packets) / 100) ##### # Checking the existence of TCP flags percent_tcp_flags = df_pattern['tcp_flag'].value_counts().divide(float(pattern_packets) / 100) ##### # Calculating the number of source IPs involved in the attack ips_involved = df_pattern['ip_src'].unique() attack_label = attack_label + "\n"+ str(len(ips_involved)) + " source IPs" result["src_ips"] = ips_involved.tolist() ##### # Calculating the number of source IPs involved in the attack result["start_timestamp"] = df_pattern['timestamp'].min().item() result["end_timestamp"] = df_pattern['timestamp'].max().item() #### # Calculating the distribution of TTL variation (variation -> number of IPs) ttl_variations = df_pattern.groupby(['ip_src'])['ip_ttl'].agg(np.ptp).value_counts().sort_index() if debug: print('TTL variation : NR of source IPs') if debug: print(ttl_variations) #use to_json result["ttl_variation"] = json.loads(ttl_variations.to_json()) #### # Calculating the distribution of IP fragments (fragmented -> percentage of packets) percent_fragments = df_pattern['fragments'].value_counts().divide(float(pattern_packets) / 100) #### # Calculating the distribution of source ports that remains percent_src_ports = df_pattern['sport'].value_counts().divide(float(pattern_packets) / 100) if debug: print("\nSource ports frequency") if debug: print(percent_src_ports.head()) #use to_json() result["src_ports"] = json.loads(percent_src_ports.to_json()) #### # Calculating the distribution of destination ports after the first filter percent_dst_ports = df_pattern['dport'].value_counts().divide(float(pattern_packets) / 100) if debug: print("\nDestination ports frequency") if debug: print(percent_dst_ports.head()) #use to_json result["dst_ports"] = json.loads(percent_dst_ports.to_json()) #### # There are 3 possibilities of attacks cases! if (percent_src_ports.values[0] == 100): if (len(percent_dst_ports) == 1): # if debug: print("\nCASE 1: 1 source port to 1 destination port") if debug else next attack_label = attack_label + "; using " + get_port_name( percent_src_ports.keys()[0]) + "; to target " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]" else: # if debug: print("\nCASE 2: 1 source port to a set of destination ports") if debug else next if (percent_dst_ports.values[0] >= 50): attack_label = attack_label + "; using " + get_port_name( percent_src_ports.keys()[0]) + "; to target a set of (" + str( len(percent_dst_ports)) + ") ports, such as " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[ 0] + "%]" + " and " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \ percent_dst_ports.values[ 1] + "%]" elif (percent_dst_ports.values[0] >= 33): attack_label = attack_label + "; using " + get_port_name( percent_src_ports.keys()[0]) + "; to target a set of (" + str( len(percent_dst_ports)) + ") ports, such as " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[ 0] + "%]" + "; " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \ percent_dst_ports.values[ 1] + "%], and " + get_port_name( percent_dst_ports.keys()[2]) + "[" + '%.2f' % percent_dst_ports.values[2] + "%]" else: attack_label = attack_label + "; using " + get_port_name( percent_src_ports.keys()[0]) + "; to target a set of (" + str( len(percent_dst_ports)) + ") ports, such as " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.2f' % percent_dst_ports.values[ 0] + "%]" + "; " + get_port_name(percent_dst_ports.keys()[1]) + "[" + '%.2f' % \ percent_dst_ports.values[ 1] + "%], and " + get_port_name( percent_dst_ports.keys()[2]) + "[" + '%.2f' % percent_dst_ports.values[2] + "%]" else: if (len(percent_src_ports) == 1): # if debug: print("\nCASE 1: 1 source port to 1 destination port") if debug else next attack_label = attack_label + "; using " + get_port_name(percent_src_ports.keys()[0]) + "[" + '%.1f' % \ percent_src_ports.values[ 0] + "%]" + "; to target " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]" else: # if debug: print("\nCASE 3: 1 source port to a set of destination ports") if debug else next if (percent_src_ports.values[0] >= 50): attack_label = attack_label + "; using a set of (" + str( len(percent_src_ports)) + ") ports, such as " + get_port_name( percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[ 0] + "%] and " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \ percent_src_ports.values[ 1] + "%]" + "; to target " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]" elif (percent_src_ports.values[0] >= 33): attack_label = attack_label + "; using a set of (" + str( len(percent_src_ports)) + ") ports, such as " + get_port_name( percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[ 0] + "%], " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \ percent_src_ports.values[ 1] + "%], and " + get_port_name( percent_src_ports.keys()[2]) + "[" + '%.2f' % percent_src_ports.values[ 2] + "%]" + "; to target " + get_port_name(percent_dst_ports.keys()[0]) + "[" + '%.1f' % \ percent_dst_ports.values[ 0] + "%]" else: attack_label = attack_label + "; using a set of (" + str( len(percent_src_ports)) + ") ports, such as " + get_port_name( percent_src_ports.keys()[0]) + "[" + '%.2f' % percent_src_ports.values[ 0] + "%], " + get_port_name(percent_src_ports.keys()[1]) + "[" + '%.2f' % \ percent_src_ports.values[ 1] + "%], " + get_port_name( percent_src_ports.keys()[2]) + "[" + '%.2f' % percent_src_ports.values[ 2] + "%]" + "; and " + get_port_name(percent_src_ports.keys()[3]) + "[" + '%.2f' % \ percent_src_ports.values[ 3] + "%]" + "; to target " + get_port_name( percent_dst_ports.keys()[0]) + "[" + '%.1f' % percent_dst_ports.values[0] + "%]" #### # Testing HTTP request if len(http_data) > 0 and ((percent_dst_ports.index[0] == 80) or (percent_dst_ports.index[0] == 443)): attack_label = attack_label + "; " + http_data.index[0] #### # Testing TCP flags if (len(percent_tcp_flags) > 0) and (percent_tcp_flags.values[0] > 50): attack_label = attack_label + "; TCP flags: " + get_tcp_flag_name( percent_tcp_flags.index[0]) + "[" + '%.1f' % percent_tcp_flags.values[0] + "%]" #### # IP fragmentation if (percent_fragments.values[0] > 0) and (percent_fragments.index[0] == 1): attack_label = attack_label + "; involving IP fragmentation" result["fragmented"] = True #### # IP spoofing (if (more than 0) src IPs had the variation of the ttl higher than a treshold) if (ttl_variations[::-1].values[0] > 0) and (ttl_variations[::-1].index[0] >= ttl_variation_threshold): result["spoofed"]=True attack_label = attack_label + "; (likely involving) spoofed IPs" else: #### # Reflection and Amplification if percent_src_ports.values[0] >= 1: result["reflected"]=True attack_label = attack_label + "; Reflection & Amplification" if debug: print("\n####################\nATTACK VECTOR LABEL:"+ "\n####################") if debug: print(attack_label) result["label"] = attack_label print(result) return result if __name__ == "__main__": cli.add_command(receive) cli()
jdcc2/ddoshackathon
packet_patterns.py
packet_patterns.py
py
17,497
python
en
code
0
github-code
36
18735221514
import scrapy from module.items import HotlineItem class HotlineSpider(scrapy.Spider): name = "hotline" allowed_domains = ["hotline.ua"] start_urls = [f"https://hotline.ua/ua/bt/holodilniki/?p={page}" for page in range(1, 4)] def parse(self, response): catalog = response.xpath('//div[contains(@class, "list-body__content")]').xpath('//div[contains(@class, "list-item ")]') for item in catalog: url = item.xpath('.//a[contains(@class, "list-item__title")]/@href').get() yield scrapy.Request( url=f"https://hotline.ua" + url, callback=self.parse_hotline ) def parse_hotline(self, response): product_name = response.xpath('.//h1[contains(@class, "title__main")]/text()').get() store_name = response.xpath('.//div[1][@class="list__item row flex"]//a[@data-eventcategory="Pages Product Prices" and @class="shop__title"]/text()').get() price = response.xpath('.//div[1][@class="list__item row flex"]//span[@data-eventcategory="Pages Product Prices"]/span[@class="price__value"]/text()').get() yield HotlineItem( store_name=store_name, product_name=product_name, price=price )
Ivan7281/Lab-Data-Scraping
Lab7/module/spiders/hotline.py
hotline.py
py
1,258
python
en
code
0
github-code
36
70307229865
import os import requests import json from requests_oauthlib import OAuth1 from dotenv import load_dotenv load_dotenv() CONSUMER_KEY = os.getenv("TWITTER_API_KEY") CONSUMER_SECRET = os.getenv("TWITTER_API_SECRET") ACCESS_TOKEN = os.getenv("TWITTER_ACCESS_TOKEN") ACCESS_TOKEN_SECRET = os.getenv("TWITTER_ACCESS_TOKEN_SECRET") API_KEY = os.getenv("WAKATIME_API_KEY") auth = OAuth1(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET) def get_wakatime_stats(): waka_url = ( f"https://wakatime.com/api/v1/users/current/status_bar/today?api_key={API_KEY}" ) response = requests.get(waka_url) if response.status_code != 200: raise Exception( f"Request failed with error {response.status_code}, {response.text}" ) stats = {} top_3_languages = {} stats["minutes_coded_today"] = response.json()["data"]["grand_total"]["text"] for language in response.json()["data"]["languages"][0:3]: top_3_languages[language["name"]] = language["text"] return stats, top_3_languages def update_coding_streak(): with open("coding_streak.txt", "r") as f: coding_streak = int(f.read().strip()) stats, top_3_languages = get_wakatime_stats() if stats["minutes_coded_today"]: coding_streak += 1 else: coding_streak = 0 with open("coding_streak.txt", "w") as f: f.write(str(coding_streak)) # If the coding streak is broken, do not tweet and end the program. The streak file will be updated to 0. if coding_streak == 0: print("Coding streak broken, not tweeting") exit() return coding_streak def format_tweet(coding_streak, minutes_coded_today, languages): day_of_streak = coding_streak tweet_text = f"Day {day_of_streak} of my coding streak: I coded {minutes_coded_today} today!\n\n#100DaysOfCode " # make the hashtags each language for language in languages.keys(): tweet_text += f"#{language} " return tweet_text def post_tweet(tweet_text): url = "https://api.twitter.com/2/tweets" headers = {"Content-Type": "application/json"} data = {"text": tweet_text} response = requests.post(url, auth=auth, data=json.dumps(data), headers=headers) if response.status_code != 201: raise Exception( f"Request failed with error {response.status_code}, {response.text}" ) print("Tweet posted successfully!", response.json()) if __name__ == "__main__": coding_streak = update_coding_streak() stats, languages = get_wakatime_stats() tweet_text = format_tweet(coding_streak, stats["minutes_coded_today"], languages) post_tweet(tweet_text)
homeGrownCheese/tweet_waka_daily
tweet_stats.py
tweet_stats.py
py
2,688
python
en
code
1
github-code
36
5102702223
"""fask_dj URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.11/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.conf.urls import url, include 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) """ from django.conf.urls import url from . import views urlpatterns = [ url(r'^tasks', views.tasks, name = 'tasks'), url(r'^task/(?P<task_id>[0-9]+)/$', views.task, name = 'task'), url(r'^task_delete/(?P<task_id>[0-9]+)/$', views.task_delete, name = 'task_delete'), url(r'^task_project/(?P<task_id>[0-9]+)/(?P<project_id>[0-9]+)/(?P<redirect_name>[a-z]+)$', views.task_project, name = 'task_project'), ]
ZompaSenior/fask
fask/src/fask_dj/task/urls.py
urls.py
py
1,085
python
en
code
0
github-code
36
6377162291
from django.db import models import uuid class apiKeys(models.Model): id = models.CharField(max_length=200, null=False, blank=False) key = models.TextField(primary_key=True, default=uuid.uuid4().hex) def __unicode__(self): return self.id class ButtonTable(models.Model): SKRANKE = 0 TELEFON = 1 RANDOM = 2 BUTTON_CHOICES= ( (SKRANKE, 'Skranke'), (TELEFON, 'Telefon'), (RANDOM, 'Random') ) sender = models.ForeignKey(apiKeys, editable=False, null=False) button = models.IntegerField(choices=BUTTON_CHOICES, default=0) date_registered = models.DateTimeField(auto_now_add=True, auto_now=False) def __unicode__(self): return str(self.button) class Meta: verbose_name_plural = 'Case registers' verbose_name = 'Registered case'
OrakeltjenestenDragvoll/nix
apps/bujumbura/models.py
models.py
py
837
python
en
code
0
github-code
36
20869182211
# coding: utf-8 """ Django settings for testproject project. For more information on this file, see https://docs.djangoproject.com/en/1.7/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.7/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os import sys BASE_DIR = os.path.dirname(os.path.dirname(__file__)) sys.path.insert(0, os.path.dirname(BASE_DIR)) # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'b2k427m)td!v8h-0@=qd-9pvvu@gd_zl-0^i@6j589uhp=egsx' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True TEMPLATE_DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( 'modeltranslation', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'testproject', 'haystack', 'parler', ) MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.middleware.locale.LocaleMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ) ROOT_URLCONF = 'testproject.urls' WSGI_APPLICATION = 'testproject.wsgi.application' # Database # https://docs.djangoproject.com/en/1.7/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'myapp.sqlite', } } # Internationalization # https://docs.djangoproject.com/en/1.7/topics/i18n/ LANGUAGE_CODE = 'en' LANGUAGES = (('en', 'English'), ('de', 'Deutsch'), ('es', 'Spanisch'), ('fr', 'Französisch'), ('cs', 'Tschechisch'), ('ru', 'Russisch'), ) TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.7/howto/static-files/ STATIC_URL = '/static/' HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'multilingual.elasticsearch_backend.ElasticsearchMultilingualSearchEngine', 'URL': 'http://127.0.0.1:9200/', 'INDEX_NAME': 'testproject', 'SILENTLY_FAIL': False, 'TIMEOUT': 30, }, } HAYSTACK_LOGGING = True LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'handlers': { 'console': { 'class': 'logging.StreamHandler', }, }, 'loggers': { 'django': { 'handlers': ['console'], 'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'), }, 'haystack': { 'handlers': ['console'], 'level': 'DEBUG' } }, } TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'APP_DIRS': True, }, ]
sbaechler/django-multilingual-search
tests/testproject/settings.py
settings.py
py
3,166
python
en
code
21
github-code
36
7551769686
from web3 import Web3, EthereumTesterProvider from etherscan import Etherscan import json class Node: def __init__(self, name, value, address, children=[]): self.name = name self.value = value self.children = children self.searched = False self.address = Web3.toChecksumAddress(address) class NodeOperations: def __init__(self, web3, etherscan): self.web3 = web3 self.etherscan = etherscan def print_tree(self, node, level=0): print(' ' * level + node.name + ": \t" + node.address) for child in node.children: self.print_tree(child, level+1) def depth_first_search(self, node, depth, current_depth=0, nodeIterator=0): if current_depth >= depth: #Escape after depth reached or exceeded return if node.searched == True: return availibleABI = True #Handler for non verified smart contracts on etherscan try: contractABI = self.etherscan.get_contract_abi(node.address) #Use Etherscan API to get the contracts ABI except: print('Problem with the ABI') availibleABI = False #unavailible ABI (contract code not verified) if availibleABI: #If contract's ABI is verified contractInstance = self.web3.eth.contract(address=node.address, abi=contractABI) #Use web3 Library to create an instantiation of the contract contractABI = json.loads(contractABI) #convert ABI to json format for i in range(len(contractABI)): #Examine all functions/methods/variables in the ABI try: if contractABI[i]['outputs'][0]['type'] == 'address': #Searching exclusively for addresses on the contract if len(contractABI[i]['inputs']) == 0: #Check function call does not require input childAddress = eval("contractInstance."+"functions."+contractABI[i]['name']+"()"+".call()") #RPC call to the contract, return the 20byte address child = Node(contractABI[i]['name'], nodeIterator, childAddress, []) #create node node.children.append(child) #Append child node #nodeIterator += 1 #print(f'Searching node...') elif len(contractABI[i]['inputs']) == 1 and contractABI[i]['inputs'][0]['type'] == 'uint256': #This is an array of addresses: print('Searching Array Node...') try: for j in range(0,10): #print(j) childAddress = eval("contractInstance."+"functions."+contractABI[i]['name']+"("+str(j)+ ")"+".call()") #RPC call to the contract, return the 20byte address child = Node(contractABI[i]['name'], nodeIterator, childAddress, []) #create node node.children.append(child) #Append child node nodeIterator += 1 #print(f'Searching node...') #NOTE: Might need to put a check in for 0x0000... etc address. except: break else: pass except: pass for child in node.children: child.name self.depth_first_search(child, depth, current_depth+1, nodeIterator) node.searched = True else: print(node.address) node.name = 'NO ABI AVAILIBLE' node.searched = True pass
DoominEth/Web3DataSandbox
ContractCompossitionNode.py
ContractCompossitionNode.py
py
3,793
python
en
code
0
github-code
36
7805399024
from Epulet import Epulet epuletek = [] def beolvas(fajlnev): fajl = open(fajlnev, "r", encoding="utf-8") fajl.readline() sorok = fajl.readlines() fajl.close() i = 0 while i < len(sorok): sor = sorok[i].strip().split("$") epulet = Epulet(sor) epuletek.append(epulet) i += 1 def epuletek_szama(): return len(epuletek) def magasabbmint(): magasabb = 0 i = 0 while i < len(epuletek): if epuletek[i].magassag * 3.280839895 > 555: magasabb += 1 i += 1 return magasabb def legoregebb_orszag(): legoregebb = 99999 oregorszag = "hiba" i = 0 while i < len(epuletek): if epuletek[i].ev < legoregebb: legoregebb = epuletek[i].ev oregorszag = epuletek[i].orszag i += 1 return oregorszag
szludora/Szlucska_202302_epuletek
epuletek.py
epuletek.py
py
854
python
hu
code
0
github-code
36
74540930982
# -*- coding: utf-8 -*- from enum import Enum class SolarTerms(Enum): the_beginning_of_spring = "the Beginning of Spring", "立春" rain_water = "Rain Water", "雨水" the_waking_of_insects = "the Waking of Insects", "惊蛰" the_spring_equinox = "the Spring Equinox", "春分" pure_brightness = "Pure Brightness", "清明" grain_rain = "Grain Rain", "谷雨" the_beginning_of_summer = "the Beginning of Summer", "立夏" lesser_fullness_of_grain = "Lesser Fullness of Grain", "小满" grain_in_beard = "Grain in Beard", "芒种" the_summer_solstice = "the Summer Solstice", "夏至" lesser_heat = "Lesser Heat", "小暑" greater_heat = "Greater Heat", "大暑" the_beginning_of_autumn = "the Beginning of Autumn", "立秋" the_end_of_heat = "the End of Heat", "处暑" white_dew = "White Dew", "白露" the_autumn_equinox = "the Autumn Equinox", "秋分" code_dew = "Cold Dew", "寒露" frost_descent = "Frost's Descent", "霜降" the_beginning_of_winter = "the Beginning of Winter", "立冬" lesser_snow = "Lesser Snow", "小雪" greater_snow = "Greater Snow", "大雪" the_winter_solstice = "the Winter Solstice", "冬至" lesser_cold = "Lesser Cold", "小寒" greater_cold = "Greater Cold", "大寒" # 计算节气用的 C 值 # 2000年的小寒、大寒、立春、雨水按照20世纪的C值来算 SOLAR_TERMS_C_NUMS = { # 节气: [20世纪值, 21世纪值] SolarTerms.the_beginning_of_spring: [4.6295, 3.87], SolarTerms.rain_water: [19.4599, 18.73], SolarTerms.the_waking_of_insects: [6.3926, 5.63], SolarTerms.the_spring_equinox: [21.4155, 20.646], SolarTerms.pure_brightness: [5.59, 4.81], SolarTerms.grain_rain: [20.888, 20.1], SolarTerms.the_beginning_of_summer: [6.318, 5.52], SolarTerms.lesser_fullness_of_grain: [21.86, 21.04], SolarTerms.grain_in_beard: [6.5, 5.678], SolarTerms.the_summer_solstice: [22.2, 21.37], SolarTerms.lesser_heat: [7.928, 7.108], SolarTerms.greater_heat: [23.65, 22.83], SolarTerms.the_beginning_of_autumn: [28.35, 7.5], SolarTerms.the_end_of_heat: [23.95, 23.13], SolarTerms.white_dew: [8.44, 7.646], SolarTerms.the_autumn_equinox: [23.822, 23.042], SolarTerms.code_dew: [9.098, 8.318], SolarTerms.frost_descent: [24.218, 23.438], SolarTerms.the_beginning_of_winter: [8.218, 7.438], SolarTerms.lesser_snow: [23.08, 22.36], SolarTerms.greater_snow: [7.9, 7.18], SolarTerms.the_winter_solstice: [22.6, 21.94], SolarTerms.lesser_cold: [6.11, 5.4055], SolarTerms.greater_cold: [20.84, 20.12], } # 月份和节气对应关系 SOLAR_TERMS_MONTH = { 1: [SolarTerms.lesser_cold, SolarTerms.greater_cold], 2: [SolarTerms.the_beginning_of_spring, SolarTerms.rain_water], 3: [SolarTerms.the_waking_of_insects, SolarTerms.the_spring_equinox], 4: [SolarTerms.pure_brightness, SolarTerms.grain_rain], 5: [SolarTerms.the_beginning_of_summer, SolarTerms.lesser_fullness_of_grain], 6: [SolarTerms.grain_in_beard, SolarTerms.the_summer_solstice], 7: [SolarTerms.lesser_heat, SolarTerms.greater_heat], 8: [SolarTerms.the_beginning_of_autumn, SolarTerms.the_end_of_heat], 9: [SolarTerms.white_dew, SolarTerms.the_autumn_equinox], 10: [SolarTerms.code_dew, SolarTerms.frost_descent], 11: [SolarTerms.the_beginning_of_winter, SolarTerms.lesser_snow], 12: [SolarTerms.greater_snow, SolarTerms.the_winter_solstice], } # 有些节气使用公式计算计算的不够准确,需要进行偏移 SOLAR_TERMS_DELTA = { (2026, SolarTerms.rain_water): -1, (2084, SolarTerms.the_spring_equinox): 1, (1911, SolarTerms.the_beginning_of_summer): 1, (2008, SolarTerms.lesser_fullness_of_grain): 1, (1902, SolarTerms.grain_in_beard): 1, (1928, SolarTerms.the_summer_solstice): 1, (1925, SolarTerms.lesser_heat): 1, (2016, SolarTerms.lesser_heat): 1, (1922, SolarTerms.greater_heat): 1, (2002, SolarTerms.the_beginning_of_autumn): 1, (1927, SolarTerms.white_dew): 1, (1942, SolarTerms.the_autumn_equinox): 1, (2089, SolarTerms.frost_descent): 1, (2089, SolarTerms.the_beginning_of_winter): 1, (1978, SolarTerms.lesser_snow): 1, (1954, SolarTerms.greater_snow): 1, (1918, SolarTerms.the_winter_solstice): -1, (2021, SolarTerms.the_winter_solstice): -1, (1982, SolarTerms.lesser_cold): 1, (2019, SolarTerms.lesser_cold): -1, (2000, SolarTerms.greater_cold): 1, (2082, SolarTerms.greater_cold): 1, }
LKI/chinese-calendar
chinese_calendar/solar_terms.py
solar_terms.py
py
4,541
python
en
code
866
github-code
36
17299275140
from django.shortcuts import render, get_object_or_404 from .models import Post, Comment from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger from .forms import CommentForm from django.views.decorators.http import require_POST from taggit.models import Tag """ This is the Count aggregation function of the Django ORM. This function will allow you to perform aggregated counts of tags. django.db.models includes the following aggregation functions: • Avg: The mean value • Max: The maximum value • Min: The minimum value • Count: The total number of objects """ from django.db.models import Count from itertools import chain # Define the number of elements in one page page_elements_count = 6 # Define number of similar posts similar_posts_count = 3 # Create your views here. def blog_list(request, tag_slug=None): post_list = Post.published.all() tag = None if tag_slug: tag = get_object_or_404(Tag, slug=tag_slug) post_list = post_list.filter(tags__in=[tag]) posts_count = post_list.count() # Pagination with page_elements_count per page paginator = Paginator(post_list, page_elements_count) # f the page parameter is not in the GET parameters of the request, we use # the default value 1 to load the first page of results. page_number = request.GET.get('page', 1) # Try get the requested page try: posts = paginator.page(page_number) # If the requests page is out of range, retrun the last page except EmptyPage: # If page_number is out of range deliver last page of results posts = paginator.page(paginator.num_pages) # If the requests page is not an integer, return the first page except PageNotAnInteger: posts = paginator.page(1) return render( request, 'blog/blog_home.html', { 'posts': posts, 'posts_count': posts_count, 'tag': tag, } ) def blog_post(request, post_slug): post = get_object_or_404( Post, slug=post_slug, status=Post.Status.PUBLISHED ) # List of active comments for this post comments = post.comments.filter(active=True) if request.method == 'GET': # Form for users to comment form = CommentForm() else: # Define a comment variable with the initial value None. This variable will # be used to store the comment object when it gets created. comment = None form = CommentForm(data=request.POST) if form.is_valid(): comment = form.save(commit=False) # Assign the post attribute of the comment to the current post comment.post = post # Save the comment to the database comment.save() # List of similar posts # retrieve a Python list of IDs for the tags of the current post. The # values_list() QuerySet returns tuples with the values for the given # fields. We pass flat=True to it to get single values such as # [1, 2, 3, ...] instead of one-tuples such as [(1,), (2,), (3,) ...] post_tags_ids = post.tags.values_list('id', flat=True) # We get all posts that contain any of these tags, excluding the current # post itself. similar_posts = Post.published.filter(tags__in=post_tags_ids).exclude(id=post.id) # use the Count aggregation function to generate a calculated # field (same_tags) that contains the number of tags shared with all the # tags queried. # We order the result by the number of shared tags (descending order) and # by publish to display recent posts first for the posts with the same # number of shared tags. We slice the result to retrieve only the first # three posts. similar_posts = similar_posts.annotate(same_tags=Count('tags'))\ .order_by('-same_tags', '-created')[:similar_posts_count] # Fill similar posts with normal posts; if the similar posts are less than # the required similar_posts_count if len(similar_posts) < similar_posts_count: extra_posts_count = similar_posts_count - len(similar_posts) extra_posts = Post.published.order_by('-created').exclude(id=post.id)\ .exclude(id__in=similar_posts)[:extra_posts_count] similar_posts = list(chain(similar_posts, extra_posts)) return render( request, 'blog/blog_post.html', { 'post': post, 'form': form, 'comments': comments, 'similar_posts': similar_posts, } )
m-abdelgawad/automagic-developer-django-postgres-docker-compose-stack
automagic-website/blog/views.py
views.py
py
4,620
python
en
code
0
github-code
36
12185429190
# Creating a regression line - aka line of best fit # Y = mx + b from statistics import mean import numpy as np import matplotlib.pyplot as plt from matplotlib import style style.use('fivethirtyeight') # defined as numpy arrays xs = np.array([1,2,3,4,5,6], dtype=np.float64) ys = np.array([5,4,6,5,6,7], dtype=np.float64) def best_fit_slope_and_intercept(xs,ys): m = (((mean(xs) * mean(ys)) - mean(xs*ys)) / ( (mean(xs) * mean(xs)) - mean(xs**2) ) ) b = mean(ys) - m*mean(xs) return m,b; m,b = best_fit_slope_and_intercept(xs,ys) #Creating line via for loop regression_line = [(m*x)+b for x in xs] #print(m,b) predict_x = 8 predict_y = (m*predict_x + b) #Create plots plt.scatter(xs,ys) plt.scatter(predict_x,predict_y) plt.plot(xs, regression_line) plt.show()
Wcdunn3/pythonProjects
MachineLearning/MlLesson9LineFit.py
MlLesson9LineFit.py
py
790
python
en
code
0
github-code
36
15836281042
with open("day3/input.txt") as f: s = 0 for l in f: comp1, comp2 = l[:int(len(l)/2)], l[int(len(l)/2):] common = list(set(comp1).intersection(set(comp2))) val = ord(common[0]) - 38 if common[0].isupper() else ord(common[0]) - 96 s += val print(s) with open("day3/input.txt") as f: s = 0 group = [] for l in f: l = l.replace("\n", "") group.append(l) if len(group) == 3: common = list(set.intersection(set(group[0]), set(group[1]), set(group[2]))) val = ord(common[0]) - 38 if common[0].isupper() else ord(common[0]) - 96 s += val group = [] print(s)
jaroddurkin/adventofcode2022
day3/main.py
main.py
py
684
python
en
code
0
github-code
36
19866269667
import numpy as np #=========================# # refine the distribution # #=========================# def refine_distribution(old_mugrid, old_mumid, old_dist, target_resolution): # store moments for comparison old_nmu = len(old_mumid) old_edens = np.sum(old_dist , axis=(1,2,3)) old_flux = np.sum(old_dist * old_mumid , axis=(1,2,3)) old_press = np.sum(old_dist * old_mumid**2, axis=(1,2,3)) # initially set to old values in case not refining new_mugrid = old_mugrid new_mumid = old_mumid new_dist = old_dist new_nmu = old_nmu nref = int(np.log2(target_resolution / old_nmu)) for iref in range(nref): if(iref>0): old_dist = new_dist old_mugrid = new_mugrid # get the new mugrid old_nmu = len(old_mugrid)-1 old_dmu = np.array([old_mugrid[i+1]-old_mugrid[i] for i in range(old_nmu)]) new_mugrid = [] for i in range(len(old_mugrid)-1): new_mugrid.append(old_mugrid[i]) new_mugrid.append(0.5*(old_mugrid[i]+old_mugrid[i+1])) new_mugrid.append(old_mugrid[-1]) new_nmu = len(new_mugrid)-1 new_dmu = np.array([new_mugrid[i+1]-new_mugrid[i] for i in range(new_nmu)]) # dist between cell faces print("\tIncreasing from nmu=",old_nmu,"to nmu=",new_nmu) # get properties & derivatives of the old distribution function nr = old_dist.shape[0] ns = old_dist.shape[1] ne = old_dist.shape[2] new_dist = np.zeros((nr,ns,ne,new_nmu)) for i in range(old_nmu): new_dist[:,:,:,2*i+0] = old_dist[:,:,:,i]/2. new_dist[:,:,:,2*i+1] = old_dist[:,:,:,i]/2. # new grid structure # if nref > 0: new_mumid = np.array([0.5*(new_mugrid[i]+new_mugrid[i+1]) for i in range(new_nmu)]) # calculate error in moments # new_edens = np.sum(new_dist , axis=(1,2,3)) new_flux = np.sum(new_dist * new_mumid , axis=(1,2,3)) new_press = np.sum(new_dist * new_mumid**2, axis=(1,2,3)) print(" DO Max relative error in net energy density:", np.max(np.abs((new_edens-old_edens)/old_edens))) print(" DO Max relative error in net flux:", np.max(np.abs((new_flux-old_flux)/old_edens))) print(" DO Max relative error in net pressure:", np.max(np.abs((new_press-old_press)/old_edens))) return new_mugrid, new_mumid, new_dist
srichers/neutrino_linear_stability
discrete_ordinates.py
discrete_ordinates.py
py
2,433
python
en
code
3
github-code
36
25300892806
import colorsys import struct import math from pyatem.hexdump import hexdump class FieldBase: def _get_string(self, raw): return raw.split(b'\x00')[0].decode() def make_packet(self): header = struct.pack('!H2x 4s', len(self.raw) + 8, self.__class__.CODE.encode()) return header + self.raw class FirmwareVersionField(FieldBase): """ Data from the `_ver` field. This stores the major/minor firmware version numbers ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Major version 2 2 u16 Minor version ====== ==== ====== =========== After parsing: :ivar major: Major firmware version :ivar minor: Minor firmware version """ CODE = "_ver" def __init__(self, raw): """ :param raw: """ self.raw = raw self.major, self.minor = struct.unpack('>HH', raw) self.version = "{}.{}".format(self.major, self.minor) def __repr__(self): return '<firmware-version {}>'.format(self.version) class TimeField(FieldBase): """ Data from the `Time` field. This contains the value of the internal clock of the hardware. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Hours 1 1 u8 Minutes 2 1 u8 Seconds 3 1 u8 Frames 4 1 u8 Is dropframe 5 3 ? unknown ====== ==== ====== =========== After parsing: :ivar hours: Timecode hour field :ivar minutes: Timecode minute field :ivar seconds: Timecode seconds field :ivar frames: Timecode frames field :ivar dropframe: Is dropframe """ CODE = "Time" def __init__(self, raw): self.raw = raw self.hours, self.minutes, self.seconds, self.frames, self.dropframe = struct.unpack('>BBBB?3x', raw) def total_seconds(self): return self.seconds + (60 * self.minutes) + (60 * 60 * self.hours) def __repr__(self): return '<time {}>'.format(f'{self.hours}:{self.minutes}:{self.seconds}:{self.frames}') class TimeConfigField(FieldBase): """ Data from the `TCCc` field. This contains the freerun/time of day setting for the timecode mode. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Mode [0=freerun, 1=time-of-day] 1 3 ? unknown ====== ==== ====== =========== After parsing: :ivar mode: Timecode mode """ CODE = "TCCc" def __init__(self, raw): self.raw = raw self.mode = struct.unpack('>Bxxx', raw) def __repr__(self): return '<time-config mode={}>'.format(self.mode) class ProductNameField(FieldBase): """ Data from the `_pin` field. This stores the product name of the mixer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 44 char[] Product name ====== ==== ====== =========== After parsing: :ivar name: User friendly product name """ CODE = "_pin" def __init__(self, raw): self.raw = raw self.name = self._get_string(raw) def __repr__(self): return '<product-name {}>'.format(self.name) class MixerEffectConfigField(FieldBase): """ Data from the `_MeC` field. This stores basic info about the M/E units. The mixer will send multiple fields, one for each M/E unit. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 Number of keyers on this M/E 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: 0-based M/E index :ivar keyers: Number of upstream keyers on this M/E """ CODE = "_MeC" def __init__(self, raw): self.raw = raw self.index, self.keyers = struct.unpack('>2B2x', raw) def __repr__(self): return '<mixer-effect-config m/e {}: keyers={}>'.format(self.index, self.keyers) class MediaplayerSlotsField(FieldBase): """ Data from the `_mpl` field. This stores basic info about the mediaplayer slots. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Number of still slots 1 1 u8 Number of clip slots 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar stills: Number of still slots :ivar clips: Number of clip slots """ CODE = "_mpl" def __init__(self, raw): self.raw = raw self.stills, self.clips = struct.unpack('>2B2x', raw) def __repr__(self): return '<mediaplayer-slots: stills={} clips={}>'.format(self.stills, self.clips) class MediaplayerSelectedField(FieldBase): """ Data from the `MPCE` field. This defines what media from the media pool is loaded in a specific media player. There is one MPCE field per mediaplayer in the hardware. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Mediaplayer index, 0-indexed 1 1 u8 Source type, 1=still, 2=clip 2 1 u8 Source index, 0-indexed 3 1 ? unknown ====== ==== ====== =========== After parsing: :ivar index: Mediaplayer index :ivar source_type: 1 for still, 2 for clip :ivar slot: Source index """ CODE = "MPCE" def __init__(self, raw): self.raw = raw self.index, self.source_type, self.slot = struct.unpack('>BBBx', raw) def __repr__(self): return '<mediaplayer-selected: index={} type={} slot={}>'.format(self.index, self.source_type, self.slot) class VideoModeField(FieldBase): """ Data from the `VidM` field. This sets the video standard the mixer operates on internally. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Video mode 1 3 ? unknown ====== ==== ====== =========== The `Video mode` is an enum of these values: === ========== Key Video mode === ========== 0 NTSC (525i59.94) 1 PAL (625i50) 2 NTSC widescreen (525i59.94) 3 PAL widescreen (625i50) 4 720p50 5 720p59.94 6 1080i50 7 1080i59.94 8 1080p23.98 9 1080p24 10 1080p25 11 1080p29.97 12 1080p50 13 1080p59.94 14 4k23.98 15 4k24 16 4k25 17 4k29.97 18 4k50 19 4k59.94 20 8k23.98 21 8k24 22 8k25 23 8k29.97 24 8k50 25 8k59.94 26 1080p30 27 1080p60 === ========== After parsing: :ivar mode: mode number :ivar resolution: vertical resolution of the mode :ivar interlaced: the current mode is interlaced :ivar rate: refresh rate of the mode """ CODE = "VidM" def __init__(self, raw): self.raw = raw self.mode, = struct.unpack('>1B3x', raw) # Resolution, Interlaced, Rate, Widescreen modes = { 0: (525, True, 59.94, False), 1: (625, True, 50, False), 2: (525, True, 59.94, True), 3: (625, True, 50, True), 4: (720, False, 50, True), 5: (720, False, 59.94, True), 6: (1080, True, 50, True), 7: (1080, True, 59.94, True), 8: (1080, False, 23.98, True), 9: (1080, False, 24, True), 10: (1080, False, 25, True), 11: (1080, False, 29.97, True), 12: (1080, False, 50, True), 13: (1080, False, 59.94, True), 14: (2160, False, 23.98, True), 15: (2160, False, 24, True), 16: (2160, False, 25, True), 17: (2160, False, 29.97, True), 18: (2160, False, 50, True), 19: (2160, False, 59.94, True), 20: (4320, False, 23.98, True), 21: (4320, False, 24, True), 22: (4320, False, 25, True), 23: (4320, False, 29.97, True), 24: (4320, False, 50, True), 25: (4320, False, 59.94, True), 26: (1080, False, 30, True), 27: (1080, False, 60, True), } if self.mode in modes: self.resolution = modes[self.mode][0] self.interlaced = modes[self.mode][1] self.rate = modes[self.mode][2] self.widescreen = modes[self.mode][3] def get_label(self): if self.resolution is None: return 'unknown [{}]'.format(self.mode) pi = 'p' if self.interlaced: pi = 'i' aspect = '' if self.resolution < 720: if self.widescreen: aspect = ' 16:9' else: aspect = ' 4:3' return '{}{}{}{}'.format(self.resolution, pi, self.rate, aspect) def get_pixels(self): w, h = self.get_resolution() return w * h def get_resolution(self): lut = { 525: (720, 480), 625: (720, 576), 720: (1280, 720), 1080: (1920, 1080), 2160: (3840, 2160), 4320: (7680, 4320), } return lut[self.resolution] def __repr__(self): return '<video-mode: mode={}: {}>'.format(self.mode, self.get_label()) class VideoModeCapabilityField(FieldBase): """ Data from the `_VMC` field. This describes all the video modes supported by the hardware and the associated multiview and downconvert modes. The first 2 bytes is the number of modes supported, then there's a 13 byte block that's repeated for every mode that has the mode number, the possible multiview modes in this mode and the possible downconvert modes. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Number of video modes 2 2 ? padding 4 1 u8 Video mode N 5 3 ? padding 8 4 u32 Multiview modes bitfield 12 4 u32 Downconvert modes bitfield 13 1 bool Requires reconfiguration ====== ==== ====== =========== The `Video mode` is an enum of these values: === ========== Key Video mode === ========== 0 NTSC (525i59.94) 1 PAL (625i50) 2 NTSC widescreen (525i59.94) 3 PAL widescreen (625i50) 4 720p50 5 720p59.94 6 1080i50 7 1080i59.94 8 1080p23.98 9 1080p24 10 1080p25 11 1080p29.97 12 1080p50 13 1080p59.94 14 4k23.98 15 4k24 16 4k25 17 4k29.97 18 4k50 19 4k59.94 20 8k23.98 21 8k24 22 8k25 23 8k29.97 24 8k50 25 8k59.94 26 1080p30 27 1080p60 === ========== The multiview and downconvert bitfields are the same values as the resultion numbers but the key is the bit instead. After parsing: :ivar mode: mode number :ivar resolution: vertical resolution of the mode :ivar interlaced: the current mode is interlaced :ivar rate: refresh rate of the mode """ CODE = "_VMC" def __init__(self, raw): self.raw = raw count, = struct.unpack_from('>H', raw, 0) self.modes = [] for i in range(0, count): vidm, multiview, downscale, reconfig = struct.unpack_from('>B3x I I ?', raw, 4 + (i * 13)) self.modes.append({ 'modenum': vidm, 'mode': self._int_to_mode(vidm), 'multiview': self._bitfield_to_modes(multiview), 'downscale': self._bitfield_to_modes(downscale), 'reconfigure': reconfig, }) def _bitfield_to_modes(self, bitfield): result = [] for i in range(0, 32): if bitfield & (2 ** i): result.append(self._int_to_mode(i)) return result def _int_to_mode(self, mode): return VideoModeField(struct.pack('>1B3x', mode)) def __repr__(self): modenames = [] for mode in self.modes: modenames.append(mode['mode'].get_label()) lst = ' '.join(modenames) return '<video-mode-capability: {}>'.format(lst) class InputPropertiesField(FieldBase): """ Data from the `InPr` field. This stores information about all the internal and external inputs. The mixer will send multiple fields, one for each input ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Source index 2 20 char[] Long name 22 4 char[] Short name for button 26 1 u8 Source category 0=input 1=output 27 1 u8 ? bitfield 28 1 u8 same as byte 26 29 1 u8 port 30 1 u8 same as byte 26 31 1 u8 same as byte 29 32 1 u8 port type 33 1 u8 bitfield 34 1 u8 bitfield 35 1 u8 direction ====== ==== ====== =========== ===== ========= value port type ===== ========= 0 external 1 black 2 color bars 3 color generator 4 media player 5 media player key 6 supersource 7 passthrough 128 M/E output 129 AUX output 131 Multiview output, or a dedicated status window (audio, recording, streaming) ===== ========= ===== =============== value available ports ===== =============== 0 SDI 1 HDMI 2 Component 3 Composite 4 S/Video ===== =============== ===== ============= value selected port ===== ============= 0 internal 1 SDI 2 HDMI 3 Composite 4 Component 5 S/Video ===== ============= After parsing: :ivar index: Source index :ivar name: Long name :ivar short_name: Short name for button :ivar port_type: Integer describing the port type :ivar available_aux: Source can be routed to AUX :ivar available_multiview: Source can be routed to multiview :ivar available_supersource_art: Source can be routed to supersource :ivar available_supersource_box: Source can be routed to supersource :ivar available_key_source: Source can be used as keyer key source :ivar available_aux1: Source can be sent to AUX1 (Extreme only) :ivar available_aux2: Source can be sent to AUX2 (Extreme only) :ivar available_me1: Source can be routed to M/E 1 :ivar available_me2: Source can be routed to M/E 2 """ PORT_EXTERNAL = 0 PORT_BLACK = 1 PORT_BARS = 2 PORT_COLOR = 3 PORT_MEDIAPLAYER = 4 PORT_MEDIAPLAYER_KEY = 5 PORT_SUPERSOURCE = 6 PORT_PASSTHROUGH = 7 PORT_ME_OUTPUT = 128 PORT_AUX_OUTPUT = 129 PORT_KEY_MASK = 130 PORT_MULTIVIEW_OUTPUT = 131 CODE = "InPr" def __init__(self, raw): self.raw = raw fields = struct.unpack('>H 20s 4s 10B', raw) self.index = fields[0] self.name = self._get_string(fields[1]) self.short_name = self._get_string(fields[2]) self.source_category = fields[3] self.port_type = fields[9] self.source_ports = fields[6] self.available_aux = fields[11] & (1 << 0) != 0 self.available_multiview = fields[11] & (1 << 1) != 0 self.available_supersource_art = fields[11] & (1 << 2) != 0 self.available_supersource_box = fields[11] & (1 << 3) != 0 self.available_key_source = fields[11] & (1 << 4) != 0 self.available_aux1 = fields[11] & (1 << 5) != 0 self.available_aux2 = fields[11] & (1 << 6) != 0 self.available_me1 = fields[12] & (1 << 0) != 0 self.available_me2 = fields[12] & (1 << 1) != 0 def __repr__(self): return '<input-properties: index={} name={} button={}>'.format(self.index, self.name, self.short_name) class ProgramBusInputField(FieldBase): """ Data from the `PrgI` field. This represents the active channel on the program bus of the specific M/E unit. The mixer will send a field for every M/E unit in the mixer. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 ? unknown 2 2 u16 Source index ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar source: Input source index, refers to an InputPropertiesField index """ CODE = "PrgI" def __init__(self, raw): self.raw = raw self.index, self.source = struct.unpack('>BxH', raw) def __repr__(self): return '<program-bus-input: me={} source={}>'.format(self.index, self.source) class PreviewBusInputField(FieldBase): """ Data from the `PrvI` field. This represents the active channel on the preview bus of the specific M/E unit. The mixer will send a field for every M/E unit in the mixer. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 ? unknown 2 2 u16 Source index 4 1 u8 1 if preview is mixed in program during a transition 5 3 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar source: Input source index, refers to an InputPropertiesField index :ivar in_program: Preview source is mixed into progam """ CODE = "PrvI" def __init__(self, raw): self.raw = raw self.index, self.source, in_program = struct.unpack('>B x H B 3x', raw) self.in_program = in_program == 1 def __repr__(self): in_program = '' if self.in_program: in_program = ' in-program' return '<preview-bus-input: me={} source={}{}>'.format(self.index, self.source, in_program) class TransitionSettingsField(FieldBase): """ Data from the `TrSS` field. This stores the config of the "Next transition" and "Transition style" blocks on the control panels. The mixer will send a field for every M/E unit in the mixer. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 Transition style 2 1 u8 Next transition layers 3 1 u8 Next transition style 4 1 u8 Next transition next transition layers ====== ==== ====== =========== There are two sets of style/layer settings. The first set is the active transition settings. The second one will store the transitions settings if you change any of them while a transition is active. These settings will be applied as soon as the transition ends. This is signified by blinking transition settings buttons in the official control panels. After parsing: :ivar index: M/E index in the mixer :ivar style: Active transition style :ivar style_next: Transition style for next transition :ivar next_transition_bkgd: Next transition will affect the background layer :ivar next_transition_key1: Next transition will affect the upstream key 1 layer :ivar next_transition_key2: Next transition will affect the upstream key 2 layer :ivar next_transition_key3: Next transition will affect the upstream key 3 layer :ivar next_transition_key4: Next transition will affect the upstream key 4 layer :ivar next_transition_bkgd_next: Next transition (after current) will affect the background layer :ivar next_transition_key1_next: Next transition (after current) will affect the upstream key 1 layer :ivar next_transition_key2_next: Next transition (after current) will affect the upstream key 2 layer :ivar next_transition_key3_next: Next transition (after current) will affect the upstream key 3 layer :ivar next_transition_key4_next: Next transition (after current) will affect the upstream key 4 layer """ STYLE_MIX = 0 STYLE_DIP = 1 STYLE_WIPE = 2 STYLE_DVE = 3 STYLE_STING = 4 CODE = "TrSS" def __init__(self, raw): self.raw = raw self.index, self.style, nt, self.style_next, ntn = struct.unpack('>B 2B 2B 3x', raw) self.next_transition_bkgd = nt & (1 << 0) != 0 self.next_transition_key1 = nt & (1 << 1) != 0 self.next_transition_key2 = nt & (1 << 2) != 0 self.next_transition_key3 = nt & (1 << 3) != 0 self.next_transition_key4 = nt & (1 << 4) != 0 self.next_transition_bkgd_next = ntn & (1 << 0) != 0 self.next_transition_key1_next = ntn & (1 << 1) != 0 self.next_transition_key2_next = ntn & (1 << 2) != 0 self.next_transition_key3_next = ntn & (1 << 3) != 0 self.next_transition_key4_next = ntn & (1 << 4) != 0 def __repr__(self): return '<transition-settings: me={} style={}>'.format(self.index, self.style) class TransitionPreviewField(FieldBase): """ Data from the `TsPr` field. This represents the state of the "PREV TRANS" button on the mixer. The mixer will send a field for every M/E unit in the mixer. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 bool Enabled 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar enabled: True if the transition preview is enabled """ CODE = "TsPr" def __init__(self, raw): self.raw = raw self.index, self.enabled = struct.unpack('>B ? 2x', raw) def __repr__(self): return '<transition-preview: me={} enabled={}>'.format(self.index, self.enabled) class TransitionPositionField(FieldBase): """ Data from the `TrPs` field. This represents the state of the transition T-handle position The mixer will send a field for every M/E unit in the mixer. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 bool In transition 2 1 u8 Frames remaining 3 1 ? unknown 4 2 u16 Position 6 1 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar in_transition: True if the transition is active :ivar frames_remaining: Number of frames left to complete the transition on auto :ivar position: Position of the transition, 0-9999 """ CODE = "TrPs" def __init__(self, raw): self.raw = raw self.index, self.in_transition, self.frames_remaining, position = struct.unpack('>B ? B x H 2x', raw) self.position = position def __repr__(self): return '<transition-position: me={} frames-remaining={} position={:02f}>'.format(self.index, self.frames_remaining, self.position) class TallyIndexField(FieldBase): """ Data from the `TlIn`. This is the status of the tally light for every input in order of index number. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Total of tally lights n 1 u8 Bitfield, bit0=PROGRAM, bit1=PREVIEW, repeated for every tally light ====== ==== ====== =========== After parsing: :ivar num: number of tally lights :ivar tally: List of tally values, every tally light is represented as a tuple with 2 booleans for PROGRAM and PREVIEW """ CODE = "TlIn" def __init__(self, raw): self.raw = raw offset = 0 self.num, = struct.unpack_from('>H', raw, offset) self.tally = [] offset += 2 for i in range(0, self.num): tally, = struct.unpack_from('>B', raw, offset) self.tally.append((tally & 1 != 0, tally & 2 != 0)) offset += 1 def __repr__(self): return '<tally-index: num={}, val={}>'.format(self.num, self.tally) class TallySourceField(FieldBase): """ Data from the `TlSr`. This is the status of the tally light for every input, but indexed on source index ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Total of tally lights n 2 u16 Source index for this tally light n+2 1 u8 Bitfield, bit0=PROGRAM, bit1=PREVIEW ====== ==== ====== =========== After parsing: :ivar num: number of tally lights :ivar tally: Dict of tally lights, every tally light is represented as a tuple with 2 booleans for PROGRAM and PREVIEW """ CODE = "TlSr" def __init__(self, raw): self.raw = raw offset = 0 self.num, = struct.unpack_from('>H', raw, offset) self.tally = {} offset += 2 for i in range(0, self.num): source, tally, = struct.unpack_from('>HB', raw, offset) self.tally[source] = (tally & 1 != 0, tally & 2 != 0) offset += 3 def __repr__(self): return '<tally-source: num={}, val={}>'.format(self.num, self.tally) class KeyOnAirField(FieldBase): """ Data from the `KeOn`. This is the on-air state of the upstream keyers ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 Keyer index 2 1 bool On-air 3 1 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar keyer: Upstream keyer number :ivar enabled: Wether the keyer is on-air """ CODE = "KeOn" def __init__(self, raw): self.raw = raw self.index, self.keyer, self.enabled = struct.unpack('>BB?x', raw) def __repr__(self): return '<key-on-air: me={}, keyer={}, enabled={}>'.format(self.index, self.keyer, self.enabled) class ColorGeneratorField(FieldBase): """ Data from the `ColV`. This is color set in the color generators of the mixer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Color generator index 1 1 ? unknown 2 2 u16 Hue [0-3599] 4 2 u16 Saturation [0-1000] 6 2 u16 Luma [0-1000] ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar keyer: Upstream keyer number :ivar enabled: Wether the keyer is on-air """ CODE = "ColV" def __init__(self, raw): self.raw = raw self.index, self.hue, self.saturation, self.luma = struct.unpack('>Bx 3H', raw) self.hue = self.hue / 10.0 self.saturation = self.saturation / 1000.0 self.luma = self.luma / 1000.0 def get_rgb(self): return colorsys.hls_to_rgb(self.hue / 360.0, self.luma, self.saturation) def __repr__(self): return '<color-generator: index={}, hue={} saturation={} luma={}>'.format(self.index, self.hue, self.saturation, self.luma) class AuxOutputSourceField(FieldBase): """ Data from the `AuxS`. The routing for the AUX outputs of the hardware. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 AUX output index 1 1 ? unknown 2 2 u16 Source index ====== ==== ====== =========== After parsing: :ivar index: AUX index :ivar rate: Source index """ CODE = "AuxS" def __init__(self, raw): self.raw = raw self.index, self.source = struct.unpack('>BxH', raw) def __repr__(self): return '<aux-output-source: aux={}, source={}>'.format(self.index, self.source) class FadeToBlackStateField(FieldBase): """ Data from the `FtbS`. This contains the information about the fade-to-black transition. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 M/E index 1 1 bool Fade to black done 2 1 bool Fade to black is in transition 3 1 u8 Frames remaining in transition ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar done: Fade to black is completely done (blinking button state in the control panel) :ivar transitioning: Fade to black is fading, (Solid red in control panel) :ivar frames_remaining: Frames remaining in the transition """ CODE = "FtbS" def __init__(self, raw): self.raw = raw self.index, self.done, self.transitioning, self.frames_remaining = struct.unpack('>B??B', raw) def __repr__(self): return '<fade-to-black-state: me={}, done={}, transitioning={}, frames-remaining={}>'.format(self.index, self.done, self.transitioning, self.frames_remaining) class MediaplayerFileInfoField(FieldBase): """ Data from the `MPfe`. This is the metadata about a single frame slot in the mediaplayer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 type 1 1 ? unknown 2 2 u16 index 4 1 bool is used 5 16 char[] hash 21 2 ? unknown 23 ? string name of the slot, first byte is number of characters ====== ==== ====== =========== After parsing: :ivar index: Slot index :ivar type: Slot type, 0=still :ivar is_used: Slot contains data :ivar hash: 16-byte md5 hash of the slot data :ivar name: Name of the content in the slot """ CODE = "MPfe" def __init__(self, raw): self.raw = raw namelen = max(0, len(raw) - 23) self.type, self.index, self.is_used, self.hash, self.name = struct.unpack('>Bx H ? 16s 2x {}p'.format(namelen), raw) def __repr__(self): return '<mediaplayer-file-info: type={} index={} used={} name={}>'.format(self.type, self.index, self.is_used, self.name) class TopologyField(FieldBase): """ Data from the `_top` field. This describes the internal video routing topology. =================== ========= ======= ====== spec Atem Mini 1M/E 4k TVS HD =================== ========= ======= ====== M/E units 1 1 1 upstream keyers 1 1 1 downstream keyers 1 2 2 dve 1 1 1 stinger 0 1 0 supersources 0 0 0 multiview 0 1 1 rs485 0 1 1 =================== ========= ======= ====== ====== ==== ====== ========= ========= ======= ======= ====== =========== Offset Size Type Atem Mini Mini Pro 1M/E 4k Prod 4k TVS HD Description ====== ==== ====== ========= ========= ======= ======= ====== =========== 0 1 u8 1 1 1 1 1 Number of M/E units 1 1 u8 14 15 31 24 24 Sources 2 1 u8 1 1 2 2 2 Downstream keyers 3 1 u8 1 1 3 1 1 AUX busses 4 1 u8 0 0 0 0 4 MixMinus Outputs 5 1 u8 1 1 2 2 2 Media players 6 1 u8 0 1 1 1 1 Multiviewers 7 1 u8 0 0 1 0 1 rs485 8 1 u8 4 4 4 4 4 Hyperdecks 9 1 u8 1 1 1 0 1 DVE 10 1 u8 0 0 1 0 0 Stingers 11 1 u8 0 0 0 0 0 supersources 12 1 u8 0 0 1 1 1 ? Multiview routable? 13 1 u8 0 0 0 0 1 Talkback channels 14 1 u8 0 0 0 0 4 ? 15 1 u8 1 1 0 0 0 ? 16 1 u8 0 0 0 0 0 ? 17 1 u8 0 0 1 1 0 ? 18 1 u8 1 1 1 1 1 Camera Control 19 1 u8 0 0 1 0 1 ? 20 1 u8 0 0 1 0 1 ? 21 1 u8 0 0 1 1 1 ? Multiview routable? 22 1 u8 1 1 0 0 0 Advanced chroma keyers 23 1 u8 1 1 0 0 0 Only configurable outputs 24 1 u8 1 1 0 0 0 ? 25 1 u8 0x20 0x2f 0x20 0 0x10 ? 26 1 u8 3 108 0 0 0 ? 27 1 u8 0xe8 0x69 0x00 0 0x0 ? ====== ==== ====== ========= ========= ======= ======= ====== =========== After parsing: :ivar me_units: Number of M/E units in the mixer :ivar sources: Number of internal and external sources :ivar downstream_keyers: Number of downstream keyers :ivar aux_outputs: Number of routable AUX outputs :ivar mixminus_outputs: Number of ouputs with MixMinus :ivar mediaplayers: Number of mediaplayers :ivar multiviewers: Number of multiview ouputs :ivar rs485: Number of RS-485 outputs :ivar hyperdecks: Number of hyperdeck slots :ivar dve: Number of DVE blocks :ivar stingers: Number of stinger blocks :ivar supersources: Number of supersources """ CODE = "_top" def __init__(self, raw): self.raw = raw field = struct.unpack('>28B', raw) self.me_units = field[0] self.sources = field[1] self.downstream_keyers = field[2] self.aux_outputs = field[3] self.mixminus_outputs = field[4] self.mediaplayers = field[5] self.multiviewers = field[6] self.rs485 = field[7] self.hyperdecks = field[8] self.dve = field[9] self.stingers = field[10] self.supersources = field[11] self.multiviewer_routable = field[12] == 1 def __repr__(self): return '<topology, me={} sources={} aux={}>'.format(self.me_units, self.sources, self.aux_outputs) class DkeyPropertiesBaseField(FieldBase): """ Data from the `DskB`. Downstream keyer base info. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Downstream keyer index, 0-indexed 1 1 ? unknown 2 2 u16 Fill source index 4 2 u16 Key source index 6 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: DSK index :ivar fill_source: Source index for the fill input :ivar key_source: Source index for the key input """ CODE = "DskB" def __init__(self, raw): self.raw = raw self.index, self.fill_source, self.key_source = struct.unpack('>BxHH2x', raw) def __repr__(self): return '<downstream-keyer-base: dsk={}, fill={}, key={}>'.format(self.index, self.fill_source, self.key_source) class DkeyPropertiesField(FieldBase): """ Data from the `DskP`. Downstream keyer info. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Downstream keyer index, 0-indexed 1 1 bool Tie enabled 2 1 u8 Transition rate in frames 3 1 bool Mask is pre-multiplied alpha 4 2 u16 Clip [0-1000] 6 2 u16 Gain [0-1000] 8 1 bool Invert key 9 1 bool Enable mask 10 2 i16 Top [-9000 - 9000] 12 2 i16 Bottom [-9000 - 9000] 14 2 i16 Left [-9000 - 9000] 16 2 i16 Right [-9000 - 9000] 18 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar done: Fade to black is completely done (blinking button state in the control panel) :ivar transitioning: Fade to black is fading, (Solid red in control panel) :ivar frames_remaining: Frames remaining in the transition """ CODE = "DskP" def __init__(self, raw): self.raw = raw field = struct.unpack('>B?B ?HH? ?4h 2B', raw) self.index = field[0] self.tie = field[1] self.rate = field[2] self.premultiplied = field[3] self.clip = field[4] self.gain = field[5] self.invert_key = field[6] self.masked = field[7] self.top = field[8] self.bottom = field[9] self.left = field[10] self.right = field[11] def __repr__(self): return '<downstream-keyer-mask: dsk={}, tie={}, rate={}, masked={}>'.format(self.index, self.tie, self.rate, self.masked) class DkeyStateField(FieldBase): """ Data from the `DskS`. Downstream keyer state. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Downstream keyer index, 0-indexed 1 1 bool On air 2 1 bool Is transitioning 3 1 bool Is autotransitioning 4 1 u8 Frames remaining 5 3 ? unknown ====== ==== ====== =========== After parsing: :ivar index: Downstream keyer index :ivar on_air: Keyer is on air :ivar is_transitioning: Is transitioning :ivar is_autotransitioning: Is transitioning due to auto button :ivar frames_remaining: Frames remaining in transition """ CODE = "DskS" def __init__(self, raw): self.raw = raw field = struct.unpack('>B 3? B 3x', raw) self.index = field[0] self.on_air = field[1] self.is_transitioning = field[2] self.is_autotransitioning = field[3] self.frames_remaining = field[4] def __repr__(self): return '<downstream-keyer-state: dsk={}, onair={}, transitioning={} autotrans={} frames={}>'.format(self.index, self.on_air, self.is_transitioning, self.is_autotransitioning, self.frames_remaining) class TransitionMixField(FieldBase): """ Data from the `TMxP`. Settings for the mix transition. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 rate in frames 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar rate: Number of frames in the transition """ CODE = "TMxP" def __init__(self, raw): self.raw = raw self.index, self.rate = struct.unpack('>BBxx', raw) def __repr__(self): return '<transition-mix: me={}, rate={}>'.format(self.index, self.rate) class FadeToBlackField(FieldBase): """ Data from the `FtbP`. Settings for the fade-to-black transition. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 rate in frames 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar rate: Number of frames in transition """ CODE = "FtbP" def __init__(self, raw): self.raw = raw self.index, self.rate = struct.unpack('>BBxx', raw) def __repr__(self): return '<fade-to-black: me={}, rate={}>'.format(self.index, self.rate) class TransitionDipField(FieldBase): """ Data from the `TDpP`. Settings for the dip transition. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 rate in frames 2 2 u16 Source index for the DIP source ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar rate: Number of frames in transition :ivar source: Source index for the dip """ CODE = "TDpP" def __init__(self, raw): self.raw = raw self.index, self.rate, self.source = struct.unpack('>BBH', raw) def __repr__(self): return '<transition-dip: me={}, rate={} source={}>'.format(self.index, self.rate, self.source) class TransitionWipeField(FieldBase): """ Data from the `TWpP`. Settings for the wipe transition. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 Rate in frames 2 1 u8 Pattern id 3 1 ? unknown 4 2 u16 Border width 6 2 u16 Border fill source index 8 2 u16 Symmetry 10 2 u16 Softness 12 2 u16 Origin position X 14 2 u16 Origin position Y 16 1 bool Reverse 16 1 bool Flip flop ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar rate: Number of frames in transition :ivar source: Source index for the dip """ CODE = "TWpP" def __init__(self, raw): self.raw = raw field = struct.unpack('>BBBx 6H 2? 2x', raw) self.index = field[0] self.rate = field[1] self.pattern = field[2] self.width = field[3] self.source = field[4] self.symmetry = field[5] self.softness = field[6] self.positionx = field[7] self.positiony = field[8] self.reverse = field[9] self.flipflop = field[10] def __repr__(self): return '<transition-wipe: me={}, rate={} pattern={}>'.format(self.index, self.rate, self.pattern) class TransitionDveField(FieldBase): """ Data from the `TDvP`. Settings for the DVE transition. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 M/E index 1 1 u8 Rate in frames 2 1 ? unknown 3 1 u8 DVE style 4 2 u16 Fill source index 6 2 u16 Key source index 8 1 bool Enable key 9 1 bool Key is premultiplied 10 2 u16 Key clip [0-1000] 12 2 u16 Key gain [0-1000] 14 1 bool Key invert 15 1 bool Reverse 16 1 bool Flip flop 17 3 ? unknown ====== ==== ====== =========== After parsing: :ivar index: M/E index in the mixer :ivar rate: Number of frames in transition :ivar style: Style or effect index for the DVE :ivar fill_source: Fill source index :ivar key_source: Key source index :ivar key_premultiplied: Key is premultiplied alpha :ivar key_clip: Key clipping point :ivar key_gain: Key Gain :ivar key_invert: Invert key source :ivar reverse: Reverse transition :ivar flipflop: Flip flop transition """ CODE = "TDvP" def __init__(self, raw): self.raw = raw field = struct.unpack('>BBx B 2H 2? 2H 3? 3x', raw) self.index = field[0] self.rate = field[1] self.style = field[2] self.fill_source = field[3] self.key_source = field[4] self.key_enable = field[5] self.key_premultiplied = field[6] self.key_clip = field[7] self.key_gain = field[8] self.key_invert = field[9] self.reverse = field[10] self.flipflop = field[11] def __repr__(self): return '<transition-dve: me={}, rate={} style={}>'.format(self.index, self.rate, self.style) class AudioMixerMasterPropertiesField(FieldBase): """ Data from the `AMMO`. Settings for the master bus on legacy audio units. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Program Gain 2 2 ? unknown 4 1 bool Follow fade to black 5 1 ? unknown ====== ==== ====== =========== After parsing: :ivar volume: Master volume for the mixer, unsigned int which maps [? - ?] to +10dB - -100dB (inf) :ivar afv: Wether the master volume follows the fade-to-bloack """ CODE = "AMMO" def __init__(self, raw): self.raw = raw field = struct.unpack('>H 2x ?x 2x', raw) self.volume = field[0] self.afv = field[1] def __repr__(self): return '<audio-master-properties: volume={} afv={}>'.format(self.volume, self.afv) class AudioMixerMonitorPropertiesField(FieldBase): """ Data from the `AMmO`. Settings for the monitor bus on legacy audio units. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 bool Monitoring enabled 1 1 ? unknown 2 2 u16 Volume 4 1 bool Mute 5 1 bool Solo 6 2 u16 Solo source index 8 1 bool Dim 10 2 u16 Dim volume ====== ==== ====== =========== After parsing: :ivar volume: Master volume for the mixer, unsigned int which maps [? - ?] to +10dB - -100dB (inf) """ CODE = "AMmO" def __init__(self, raw): self.raw = raw field = struct.unpack('>?xH? ?H ?x H', raw) self.enabled = field[0] self.volume = field[1] self.mute = field[2] self.solo = field[3] self.solo_source = field[4] self.dim = field[5] self.dim_volume = field[6] def __repr__(self): return '<audio-monitor-properties: volume={}>'.format(self.volume) class AudioMixerInputPropertiesField(FieldBase): """ Data from the `AMIP`. Settings for a channel strip on legacy audio units. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Audio source index 2 1 u8 Type [0: External Video, 1: Media Player, 2: External Audio] 3 3 ? unknown 6 1 bool From Media Player 7 1 u8 Plug Type [0: Internal, 1: SDI, 2: HDMI, 3: Component, 4: Composite, 5: SVideo, 32: XLR, 64, AES/EBU, 128 RCA] 8 1 u8 Mix Option [0: Off, 1: On, 2: AFV] 9 1 u8 unknown 10 2 u16 Volume [0 - 65381] 12 2 i16 Pan [-10000 - 10000] 14 1 u8 unknown ====== ==== ====== =========== After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) :ivar afv: Enable/disabled state for master audio-follow-video (for fade-to-black) """ CODE = "AMIP" def __init__(self, raw): self.raw = raw field = struct.unpack('>H B 2x ? B B x H h x x x', raw) self.index = field[0] self.type = field[1] self.is_media_player = field[2] self.number = field[3] self.mix_option = field[4] self.volume = field[5] self.balance = field[6] self.strip_id = str(self.index) + '.0' def __repr__(self): return '<audio-mixer-input-properties: index={} volume={} balance={} >'.format(self.strip_id, self.volume, self.balance) class AudioMixerTallyField(FieldBase): """ Data from the `AMTl`. Encodes the state of tally lights on the audio mixer ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Number of tally lights 2 2 u16 Audio Source 4 1 bool IsMixedIn (On/Off) ====== ==== ====== =========== """ CODE = "AMTl" def __init__(self, raw): self.raw = raw offset = 0 self.num, = struct.unpack_from('>H', raw, offset) self.tally = {} offset += 2 for i in range(0, self.num): source, tally, = struct.unpack_from('>H?', raw, offset) strip_id = '{}.{}'.format(source, 0) self.tally[strip_id] = tally offset += 3 def __repr__(self): return '<audio-mixer-tally {}>'.format(self.tally) class FairlightMasterPropertiesField(FieldBase): """ Data from the `FAMP`. Settings for the master bus on fairlight audio units. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 ? unknown 1 1 bool Enable master EQ 2 4 ? unknown 6 2 i16 EQ gain [-2000 - 2000] 8 2 ? unknown 10 2 u16 Dynamics make-up gain [0 - 2000] 12 4 i32 Master volume [-10000 - 1000] 16 1 bool Audio follow video 17 3 ? unknown ====== ==== ====== =========== After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) :ivar eq_enable: Enabled/disabled state for the master EQ :ivar eq_gain: Gain applied after EQ, [-2000 - 2000] maps to -20dB - +20dB :ivar dynamics_gain: Make-up gain for the dynamics section, [0 - 2000] maps to 0dB - +20dB :ivar afv: Enable/disabled state for master audio-follow-video (for fade-to-black) """ CODE = "FAMP" def __init__(self, raw): self.raw = raw field = struct.unpack('>x ? 4x h 2x H i ? 3x', raw) self.eq_enable = field[0] self.eq_gain = field[1] self.dynamics_gain = field[2] self.volume = field[3] self.afv = field[4] def __repr__(self): return '<fairlight-master-properties: volume={} make-up={} eq={}>'.format(self.volume, self.dynamics_gain, self.eq_gain) class FairlightStripPropertiesField(FieldBase): """ Data from the `FASP`. Settings for a channel strip on fairlight audio units. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Audio source index 14 1 u8 Split indicator? [01 for normal, FF for split] 15 1 u8 Subchannel index 18 1 u8 Delay in frames 22 2 i16 Gain [-10000 - 600] 29 1 bool Enable EQ 34 2 i16 EQ Gain 38 2 u16 Dynamics gain 40 2 i16 Pan [-10000 - 10000] 46 2 i16 Volume [-10000 - 1000] 49 1 u8 AFV bitfield? 1=off 2=on 4=afv ====== ==== ====== =========== The way byte 14 and 15 work is unclear at the moment, this need verification on a mixer with an video input that has more than 2 embedded channels, of of these bytes might be a channel count. After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) :ivar eq_enable: Enabled/disabled state for the master EQ :ivar eq_gain: Gain applied after EQ, [-2000 - 2000] maps to -20dB - +20dB :ivar dynamics_gain: Make-up gain for the dynamics section, [0 - 2000] maps to 0dB - +20dB :ivar afv: Enable/disabled state for master audio-follow-video (for fade-to-black) """ CODE = "FASP" def __init__(self, raw): self.raw = raw field = struct.unpack('>H 12xBBxB 4x h 5x ? 4x h 2x Hh 4x h x B 2x', raw) self.index = field[0] self.is_split = field[1] self.subchannel = field[2] self.delay = field[3] self.gain = field[4] self.eq_enable = field[5] self.eq_gain = field[6] self.dynamics_gain = field[7] self.pan = field[8] self.volume = field[9] self.state = field[10] self.strip_id = str(self.index) if self.is_split == 0xff: self.strip_id += '.' + str(self.subchannel) else: self.strip_id += '.0' def __repr__(self): extra = '' if self.eq_enable: extra += ' EQ {}'.format(self.eq_gain) return '<fairlight-strip-properties: index={} gain={} volume={} pan={} dgn={} {}>'.format(self.strip_id, self.gain, self.volume, self.pan, self.dynamics_gain, extra) class FairlightStripDeleteField(FieldBase): """ Data from the `FASD`. Fairlight strip delete, received only when changing the source routing in fairlight to remove channels that have changed. """ CODE = "FASD" def __init__(self, raw): self.raw = raw def __repr__(self): return '<fairlight-strip-delete {}>'.format(self.raw) class FairlightAudioInputField(FieldBase): """ Data from the `FAIP`. Describes the inputs to the fairlight mixer ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Audio source index 2 1 u8 Input type 3 2 ? unknown 5 1 u8 Index in group 10 1 u8 Changes when stereo is split into dual mono 12 1 u8 Analog audio input level [1=mic, 2=line] ====== ==== ====== =========== === ========== Val Input type === ========== 0 External video input 1 Media player audio 2 External audio input === ========== After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) """ CODE = "FAIP" def __init__(self, raw): self.raw = raw self.index, self.type, self.number, self.split, self.level = struct.unpack('>HB 2x B xxxx B x B 3x', raw) def __repr__(self): return '<fairlight-input index={} type={}>'.format(self.index, self.type) class FairlightTallyField(FieldBase): """ Data from the `FMTl`. Encodes the state of tally lights on the audio mixer ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Number of tally lights 2 1 u8 Input type 3 2 ? unknown 5 1 u8 Index in group 10 1 u8 Changes when stereo is split into dual mono 12 1 u8 Analog audio input level [1=mic, 2=line] ====== ==== ====== =========== === ========== Val Input type === ========== 0 External video input 1 Media player audio 2 External audio input === ========== After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) """ CODE = "FMTl" def __init__(self, raw): self.raw = raw offset = 0 self.num, = struct.unpack_from('>H', raw, offset) self.tally = {} offset += 15 for i in range(0, self.num): subchan, source, tally, = struct.unpack_from('>BH?', raw, offset) strip_id = '{}.{}'.format(source, subchan) self.tally[strip_id] = tally offset += 11 def __repr__(self): return '<fairlight-tally {}>'.format(self.tally) class FairlightHeadphonesField(FieldBase): """ Data from the `FMHP`, phones output volume and mute This doesn't get triggered when soloing channels. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 4 i32 Volume in 0.01 dB (-60.00 to +6.00 dB) 5 4 ? Unknown 8 1 bool Muted (0) / Umuted (1) 9 1 u8 Last soloed channel (just the main part) 10 22 ? Unknown """ def __init__(self, raw): self.raw = raw self.volume, self.unmuted = struct.unpack('> i 4x ? 23x', raw) def __repr__(self): return '<fairlight-headphones volume={} unmuted={}>'.format(self.volume, self.unmuted) class FairlightSoloField(FieldBase): """ Data from the `FAMS`, soloing channels to phones ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 bool Anything soloed? 1 7 ? Unknown 8 1 u8 Unknown: 0x00 for HDMI channels, 0x05 for 3.5mm jack 9 1 u8 Soloed channel (main) 10 12 ? Unknown 22 1 u8 No subchannels (0x01), split into L/R (0xff) 23 1 u8 Soloed channel (subchannel) """ def __init__(self, raw): self.raw = raw self.solo, self.channel, self.is_split_lr, self.subchannel = struct.unpack('> ? 8x B 12x BB', raw) def __repr__(self): return '<fairlight-solo active={} source={}>'.format( self.solo, self.channel if self.is_split_lr == 0x01 else '{}.{}'.format(self.channel, self.subchannel), ) class AtemEqBandPropertiesField(FieldBase): """ Data from the `AEBP` field. This encodes the EQ settings in the fairlight mixer. For every channel there will be 6 off these fields sent, one for every band of the EQ. The "possible band filters" differentiates the first and last band which have a different option list for the filter dropdown in the UI. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Audio source index 2 2 ? unknown 4 4 ? unknown 14 1 u8 Split indicator? [01 for normal, FF for split] 15 1 u8 subchannel index 16 1 u8 bond index 17 1 bool band enabled 18 1 u8 possible band filters 19 1 u8 band filter 20 1 ? ? 21 1 ? band frequency range 26 2 u16 band frequency 28 4 i32 band gain 32 2 u16 band Q ====== ==== ====== =========== === ========== Val Band filter === ========== 01 Low shelf 02 Low pass 04 Bell 08 Notch 10 High pass 20 High shelf === ========== After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) """ CODE = "AEBP" def __init__(self, raw): self.raw = raw values = struct.unpack('>H 2x 4x 6x BB B ? B B x B 4x H i H 2x', raw) self.index = values[0] self.is_split = values[1] self.subchannel = values[2] self.band_index = values[3] self.band_enabled = values[4] self.band_possible_filters = values[5] self.band_filter = values[6] self.band_freq_range = values[7] self.band_frequency = values[8] self.band_gain = values[9] self.band_q = values[10] self.strip_id = str(self.index) if self.is_split == 0xff: self.strip_id += '.' + str(self.subchannel) else: self.strip_id += '.0' def __repr__(self): desc = '' filters = { 0x01: 'low-shelf', 0x02: 'low-pass', 0x04: 'bell', 0x08: 'notch', 0x10: 'high-pass', 0x20: 'high-shelf' } if self.band_filter in filters: desc += filters[self.band_filter] else: desc += 'filter ' + str(self.band_filter) if self.band_enabled: desc += '[on]' else: desc += '[off]' desc += ' freq ' + str(self.band_frequency) desc += ' gain ' + str(self.band_gain) desc += ' Q ' + str(self.band_q) return '<atem-eq-band-properties {} band {} {}>'.format(self.strip_id, self.band_index, desc) class AudioInputField(FieldBase): """ Data from the `AMIP`. Describes the inputs to the atem audio mixer ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Audio source index 2 1 u8 Input type 3 2 ? unknown 5 1 u8 Index in group 6 1 ? ? 7 1 u8 Input plug 8 1 u8 State [0=off, 1=on, 2=afv] 10 2 u16 Channel volume 12 2 i16 Channel balance [-10000 - 10000] ====== ==== ====== =========== === ========== Val Input type === ========== 0 External video input 1 Media player audio 2 External audio input === ========== === ========= Val Plug type === ========= 0 Internal 1 SDI 2 HDMI 3 Component 4 Composite 5 SVideo 32 XLR 64 AES/EBU 128 RCA === ========= After parsing: :ivar volume: Master volume for the mixer, signed int which maps [-10000 - 1000] to +10dB - -100dB (inf) """ CODE = "AMIP" def __init__(self, raw): self.raw = raw self.index, self.type, self.number, self.plug, self.state, self.volume, self.balance = struct.unpack( '>HB 2x B x BB x Hh 2x', raw) self.strip_id = str(self.index) + '.0' def plug_name(self): """Return the display name for the connector""" lut = { 0: "Internal", 1: "SDI", 2: "HDMI", 3: "Component", 4: "Composite", 5: "SVideo", 32: "XLR", 64: "AES", 128: "RCA", } if self.plug in lut: return lut[self.plug] else: return 'Analog' def __repr__(self): return '<audio-input index={} type={} plug={}>'.format(self.index, self.type, self.plug) class KeyPropertiesBaseField(FieldBase): """ Data from the `KeBP`. The upstream keyer base properties. """ CODE = "KeBP" def __init__(self, raw): self.raw = raw field = struct.unpack('>BBB Bx B HH ?x 4h', raw) self.index = field[0] self.keyer = field[1] self.type = field[2] self.enabled = field[3] self.fly_enabled = field[4] self.fill_source = field[5] self.key_source = field[6] self.mask_enabled = field[7] self.mask_top = field[8] self.mask_bottom = field[9] self.mask_left = field[10] self.mask_right = field[11] def __repr__(self): return '<key-properties-base me={}, key={}, type={}>'.format(self.index, self.keyer, self.type) class KeyPropertiesDveField(FieldBase): """ Data from the `KeDV`. The upstream keyer DVE-specific properties. """ CODE = "KeDV" def __init__(self, raw): self.raw = raw field = struct.unpack('>BBxx 5i ??Bx HH BBBBBx 4HB? 4hB 3x', raw) self.index = field[0] self.keyer = field[1] self.size_x = field[2] self.size_y = field[3] self.pos_x = field[4] self.pos_y = field[5] self.rotation = field[6] self.border_enabled = field[7] self.shadow_enabled = field[8] self.border_bevel = field[9] self.border_outer_width = field[10] self.border_inner_width = field[11] self.border_outer_softness = field[12] self.border_inner_softness = field[13] self.border_bevel_softness = field[14] self.border_bevel_position = field[15] self.border_opacity = field[16] self.border_hue = field[17] / 10.0 self.border_saturation = field[18] / 1000.0 self.border_luma = field[19] / 1000.0 self.light_angle = field[20] self.light_altitude = field[21] self.mask_enabled = field[22] self.mask_top = field[23] self.mask_bottom = field[24] self.mask_left = field[25] self.mask_right = field[26] self.rate = field[27] def get_border_color_rgb(self): return colorsys.hls_to_rgb(self.border_hue / 360.0, self.border_luma, self.border_saturation) def __repr__(self): return '<key-properties-dve me={}, key={}>'.format(self.index, self.keyer) class KeyPropertiesLumaField(FieldBase): """ Data from the `KeLm`. The upstream keyer luma-specific properties. """ CODE = "KeLm" def __init__(self, raw): self.raw = raw field = struct.unpack('>BB?x HH ?3x', raw) self.index = field[0] self.keyer = field[1] self.premultiplied = field[2] self.clip = field[3] self.gain = field[4] self.key_inverted = field[5] def __repr__(self): return '<key-properties-luma me={}, key={}>'.format(self.index, self.keyer) class KeyPropertiesAdvancedChromaField(FieldBase): """ Data from the `KACk` field. This contains the data about the settings in the upstream advanced chroma keyer. """ CODE = "KACk" def __init__(self, raw): self.raw = raw field = struct.unpack('>BBH HH HH hhHhhh', raw) self.index = field[0] self.keyer = field[1] self.foreground = field[2] self.background = field[3] self.key_edge = field[4] self.spill_suppress = field[5] self.flare_suppress = field[6] self.brightness = field[7] self.contrast = field[8] self.saturation = field[9] self.red = field[10] self.green = field[11] self.blue = field[12] def __repr__(self): return '<key-properties-advanced-chroma me={}, key={}>'.format(self.index, self.keyer) class KeyPropertiesAdvancedChromaColorpickerField(FieldBase): """ Data from the `KACC` field. This contains the data about the color picker in the upstream advanced chroma keyer. """ CODE = "KACC" def __init__(self, raw): self.raw = raw field = struct.unpack('>BB?? hhH HHH', raw) self.index = field[0] self.keyer = field[1] self.cursor = field[2] self.preview = field[3] self.x = field[4] self.y = field[5] self.size = field[6] self.Y = (field[7] - 625) / 8544 self.Cb = (field[8] - 5000) / 5000 self.Cr = (field[9] - 5000) / 5000 def get_rgb(self): r = self.Y + (self.Cr * 1.5748) g = self.Y + (self.Cb * -0.1873) + (self.Cr * -0.4681) b = self.Y + (self.Cb * 1.8556) r = max(0, min(1, r)) g = max(0, min(1, g)) b = max(0, min(1, b)) return r, g, b def __repr__(self): return '<key-properties-advanced-chroma-colorpicker me={}, key={}>'.format(self.index, self.keyer) class RecordingDiskField(FieldBase): """ Data from the `RTMD`. Info about an attached recording disk. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 4 u32 Disk index 4 4 u32 Recording time available in seconds 8 2 u16 Status bitfield 10 64 char[] Volume name ====== ==== ====== =========== === ========== Bit Status value === ========== 0 Idle 1 Unformatted 2 Ready 3 Recording 4 ? 5 Deleted === ========== """ CODE = "RTMD" def __init__(self, raw): self.raw = raw field = struct.unpack('>IIH 64s 2x', raw) self.index = field[0] self.time_available = field[1] self.status = field[2] self.volumename = self._get_string(field[3]) self.is_attached = field[2] & 1 << 0 > 0 self.is_attached = field[2] & 1 << 1 > 0 self.is_ready = field[2] & 1 << 2 > 0 self.is_recording = field[2] & 1 << 3 > 0 self.is_deleted = field[2] & 1 << 5 > 0 def __repr__(self): return '<recording-disk disk={} label={} status={} available={}>'.format(self.index, self.volumename, self.status, self.time_available) class RecordingSettingsField(FieldBase): """ Data from the `RMSu`. The settings for the stream recorder. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 128 char[] Audio source index 128 4 i32 Disk slot 1 index, or -1 for no disk 132 4 i32 Disk slot 2 index, or -1 for no disk 136 1 bool Trigger recording in cameras 137 3 ? ? ====== ==== ====== =========== The recorder settings has 2 slots to select attached USB disks. If no disk is selected the i32 will be -1 otherwise it will be the disk number referring a RTMD field """ CODE = "RMSu" def __init__(self, raw): self.raw = raw field = struct.unpack('>128s ii ?3x', raw) self.filename = self._get_string(field[0]) self.disk1 = field[1] if field[1] != -1 else None self.disk2 = field[2] if field[2] != -1 else None self.record_in_cameras = field[3] def __repr__(self): return '<recording-settings filename={} disk1={} disk2={} in-camera={}>'.format(self.filename, self.disk1, self.disk2, self.record_in_cameras) class RecordingStatusField(FieldBase): """ Data from the `RTMS`. The status for the stream recorder and total space left in the target device. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Recording status 4 4 i32 Total recording time available ====== ==== ====== =========== === ========== Bit Status value === ========== 0 Recording 1 ? 2 Disk full 3 Disk error 4 Disk unformatted 5 Frames dropped 6 ? 7 Stopping === ========== """ CODE = "RMTS" def __init__(self, raw): self.raw = raw field = struct.unpack('>H2xi', raw) self.status = field[0] self.time_available = field[1] if field[1] != -1 else None self.is_recording = field[0] & 1 << 0 > 0 self.is_stopping = field[0] & 1 << 7 > 0 self.disk_full = field[0] & 1 << 2 > 0 self.disk_error = field[0] & 1 << 3 > 0 self.disk_unformatted = field[0] & 1 << 4 > 0 self.has_dropped = field[0] & 1 << 5 > 0 def __repr__(self): return '<recording-status status={} time-available={}>'.format(self.status, self.time_available) class RecordingDurationField(FieldBase): """ Data from the `RTMR`. The current recording duration, this does not update very often. The dropped frames field signifies that the disk cannot keep up with writing the data and triggers the warning in the UI. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Hours 1 1 u8 Minutes 2 1 u8 Seconds 3 1 u8 Frames 4 1 bool Has dropped frames 5 3 ? unknown ====== ==== ====== =========== """ CODE = "RTMR" def __init__(self, raw): self.raw = raw field = struct.unpack('>4B ?3x', raw) self.hours = field[0] self.minutes = field[1] self.seconds = field[2] self.frames = field[3] self.has_dropped_frames = field[4] def __repr__(self): drop = '' if self.has_dropped_frames: drop = ' dropped-frames' return '<recording-duration {}:{}:{}:{}{}>'.format(self.hours, self.minutes, self.seconds, self.frames, drop) class MultiviewerPropertiesField(FieldBase): """ Data from the `MvPr`. The layout preset for the multiviewer output. The multiviewer is divided in 4 quadrants and the layout bitfield describes which of those quadrants are subdivided again in 4 more viewers. The default layout will have the top 2 quadrants not divided and the bottom quadrants used for small viewers. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Multiviewer index, 0-indexed 1 1 u8 Layout bitfield 1 1 bool Flip program/preview 1 1 ? unknown ====== ==== ====== =========== === ========== Bit Layout value === ========== 0 Top left small 1 Top right small 2 Bottom left small 4 Bottom right small === ========== After parsing: :ivar index: Multiviewer index, 0-indexed :ivar layout: Layout number from the enum above :ivar flip: Swap the program/preview window """ CODE = "MvPr" def __init__(self, raw): self.raw = raw field = struct.unpack('>BB?B', raw) self.index = field[0] self.layout = field[1] self.flip = field[2] self.u1 = field[3] self.top_left_small = field[1] & 0x01 > 0 self.top_right_small = field[1] & 0x02 > 0 self.bottom_left_small = field[1] & 0x04 > 0 self.bottom_right_small = field[1] & 0x08 > 0 def __repr__(self): return '<multiviewer-properties mv={} layout={} flip={} u1={}>'.format(self.index, self.layout, self.flip, self.u1) class MultiviewerInputField(FieldBase): """ Data from the `MvIn`. The input routing for the multiviewer. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Multiviewer index, 0-indexed 1 1 u8 Window index 0-9 2 2 u16 Source index 4 1 bool Supports enabling the VU meter 5 1 bool Supports enabling the safe area overlay 6 2 ? unknown ====== ==== ====== =========== Window numbering differs between switcher families. For example, on Atem Mini Extreme, windows are numbered on a row-by-row basis, starting at upper left. If a quadrant is not split, it gets the number of its upper left mini-window. This is an example of a layout on Atem Mini Extreme: +----+----+---------+ | 0 | 1 | 2 | | 4 | 5 | | +----+----+----+----+ | 8 | 10 | 11 | | | 14 | 15 | +---------+----+----+ On the non-Extreme Mini switchers, the window layout does not appear to be configurable, and therefore the numbers are allocated on a contiguous basis: +----+----+---------+ | 0 | 1 | +----+----+----+----+ | 2 | 3 | 4 | 5 | +----+----+----+----+ | 6 | 7? | 8? | 9? | +----+----+----+----+ Since the windows marked '?' are not configurable on non-Extreme Minis, these numbers are just an educated guess. Audio VU meters appear to be supported on small and big windows alike, but only on those which show a video input or the Program output. The safe area overlay appears to only work on full-sized Preview. After parsing: :ivar index: Multiviewer index, 0-indexed :ivar window: Window number inside the multiview :ivar source: Source index for this window :ivar vu: True if VU meter overlays can be enabled :ivar safearea: True if safe area overlays can be enabled """ CODE = "MvIn" def __init__(self, raw): self.raw = raw self.index, self.window, self.source, self.vu, self.safearea = struct.unpack('>BBH??2x', raw) def __repr__(self): return '<multiviewer-input mv={} win={} source={}>'.format(self.index, self.window, self.source) class MultiviewerVuField(FieldBase): """ Data from the `VuMC`. This describes if a multiview window has the VU meter overlay enabled. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Multiviewer index, 0-indexed 1 1 u8 Window index 0-9 2 1 bool VU enabled 3 1 ? unknown ====== ==== ====== =========== After parsing: :ivar index: Multiviewer index, 0-indexed :ivar window: Window number inside the multiview :ivar enabled: True if the VU meter overlay is enabled for this window """ CODE = "VuMC" def __init__(self, raw): self.raw = raw self.index, self.window, self.enabled = struct.unpack('>BB?x', raw) def __repr__(self): return '<multiviewer-vu mv={} win={} enabled={}>'.format(self.index, self.window, self.enabled) class MultiviewerSafeAreaField(FieldBase): """ Data from the `SaMw`. This describes if a multiview window has the safe area overlay enabled. This is generally only enabled on the preview window. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 1 u8 Multiviewer index, 0-indexed 1 1 u8 Window index 0-9 2 1 bool safe area enabled 3 1 ? unknown ====== ==== ====== =========== After parsing: :ivar index: Multiviewer index, 0-indexed :ivar window: Window number inside the multiview :ivar enabled: True if the safe area meter overlay is enabled for this window """ CODE = "SaMw" def __init__(self, raw): self.raw = raw self.index, self.window, self.enabled = struct.unpack('>BB?x', raw) def __repr__(self): return '<multiviewer-safe-area mv={} win={} enabled={}>'.format(self.index, self.window, self.enabled) class LockObtainedField(FieldBase): """ Data from the `LKOB`. This signals that a datastore lock has been successfully obtained for a specific datastore index. Used for data transfers. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Store id 2 2 ? Unknown ====== ==== ====== =========== After parsing: :ivar store: Store index = """ CODE = "LKOB" def __init__(self, raw): self.raw = raw self.store, = struct.unpack('>H2x', raw) def __repr__(self): return '<lock-obtained store={}>'.format(self.store) class LockStateField(FieldBase): """ Data from the `LKST`. This updates the state of the locks. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Store id 2 1 bool State 3 1 ? unknown ====== ==== ====== =========== After parsing: :ivar store: Store index :ivar state: True if a lock is held """ CODE = "LKST" def __init__(self, raw): self.raw = raw self.store, self.state, self.u1 = struct.unpack('>H?B', raw) def __repr__(self): state = 'locked' if self.state else 'unlocked' return '<lock-state store={} state={}>'.format(self.store, state) class FileTransferDataField(FieldBase): """ Data from the `FTDa`. This is an incoming chunk of data for a running file transfer. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Transfer id 2 2 u16 Data length ? ? bytes The rest of the packet contains [Data length] bytes of data ====== ==== ====== =========== After parsing: :ivar transfer: Transfer index :ivar size: Length of the transfer chunk :ivar data: Contents of the transfer chunk """ CODE = "FTDa" def __init__(self, raw): self.raw = raw self.transfer, self.size = struct.unpack('>HH', raw[0:4]) self.data = raw[4:(4 + self.size)] def __repr__(self): return '<file-transfer-data transfer={} size={}>'.format(self.transfer, self.size) class FileTransferErrorField(FieldBase): """ Data from the `FTDE`. Something went wrong with a file transfer and it has been aborted. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Transfer id 2 1 u8 Error code 3 1 ? unknown ====== ==== ====== =========== ========== =========== Error code Description ========== =========== 1 try-again, Try the transfer again 2 not-found, The requested store/slot index doesn't contain data 5 no-lock, You didn't obtain the lock before doing the transfer ========== =========== After parsing: :ivar transfer: Transfer index :ivar status: Status id from the enum above """ CODE = "FTDE" def __init__(self, raw): self.raw = raw self.transfer, self.status = struct.unpack('>HBx', raw) def __repr__(self): errors = { 1: 'try-again', 2: 'not-found', 5: 'no-lock' } if self.status in errors: status = errors[self.status] else: status = f'unknown ({self.status})' return '<file-transfer-error transfer={} status={}>'.format(self.transfer, status) class FileTransferDataCompleteField(FieldBase): """ Data from the `FTDC`. Sent after pushing a file. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Transfer id 2 1 u8 ? (always 1) 3 1 u8 ? (always 2 or 6) ====== ==== ====== =========== After parsing: :ivar transfer: Transfer index that has completed """ CODE = "FTDC" def __init__(self, raw): self.raw = raw self.transfer, self.u1, self.u2 = struct.unpack('>HBB', raw) def __repr__(self): return '<file-transfer-complete transfer={} u1={} u2={}>'.format(self.transfer, self.u1, self.u2) class FileTransferContinueDataField(FieldBase): """ Data from the `FTCD`. This is an field telling the client what chunk size to use to continue the upload of data to the hardware. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 u16 Transfer id 2 4 ? unknown 6 2 u16 Chunk size 8 2 u16 Chunk count 10 2 ? unknown ====== ==== ====== =========== After parsing: :ivar transfer: Transfer index :ivar size: Length of the transfer chunk :ivar count: Contents of the transfer chunk """ CODE = "FTCD" def __init__(self, raw): self.raw = raw self.transfer, self.size, self.count = struct.unpack('>H 4x HH 2x', raw) def __repr__(self): return '<file-transfer-continue transfer={} size={} count={}>'.format(self.transfer, self.size, self.count) class MacroPropertiesField(FieldBase): """ Data from the `MPrp`. This is the metadata about a stored macro ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Macro slot index 2 1 bool is used 3 1 bool has invalid commands 4 2 u16 Name length 6 2 u16 Description length 8 ? char[] Name ? ? char[] Description ====== ==== ====== =========== After parsing: :ivar index: Macro slot index :ivar is_used: Slot contains data :ivar is_invalid: Slot contains invalid data :ivar name: Name of the macro :ivar description: Description of the macro """ CODE = "MPrp" def __init__(self, raw): self.raw = raw field = struct.unpack_from('>H ?? H H', raw, 0) self.index = field[0] self.is_used = field[1] self.is_invalid = field[2] name_length = field[3] desc_length = field[4] self.name, self.description = struct.unpack_from('>{}s {}s'.format(name_length, desc_length), raw, 8) def __repr__(self): return '<macro-properties: index={} used={} name={}>'.format(self.index, self.is_used, self.name) class AudioMeterLevelsField(FieldBase): """ Data from the `AMLv`. This contains the realtime audio levels for the audio mixer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Number of input channels 2 2 ? padding 4 4 u32 Master left level 8 4 u32 Master right level 12 4 u32 Master left peak 16 4 u32 Master right peak 20 4 u32 Monitor left level 24 4 u32 Monitor right level 28 4 u32 Monitor left peak 32 4 u32 Monitor right peak ? 4 u32 Input left level [These 4 repeat for the number of channels above] ? 4 u32 Input right level ? 4 u32 Input left peak ? 4 u32 Input right peak ====== ==== ====== =========== After parsing: The levels are tuples in the format (left level, right level, left peak, right peak). :ivar count: Number of channels :ivar master: Master levels :ivar monitor: Monitor levels :ivar input: All input levels as a dict, the key is the channel number and the value a level tuple """ CODE = "AMLv" def __init__(self, raw): self.raw = raw field = struct.unpack_from('>H2x 4I 4I', raw, 0) self.count = field[0] self.master = ( self._level(field[1]), self._level(field[2]), self._level(field[3]), self._level(field[4]) ) self.monitor = ( self._level(field[5]), self._level(field[6]), self._level(field[7]), self._level(field[8]) ) self.input = {} offset = struct.calcsize('>H2x 4I 4I') sources = struct.unpack_from('>{}H'.format(self.count), raw, offset) offset = int(math.ceil((offset + (2 * self.count)) / 4.0) * 4) field = struct.unpack_from('>{}I'.format(self.count * 4), raw, offset) for i in range(0, self.count * 4, 4): level = ( self._level(field[i]), self._level(field[i + 1]), self._level(field[i + 2]), self._level(field[i + 3]) ) self.input[sources[i // 4]] = level def _level(self, value): if value == 0: return -60 val = math.log10(value / (128 * 65536)) * 20 return val def __repr__(self): return '<audio-meter-levels count={}>'.format(self.count) class FairlightMeterLevelsField(FieldBase): """ Data from the `FMLv`. This contains the realtime audio levels for the fairlight audio mixer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 6 ? Unknown 6 1 u8 is_split, 255 when split or 0 when it isn't 7 1 u8 subchannel index 8 2 u16 source index 10 2 i16 Input level left, -10000 to 0 12 2 i16 Input level right, -10000 to 0 14 2 i16 Input peak left, -10000 to 0 16 2 i16 Input peak right, -10000 to 0 18 2 i16 Expander gain reduction, -10000 to 0 20 2 i16 Compressor gain reduction, -10000 to 0 22 2 i16 Limiter gain reduction, -10000 to 0 24 2 i16 Output level left, -10000 to 0 26 2 i16 Output level right, -10000 to 0 28 2 i16 Output peak left, -10000 to 0 30 2 i16 Output peak right, -10000 to 0 32 2 i16 Fader level left, -10000 to 0 34 2 i16 Fader level right, -10000 to 0 36 2 i16 Fader peak left, -10000 to 0 38 2 i16 Fader peak right, -10000 to 0 ====== ==== ====== =========== After parsing: :ivar index: Channel source index :ivar is_split: Stereo channel is split into dual mono :ivar subchannel: Channel index after splitting :ivar strip_id: Strip identifier in {source}.{subchannel} format :ivar input: Volume level before dynamics :ivar output: Volume level after dynamics :ivar level: Volume level after fader :ivar expander_gr: Gain reduction by the expander :ivar compressor_gr: Gain reduction by the compressor :ivar limiter_gr: Gain reduction by the limiter """ CODE = "FMLv" COEFF = 10 ** (40 / 20) def __init__(self, raw): self.raw = raw field = struct.unpack_from('>6xBBH 15h', raw, 0) self.index = field[2] self.is_split = field[0] self.subchannel = field[1] if self.is_split == 0xff: self.strip_id = f"{self.index}.{self.subchannel}" else: self.strip_id = f"{self.index}.0" self.input = ( self._level(field[3]), self._level(field[4]), self._level(field[5]), self._level(field[6]) ) self.expander_gr = self._level(field[7]) self.compressor_gr = self._level(field[8]) self.limiter_gr = self._level(field[9]) self.output = ( self._level(field[10]), self._level(field[11]), self._level(field[12]), self._level(field[13]) ) self.level = ( self._level(field[14]), self._level(field[15]), self._level(field[16]), self._level(field[17]) ) def _level(self, value): if value == 0: return 0 value += 10000 value /= 10000 if value == 0: return -60 val = (math.exp((math.log(self.COEFF + 1) * value)) - 1) / self.COEFF val = val * 60 - 60 return val def __repr__(self): return '<fairlight-meter-levels source={}>'.format(self.strip_id) class FairlightMasterLevelsField(FieldBase): """ Data from the `FDLv`. This contains the realtime audio levels for the master channel of the fairlight mixer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 i16 Input level left, -10000 to 0 2 2 i16 Input level right, -10000 to 0 4 2 i16 Input peak left, -10000 to 0 6 2 i16 Input peak right, -10000 to 0 8 2 i16 Compressor gain reduction, -10000 to 0 10 2 i16 Limiter gain reduction, -10000 to 0 12 2 i16 Output level left, -10000 to 0 14 2 i16 Output level right, -10000 to 0 16 2 i16 Output peak left, -10000 to 0 18 2 i16 Output peak right, -10000 to 0 20 2 i16 Fader level left, -10000 to 0 22 2 i16 Fader level right, -10000 to 0 24 2 i16 Fader peak left, -10000 to 0 26 2 i16 Fader peak right, -10000 to 0 ====== ==== ====== =========== After parsing: :ivar input: Volume level before dynamics :ivar output: Volume level after dynamics :ivar level: Volume level after fader :ivar compressor_gr: Gain reduction by the compressor :ivar limiter_gr: Gain reduction by the limiter """ CODE = "FDLv" COEFF = 10 ** (40 / 20) def __init__(self, raw): self.raw = raw field = struct.unpack_from('>14h', raw, 0) self.input = ( self._level(field[0]), self._level(field[1]), self._level(field[2]), self._level(field[3]) ) self.compressor_gr = self._level(field[4]) self.limiter_gr = self._level(field[5]) self.output = ( self._level(field[6]), self._level(field[7]), self._level(field[8]), self._level(field[9]) ) self.level = ( self._level(field[10]), self._level(field[11]), self._level(field[12]), self._level(field[13]) ) def _level(self, value): if value == 0: return 0 value += 10000 value /= 10000 if value == 0: return -60 val = (math.exp((math.log(self.COEFF + 1) * value)) - 1) / self.COEFF val = val * 60 - 60 return val def __repr__(self): return '<fairlight-master-levels>' class CameraControlDataPacketFieldDisabled(FieldBase): """ !! This parser is not production ready !! The packet length is somewhat inconsistent which can cause the TCP protocol to fail due to the alignment in the protocol breaking Data from the `CCdP`. This contains a single packet for the remote shading unit in the blackmagic cameras. This protocol seems to roughly match up to the official BMD SDI camera control documentation with the bytes packed differently. ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 u8 Destination, 255 = broadcast to all 1 1 u8 Category 2 1 u8 Parameter 3 1 u8 Data type 4 12 ? padding 16 8 ? variable data, absent for commands. ====== ==== ====== =========== ========== =========== Data type Description ========== =========== 0 Boolean, or no data 1 Signed byte 2 Signed short 3 Signed integer 4 Signed long 5 UTF-8 data 128 16-bit Fixed point ========== =========== ========== ======== ======== =========== Command DataType Elements Description ========== ======== ======== =========== 0.0 fixed16 1 Focus 0=near 1=far 0.1 - 0 Trigger autofocus 0.2 fixed16 1 Aperture f-stop 0.3 fixed16 1 Aperture normalized 0=closed 1=open 0.4 fixed16 1 Aperture by index 0...n 0.5 - 0 Trigger auto aperture 0.6 boolean 1 Enable optical image stabilisation 0.7 int16 1 Zoom, focal length in mm 0.8 fixed16 1 Zoom, normalized 0.0...1.0 0.9 fixed16 1 Zoom, rate -1.0...1.0 1.0 int8 5 Frame rate, M-rate, dimensions, interlaced, colorpsace 1.1 int8 1 Gain, absolute iso as ISO/100 1.2 int16 2 White balance, temperature 2500...10000, tint -50...50 1.3 - 0 Trigger auto whitebalance 1.4 - 0 Restore previous auto whitebalance 1.5 int32 1 Exposure time in us 1.6 int16 1 Exposure by index 0...n 1.7 int8 1 Dynamic range mode, 0=film 1=video 1.8 int8 1 Sharpening level, 0=off, 1=low, 2=medium, 3=high 1.9 int16 1 Recording format 1.10 int8 1 Auto exposure mode, 0=manual trigger, 1=iris, 2=shutter, 3=iris+shutter, 4=shutter+iris 1.11 int32 1 Shutter angle in degrees*100 100...36000 1.12 int32 1 Shutter speed in 1/n, 24...2000 1.13 int8 1 Gain in dB, -128...127 1.14 int32 1 Gain in iso value 2.0 fixed16 1 Mic level 0.0...1.0 2.1 fixed16 1 Headphone level 0.0...1.0 2.2 fixed16 1 Headphone program mix 0.0...1.0 2.3 fixed16 1 Speaker level 0.0...1.0 2.4 int8 1 Input type, 0=internal mic, 1=line in, 2=low gain mic in, 3=high gain mic in 2.5 fixed16 2 Input levels, one element per channel. 0.0...1.0 2.6 boolean 1 Phantom power enabled 3.0 uint16 1 Enable overlays, undocumented bitfield 3.1 int8 1 Frame guide style, enum 3.2 fixed16 1 Frame guide opacity 3.3 int8 4 Overlay settings 4.0 fixed16 1 Display brightness 0.0...1.0 4.1 uint16 1 Display overlay enable, undocumented 4.2 fixed16 1 Display zebra level, 0.0...1.0 4.3 fixed16 1 Display peaking levle, 0.0...1.0 4.4 int8 1 Enable bars with timeout, 0=disable, 1...30=seconds 4.5 int8 2 Display focus assist, first element is method and second element is color 5.0 fixed16 1 Tally brightness, 0.0...1.0 5.1 fixed16 1 Tally front brightness, 0.0...1.0 5.2 fixed16 1 Tally rear brightness, 0.0...1.0 6.0 int8 1 Reference source, 0=internal, 1=program, 2=external 6.1 int32 1 Reference offset in pixels 7.0 int32 2 Real time clock value 7.1 utf8 1 System language 7.2 int32 1 Timezone offset, minute from UTC 7.3 int64 2 Location, latitude and longitude 8.0 fixed16 4 Primary color corrector lift, RGBY 8.1 fixed16 4 Primary color corrector gamma, RGBY 8.2 fixed16 4 Primary color corrector gain, RGBY 8.3 fixed16 4 Primary color corrector offset, RGBY 8.4 fixed16 2 Contrast, pivot 0.0..1.0, adjustment 0.0...2.0 8.5 fixed16 1 Luma mix, 0.0...1.0 8.6 fixed16 2 Color adjust, hue -1.0...1.0, saturation 0.0...2.0 8.7 - 0 Reset color corrector to defaults 10.0 int8 2 Codec enum 10.1 int8 4 Transport mode 11.0 fixed16 2 PTZ Control, pan velocity -1.0...1.0, tilt velocity -1.0...1.0 11.1 int8 2 PTZ memory preset. command 0=reset, 1=store, 2=recall. Slot ID 0...5 ========== =========== After parsing: :ivar destination: Command destination address :ivar category: First number of the command :ivar parameter: Second number of the command :ivar datatype: Data type :ivar data: Data attached to the command """ CODE = "CCdP" def __init__(self, raw): self.raw = raw self.destination, self.category, self.parameter, self.datatype, *weird = struct.unpack_from('>4B 4B 4B', raw, 0) num_elements = sum(weird) num_overrides = { (0, 0): 1, (0, 1): 0, (0, 2): 1, (0, 3): 1., (0, 4): 1, (0, 6): 1, (1, 2): 2 } if (self.category, self.parameter) in num_overrides: num_elements = num_overrides[(self.category, self.parameter)] self.length = num_elements self.data = None if len(raw) > 16: dfmt = '>' if self.datatype == 0: # Boolean dfmt += '?' * num_elements elif self.datatype == 1: # Signed byte dfmt += 'b' * num_elements elif self.datatype == 2: # Signed short dfmt += 'h' * num_elements elif self.datatype == 3: # Signed int dfmt += 'i' * num_elements elif self.datatype == 4: # Signed long dfmt += 'q' * num_elements elif self.datatype == 5: # UTF-8 pass elif self.datatype == 128: # Fixed 16 dfmt += 'h' * num_elements self.data = struct.unpack_from(dfmt, raw, 16) if self.datatype == 128: self.data = self.unpack_fixed16(self.data) def unpack_fixed16(self, raw): result = [] for f16 in raw: result.append(f16 / (2 ** 11)) return result def __repr__(self): return '<camera-control-data-packet dest={} command={}.{} type={} data={}>'.format(self.destination, self.category, self.parameter, self.datatype, self.data) class StreamingAudioBitrateField(FieldBase): """ Data from the `STAB`. This is the audio bitrate for the internal encoder used for recording and streaming This is always 128k for min and max on tested devices. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 4 u32 Min bitrate 4 4 u32 Max bitrate ====== ==== ====== =========== """ CODE = "STAB" def __init__(self, raw): self.raw = raw self.min, self.max = struct.unpack('>II', raw) def __repr__(self): return '<streaming-audio-bitrate min={} max={}>'.format(self.min, self.max) class StreamingServiceField(FieldBase): """ Data from the `SRSU`. This the settings for the live stream output, it also sets the video bitrate for the internal encoder which is shared with the recorder component so this influences recording quality. The ATEM Software Control application only uses the rtsp URL to display the streaming service name and has a preset list of rtsp urls for various streaming services. ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 64 char[] Service display name 65 512 char[] Target rtsp url 557 512 char[] Stream key/secret 1089 4 u32 Video bitrate minimum 1093 4 u32 Video bitrate maximum ====== ==== ====== =========== """ CODE = "SRSU" def __init__(self, raw): self.raw = raw field = struct.unpack_from('>64s512s512sII', raw, 0) self.name = self._get_string(field[0]) self.url = self._get_string(field[1]) self.key = self._get_string(field[2]) self.min = field[3] self.max = field[4] def __repr__(self): return '<streaming-service {} url={} min={} max={}>'.format(self.name, self.url, self.min, self.max) class StreamingStatusField(FieldBase): """ Data from the `StRS`. The displayed status of the live stream ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 2 i16 Status 2 2 ? unknown ====== ==== ====== =========== ====== ===== Status Value ====== ===== -1 unknown 0 nothing? 1 idle 2 connecting 4 on-air 22 stopping 36 stopping ====== ===== """ CODE = "StRS" def __init__(self, raw): self.raw = raw self.status, = struct.unpack('>h 2x', raw) def __repr__(self): return '<streaming-status status={}>'.format(self.status) class StreamingStatsField(FieldBase): """ Data from the `SRSS`. The displayed status of the live stream ====== ==== ====== =========== Offset Size Type Descriptions ====== ==== ====== =========== 0 4 u32 Bitrate 4 2 u16 Cache used ====== ==== ====== =========== """ CODE = "SRSS" def __init__(self, raw): self.raw = raw self.bitrate, self.cache = struct.unpack('>IHxx', raw) def __repr__(self): return '<streaming-stats bitrate={} cache={}>'.format(self.bitrate, self.cache) class AutoInputVideoModeField(FieldBase): """ Data from the `AiVM`. This field only exists for hardware that can auto-detect a video mode from the input signal. This defines wether the auto detection is enabled and shows if it has actually detected a signal ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 1 bool Enabled 1 1 bool Detected 2 2 ? unknown ====== ==== ====== =========== After parsing: :ivar enabled: Auto mode detection is enabled :ivar detected: A video mode has been detected from an input """ CODE = "AiVM" def __init__(self, raw): self.raw = raw self.enabled, self.detected = struct.unpack('>??2x', raw) def __repr__(self): return '<auto-input-video-mode: enabled={} detected={}>'.format(self.enabled, self.detected) class InitCompleteField(FieldBase): """ Data from the `InCm`. This notifies the app that all the initial state has been sent ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 4 ? unknown ====== ==== ====== =========== """ CODE = "InCm" def __init__(self, raw): self.raw = raw def __repr__(self): return '<init-complete>' class TransferCompleteField(FieldBase): """ Data from the `*XFC`. This is an command that's part of OpenSwitcher for the TCP protocol and not part of the actual ATEM protocol. This command is send over the TCP connection when the upstream atem has completed a file transfer ====== ==== ====== =========== Offset Size Type Description ====== ==== ====== =========== 0 2 u16 Store 2 2 u16 Slot 4 1 bool Is upload 5 3 x padding ====== ==== ====== =========== After parsing: :ivar store: Transfer store index :ivar slot: Transfer slot index :ivar upload: True if the transfer was an upload, False if the transfer was a download """ CODE = "*XFC" def __init__(self, raw): self.raw = raw self.store, self.slot, self.upload = struct.unpack('>HH ?xxx', raw) def __repr__(self): return '<*transfer-complete: store={} slot={} upload={}>'.format(self.store, self.slot, self.upload)
seanmichnowski/CalvaryVenturaBroadcast
docs/AtemStatuses.py
AtemStatuses.py
py
108,948
python
en
code
1
github-code
36
23565614159
#!/usr/bin/python3 import sys import pyvips im = pyvips.Image.new_from_file(sys.argv[1], access="sequential") text = pyvips.Image.text(f"<span color=\"red\">{sys.argv[3]}</span>", width=500, dpi=100, align="centre", rgba=True) # scale the alpha down to make the text semi-transparent text = (text * [1, 1, 1, 0.3]).cast("uchar") text = text.rotate(45) # tile to the size of the image page, then tile again to the full image size text = text.embed(10, 10, text.width + 20, text.width + 20) page_height = im.get_page_height() text = text.replicate(1 + im.width / text.width, 1 + page_height / text.height) text = text.crop(0, 0, im.width, page_height) text = text.replicate(1, 1 + im.height / text.height) text = text.crop(0, 0, im.width, im.height) # composite the two layers im = im.composite(text, "over") im.write_to_file(sys.argv[2])
libvips/pyvips
examples/watermark.py
watermark.py
py
945
python
en
code
558
github-code
36
8024534491
""" Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once. For example, Given ``` board = [ ["ABCE"], ["SFCS"], ["ADEE"] ] ``` word = "ABCCED", -> returns true, word = "SEE", -> returns true, word = "ABCB", -> returns false. """ class Solution: # @param board, a list of lists of 1 length string # @param word, a string # @return a boolean def exist(self, board, word): M = len(board) N = len(board[0]) for i in range(M): for j in range(N): if board[i][j] == word[0] and self.isWord(board, i, j, 0, word): return True return False def isWord(self, board, i, j, index, word): if index == len(word): return True M = len(board) N = len(board[0]) if i < 0 or i >= M or j < 0 or j >= N or board[i][j] != word[index]: return False board[i][j] = '#' if self.isWord(board, i+1, j, index+1, word) or \ self.isWord(board, i-1, j, index+1, word) or \ self.isWord(board, i, j+1, index+1, word) or \ self.isWord(board, i, j-1, index+1, word): return True board[i][j] = word[index] return False # Note: # 1. Keep in mind the declare of matrix, M, N, board, board[0] # 2. Line 28 check board[i][j] == word[0] # 3. Use in place make board[i][j] = '#' and recover later # 4. Line 43 line break use \ # 5. Very important, must remark the 'visisted' part
cyandterry/Python-Study
Ninja/Leetcode/79_Word_Search.py
79_Word_Search.py
py
1,760
python
en
code
62
github-code
36
20336422398
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.6.2) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x00\xcc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x00\x06\x50\x4c\x54\x45\x00\xa8\xec\ \x00\x00\x00\x79\x99\x93\x18\x00\x00\x00\x02\x74\x52\x4e\x53\xff\ \x00\xe5\xb7\x30\x4a\x00\x00\x00\x4e\x49\x44\x41\x54\x78\xda\xec\ \xd6\x31\x0a\x00\x30\x08\x43\xd1\xf4\xfe\x97\xee\x5e\xa4\x56\x3a\ \x19\x7f\x56\xe1\x4d\x06\xd5\xfa\x8c\x00\x00\x4c\x01\x25\x71\x07\ \xf4\x98\x09\x40\x84\x9d\x73\x00\x7f\x80\x2e\x00\xa4\x87\x64\x00\ \x70\x43\x4a\x6d\x6c\x0e\x84\x47\xb4\xba\x89\x4d\x01\x7e\x24\x7e\ \x65\x80\xd1\xc0\x16\x60\x00\x69\x46\x0b\x61\xed\x85\x65\xe8\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x3a\x41\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\ \x01\x95\x2b\x0e\x1b\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xed\ \xdd\x79\x9c\x65\x77\x5d\xe7\xff\xd7\x5d\xab\x6e\xed\x5d\xd5\x55\ \xd5\xfb\x96\x84\x28\x41\x19\xc2\xb0\xdc\xcc\x5c\x10\x6f\xe0\xe7\ \xee\x80\x30\x6a\x12\x24\xe3\x4f\x45\x08\x08\xa3\x2c\x2a\xae\xf3\ \x13\x7e\xc1\x51\x91\x80\x82\xcb\x4f\x16\x01\x17\x10\x07\x15\x47\ \x27\x94\xa0\x25\x16\xfc\x06\x02\xd9\x3a\x4b\x27\xbd\x77\x57\x55\ \xd7\xbe\xdc\xaa\xba\xfb\xfc\x71\x6f\x42\x93\xf4\x56\x5d\xdb\xbd\ \xe7\xbc\x9e\x8f\xc7\x7d\x54\x04\xe9\xf4\xf9\x7c\xbf\x75\x3f\xef\ \xf3\x3d\xe7\x7c\x0f\x48\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\ \x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\xa4\x46\x11\xb1\ \x04\x0a\xb2\xa1\xe1\x91\x28\xb0\x03\xe8\x07\x7a\x81\xbe\xfa\xcf\ \x0b\x7d\xda\x81\xe4\x45\x3e\x2d\xf5\x9f\x00\x85\xcb\x7c\x96\x80\ \xe9\x0b\x7c\xa6\xce\xfb\xe7\x49\xe0\x6c\x36\x93\x2e\x3b\x4a\x92\ \x0c\x00\xd2\xea\x1b\x7c\x2b\xb0\x0f\xd8\x5f\xff\xec\x3b\xef\xff\ \xde\x07\xec\x39\xaf\x71\x37\x9a\x12\x70\x06\x38\x09\x9c\xb8\xd0\ \xcf\x6c\x26\x9d\x73\x94\x25\x19\x00\x14\xf6\x46\xff\xad\xc0\x0d\ \xc0\x33\xeb\x3f\x6f\x00\x0e\x02\xd1\x80\x1e\x76\xb5\x1e\x06\x1e\ \x04\x0e\xd7\x7f\x3e\x08\x1c\x36\x18\x48\x32\x00\x28\x88\xcd\x7e\ \x10\x78\x21\xf0\xbc\xf3\x1a\xfd\x21\x20\x66\x75\x00\xa8\xd4\x57\ \x08\x9e\x08\x04\x5f\x01\xbe\x94\xcd\xa4\x4f\x5b\x1a\x49\x06\x00\ \x35\x4b\xb3\x6f\x01\x9e\x03\xbc\xa0\xde\xf4\x5f\x08\x1c\xb0\x32\ \x57\xe5\x0c\xf0\x25\xe0\xcb\xf5\x9f\x5f\xcd\x66\xd2\x4b\x96\x45\ \x92\x01\x40\x8d\xd0\xf0\x3b\x81\xef\x00\xbe\xb3\xde\xec\x9f\x43\ \xed\x06\x3b\xad\xbf\x12\x70\x5f\x3d\x10\x7c\x1e\x18\xca\x66\xd2\ \xd3\x96\x45\x92\x01\x40\x9b\xd1\xf0\xe3\xc0\xf3\x81\x97\x02\x37\ \xd7\xcf\xf4\x13\x56\x66\x4b\x94\x81\xaf\x01\x77\x03\x9f\x03\xbe\ \x98\xcd\xa4\xf3\x96\x45\x32\x00\x48\xeb\xd5\xf4\x9f\x01\xbc\xac\ \xde\xf0\x5f\x02\x74\x59\x95\x86\xb4\x04\xfc\x4b\x3d\x0c\xdc\x9d\ \xcd\xa4\xef\xb3\x24\x92\x01\x40\x5a\x6d\xd3\xbf\x11\x78\x45\xfd\ \xf3\xad\x56\xa4\x29\x1d\x03\x3e\x5d\xff\x8c\x64\x33\xe9\xaa\x25\ \x91\x0c\x00\xd2\x53\x1b\x7e\x14\x48\x9f\xd7\xf4\x0f\x58\x95\x40\ \x19\x05\xfe\xba\xfe\xf9\x42\x36\x93\x2e\x59\x12\xc9\x00\xa0\x70\ \x37\xfd\x97\x00\xaf\x04\x7e\x10\xd8\x69\x55\x42\x61\x0a\xf8\x5b\ \xe0\x53\xc0\x3f\x1a\x06\x24\x03\x80\xc2\xd3\xf8\xaf\x03\x5e\x03\ \xbc\x9a\xda\xee\x7a\x0a\xaf\x71\xe0\xe3\xc0\x87\xb3\x99\xf4\xfd\ \x96\x43\x32\x00\x28\x78\x4d\xbf\x0b\x78\x15\x70\x3b\xf0\x1f\x9c\ \x2b\xba\x80\xaf\x02\x1f\x06\xfe\x2c\x9b\x49\x4f\x59\x0e\xc9\x00\ \xa0\xe6\x6d\xfa\x11\x6a\xcf\xe7\xdf\x4e\xed\xba\x7e\x9b\x55\xd1\ \x15\xc8\x03\x7f\x57\x0f\x03\xff\xe0\x25\x02\xc9\x00\xa0\xe6\x3a\ \xdb\xff\x71\xe0\x0d\xc0\x35\x56\x44\x6b\x70\x1a\xf8\x00\xf0\x87\ \xd9\x4c\x7a\xd2\x72\x48\x06\x00\x35\x66\xe3\xbf\x0e\x78\x63\xfd\ \x8c\xbf\xd3\x8a\x68\x1d\x2d\x03\x9f\x00\xee\x72\x7f\x01\xc9\x00\ \xa0\xc6\x68\xfa\x11\x6a\xbb\xf2\xfd\x0c\xf0\xdd\x04\xf7\x4d\x7a\ \x6a\x0c\x55\xe0\x0b\xc0\x5d\xc0\xdf\x64\x33\xe9\x8a\x25\x91\x0c\ \x00\xda\xdc\xc6\xdf\x5a\x3f\xd3\x7f\x23\xb5\xd7\xe9\x4a\x9b\xed\ \x18\xf0\x7e\xe0\x8f\xb2\x99\xf4\x82\xe5\x90\x0c\x00\xda\xd8\xc6\ \x9f\x02\x5e\x0b\xbc\x0d\x9f\xdb\x57\x63\x98\x06\xde\x03\xbc\x2f\ \x9b\x49\xcf\x59\x0e\xc9\x00\xa0\xf5\x6d\xfc\xed\xc0\xeb\x80\xb7\ \x00\x83\x56\x44\x0d\x68\x96\xda\xa5\x81\xdf\xcd\x66\xd2\x33\x96\ \x43\x32\x00\x68\x6d\x8d\xbf\x13\xb8\x03\xf8\x59\xa0\xdf\x8a\xa8\ \x09\xcc\x53\xbb\x34\xf0\x1e\x9f\x1c\x90\x0c\x00\x5a\x7d\xe3\xef\ \xa2\x76\x63\xdf\x9b\x81\x3e\x2b\xa2\x26\xb4\x08\xfc\x3e\xf0\x5b\ \xd9\x4c\x7a\xc2\x72\x48\x06\x00\x5d\xba\xf1\xc7\x81\x9f\x06\x7e\ \xc5\x33\x7e\x05\xc4\x02\xf0\x6e\xe0\x77\xb2\x99\xf4\xb2\xe5\x90\ \x0c\x00\x7a\x7a\xf3\xff\xc1\xfa\x17\xe5\xf5\x56\x43\x01\x74\x1a\ \x78\x07\xf0\xa7\xbe\x9a\x58\x32\x00\xa8\xd6\xf8\x9f\x07\xfc\x16\ \xf0\x22\xab\xa1\x10\xf8\x1a\xf0\x96\x6c\x26\xfd\x4f\x96\x42\x32\ \x00\x84\xb5\xf1\xef\x07\xde\x05\xfc\xa8\x63\xa7\x10\xfa\x3b\xe0\ \x6d\xd9\x4c\xfa\x21\x4b\x21\x19\x00\xc2\xd2\xf8\xdb\x80\x5f\xa6\ \x76\x83\x5f\xab\x15\x51\x88\x95\x80\x3f\x04\x7e\xc9\x47\x07\x25\ \x03\x40\xd0\x9b\xff\xf7\x52\x7b\x44\xea\x80\xd5\x90\x9e\x34\x0e\ \xfc\x6c\x36\x93\xfe\x84\xa5\x90\x0c\x00\x41\x6b\xfc\xbb\x80\xf7\ \x02\xaf\xb4\x1a\xd2\x45\x7d\x0e\x78\x5d\x36\x93\x7e\xcc\x52\x48\ \x06\x80\x66\x6f\xfc\x51\xe0\xf5\xc0\x3b\x81\x2e\x2b\x22\x5d\xd6\ \x0a\xb5\x7b\x63\xde\x9d\xcd\xa4\x0b\x96\x43\x32\x00\x34\x63\xf3\ \x7f\x0e\xf0\x07\xc0\xf3\xac\x86\xb4\x6a\x0f\x03\x3f\x9d\xcd\xa4\ \xff\xd9\x52\x48\x06\x80\x66\x69\xfc\xad\xc0\x6f\x00\x6f\x02\xe2\ \x56\x44\xba\x6a\x55\xe0\x23\xc0\x9b\x7d\xd1\x90\x64\x00\x68\xf4\ \xe6\x7f\x23\xf0\xa7\xf8\x8a\x5e\x69\x3d\x9d\x04\x6e\xcf\x66\xd2\ \x9f\xb7\x14\x92\x01\xa0\xd1\x1a\x7f\x0c\x78\x3b\xf0\xab\x40\xd2\ \x8a\x48\xeb\xae\x42\xed\x46\xda\x5f\xcc\x66\xd2\x2b\x96\x43\x32\ \x00\x34\x42\xf3\xbf\x06\xf8\x28\x70\x93\xd5\x90\x36\xdc\x83\xc0\ \xab\xb3\x99\xf4\xd7\x2c\x85\x64\x00\xd8\xca\xe6\xff\x93\xc0\xef\ \x00\x1d\x56\x43\xda\x34\x05\xe0\xd7\xa8\x3d\x29\x50\xb1\x1c\x92\ \x01\x60\x33\x1b\xff\x20\xf0\xc7\xc0\xf7\x59\x0d\x69\xcb\x7c\x11\ \xf8\xb1\x6c\x26\x7d\xd4\x52\xc8\x00\xa0\xcd\x68\xfe\x2f\x06\xfe\ \x1c\xd8\x61\x35\xa4\x2d\x37\x07\xfc\x78\x36\x93\xfe\xb4\xa5\x90\ \x01\x40\x1b\xd5\xf8\x23\xc0\x5b\xa9\x6d\xea\xe3\xe3\x7d\x52\xe3\ \xa8\x02\xbf\x0d\xfc\x42\x36\x93\x2e\x59\x0e\x19\x00\xb4\x9e\xcd\ \xbf\x1b\xf8\x30\xf0\x9f\xac\x86\xd4\xb0\x86\x81\x1f\xce\x66\xd2\ \xa3\x96\x42\x06\x00\xad\x47\xf3\x7f\x36\xf0\x29\xe0\x5a\xab\x21\ \x35\xbc\x31\xe0\x47\xdc\x41\x50\x06\x00\xad\xb5\xf9\xdf\x0e\xfc\ \x3e\x90\xb2\x1a\x52\xd3\x28\x01\xef\xc8\x66\xd2\xbf\x69\x29\x64\ \x00\xd0\x6a\x1b\x7f\x0b\xf0\x3e\xe0\x27\xad\x86\xd4\xb4\xfe\x07\ \xb5\x1d\x04\xdd\x46\x58\x06\x00\x5d\x51\xf3\xef\xaf\x7f\x71\xb8\ \xb1\x8f\xd4\xfc\x0e\x03\xdf\x97\xcd\xa4\x8f\x59\x0a\x19\x00\x74\ \xa9\xe6\xff\x2d\xc0\x67\x81\x43\x56\x43\x0a\x8c\x73\xc0\x0f\x66\ \x33\xe9\x2f\x59\x0a\x19\x00\x74\xa1\xe6\xff\x9d\xd4\x6e\xf6\xdb\ \x66\x35\xa4\xc0\x59\xa6\x76\x39\xe0\x2f\x2d\x85\x0c\x00\x3a\xbf\ \xf9\xff\x38\xf0\x41\x20\x61\x35\xa4\xc0\xaa\x00\xbf\x9c\xcd\xa4\ \xdf\x65\x29\x64\x00\xb0\xf1\x47\x80\x77\x51\x7b\x93\x9f\xf5\x93\ \xc2\xe1\x43\xc0\x6b\xb3\x99\x74\xd1\x52\xc8\x00\x10\xce\xe6\x9f\ \xa2\xf6\x16\xbf\x57\x5a\x0d\x29\x74\x3e\x0f\xfc\x50\x36\x93\x9e\ \xb1\x14\x32\x00\x84\xab\xf9\xf7\x00\x7f\x0f\xa4\xad\x86\x14\x5a\ \x0f\x01\x2f\xcb\x66\xd2\xa7\x2d\x85\x0c\x00\xe1\x68\xfe\x03\xc0\ \xff\x02\x9e\x6d\x35\xa4\xd0\x3b\x06\xdc\xec\x1b\x05\x65\x00\x08\ \x7e\xf3\xdf\x03\x7c\x0e\xb8\xde\x6a\x48\xaa\x3b\x0b\xbc\x34\x9b\ \x49\x1f\xb6\x14\x32\x00\x04\xb3\xf9\x5f\x0b\xdc\x0d\x1c\xb0\x1a\ \x92\x9e\x62\x02\xf8\xae\x6c\x26\x7d\x8f\xa5\x90\x01\x20\x58\xcd\ \xff\x86\x7a\xf3\xdf\x69\x35\x24\x5d\xc4\x1c\xf0\xbd\xd9\x4c\xfa\ \x8b\x96\x42\x06\x80\x60\x34\xff\x7f\x0f\xfc\x03\xd0\x67\x35\x24\ \x5d\x46\x0e\x78\x79\x36\x93\xbe\xdb\x52\xc8\x00\xd0\xdc\xcd\xff\ \x45\xc0\xdf\x02\x5d\x56\x43\xd2\x15\xca\x03\x3f\x9c\xcd\xa4\x3f\ \x63\x29\x64\x00\x68\xce\xe6\xff\x1f\xeb\x67\xfe\xed\x56\x23\x60\ \x13\x3d\x12\x21\x99\x4c\x90\x4c\x24\x88\xc5\xe3\xc4\x63\x31\xe2\ \xb1\x18\xb1\xf8\x37\x7e\xc6\x62\x71\xa2\x91\x08\x91\x48\x84\x48\ \x34\xf2\x8d\x7f\xae\x7f\x00\x2a\x95\x2a\xd5\x6a\x85\x6a\xb5\x4a\ \xb5\x5a\xa5\x52\xad\x52\xad\x54\x29\x57\xca\x94\x4b\x65\x4a\xe5\ \x32\xe5\x72\x99\x52\xe9\x89\x9f\x25\x8a\xa5\x12\x85\x42\x91\x72\ \xb9\xec\x40\x04\x5b\x11\x78\x65\x36\x93\xfe\x1b\x4b\x21\x03\x40\ \x73\x35\xff\xe7\x02\x43\x40\xb7\xd5\x68\x4e\xd1\x68\x94\xd6\xd6\ \x16\x5a\x5b\x5a\x48\x26\x93\xb5\x86\x9f\x4c\x90\x4c\x24\x89\xc7\ \x63\x4f\x36\xf1\xad\x52\x2e\x97\x29\x14\x8b\x14\x0a\x45\x0a\x85\ \x02\x85\x62\x91\xfc\x4a\x9e\xe5\x95\x3c\xa5\x52\xc9\x01\x0c\x86\ \x15\xe0\x07\xbc\x1c\x20\x03\x40\xf3\x34\xff\x67\x01\x5f\xc0\x6b\ \xfe\x4d\x23\x99\x4c\x90\x6a\x6d\xa5\xb5\xb5\x95\x54\xaa\x85\xd6\ \xd6\x56\x92\x89\xc4\x96\x37\xf9\xab\x55\x2a\x95\x58\x59\xc9\xb3\ \xbc\xb2\x72\xde\xcf\x15\xaa\x55\xc7\xba\x09\xe5\xa8\x3d\x1d\xf0\ \xaf\x96\x42\x06\x80\xc6\x6e\xfe\xd7\x01\xff\x8c\x77\xfb\x37\xee\ \x24\x8d\x40\xaa\x35\x45\x5b\x7b\x8a\xf6\xb6\x36\xda\xdb\xda\x48\ \x24\xe2\x81\x3f\xee\x4a\xa5\xc2\xd2\xd2\x32\xb9\xa5\x65\x72\x4b\ \x4b\x2c\x2d\x2d\x51\x2e\x57\x9c\x10\xcd\x61\x1e\xc8\x66\x33\xe9\ \xaf\x58\x0a\x19\x00\x1a\xb3\xf9\xef\x03\x86\x81\x7d\x4e\x85\xc6\ \x92\x4a\xa5\xe8\xea\x6c\xa7\xa3\xbd\x9d\xb6\xb6\x14\xd1\x68\x34\ \xf4\x35\xa9\x56\xab\xe4\xf3\x05\x16\x73\x39\x16\x16\x72\x2c\xe6\ \x72\x54\x2a\x06\x82\x06\x36\x05\xbc\x24\x9b\x49\xdf\x6f\x29\x64\ \x00\x68\xac\xe6\xbf\x03\xf8\x17\xe0\x3a\xa7\xc1\xd6\x8b\xc5\x62\ \x74\x76\x74\xd0\xd5\xd9\x41\x67\x67\x3b\xf1\x78\xdc\xa2\x5c\x76\ \x85\xa0\x4a\x6e\x69\x89\x85\x85\x05\xe6\x17\x72\xe4\xf3\x79\x8b\ \xd2\x78\xc6\x80\x17\x67\x33\xe9\x47\x2d\x85\x0c\x00\x8d\xd1\xfc\ \xfb\xa8\x5d\xf3\x7f\x96\x53\x60\xeb\x24\x12\x71\x7a\xba\xbb\xe8\ \xee\xee\xa2\x2d\x95\x6a\xda\xeb\xf7\x8d\xa2\x50\x28\x32\x37\x3f\ \xcf\xec\xdc\x3c\x4b\x4b\xcb\x16\xa4\x71\x9c\x02\x5e\x94\xcd\xa4\ \x8f\x5b\x0a\x19\x00\xb6\xb6\xf9\xa7\xa8\xbd\xd6\xf3\x05\x0e\xff\ \xe6\x8b\xc7\x6b\x4d\xbf\xa7\xbb\x8b\xb6\x36\x9b\xfe\x46\x86\x81\ \xd9\xb9\x39\x66\xe7\xe6\x59\x5e\x5e\xb1\x20\x5b\xef\x08\x90\xce\ \x66\xd2\x53\x96\x42\x06\x80\xad\x69\xfe\x51\xe0\x93\xc0\x2b\x1c\ \xfa\xcd\x13\x8d\x46\xe9\xe9\xee\x62\x5b\x4f\x37\xed\xed\x6d\x36\ \xfd\x4d\x96\xcf\x17\x98\x9d\x9b\x63\x7a\x66\x96\x42\xa1\x68\x41\ \xb6\xce\xbf\x52\x7b\x8b\xa0\xd7\x6a\x64\x00\xd8\x82\x00\xf0\x5b\ \xc0\xcf\x39\xec\x9b\xa3\x2d\x95\xa2\xb7\xb7\x87\x9e\xee\x2e\x62\ \xb1\x98\x05\xd9\x62\xd5\x6a\x95\xc5\x5c\x8e\xe9\xe9\x59\xe6\xe6\ \x17\xa8\xfa\x8c\xe1\x56\xf8\x73\xe0\x96\x6c\x26\x6d\xf1\xb5\xe5\ \x42\x73\xa7\xd5\xd0\xf0\xc8\xeb\x6c\xfe\x1b\x2f\x16\x8b\xb2\xad\ \xa7\x87\xde\xde\x1e\x52\xad\xad\x16\xa4\x91\xd2\x7e\x24\x42\x67\ \x47\x07\x9d\x1d\x1d\x94\x4a\x25\x66\x66\xe7\x98\x9a\x9e\x21\x9f\ \x2f\x58\x9c\xcd\xf3\x23\xc0\x51\xe0\x1d\x96\x42\xae\x00\x6c\x4e\ \xf3\xff\x1e\xe0\x33\x61\x0a\x3c\x9b\x2d\x99\x4c\xb0\xbd\xaf\x8f\ \xbe\xde\x1e\x1f\xd9\x6b\xaa\x55\x01\x58\x58\x5c\x64\x62\x72\x8a\ \xc5\xc5\x9c\x05\xd9\xa4\xb2\x03\x3f\x91\xcd\xa4\xff\xc4\x52\xc8\ \x00\xb0\xb1\xcd\xff\xd9\xd4\x9e\xf5\xef\x74\xb8\xd7\x5f\x5b\xaa\ \x95\xfe\xed\x7d\x74\x77\x77\x79\x6d\xbf\xc9\x2d\x2f\xaf\x70\x6e\ \x72\x8a\xb9\xb9\x39\x77\x20\xdc\x78\x45\xe0\x7b\xb2\x99\xf4\xe7\ \x2c\x85\x0c\x00\x1b\xd3\xfc\x77\x03\x5f\x02\xf6\x38\xd4\xeb\xab\ \xab\xb3\x83\xfe\xfe\x3e\x3a\xda\x7d\x6f\x52\xd0\x14\x8a\x45\x26\ \x27\xa7\x99\x9a\x9e\x71\xa3\xa1\x8d\x35\x0b\xfc\xc7\x6c\x26\xfd\ \xa0\xa5\x90\x01\x60\x7d\x9b\x7f\x1b\xf0\x45\xe0\xdf\x39\xcc\xeb\ \xa7\xb3\xa3\x9d\x1d\x83\x03\xb4\xb5\xa5\x2c\x46\xc0\x95\x4a\x25\ \xce\x4d\x4c\x31\x39\x35\xed\x0d\x83\x1b\xe7\x04\xf0\xbc\x6c\x26\ \x3d\x61\x29\x64\x00\x58\xbf\x00\xf0\x31\xe0\x56\x87\x78\x7d\x74\ \xb4\xb7\xb1\x63\x70\x80\xf6\xf6\x36\x8b\x11\x32\xc5\x62\x89\x73\ \x13\x13\x4c\x4d\xcf\x1a\x04\x36\xc6\x3f\x01\x2f\xcb\x66\xd2\xbe\ \x2f\x5a\x06\x80\x75\x68\xfe\x6f\x00\xde\xe7\xf0\xae\x5d\x5b\x5b\ \x8a\x9d\x83\x03\x74\x74\xb8\xd4\x1f\x76\x85\x62\x91\xf1\xf1\x49\ \xa6\x67\x66\x2c\xc6\xfa\xbb\x33\x9b\x49\xff\x82\x65\x90\x01\x60\ \x6d\xcd\x3f\x4d\x6d\x9b\xdf\xa4\xc3\x7b\xf5\x12\x89\x38\x3b\x77\ \x0c\xd2\xd3\xdd\x8d\xf7\xf6\xe9\x7c\x2b\x2b\x79\xce\x8c\x8e\xf9\ \xd4\xc0\xfa\xaa\x02\xaf\xc8\x66\xd2\xff\xc3\x52\xc8\x00\x70\x75\ \xcd\x7f\x00\xf8\x2a\xde\xf4\x77\xf5\x13\x22\x12\x61\xa0\x7f\x3b\ \x03\xfd\x7d\x3e\xce\xa7\x4b\x9a\x9b\x5f\xe0\xec\xe8\x38\x85\x82\ \xfb\x08\xac\x57\x49\xa9\xdd\x0f\x70\xc4\x52\xc8\x00\xb0\xba\xe6\ \x1f\x03\xee\x06\x5e\xe2\xb0\x5e\x9d\x9e\xee\x2e\x76\xee\x18\x24\ \x99\x4c\x58\x0c\x5d\x91\x4a\xb5\xca\xe4\xe4\x14\xe3\xe7\x26\x7d\ \x62\x60\x7d\xdc\x0f\xbc\x30\x9b\x49\x2f\x59\x0a\x6d\xb4\x20\x6d\ \x8c\xf3\x2e\x9b\xff\xd5\x49\x26\x93\xec\xdd\xbd\xd3\xeb\xfc\x5a\ \xb5\x68\x7d\xc5\x68\x5b\x4f\x0f\x67\xce\x8e\x32\x37\xbf\x60\x51\ \xd6\xe6\xdb\x80\x3f\xc2\x1b\x98\xe5\x0a\xc0\x15\x9f\xfd\xbf\x02\ \xf8\x14\x21\x7d\xbd\xf1\x5a\x0c\xf4\xf7\x31\x38\xd0\xef\x72\xbf\ \xd6\xc5\xdc\xfc\x02\x67\xce\x8c\x52\x2c\x95\x2c\xc6\xda\xbc\x31\ \x9b\x49\xbf\xdf\x32\xc8\x00\x70\xe9\xe6\xbf\x1f\xb8\x17\xe8\x76\ \x38\xaf\x5c\x2a\xd5\xca\xde\xdd\xbb\x48\xa5\xdc\xaf\x5f\xeb\xab\ \x5c\x2e\x33\x3a\x76\x8e\xa9\x69\x9f\x16\x58\x83\x02\xb5\xd7\x07\ \xdf\x63\x29\x64\x00\xb8\x70\xf3\x8f\x52\x7b\x86\xf6\xc5\x0e\xe5\ \x15\x0e\x78\x24\xc2\x8e\xc1\x7e\xfa\xb7\xf7\xb9\x75\xaf\x36\xd4\ \x62\x6e\x89\x53\xa7\xcf\x7a\x93\xe0\xd5\x7b\x08\x78\x6e\x36\x93\ \x5e\xb6\x14\xda\x08\xcd\x7e\x0f\xc0\x5b\x6c\xfe\x57\xae\xb5\xb5\ \x85\x7d\x7b\x77\xfb\x96\x3e\x6d\x8a\x8e\xf6\x36\xae\xbf\xee\x10\ \x67\xce\x8e\x31\x3d\x33\x6b\x41\x56\xef\x5b\x81\x77\x03\x3f\x63\ \x29\xe4\x0a\xc0\x37\x9f\xfd\x3f\x1b\xf8\x32\xd0\xe2\x30\x5e\xde\ \xf6\xbe\x5e\x76\xee\x18\xf0\x5a\xbf\xb6\xc4\xdc\xdc\x3c\xa7\xce\ \x8c\x52\x2e\xbb\xd9\xdd\x2a\x55\x81\xef\xca\x66\xd2\xff\xcb\x52\ \xc8\x00\x50\x6b\xfe\x2d\xc0\x57\x80\x67\x39\x84\x97\x16\x8f\xc7\ \xd9\xb7\x67\x17\x9d\x9d\x1d\x16\x43\x5b\xaa\x58\x2c\x72\xf2\xf4\ \x59\x37\x10\x5a\xbd\x33\xc0\xb7\x67\x33\xe9\x69\x4b\xa1\x75\xed\ \x0f\x4d\xfa\xf7\xfe\x7f\x6d\xfe\x97\xd7\xd5\xd9\xc1\xde\x3d\xbb\ \x88\xc7\xe3\x16\x43\x5b\x2e\x91\x48\x70\xe8\xc0\x3e\x26\x26\xa7\ \x18\x1d\x3b\x67\x41\xae\xdc\x6e\xe0\x83\xc0\x7f\xb6\x14\x0a\xf5\ \x0a\xc0\xd0\xf0\xc8\x77\x52\xdb\xf0\xc7\xb5\xec\x4b\x18\x1c\xe8\ \x67\x70\x60\xbb\x37\xfa\xa9\x21\x2d\xe6\x96\x38\x71\xf2\x14\xa5\ \x92\x97\x04\x56\xe1\xc7\xb2\x99\xf4\x9f\x5a\x06\x85\x32\x00\x0c\ \x0d\x8f\xf4\x00\xf7\x01\x7b\x1d\xba\x0b\x8b\xc5\xa2\xec\xdb\xb3\ \x9b\xae\xae\x4e\x8b\xa1\x86\x56\x2c\x16\x39\x7e\xf2\x34\x4b\x4b\ \xde\xe4\x7e\x85\xe6\xa8\x5d\x0a\x38\x69\x29\xb4\x1e\x9a\x6d\x6d\ \xf8\xb7\x6d\xfe\x17\xd7\xda\xda\xc2\x81\x7d\x7b\x69\x69\xf1\x3d\ \x48\x6a\x7c\x89\x44\x82\x6b\x0f\x1d\xe0\xcc\xd9\x31\xf7\x0c\xb8\ \x32\xdd\xc0\x1f\x02\xdf\x65\x29\x14\xaa\x15\x80\xa1\xe1\x91\x17\ \x03\x9f\xc7\xdd\xfe\x2e\xa8\xa7\xbb\x8b\xbd\x7b\x76\x79\x97\xbf\ \x9a\xd2\xf4\xcc\x2c\xa7\xcf\x8c\x52\xad\x56\x2d\xc6\xe5\xdd\x92\ \xcd\xa4\xff\xcc\x32\x28\x14\x01\xa0\x7e\xd7\xff\xd7\x81\x6f\x71\ \xc8\x9e\x6e\x70\x60\x3b\x83\x03\x03\xbe\xb6\x57\x4d\x6d\x31\xb7\ \xc4\xf1\x13\xa7\x7c\x54\xf0\xf2\xc6\x81\x6f\xcd\x66\xd2\x2e\x9b\ \x68\x4d\x9a\xe5\x12\xc0\xcf\xdb\xfc\x2f\x90\xde\x22\x11\xf6\xec\ \xde\x49\xef\xb6\x1e\x8b\xa1\xa6\xd7\xd1\xde\xc6\x75\xd7\x1c\xe4\ \xe8\xf1\x13\x14\x0a\x45\x0b\x72\x89\xcc\x0f\xdc\x09\xbc\xd6\x52\ \x28\xd0\x2b\x00\x43\xc3\x23\xd7\x53\xdb\xeb\xdf\x0d\x7f\xce\x13\ \x8b\x46\x39\xb0\x7f\xaf\x6f\xf0\x53\xe0\x94\x4a\x25\x8e\x9d\x38\ \xe5\xcd\x81\x97\x56\x01\x5e\x94\xcd\xa4\xbf\x68\x29\x14\xc8\x00\ \x30\x34\x3c\x12\xa1\x76\xdd\xdf\xed\x7e\xcf\x93\x4c\x24\x38\x78\ \x60\x1f\xad\xad\x66\x22\x05\xb4\xbb\x55\x2a\x9c\x3a\x7d\x96\xd9\ \xb9\x79\x8b\x71\x71\x0f\x02\xcf\xc9\x66\xd2\x2e\x97\xe8\xaa\x34\ \xfa\x25\x80\xff\x62\xf3\xff\x66\xad\x2d\x2d\x1c\x3a\xb8\x9f\x44\ \xc2\xcd\x7d\x14\x5c\xd1\x68\x94\x7d\x7b\x77\x13\x8b\xc5\x7c\x42\ \xe0\xe2\x6e\x00\xde\x0a\xbc\xcb\x52\x28\x50\x2b\x00\x43\xc3\x23\ \xfd\xd4\xde\x86\xd5\xe7\x30\xd5\xa4\x52\xad\x1c\x3a\xb0\xcf\x9d\ \xfd\x14\x2a\x67\x47\xc7\x99\x98\x9c\xb2\x10\x17\xb6\x0c\x7c\x5b\ \x36\x93\x7e\xdc\x52\x28\x48\x2b\x00\xef\xb2\xf9\x7f\x43\x7b\x5b\ \x8a\x83\x07\xf6\x11\x8b\xc5\x2c\x86\x42\x65\xd7\xce\x41\xa2\xd1\ \x28\xe3\xe7\x26\x2c\xc6\x05\xce\x0b\x80\xdf\x05\xbe\xdf\x52\x28\ \x10\x2b\x00\x43\xc3\x23\xdf\x0e\xdc\x03\xd8\xed\x80\x8e\x8e\x76\ \x0e\xee\xdf\xeb\x33\xfe\x0a\xb5\x73\x13\x53\x8c\x8e\x8d\x5b\x88\ \x0b\xbb\x39\x9b\x49\x0f\x59\x06\x05\x21\x00\xfc\x23\xf0\x32\x87\ \xa7\xf6\x42\x9f\xfd\xfb\xf6\xd8\xfc\x25\x60\x72\x6a\x86\x33\x67\ \x47\x2d\xc4\xd3\xdd\x0b\xdc\x98\xcd\xa4\x2b\x96\x42\x57\xaa\xe1\ \x2e\x01\x0c\x0d\x8f\x7c\xb7\xcd\xff\x1b\x67\xfe\x36\x7f\xe9\x1b\ \xb6\xf7\x6d\xa3\x5a\xad\x70\x76\xd4\x95\x80\xa7\x78\x36\x70\x3b\ \xf0\x27\x96\x42\x4d\xb9\x02\x30\x34\x3c\x12\xab\x27\xd9\x1b\xc2\ \x3e\x30\xed\x6d\x29\x0e\x1d\xdc\x6f\xf3\x97\x2e\x60\xfc\xdc\x04\ \x63\xe3\xde\x13\xf0\x14\xa3\xc0\x75\xd9\x4c\x3a\x67\x29\xd4\x8c\ \x2b\x00\x3f\x61\xf3\xaf\xdd\xed\x7f\xf0\xc0\x3e\x9b\xbf\x74\x11\ \x83\x03\xfd\x54\x2a\x15\xce\x4d\xf8\x74\xc0\x79\x76\x02\x6f\x03\ \x7e\xd5\x52\xa8\xa9\x56\x00\x86\x86\x47\x3a\x81\x23\xd4\xb6\xb9\ \x0c\xad\xd6\x96\x16\xae\x39\xb4\xdf\x47\xfd\xa4\x2b\x70\xfa\xec\ \x18\x53\x53\xd3\x16\xe2\x1b\x96\x80\x67\x64\x33\xe9\x33\x96\x42\ \xcd\xb4\x02\xf0\xf3\x61\x6f\xfe\xc9\x44\x82\x43\x07\x6d\xfe\xd2\ \x95\xda\xbd\x73\x90\x4a\xb9\xcc\xcc\xec\x9c\xc5\xa8\x69\x03\xde\ \x49\xed\x7e\x00\xa9\xf1\x57\x00\x86\x86\x47\x76\x02\x8f\x53\x7b\ \xa6\x35\x94\x62\xd1\x28\xd7\x5e\x73\xd0\xed\x7d\xa5\x55\xaa\x56\ \xab\x1c\x3d\x76\x82\xc5\xdc\x92\xc5\xa8\xa9\x50\xdb\x22\xf8\x3e\ \x4b\xa1\x66\x58\x01\x78\x7b\x98\x9b\x7f\x24\x12\xe1\xc0\xfe\xbd\ \x36\x7f\x69\x0d\xbf\x3f\x47\x1e\x3f\x4e\x3e\x9f\xb7\x20\x10\x05\ \x7e\x05\x78\xa5\xa5\x50\x43\xaf\x00\x0c\x0d\x8f\xec\x00\x8e\x86\ \x39\x00\xec\xdd\xb3\xcb\x57\xfa\x4a\x6b\x54\x28\x14\x38\xf2\xf8\ \x31\x4a\xa5\xb2\xc5\xa8\xad\x02\x3c\x3b\x9b\x49\x3f\x60\x29\xd4\ \xc8\x2b\x00\x6f\x0d\x73\xf3\x1f\x1c\xd8\x6e\xf3\x97\xd6\x41\x32\ \x99\xe4\xe0\xfe\x7d\x3c\x7e\xf4\x38\x95\x6a\xd5\x55\x00\xf8\x65\ \xe0\x87\x9d\x19\x6a\xc8\x15\x80\xa1\xe1\x91\x01\xe0\x18\xb5\x1b\ \x57\x42\xa7\xa7\xbb\x8b\x7d\x7b\xf7\x10\x89\x38\x11\xa5\xf5\x32\ \x37\x37\xcf\xf1\x93\xa7\x2d\x44\x6d\x15\xe0\xdb\xb2\x99\xf4\x61\ \x4b\xa1\x46\x5c\x01\x78\x6b\x58\x9b\x7f\x6b\x6b\x0b\x7b\xf7\xec\ \xb2\xf9\x4b\xeb\xac\xbb\xbb\x8b\x81\xfe\xed\x9c\x9b\x98\x74\x15\ \xa0\xb6\x0a\xf0\xa3\xce\x0a\x35\xd4\x0a\x40\xfd\x75\xbf\xc7\x80\ \xf6\xb0\x15\x3d\x16\x8b\x72\xdd\x35\x87\x68\x69\x49\x3a\x03\xa5\ \x0d\x50\xad\x56\x39\x76\xfc\x24\x0b\x8b\xa1\xdf\x14\xaf\x0c\x3c\ \x2b\x9b\x49\x3f\xec\xac\x50\x23\xad\x00\xbc\x25\x8c\xcd\x1f\x60\ \xdf\x9e\xdd\x36\x7f\x69\x23\xcf\x6c\x22\x11\xf6\xed\xdd\xc3\xa3\ \x8f\x1d\xa5\x58\x2c\x86\xb9\x14\xb1\xfa\x2a\xc0\xad\xce\x0a\x35\ \xc4\x0a\xc0\xd0\xf0\x48\x1f\x70\x1c\xe8\x08\x5b\xc1\x07\x07\xfa\ \xd9\x31\xd8\xef\xcc\x93\x36\xc1\xd2\xf2\x32\x8f\x3d\x7e\x9c\x6a\ \xb8\x6f\x0a\x2c\x03\xcf\xcc\x66\xd2\x8f\x3a\x23\xd4\x08\x2b\x00\ \x3f\x1d\xc6\xe6\xdf\xd5\xd9\xc1\xe0\xc0\x76\x67\x9d\xb4\x49\xda\ \x52\x29\xf6\xec\xde\xc1\xa9\xd3\xa1\x7e\x85\x70\x0c\x78\x33\xf0\ \x7a\x67\x84\xb6\x74\x05\x60\x68\x78\x24\x51\x3f\xfb\xdf\x15\xaa\ \xa4\x15\x8f\x73\xfd\x75\x87\xdc\xe6\x57\xda\x02\x27\x4e\x9e\x66\ \x76\x6e\x3e\xcc\x25\xc8\x01\x7b\xb3\x99\xf4\x8c\xb3\x41\x5b\xb9\ \x02\xf0\xaa\xb0\x35\x7f\x80\x7d\x7b\x76\xd9\xfc\xa5\x2d\xb2\x67\ \xf7\x4e\x72\x4b\xcb\x61\xbe\x1f\xa0\x1d\xf8\x49\xe0\x37\x9d\x0d\ \xda\xca\x15\x80\x2f\x03\xcf\x0f\x53\x91\xb7\xf7\xf5\xb2\x7b\xd7\ \x0e\x67\x9b\xb4\x85\x16\x73\x4b\x3c\x7e\xf4\x78\x98\x4b\x70\x12\ \x38\x94\xcd\xa4\xdd\x2a\x51\x9b\xbf\x02\x30\x34\x3c\x92\x0e\x5b\ \xf3\x6f\x6d\x6d\x61\xe7\x8e\x01\x67\x9a\xb4\xc5\x3a\xda\xdb\x18\ \x18\xd8\xce\xb9\x73\xa1\xdd\x1f\x60\x1f\xf0\x0a\xe0\x93\xce\x06\ \x6d\x7a\x00\x00\xde\x14\xa6\xe2\xd6\x1e\x45\xda\x4d\x34\x1a\x75\ \xa6\x49\x0d\x60\xc7\x40\x3f\x8b\x0b\x39\x96\x96\x97\xc3\x5a\x82\ \x37\x19\x00\xf4\x64\x8f\xda\xc4\xb3\xff\x3d\xd4\x5e\xfa\x93\x08\ \x4b\x71\x77\xee\x18\x60\xa0\xdf\xbb\xfe\xa5\x46\x92\xcf\xe7\x79\ \xe4\xc8\xd1\x30\x3f\x1a\xf8\xbc\x6c\x26\xfd\x15\x67\x82\x36\x73\ \x05\xe0\x8e\x30\x35\xff\x54\xaa\x95\xfe\xed\x7d\xce\x30\xa9\xc1\ \xb4\xb4\xb4\x30\x38\xd0\xcf\xd8\xf8\xb9\x30\xaf\x02\xbc\xda\x99\ \xa0\x4d\x59\x01\x18\x1a\x1e\x69\x01\xce\x00\xa1\xe9\x88\xcf\xb8\ \xf6\x10\xa9\x54\xab\x33\x4c\x6a\x40\xd5\x6a\x95\x47\x1f\x3b\xc6\ \xca\xca\x4a\x18\x0f\xbf\x00\xec\xc9\x66\xd2\x13\xce\x04\x57\x00\ \x36\xc3\x0f\x84\xa9\xf9\x0f\xf4\xf7\xd9\xfc\x9b\xc4\x5f\x7c\xf6\ \xb3\xeb\xfe\x67\xde\x74\xe3\x8d\xec\xdd\xb9\xd3\xe2\x36\xf2\x99\ \x4f\x24\xc2\xde\x3d\x3b\x39\xf2\xd8\xb1\x30\x1e\x7e\x12\xb8\x0d\ \x78\x8f\x33\xc1\x00\xb0\x19\x6e\x0f\xcd\x6f\x56\x32\xc9\xe0\x80\ \x5b\xfd\x4a\x8d\xae\x2d\x95\xa2\x7f\x7b\x1f\x13\x93\x53\x61\x3c\ \xfc\xdb\x0d\x00\xda\xf0\x00\x30\x34\x3c\xb2\x0b\x78\x59\x58\x0a\ \xba\x77\xf7\x4e\xef\xfa\x97\x9a\xc4\x8e\xc1\x7e\xe6\xe6\xe7\x29\ \x14\x42\xb7\x41\xd0\xb7\x0f\x0d\x8f\xdc\x98\xcd\xa4\xef\x71\x16\ \x18\x00\x36\xd2\xab\xd9\xda\xb7\x0e\x6e\x9a\x9e\xee\x2e\x3a\x3a\ \xda\x9d\x55\x52\x93\x88\x46\xa3\xec\xda\xb9\x83\xe3\x27\x4e\x85\ \xf1\xf0\xff\x0b\x60\x00\x30\x00\x6c\xa8\xdb\xc3\x50\xc8\x48\x24\ \xc2\xce\x1d\x83\xce\x28\xa9\xc9\x74\x77\x75\xd2\xd1\xde\xce\x62\ \x2e\x17\xb6\x43\xff\xd1\xa1\xe1\x91\xb7\x64\x33\xe9\xbc\xb3\xc0\ \x00\xb0\xee\xea\x3b\xff\x7d\x4b\x18\x0a\x39\xd0\xbf\x9d\x64\x32\ \xe1\x8c\x92\x9a\xd0\xae\x5d\x83\x3c\x7a\xe4\x68\xd8\x0e\xbb\x8f\ \xda\x0d\xda\x6e\x0c\x64\x00\xf0\xec\xff\x6a\x25\x12\x71\x06\xfa\ \x7d\xe6\x5f\x6a\x56\xa9\xd6\x56\xfa\x7a\xb7\x31\x35\x1d\xba\x97\ \xe5\xdd\x6e\x00\x30\x00\x6c\xc4\xd9\x7f\x0a\xf8\xe1\x30\x14\x71\ \xe7\x8e\x41\x6f\xfc\x93\x9a\xdc\x8e\xc1\x7e\x66\x67\xe7\x28\x57\ \x2a\x61\x3a\xec\x97\x0d\x0d\x8f\xec\xca\x66\xd2\x67\x9d\x01\x06\ \x80\xf5\xf4\x7d\x40\x77\xd0\x0b\xd8\xd6\x96\xa2\xa7\xbb\xdb\x99\ \x24\x35\xfb\x97\x61\x3c\xce\xe0\x40\x3f\x67\xc7\xc6\xc3\xd6\x03\ \x7e\x18\x1f\x09\x34\x00\xac\xb3\x57\x84\xe2\xec\x7f\x70\x80\x48\ \xc4\x89\x24\x05\x41\x5f\xdf\x36\x26\x26\xa7\x28\x96\x4a\x61\x3a\ \xec\x57\x18\x00\x0c\x00\xeb\x66\x68\x78\xa4\x15\xf8\xde\xa0\x17\ \xaf\xa3\xbd\xcd\xc7\xfe\xa4\x00\x89\x46\xa3\x0c\x0c\x6c\xe7\xcc\ \xd9\xb1\x30\x1d\xf6\x4d\x43\xc3\x23\x3b\xb2\x99\xf4\x98\x33\xc0\ \x00\xb0\x1e\x5e\x0a\x74\x06\xbd\x78\x3b\x06\x07\x9c\x41\x52\xc0\ \xf4\xf6\x6e\xe3\xdc\xc4\x14\xc5\x62\x68\x36\x07\x8a\x02\x2f\x07\ \x3e\xe0\xe8\x1b\x00\xd6\xc3\x0f\x05\xbd\x70\x9d\x1d\xed\xb4\xb7\ \xb7\x39\x83\xa4\xa0\x75\xc3\x48\x84\xc1\x81\xed\x9c\x3e\x33\x1a\ \xa6\xc3\x7e\x85\x01\xc0\x00\xb0\x66\x43\xc3\x23\x71\xe0\xfb\x3d\ \xfb\x97\xd4\xb4\xab\x00\xdb\x7a\x38\x37\x31\x19\xa6\x2d\x82\xbf\ \x63\x68\x78\xa4\x2f\x9b\x49\x4f\x39\xfa\x06\x80\xb5\x78\x09\xd0\ \x1b\xe4\xa2\x75\x75\x76\xd0\xd6\x96\x72\xf6\x48\x01\x15\x89\x44\ \x18\x1c\xe8\xe7\xd4\xe9\xd0\x3c\x1d\x17\xa7\xb6\x29\xd0\x87\x1c\ \x7d\x03\xc0\x5a\x04\x7e\xf9\xbf\xdf\x4d\x7f\xa4\xc0\xdb\xd6\xd3\ \xcd\xd8\xd8\xb9\x30\x3d\x11\xf0\x43\x06\x00\x03\xc0\x55\x1b\x1a\ \x1e\x89\x02\xff\x29\xc8\x05\x6b\x4b\xb5\xd2\xd1\xee\x9d\xff\x52\ \x18\x56\x01\xb6\x6f\xef\x65\x74\xec\x5c\x58\x0e\xf9\xe6\xa1\xe1\ \x91\xae\x6c\x26\x3d\xef\xe8\x1b\x00\xae\xc6\x73\x81\x40\xbf\x11\ \xa7\x7f\xbb\x67\xff\x52\x58\xf4\xf5\x6e\x63\xfc\xdc\x24\x95\x70\ \xec\x0e\xd8\x02\x64\x81\xbf\x76\xe4\x0d\x00\x57\xe3\xa5\x41\x2e\ \x56\x32\x99\xa0\xbb\xbb\xcb\x59\x23\x85\x44\x2c\x16\xa3\xb7\xb7\ \x87\xc9\xc9\xe9\xb0\x1c\xf2\x4b\x0d\x00\x06\x00\x03\xc0\x05\x6c\ \xef\xeb\x23\xe2\xb6\x7f\x52\xa8\xf4\xf7\xf5\x85\x2d\x00\xc8\x00\ \xb0\x3a\x43\xc3\x23\xed\x40\x3a\xb8\x67\x02\x51\xfa\x7a\x7b\x9c\ \x31\x52\xc8\x24\x93\x09\x7a\x7a\xba\x98\x9d\x0d\xc5\xa5\xf1\x6b\ \x87\x86\x47\x0e\x64\x33\xe9\xe3\x8e\xbc\x01\x60\x35\x5e\x44\xed\ \x1a\x52\x20\x6d\xeb\xe9\xf1\x8d\x7f\x52\x48\xf5\xf5\x6e\x0b\x4b\ \x00\x78\x62\x15\xe0\x8f\x1c\x75\x03\xc0\x6a\x27\x4d\x60\xf5\x7a\ \xf6\x2f\x85\x56\x47\x7b\x3b\x2d\x2d\x49\xf2\xf9\x42\x18\x0e\xf7\ \x66\x03\x80\x01\xe0\x6a\x26\x4d\x20\xb5\xa5\x52\xa4\x5a\x5b\x9d\ \x2d\x52\x88\xf5\x6e\xeb\x09\xcb\x23\x81\xd9\xa1\xe1\x91\x68\x36\ \x93\xae\x38\xea\x06\x80\xcb\x1a\x1a\x1e\xd9\x09\x3c\xcb\xb3\x7f\ \x49\x41\x0e\x00\x63\xe3\x13\x54\xab\xd5\xa0\x1f\x6a\x1f\x70\x23\ \xf0\x15\x47\xdd\x00\x70\xa5\x67\xff\x81\xbc\x3d\x3e\x1a\x8d\xd2\ \xe3\xa3\x7f\x92\x5f\x96\xf1\x38\x5d\x5d\x9d\xcc\xcd\x85\xe2\x5e\ \x80\x9b\x0d\x00\x06\x80\x2b\xf5\x1f\x83\x5a\xa0\x9e\xee\x2e\x62\ \xb1\x98\x33\x45\x12\x7d\xbd\x3d\x61\x09\x00\x19\xe0\x4e\x47\xdc\ \x00\x70\x25\x5e\x18\xd4\x02\x6d\xeb\xe9\x76\x96\x48\x02\x6a\x37\ \x03\xc6\xe3\x71\x4a\xc1\x7f\x3f\xc0\x0b\x1c\x6d\x03\xc0\x65\x0d\ \x0d\x8f\x74\x02\x37\x04\xb2\x38\xf1\x38\xed\xed\x6d\xce\x12\x49\ \x40\xed\xfd\x00\x3d\xdd\x5d\x4c\x4e\x05\x7e\x63\xa0\xbe\xa1\xe1\ \x91\x67\x64\x33\xe9\x47\x1d\x75\x03\xc0\xa5\x3c\x0f\x08\xe4\x1a\ \x79\x4f\x77\x97\x3b\xff\x49\x7a\xda\xf7\x42\x08\x02\x00\xd4\x56\ \x76\x0d\x00\x06\x80\x4b\x4a\x07\xf9\x17\x5d\x92\xce\xd7\xd6\x96\ \x22\x91\x88\x53\x2c\x06\xfe\x32\xc0\x0b\x81\x8f\x3a\xe2\x06\x80\ \xcb\x4d\x92\xc0\x49\x24\xe2\xb4\xb5\xa5\x9c\x21\x92\xbe\x49\x24\ \x12\xa1\xbb\x2b\x14\xab\x00\x69\x47\xdb\x00\x70\x39\x81\xbc\x59\ \xc4\xe5\x7f\x49\x17\xfd\x7e\xe8\x09\x45\x00\x78\xd6\xd0\xf0\x48\ \x7b\x36\x93\xce\x39\xe2\x06\x80\xa7\x19\x1a\x1e\xb9\x16\xe8\x0f\ \x62\x61\x7c\xed\xaf\xa4\x8b\x69\x4b\xa5\x48\xc4\xe3\x14\x83\xfd\ \x34\x40\x9c\xda\x3d\x5e\x5f\x70\xc4\x0d\x00\x17\x12\xc8\xe5\xff\ \x58\x2c\x46\x5b\xca\xe5\x7f\x49\x17\x16\x89\x44\xe8\xec\xec\x60\ \x7a\x66\x36\xe8\x87\xfa\x42\x03\x80\x01\xe0\x62\xfe\x5d\x10\x8b\ \xd2\xd9\xd1\xe1\xf2\xbf\xa4\x4b\xea\x0a\x47\x00\x78\xb6\x23\x6d\ \x00\xb8\x98\x67\x06\xf5\x17\x5b\x92\x2e\xa5\xa3\xa3\x9d\x48\x04\ \x02\xfe\x6a\x80\x1b\x1c\x69\x03\x40\xa8\x26\x47\x67\x67\xbb\x33\ \x43\xd2\x25\xc5\x62\x31\xda\xda\xda\xc8\xe5\x96\x82\x7c\x98\xd7\ \x0f\x0d\x8f\xc4\xb3\x99\x74\xc9\x11\x37\x00\x3c\x69\x68\x78\xa4\ \x0b\xd8\x1b\xb4\x82\xa4\x52\x29\xe2\xf1\xb8\x33\x43\xd2\x65\x75\ \x75\x76\x04\x3d\x00\x24\x81\xeb\x80\x87\x1c\x6d\x03\xc0\xf9\x9e\ \x49\x00\xdf\x00\xd8\xe5\xd9\xbf\xa4\x2b\xd4\xd9\xd9\xc1\xe8\xd8\ \xb9\xa0\x1f\xe6\x0d\x06\x00\x03\xc0\x85\x26\x45\xe0\x74\xb4\x1b\ \x00\x24\x5d\x99\x54\x6b\x2b\xf1\x58\x8c\x52\xb9\x1c\xf4\x00\xf0\ \x29\x47\xdb\x00\x10\xe8\x00\x10\x89\xe0\xee\x7f\x92\x56\xa5\xad\ \xbd\x8d\xf9\xf9\x85\xa0\x07\x00\x19\x00\x82\x3d\x29\x52\xad\x29\ \xa2\xd1\xa8\xb3\x42\xd2\x15\x6b\x6f\x4b\x19\x00\x64\x00\x68\xfe\ \x24\xef\xd9\xbf\xa4\xd5\x06\x80\xc0\xbf\x32\xfc\xba\xa1\xe1\x91\ \x44\x36\x93\x2e\x3a\xda\x06\x00\x86\x86\x47\x52\xc0\x2e\x7f\x91\ \x25\x85\x5d\x2a\x95\x22\x12\x89\x50\x0d\xee\x86\x00\x09\xe0\x00\ \x70\xc4\xd1\x36\x00\x00\xec\x23\x80\x4f\x00\x18\x00\x24\xad\x56\ \x34\x1a\xa1\x2d\x95\x22\xb7\x14\xe8\xc7\x01\xf7\x1b\x00\x0c\x00\ \xe7\x4f\x86\x40\x49\x26\x13\x24\x12\x3e\xff\x2f\x69\xf5\xda\xda\ \x43\x11\x00\x64\x00\x78\x72\x05\x20\x50\x52\xad\xad\xce\x06\x49\ \x7e\x7f\x18\x00\x0c\x00\x61\x0b\x00\xad\x06\x00\x49\x06\x80\xd0\ \x7c\xe7\xcb\x4b\x00\xdf\xf8\x05\x4e\xb5\x38\x1b\x24\x5d\x95\x96\ \x96\x64\xd0\x6f\x04\x74\x05\xc0\x00\x10\xdc\xc9\xe0\x0a\x80\xa4\ \xab\x15\x89\x44\x68\x6d\x69\x61\x79\x65\xc5\x00\xa0\xc0\x07\x80\ \x40\x2d\x07\x45\xa3\x51\x92\x89\x84\xb3\x41\xd2\x1a\x4e\x22\x02\ \x1d\x00\xf6\x0c\x0d\x8f\xc4\xb2\x99\x74\xd9\x91\x0e\x71\x00\x18\ \x1a\x1e\x89\x02\x7b\x82\xf6\x8b\x1b\x89\x44\x9c\x0d\x92\xd6\xf0\ \x3d\xd2\x0a\xcc\x05\xf5\xf0\x12\xd4\xf6\x7e\x39\xe5\x48\x87\x7b\ \x05\xa0\xbf\x3e\x19\x82\xf3\x8b\xdb\xe2\xf5\x7f\x49\x6b\x93\x6a\ \x0d\xfc\xf7\x88\x01\xc0\x00\x40\x5f\xd0\x8a\x90\x4c\x26\x9d\x09\ \x92\xfc\x1e\xb9\xb4\x5e\x47\xd9\x00\xd0\x1b\xbc\x5f\x5c\xaf\xff\ \x4b\xf2\x7b\xc4\x00\x60\x00\x08\xe1\x0a\x80\x01\x40\xd2\xda\x44\ \x22\x11\x12\x89\x38\xc5\x62\x29\xa8\x87\xd8\xe7\x28\x1b\x00\x82\ \x17\x00\x12\x5e\x02\x90\xb4\x1e\x27\x13\xc9\x20\x07\x00\x57\x00\ \x0c\x00\xc1\x0a\x00\x91\x48\x84\x78\x3c\xe6\x4c\x90\xb4\x0e\x27\ \x13\x09\x72\xc1\x3d\x3c\x03\x80\x01\x20\x58\x93\x20\x99\x4c\xf8\ \x08\xa0\xa4\x75\xfb\x3e\x09\x30\x03\x80\x01\x20\x58\x2b\x00\x6e\ \x00\x24\x69\xfd\xbe\x4f\x02\x7d\x39\xd1\x7b\x00\x0c\x00\xc1\x4a\ \x81\xb1\xb8\xaf\x00\x96\xb4\x4e\x5f\xa8\xc1\xbe\x9c\xe8\x0a\x80\ \x01\x80\x9e\x40\x15\x20\xe6\xf5\x7f\x49\xeb\x75\x42\x11\xe8\xef\ \x93\x6e\x47\xd8\x00\x10\xa8\x35\x2e\x03\x80\x24\xbf\x4f\xc2\xf7\ \xdd\xaf\xab\x0b\x00\x81\xda\xef\x32\x16\xf2\x27\x00\xfe\xe2\xb3\ \x9f\xf5\xb7\x60\x9d\xfd\xdb\x3d\xf7\x84\xfa\xf8\x6f\xba\xf1\x46\ \xf6\xee\xdc\x19\xce\x15\x80\x58\xa0\x2f\x29\xba\x67\xba\x01\xc0\ \x15\x00\x49\xba\x70\x00\x88\xba\x02\x20\x03\x80\x2b\x00\x92\xc2\ \x26\x12\x89\x10\x8b\xc5\x28\x97\x03\xf9\xd6\x5c\x03\x80\x01\x20\ \x60\x01\x20\xe6\x53\x00\x92\xd6\xf1\x4b\xd5\x00\x20\x03\x40\x73\ \x88\xba\x09\x90\xa4\xf5\x5c\x05\x88\x06\xf6\x3b\xc5\x00\x60\x00\ \x08\xd6\x24\x70\x17\x40\x49\x7e\xa7\x5c\xd9\xf9\xd2\xd0\xf0\x48\ \x2c\x9b\x49\x97\x1d\x65\x03\x80\x69\x5d\x92\xc2\x75\x52\xd1\x02\ \x2c\x39\xca\xe1\x0d\x00\x81\xba\x68\xee\x25\x00\x49\x06\x80\x70\ \x7e\xff\x1b\x00\x56\xaf\xe4\x2f\xab\x24\x85\xf2\xa4\xa2\xe8\x08\ \x87\x3b\x00\x14\x0c\x00\x92\x14\xca\xef\x94\x82\x23\x6c\x00\xf0\ \x97\x55\x92\xc2\xf5\x9d\x52\xf6\x06\x40\x03\x40\xde\xb2\x49\xd2\ \x85\x55\xab\x55\xcf\xfe\xe5\x0a\x40\x33\xa8\x54\xaa\xc4\x62\xae\ \x02\x48\x32\x00\x18\x00\x0c\x00\xa1\x9a\x04\xd5\x6a\x05\x88\x3a\ \x13\x24\x19\x00\x0c\x00\x06\x80\x70\x05\x80\xaa\xb3\x40\x92\xdf\ \x29\x06\x00\x03\x80\x01\x40\x92\xae\x5e\xc5\x00\xa0\x00\x07\x80\ \xbc\xbf\xac\x92\x14\xba\x93\x0a\x6f\x00\x37\x00\x30\x1b\xa8\x5f\ \xd6\x8a\x01\x40\x92\x01\xe0\x0a\xcc\x39\xba\x06\x80\xa9\x20\x15\ \xa0\x5c\xf1\xb1\x56\x49\xeb\xf8\x9d\x52\xae\x04\xf5\xd0\xa6\x1c\ \x5d\x03\xc0\x74\xa0\x7e\x59\x4b\x06\x00\x49\xeb\x19\x00\x02\xfb\ \x9d\x32\xed\xe8\x1a\x00\x02\x95\x02\x4b\x65\x03\x80\xa4\x75\x6a\ \xfe\x95\x4a\x90\x2f\x01\x18\x00\x0c\x00\x01\x5b\x01\x08\x79\x00\ \xb8\xe9\xc6\x1b\x43\x7d\xfc\xff\x76\xcf\x3d\xeb\xfe\x67\x5e\x7f\ \xe8\x10\x7d\x3d\x3d\xa1\xad\x69\xdf\xb6\x6d\xe1\x0d\x00\xa5\x52\ \x90\x0f\xcf\x00\x60\x00\x08\xd8\x0a\x40\xc8\x2f\x01\xec\xdd\xb9\ \xd3\xdf\x82\xf5\x6e\x80\x3d\x3d\xd6\x35\xa4\x02\xbe\xa2\x68\x00\ \x30\x00\x04\xec\x26\x40\x2f\x01\x48\x5a\xb7\x15\x80\x40\x7f\x9f\ \x78\x13\xa0\x01\x20\x68\x2b\x00\x25\x67\x81\x24\x57\x00\x5c\x01\ \x30\x00\x84\x6d\x12\x14\x0d\x00\x92\xd6\xeb\xfb\xa4\x58\x74\x05\ \x40\x81\x0e\x00\x93\xd4\xb6\x84\x4c\x06\xa1\x00\x85\x42\xd1\x59\ \x20\xc9\xef\x93\xcb\x3b\xeb\x08\x87\x3c\x00\x64\x33\xe9\xca\xd0\ \xf0\xc8\x29\xe0\x9a\x20\x14\xa0\x5c\x2e\x53\x2e\x97\x89\xc5\x62\ \xce\x06\x49\x06\x80\x8b\x1c\x1a\x30\xea\x08\xbb\x02\x00\x70\x22\ \x28\x01\x00\xa0\x50\x2c\x92\x32\x00\x48\x5a\xf3\x77\x49\x60\xdf\ \x97\x73\x2a\x9b\x49\x57\x1c\x61\x03\x00\xc0\xc9\xa0\xa5\xf6\x54\ \x6b\xab\xb3\x41\xd2\x55\xab\x56\xab\x41\x5e\x01\x38\xe1\x08\x1b\ \x00\x02\x1a\x00\x7c\xcb\xa5\xa4\xb5\x29\x95\x4a\x41\xde\x05\xd0\ \x00\x60\x00\x08\xe6\x64\x28\x14\xbd\x11\x50\xd2\x5a\x4f\x24\x02\ \xfd\x3d\x62\x00\x30\x00\x04\x73\x32\xe4\x57\x7c\xcd\xb5\xa4\xb5\ \x59\xc9\x07\xfa\x7b\xc4\x00\x60\x00\x78\x52\xa0\x2e\x01\x2c\x1b\ \x00\x24\xad\x35\x00\xac\x18\x00\x14\x9e\x00\x50\x05\x22\x41\x28\ \x42\xa9\x54\xa2\x54\x2a\x11\x8f\xc7\x9d\x11\x92\xae\xf2\x44\x62\ \xc5\x00\xa0\xe0\x07\x80\x6c\x26\x9d\xaf\xef\x05\xb0\x2f\x48\xe9\ \xbd\xa3\xc3\x00\x20\xc9\x15\x80\xa7\xc8\x13\xb0\x55\x5f\xad\x6d\ \x05\x00\xe0\x81\x20\x05\x80\xe5\x95\x15\x3a\x3a\xda\x9d\x11\x92\ \x56\xad\x58\x2c\x06\xf9\xc5\x62\x8f\x64\x33\x69\xf7\x4c\x37\x00\ \x7c\x93\xc3\xc0\xf7\x98\xde\x25\x85\x5d\xc0\xef\x23\x7a\xd0\x11\ \x36\x00\x04\x7a\x52\x04\xfc\xfa\x9d\xa4\x0d\x3d\x81\x08\xf4\xf7\ \xc7\x61\x47\xd8\x00\x10\xe8\x00\xb0\xb2\xb2\x42\xa5\x52\x21\x1a\ \x8d\x3a\x2b\x24\xad\x4a\x6e\x69\xd9\x15\x00\x85\x2a\x00\x1c\x06\ \x2a\x40\x20\x3a\x66\xb5\x0a\x4b\x4b\xcb\xde\x07\x20\x69\xd5\x96\ \x72\x4b\x06\x00\x85\x27\x00\x64\x33\xe9\xdc\xd0\xf0\xc8\x09\xe0\ \x60\x90\x52\xbc\x01\x40\xd2\x6a\xac\xe4\xf3\x94\x82\x7b\x03\xe0\ \x0a\xf0\xb8\xa3\x6c\x00\xb8\x58\x32\x0c\x50\x00\x58\x72\x46\x48\ \x5a\xe5\xd9\x7f\xa0\x97\xff\x1f\xce\x66\xd2\x65\x47\xd9\x00\x70\ \xb1\x00\xf0\x7d\x81\xf9\x45\x5e\x5a\xa2\x5a\xad\x12\x89\x44\x9c\ \x19\x92\x3c\x71\x70\xf9\xdf\x00\x70\x09\x5f\x0f\x52\x31\xca\xe5\ \x0a\xf9\x7c\x81\xd6\xd6\x16\x67\x86\x24\x03\x40\xc0\xbe\xe3\xb5\ \xbe\x01\x60\x24\x68\x05\x59\xcc\xe5\x0c\x00\x92\xae\x48\xa9\x54\ \x22\x9f\x0f\xf4\xeb\xc4\x47\x1c\x65\x03\xc0\x05\x65\x33\xe9\x13\ \x43\xc3\x23\x63\xc0\x8e\xa0\x14\x64\x61\x21\xc7\xf6\xbe\x5e\x67\ \x86\xa4\xcb\x9a\x5f\x58\x0c\xf2\xe1\x15\x80\xaf\x3a\xca\x06\x80\ \xcb\x25\xc4\x97\x07\x69\x05\xa0\x52\xa9\x12\x8d\x7a\x1f\x80\xa4\ \xcb\x9d\x30\x04\x3a\x00\xdc\x9b\xcd\xa4\xdd\x21\xcd\x00\x70\x49\ \x5f\x0e\x52\x00\xa8\x54\x2a\xe4\x96\x96\xe8\xf4\x71\x40\x49\x97\ \x50\xad\x56\x59\x58\xcc\x05\xf9\x10\xbf\xe4\x28\x1b\x00\xae\x64\ \x05\x20\x60\xa9\x7e\xc1\x00\x20\xe9\x92\x96\x96\x97\x83\xfc\x02\ \x20\x03\x80\x01\xe0\x8a\x7c\x05\x28\xad\xd3\x9f\xd5\x10\xe6\x17\ \x72\xec\xda\xe9\xe4\x90\x74\xa9\x13\x85\xc5\xa0\x1f\xa2\x01\xc0\ \x00\x70\x69\xd9\x4c\x7a\x69\x68\x78\xe4\x3e\xe0\xc6\xa0\x14\x25\ \x9f\xcf\x53\x28\x14\x49\x26\x13\xce\x10\x49\x17\x3d\x51\x08\xb0\ \x73\xd9\x4c\xfa\xa8\xa3\x6c\x00\xb8\xd2\xa4\x78\x63\x90\x0a\x33\ \x37\x3f\x4f\xff\xf6\x3e\x67\x88\xa4\xa7\x29\x14\x8b\x2c\x2f\x07\ \x7a\x07\x40\xcf\xfe\x0d\x00\x57\x6c\x18\x78\x7d\x90\x0a\x33\x3b\ \x67\x00\x90\x74\x91\x13\x84\xb9\xf9\xa0\x1f\xe2\xb0\xa3\x6c\x00\ \xb8\x52\x43\x04\xe8\xcd\x80\x50\x7b\x33\xa0\x97\x01\x24\x5d\xf0\ \x04\x61\x36\xf0\x01\xe0\x6e\x47\xd9\x00\x70\x45\xb2\x99\xf4\xc4\ \xd0\xf0\xc8\xbd\xc0\x73\x82\xb5\x0a\x30\xc7\x40\xff\x76\x67\x89\ \xa4\x27\x15\x0a\x45\x96\x82\xbd\xfc\x7f\x0e\xb8\xcf\x91\x36\x00\ \xac\xc6\xe7\x82\x17\x00\xe6\x0d\x00\x92\x9e\x76\x62\x10\x70\x9f\ \xcb\x66\xd2\x55\x47\xda\x00\xb0\x1a\x77\x03\x6f\x0d\x52\x71\x96\ \x97\x57\xc8\xe7\x0b\xb4\xb4\x24\x9d\x29\x92\x9e\x3c\x31\x08\x7a\ \x00\x70\x94\x0d\x00\xab\x35\x0c\x2c\x03\xa9\xa0\xa5\xfd\xc1\x81\ \x7e\x67\x8a\x24\xf2\xf9\x02\xcb\xcb\x81\xde\x1d\xb7\x8a\xd7\xff\ \x0d\x00\xab\x95\xcd\xa4\x57\x86\x86\x47\xfe\x15\x78\x69\x90\x0a\ \x34\x3d\x33\xcb\x40\xff\x76\x22\x11\xdf\x0d\x20\x85\xdd\xd4\xcc\ \x4c\xd0\x0f\xf1\xe1\x6c\x26\x7d\xda\x91\x36\x00\x5c\x8d\xcf\x05\ \x2d\x00\x14\x0a\x45\x16\x73\x39\x3a\x3b\x3a\x9c\x2d\x52\x88\x55\ \xab\x55\x66\x66\x66\x83\x7e\x98\x2e\xff\x1b\x00\xae\xda\xdd\xc0\ \xbb\x83\x56\xa4\xe9\xe9\x59\x03\x80\x14\x72\x73\xf3\x0b\x94\x4a\ \xe5\xa0\x1f\xa6\xcb\xff\x06\x80\xab\xf6\x75\xe0\x0c\xb0\x3b\x78\ \xbf\xf8\x25\xe2\xf1\xb8\x33\x46\x0a\xa9\xe9\xe9\xc0\x2f\xff\x2f\ \x03\xff\xe4\x48\x1b\x00\xae\x4a\x36\x93\xae\x0e\x0d\x8f\xfc\x35\ \xf0\x86\x20\x15\xa9\x5a\xad\x32\x33\x3b\xe7\xce\x80\x52\x48\x15\ \x0a\x85\xa0\xbf\xfa\x17\xe0\x1f\xb3\x99\x74\xce\xd1\x36\x00\xac\ \xc5\x5f\x05\x2d\x00\x00\x4c\x4d\xcf\xb0\xbd\xaf\x0f\xef\x05\x94\ \xc2\x67\x2a\xf8\xd7\xfe\x9f\xf8\xee\x96\x01\x60\x4d\x86\x81\x09\ \x20\x50\xcf\xce\xe5\xf3\x05\x16\x16\x17\xe9\xea\xf4\x5e\x00\x29\ \x4c\x2a\x95\x0a\x53\x53\x81\x5f\xfe\x2f\x00\x7f\xeb\x68\x1b\x00\ \xd6\x24\x9b\x49\x97\x87\x86\x47\x3e\x03\xfc\x44\xd0\x8a\x35\x31\ \x39\x65\x00\x90\x42\x66\x66\x76\x8e\x72\x39\xf0\x37\xff\x0d\x65\ \x33\xe9\x39\x47\xdb\x00\xb0\x1e\xfe\x2a\x88\x01\x60\x71\x31\xc7\ \xf2\xf2\x0a\xa9\x54\xab\x33\x47\x0a\x81\x6a\xb5\xca\xc4\xc4\x54\ \x18\x0e\xf5\xd3\x8e\xb6\x01\x60\xdd\xd2\x24\x30\x0b\xf8\x47\x4c\ \x0b\x00\x00\x19\xe7\x49\x44\x41\x54\xf4\x04\xad\x60\xe7\x26\xa7\ \xd8\xbf\x77\xb7\x33\x47\x0a\x81\xf9\x85\x45\xf2\x85\x42\xd0\x0f\ \xb3\x04\x7c\xc6\xd1\x36\x00\xac\x8b\x6c\x26\x5d\x1c\x1a\x1e\xf9\ \x5b\xe0\xd5\x41\x2b\xd8\xdc\xdc\x1c\x85\x1d\x03\x24\x13\xbe\x26\ \x58\x0a\xba\x89\x89\xc9\x30\x1c\xe6\x70\x36\x93\x9e\x70\xb4\x0d\ \x00\xeb\xe9\xd3\x41\x0c\x00\xd5\x2a\x4c\x4e\x4e\xb3\x6b\xe7\xa0\ \xb3\x47\x0a\xb0\xdc\xd2\x12\xb9\xa5\xe5\x30\x1c\xaa\x77\xff\x1b\ \x00\xd6\xdd\xff\x04\xa6\x81\xde\xa0\x15\x6d\x6a\x7a\x86\x81\xfe\ \x3e\x37\x06\x92\x02\x6c\x7c\x3c\x14\x67\xff\x45\xe0\x2f\x1d\x6d\ \x03\xc0\xba\xca\x66\xd2\xf9\xa1\xe1\x91\x4f\x10\xc0\x3d\x01\x2a\ \x95\x0a\xe7\x26\xa6\x5c\x05\x90\x82\x7a\xf6\x9f\x5b\x62\x61\x71\ \x31\x0c\x87\xfa\x59\x97\xff\x0d\x00\x1b\xe5\x43\x41\x0c\x00\x00\ \x93\x53\xd3\xf4\x6f\xef\x23\x91\x70\x15\x40\x0a\x9a\xb1\xf1\xd0\ \xf4\xc4\x0f\x39\xda\x06\x80\x8d\x5a\x05\xb8\x67\x68\x78\xe4\x3e\ \xe0\xdb\x83\x56\xb8\x6a\xb5\xca\xb9\x89\x09\x76\xef\xda\xe9\x2c\ \x92\x02\x64\x71\x31\xc7\x62\x2e\x14\x3b\xe2\x8e\x03\x7f\xef\x88\ \x1b\x00\x36\x3a\x61\xbe\x27\x88\xc5\x9b\x9a\x9e\xa5\xbf\x7f\xbb\ \x4f\x04\x48\x9e\xfd\x37\xa3\x8f\x65\x33\xe9\x92\x23\x6e\x00\xd8\ \x48\x1f\xa7\xf6\x8a\xe0\x64\x10\x57\x01\xc6\xc7\x27\xd9\xbb\xc7\ \x55\x00\x29\x08\x16\x16\x16\xc9\x2d\x2d\x85\xe5\x70\x5d\xfe\x37\ \x00\x6c\xac\x6c\x26\x3d\x31\x34\x3c\xf2\x59\xe0\xe5\x41\x2c\xe0\ \xf4\xcc\x0c\xfd\xdb\x7b\x69\x6d\x6d\x71\x36\x49\x4d\x1e\xe8\xcf\ \x8e\x8d\x87\xe5\x70\xff\x77\x36\x93\x7e\xd0\x51\x37\x00\x6c\x56\ \xd2\x7c\x79\x50\x8b\x78\x66\x74\x8c\x6b\x0e\xee\x77\x36\x49\x4d\ \x1d\xe6\x67\x59\x59\xc9\x7b\xf6\x2f\x03\xc0\x3a\xfb\x9f\xc0\x28\ \x10\xc8\xb5\xf2\xc5\xc5\x1c\x73\xf3\x0b\x74\x77\x75\x3a\xa3\xa4\ \x26\x54\x2e\x97\x19\x1b\x3b\x17\x96\xc3\x5d\x06\xfe\xcc\x51\xd7\ \xa6\x04\x80\x6c\x26\x5d\x1a\x1a\x1e\xf9\x20\xf0\xeb\x41\x2d\xe4\ \xd9\xd1\x71\x3a\x3b\x3b\x88\x46\x22\xce\x2a\xa9\xc9\x8c\x9f\x9b\ \xa4\x14\xfc\x37\xfe\x3d\xe1\x63\xd9\x4c\x7a\xd6\x51\xd7\x66\x3e\ \xc4\xfe\x41\xe0\x17\x81\x40\x5e\x2c\x2f\x14\x0a\x4c\x4e\x4e\x31\ \xd0\xbf\xdd\x59\x25\x35\x91\x7c\xbe\xc0\xe4\xd4\x74\x58\x0e\xb7\ \x0a\xdc\xe5\xa8\x6b\x53\x03\x40\x36\x93\x3e\x37\x34\x3c\xf2\x67\ \xc0\xed\x41\x3e\x8b\xd8\xd6\xd3\xe3\xe6\x40\x52\x13\x39\x3b\x3a\ \x46\xb5\x5a\x0d\xcb\xe1\x0e\x65\x33\xe9\x07\x1c\x75\x6d\xf6\x0a\ \x00\xc0\x7b\x83\x1c\x00\x2a\x95\x0a\x67\xce\x8e\x72\x60\xff\x5e\ \x67\x96\xd4\x04\x66\xe7\xe6\x99\x5f\x58\x0c\xd3\x21\xbf\xd7\x51\ \xd7\x96\x04\x80\x6c\x26\xfd\xf5\xa1\xe1\x91\x7f\x06\x5e\x1c\xd4\ \x82\xce\xcd\x2f\x78\x43\xa0\xd4\x04\xca\xe5\x32\x67\xce\x8e\x85\ \xe9\x90\x8f\x00\x9f\x75\xe4\xb5\x55\x2b\x00\x4f\x24\xd0\x17\x07\ \xb9\xa8\x67\xce\x8c\xd2\xd1\xde\x46\x2c\x16\x73\x86\x35\xb8\x9b\ \x6e\xbc\x71\xdd\xff\xcc\xbe\x6d\xdb\x2c\x6c\x13\x38\x3b\x3a\x4e\ \xa9\x14\xaa\x8d\xf0\xde\x97\xcd\xa4\xab\x8e\xbc\xb6\x32\x00\xfc\ \x0d\x70\x0c\x38\x18\xd4\xa2\x16\x4b\x25\x46\xc7\xce\xb1\x67\xb7\ \x3b\x04\x36\xba\xbd\x3b\x1d\xa3\x30\x5a\x5c\xcc\x31\x3d\x13\xaa\ \x1b\xe1\xe7\x80\x0f\x3b\xf2\x3a\xdf\x96\x3c\xb3\x36\x34\x3c\xf2\ \xb3\xc0\x6f\x07\xbd\xb8\xd7\x1c\x3a\x40\x47\x7b\x9b\xb3\x4c\x6a\ \x20\x95\x4a\x85\x47\x8e\x1c\xa5\x50\x28\x84\xe9\xb0\xdf\x93\xcd\ \xa4\x7f\xd6\xd1\xd7\x56\xaf\x00\x00\xfc\x31\xf0\x4b\x40\xa0\xd7\ \x4a\x4f\x9d\x3e\xcb\xf5\xd7\x1d\x22\x1a\x8d\x3a\xd3\xa4\x06\x31\ \x36\x7e\x2e\x6c\xcd\xbf\x80\x37\xff\xa9\x51\x56\x00\xea\xab\x00\ \xbf\x0a\xfc\x5a\xd0\x0b\xdc\xbb\xad\x87\xbd\x7b\x76\x39\xd3\xa4\ \x06\xb0\xb0\xb0\xc8\xd1\xe3\x27\xc3\x76\xd8\x7f\x9c\xcd\xa4\x7f\ \xd2\xd1\x57\xa3\xac\x00\x50\x4f\xa4\xff\x15\xe8\x0e\x72\x81\xa7\ \x67\x66\xe9\xea\xec\xa0\xbb\xbb\xcb\xd9\x26\x6d\xa1\x52\xa9\xc4\ \xc9\xd3\x67\xc3\x76\xd8\x45\xe0\x5d\x8e\xbe\x1a\x6a\x05\xa0\xbe\ \x0a\xf0\xdf\x80\x5f\x0e\x7a\x91\x63\xb1\x18\xd7\x5f\x77\x88\x44\ \x22\xe1\x8c\x93\xb6\xc8\xb1\xe3\xa7\x98\x5f\x58\x08\xdb\x61\x7f\ \x28\x9b\x49\xff\xb8\xa3\xaf\x46\x5b\x01\x00\x78\x0f\xf0\x26\x20\ \xd0\xa7\xc7\xe5\x72\x99\x93\xa7\xcf\x72\xe8\xc0\x3e\x22\xbe\x2b\ \x40\xda\x74\x53\x53\x33\x61\x6c\xfe\x25\xe0\x9d\x8e\xbe\x1a\x72\ \x05\xa0\xbe\x0a\xf0\x4e\x6a\xef\x08\x08\xbc\x9d\x3b\x06\x7c\x57\ \x80\xb4\xc9\x56\x56\xf2\x3c\xfa\xd8\xd1\x30\x6d\xf7\xfb\x84\x8f\ \x66\x33\xe9\xd7\x38\x03\xd4\xa8\x2b\x00\x00\xbf\x03\xbc\x11\x08\ \xfc\xd6\x79\xa3\x63\xe7\x68\x6b\x6b\xf3\xd1\x40\x69\x93\x94\xcb\ \x65\x8e\x9f\x3c\x15\xc6\xe6\x5f\xf6\xec\x5f\x0d\xbf\x02\x50\x5f\ \x05\xb8\x13\x78\x7b\x28\x12\x57\x3c\xc6\x33\xae\xf5\x7e\x00\x69\ \xa3\x55\xab\x70\xe2\xe4\x29\xe6\xe6\x17\xc2\x78\xf8\x1f\xcb\x66\ \xd2\xaf\x76\x16\xa8\xd1\x57\x00\x00\x7e\x0b\x78\x7d\x18\x56\x01\ \x4a\xa5\x32\xc7\x4f\x9e\xe6\xda\x43\x07\xbc\x1f\x40\xda\x40\x13\ \x93\x93\x61\x6d\xfe\x25\xe0\x37\x9c\x01\x6a\x8a\x15\x80\xfa\x2a\ \xc0\x2f\x01\xff\x4f\x58\x0a\xdf\xd7\xbb\xcd\xad\x82\xa5\x0d\xb2\ \xb8\x98\xe3\xf1\x63\x27\xc2\x7a\xf8\x1f\xcc\x66\xd2\xaf\x73\x16\ \xa8\x59\x56\x00\xa0\xb6\x35\xf0\x6b\x81\x3d\x61\x28\xfc\xd4\xf4\ \x0c\x6d\x6d\x29\x7a\xb7\xf5\x38\x0b\xa5\x75\x54\x28\x14\x39\x7e\ \xf2\x74\x58\x0f\x7f\x1e\xf8\x55\x67\x81\x9a\x6a\x05\xa0\xbe\x0a\ \xf0\x63\xc0\x47\x42\x53\xfc\x48\x84\x43\x07\xf7\x7b\x53\xa0\xb4\ \x4e\xca\xe5\x32\x8f\x1d\x3d\xce\xca\x4a\x3e\xac\x25\xf8\x85\x6c\ \x26\x7d\xa7\x33\x41\xcd\xb6\x02\x00\xf0\xa7\xd4\xf6\x05\xb8\x31\ \x0c\xc5\xaf\x56\xab\x1c\x3f\x71\x8a\xeb\xae\x39\x48\x4b\x4b\xd2\ \xd9\x28\xad\xf1\xf7\xe9\xc4\xc9\x33\x61\x6e\xfe\x27\x80\xdf\x75\ \x26\xa8\x29\x57\x00\xea\xab\x00\xdf\x01\x7c\x3e\x4c\x83\x90\x4c\ \x26\xb8\xee\x9a\x83\xc4\xe3\x71\x67\xa4\x74\x95\x4e\x9d\x3e\x1b\ \xb6\x57\xfc\x3e\xd5\x2d\xd9\x4c\xfa\xcf\x9c\x09\x6a\xda\x00\x50\ \x0f\x01\x9f\x01\x7e\x20\x4c\x03\xd1\xd6\x96\xe2\x9a\x83\xfb\x7d\ \x73\xa0\x74\x15\xc6\xcf\x4d\x32\x36\x7e\x2e\xcc\x25\xf8\x32\x90\ \xce\x66\xd2\x55\x67\x83\xae\x54\xa3\x9e\x72\xbe\x0d\xf8\x6e\x20\ \x34\x0f\xcb\x2f\x2d\x2d\x73\xea\xf4\x59\xf6\xed\xdd\xed\xe3\x81\ \xd2\x2a\xcc\xce\xce\x85\xbd\xf9\x57\x81\x9f\xb3\xf9\x2b\x10\x2b\ \x00\xf5\x55\x80\xbb\xa8\xed\x10\x18\x2a\x3e\x1e\x28\x5d\xb9\x85\ \x85\x45\x8e\x9d\x08\xe5\x4e\x7f\xe7\xfb\x64\x36\x93\xfe\xcf\xce\ \x06\x05\x65\x05\x00\xe0\x57\x80\x57\x01\x3b\xc2\x34\x20\x53\xd3\ \x33\x44\xa3\x51\x76\xed\x1c\x74\x76\x4a\x97\xb0\x98\xcb\xd9\xfc\ \x61\xa1\x5a\xad\xfe\x9c\xb3\x41\x81\x5a\x01\xa8\xaf\x02\xfc\x08\ \x10\xca\x9b\x5a\x06\x07\xfa\xd9\x31\xd8\xef\x0c\x95\x2e\x20\xb7\ \xb4\xcc\xd1\x63\x27\xa8\x54\x2a\xa1\xae\x43\xb5\x5a\xfd\xd9\x9b\ \x5f\x74\xd3\x7b\x9c\x11\x0a\x5c\x00\xa8\x87\x80\xbf\xa7\x76\x3f\ \x40\xe8\xec\xdc\x31\xc8\x40\x7f\x9f\xb3\x54\x3a\xcf\xf2\xf2\x0a\ \x8f\x1f\x3b\x4e\xb9\x5c\x09\x7b\x29\xbe\x9a\xcf\xe7\x5f\xf0\x3d\ \x37\x7f\x47\xd9\x59\xa1\xab\xd1\x0c\xcf\x9d\xbd\x1e\x78\x00\x68\ \x0f\xdb\xe0\x8c\x8e\x8d\x13\x8d\x46\xd9\xde\xb7\xcd\x99\x2a\x01\ \x2b\xf9\x3c\x47\x8f\x9d\xb0\xf9\x43\x79\x25\x9f\x7f\xed\xf7\xda\ \xfc\x15\xe4\x15\x80\xfa\x2a\xc0\x5b\x81\xdf\x0c\xeb\x20\xed\xda\ \x39\x48\xff\x76\x57\x02\xe4\x99\xff\xd1\x63\x27\x28\x95\xed\x79\ \xb3\xf3\x73\x7f\xf7\x43\xdf\xfb\x5d\xdf\xef\xac\x50\x18\x02\x40\ \x1c\xf8\x0a\xf0\xec\xb0\x0e\xd4\x8e\xc1\x7e\x06\x07\xbc\x27\x40\ \xe1\x94\x5b\x5a\xe6\xd8\x71\xcf\xfc\x01\xf2\xf9\x3c\x5f\xb9\xff\ \xeb\xd5\x54\xaa\xed\xcd\x6f\xfd\xe9\x9f\xba\xcb\xd9\xa1\x40\x07\ \x80\x7a\x08\x78\x3e\xf0\x6f\x40\x2c\xac\x83\x35\xd0\xdf\xc7\xce\ \x1d\x3e\x1d\xa0\x70\x59\xcc\xe5\x38\x76\xfc\x54\xe8\x6f\xf8\x7b\ \xc2\x83\x8f\x3e\xcc\xd4\xcc\x34\x40\xb5\x35\x95\x7a\xf3\x2f\xdc\ \xf1\x7a\x43\x80\x82\x1d\x00\xea\x21\xe0\x7d\xc0\x1b\xc2\x3c\x60\ \x7d\x7d\xbd\xec\xde\x39\xe8\x66\x41\x0a\x05\x9f\xf3\xff\x66\x93\ \xd3\x53\x1c\x3e\xf2\xc8\xf9\xff\x51\x35\xd9\xd2\xf2\xe6\x77\xbc\ \xf1\x0d\x86\x00\x05\x3e\x00\x74\x00\x5f\x03\xae\x0d\xf3\xa0\x6d\ \xeb\xe9\x66\xef\x9e\x5d\x86\x00\x05\xda\xec\xec\x1c\x27\x4f\x9f\ \xb5\xf9\xd7\x15\x8b\x45\xbe\x7a\xff\xd7\x29\x14\x8b\x4f\xfd\xaf\ \xaa\x89\x64\xf2\xcd\xbf\xf4\x33\x6f\x34\x04\x28\xb8\x01\xa0\x1e\ \x02\xd2\xc0\xbf\xd0\x1c\x4f\x30\x6c\x98\x8e\xf6\x36\x0e\xec\xdf\ \x4b\x2c\x16\x73\x16\x2b\x70\xdc\xdb\xff\xe9\xce\x5b\xfa\xbf\x10\ \x43\x80\x82\x1f\x00\xea\x21\xe0\xbf\x01\xbf\x1c\xf6\xc1\x6b\x69\ \x69\xe1\xd0\x81\xbd\x24\x93\xbe\x4a\x58\xc1\x50\xad\x56\x39\x7d\ \x66\x34\xec\x6f\xf5\x7b\x9a\xb1\x89\x71\x1e\x3d\xfa\xf8\x65\xcb\ \x67\x08\x50\x18\x02\x40\x9c\xda\x0d\x81\xcf\x0b\xfb\x00\xc6\xe3\ \x31\x0e\xee\xdf\x47\x5b\x5b\xca\xd9\xac\xa6\x56\x2e\x97\x39\x71\ \xf2\x0c\x0b\x8b\x8b\x16\xe3\x3c\xcb\x2b\x2b\xdc\x73\xff\xbd\x94\ \x2b\x57\xf4\xf8\xa3\x21\x40\xc1\x0e\x00\xf5\x10\xf0\x0c\xe0\x1e\ \x42\xb8\x41\xd0\x53\x45\x23\x11\xf6\xed\xdd\x4d\x77\x77\x97\x33\ \x5a\x4d\xa9\x50\x28\x72\xec\xc4\x49\x56\x56\xf2\x16\xe3\xfc\x6e\ \x5e\xad\x72\xef\x43\x0f\x30\xbf\xb0\xb0\xaa\xff\x99\x21\x40\x81\ \x0e\x00\xf5\x10\xf0\x3a\xe0\xf7\x1d\xc6\x9a\x81\xfe\xed\xec\x18\ \xec\xf7\xe6\x40\x35\x95\xc5\xc5\x1c\xc7\x4f\x9e\xa6\xec\x06\x3f\ \x4f\x73\xf2\xcc\x69\x8e\x9f\x3e\x79\x55\xd9\xc1\x10\xa0\x40\x07\ \x80\x7a\x08\xf8\x2c\xf0\x3d\x0e\x65\x4d\x67\x47\x3b\xfb\xf6\xee\ \x21\x1e\xf7\xe6\x40\x35\xfa\xd9\x2d\x4c\x4c\x4e\x32\x3a\xe6\xcd\ \x7e\x17\xb2\x90\x5b\xe4\xeb\x0f\xde\xbf\x96\xa7\x20\x0c\x01\x0a\ \x7c\x00\xd8\x01\xdc\x07\xb8\x4d\x5e\x5d\x22\x91\xe0\xc0\xfe\x3d\ \xb4\xa5\xbc\x2f\x40\x8d\xa9\x5c\x2e\x73\xea\xf4\x59\xe6\xe6\x17\ \x2c\xc6\x85\xea\x53\x29\xf3\xb5\xfb\xef\x63\x69\x65\x79\xcd\x39\ \xcb\x10\xa0\xc0\x06\x80\x7a\x08\xb8\x19\xf8\x07\x42\xbc\x4b\xe0\ \xd3\x06\x36\x12\x61\xcf\xee\x1d\xf4\x6e\xf3\x45\x42\x6a\x2c\x2b\ \x2b\x79\x8e\x9f\x3c\x45\x3e\x5f\xb0\x18\x17\xf1\xf0\xe3\x47\x38\ \x37\x39\xb1\x5e\x7f\x9c\x21\x40\xc1\x0d\x00\xf5\x10\xf0\x8b\xc0\ \x3b\x1d\xd2\x6f\xd6\xd3\xdd\xc5\x9e\xdd\x3b\xdd\x2f\x40\x0d\x61\ \x6a\x6a\x86\x33\xa3\x63\x6e\xee\x73\x09\x67\xc7\xc7\x78\xec\xf8\ \xd1\xf5\xfe\x63\x0d\x01\x0a\x74\x00\x88\x00\x9f\x01\x7c\x43\xd6\ \x53\x24\x12\x09\xf6\xed\xdd\x4d\x47\x7b\x9b\xc5\xd0\x96\x28\x95\ \x4a\x9c\x3a\x3d\xba\xda\xbb\xd9\x43\x67\x7e\x71\x81\x7b\x0f\x3f\ \xb0\x51\x01\xc9\x10\xa0\x60\x06\x80\x7a\x08\xe8\xa1\xf6\xd6\xc0\ \x6b\x1c\xda\xa7\x1b\x18\xd8\xce\x8e\x01\x9f\x12\xd0\xe6\x5a\x58\ \x58\xe4\xe4\xe9\xb3\x94\x4a\x25\x8b\x71\x09\xc5\x62\x91\x7b\x1e\ \xb8\x97\x7c\x61\x43\x2f\x8d\x18\x02\x14\xcc\x00\x50\x0f\x01\xcf\ \xa6\xb6\x49\x90\xa7\xbb\x17\xd0\x96\x4a\xb1\x6f\xef\x2e\x5a\x5a\ \x5a\x2c\x86\x36\x54\xa5\x52\x61\x6c\xfc\x1c\x13\x93\xd3\x16\xe3\ \x72\x5d\xb9\x5a\xe5\xfe\x87\x0f\x33\x3b\x3f\xb7\x29\xff\x3a\x43\ \x80\x02\x19\x00\xea\x21\xe0\x35\xc0\x87\x1d\xde\x8b\x0c\x7a\x24\ \xc2\xe0\x40\x3f\x03\xfd\x7d\xae\x06\x68\x43\x2c\x2e\xe6\x38\x75\ \x66\x94\x42\xc1\x1b\xfd\xae\xc4\xb1\x53\x27\x38\x75\xf6\xcc\xa6\ \x66\x8e\x44\x4b\xcb\x9b\x7f\xc9\xb7\x08\x1a\x00\x02\x1a\x02\x3e\ \x00\xfc\xb4\x43\x7c\x71\xad\xad\xad\xec\xdd\xb3\xd3\xc7\x05\xb5\ \x6e\xca\xe5\x32\x67\x47\xc7\xdd\xcb\x7f\x15\xa6\x66\xa6\x79\xf0\ \xd1\x87\xb7\x64\xe1\x21\xd9\xda\xfa\x5f\xdf\xf1\x86\x3b\xde\xeb\ \x28\x18\x00\x82\x16\x00\x5a\x80\x7f\x02\x6e\x72\x98\x2f\xad\x7f\ \x7b\x1f\x3b\x06\xfb\x89\x46\xa3\x16\x43\x57\x6d\x76\x6e\x9e\x33\ \x67\xc7\xbc\xd6\xbf\x0a\x4b\xcb\xcb\x7c\xfd\xc1\xfb\x28\x6d\xd1\ \x2e\x88\xb1\x78\xbc\xda\xdd\xd3\x73\xcb\x9b\x6e\x7f\xcd\x9f\x3b\ \x1a\x06\x80\xa0\x85\x80\x7e\x60\x04\x6f\x0a\xbc\xac\x64\x32\xc1\ \xae\x9d\x3b\xe8\xee\xea\xb4\x18\x5a\x95\x7c\xbe\xc0\xd9\xd1\x31\ \xe6\x17\x7c\x89\xcf\x6a\x14\x8b\x45\xbe\xf6\xe0\xfd\xac\xe4\x57\ \xb6\xaa\xf9\xb3\xad\xb7\x97\x68\x2c\x56\xac\x54\x2a\xb7\xbe\xf1\ \xd5\xb7\x7d\xd2\x51\x31\x00\x04\x2d\x04\x5c\x4f\xed\xa6\xc0\x5e\ \x87\xfb\xf2\x3a\xda\xdb\xd9\xb5\x6b\x90\x54\x6b\xab\xc5\xd0\x25\ \x95\xcb\x65\xc6\xcf\x4d\x32\x39\x35\xed\x73\xfd\xab\x54\xa9\x54\ \xb8\xef\xa1\x07\x99\x5f\xdc\x9a\xc7\x22\xcf\x6b\xfe\x4f\xe6\x91\ \x6a\xb5\x7a\xeb\x1b\x6e\xbb\xd5\x10\x60\x00\x08\x5c\x08\x78\x31\ \xf0\x8f\x80\xb7\xbe\x5f\xa1\xbe\xde\x6d\xec\x18\xec\x27\x1e\x8f\ \x5b\x0c\x7d\x93\x6a\xb5\xca\xf4\xcc\x2c\x63\x63\xe7\xb6\x6c\xe9\ \xba\xd9\xeb\xf7\xf0\x63\x8f\x32\x31\x3d\xd5\x28\xcd\xdf\x10\x60\ \x00\x08\x7c\x08\xb8\x0d\xf8\x68\x98\x8e\x79\xcd\x5f\x14\xd1\x28\ \x83\x03\xfd\xf4\xf5\x6d\xf3\xfe\x00\x01\xb5\x67\xfa\xcf\x8e\x8d\ \xfb\xda\xde\x35\x38\x76\xf2\x04\xa7\x46\xcf\x6c\xcd\xef\xf4\xc5\ \x9b\xff\x93\x21\x00\xb8\xf5\x8e\x5b\x6f\x31\x04\x18\x00\x02\x17\ \x02\x7e\x05\xf8\x75\x87\x7d\x75\x12\xf1\x38\x03\x03\xdb\xe9\xed\ \xdd\x46\xd4\xc7\x06\x43\x69\x71\x31\xc7\xd8\xf8\x04\xb9\xa5\x25\ \x8b\xb1\x06\xa3\xe7\xc6\x39\x72\xec\xf1\x46\x6d\xfe\x86\x00\x03\ \x40\xe0\x43\xc0\x47\x80\x1f\x73\xe8\xaf\x22\x08\x24\x12\x0c\x0e\ \x6c\xa7\x77\x5b\x8f\xfb\x07\x84\x44\x2e\xb7\xc4\xd8\xf8\x04\x8b\ \xb9\x9c\xc5\x58\xa3\x99\xb9\x59\x1e\x78\xe4\xa1\x2d\xb9\x5f\x62\ \x15\xcd\xff\x09\x25\xe0\x16\x43\x80\x01\x20\x68\x01\x20\x49\xed\ \xcd\x81\x2f\x71\xf8\xaf\x4e\x32\x99\x60\x70\xa0\x9f\x6d\x3d\xdd\ \x06\x81\xa0\x36\xfe\xa5\x25\xc6\xc7\x27\x59\x58\xf4\xce\xfe\xf5\ \xa9\x67\x8e\xaf\x1f\x7e\x80\xf2\x16\xdc\x33\x71\x15\xcd\xdf\x10\ \x60\x00\x08\x74\x08\xe8\x04\x86\x80\xe7\x39\x05\xd6\xb0\x22\x10\ \x8f\xb3\x7d\x7b\x2f\x7d\xbd\xdb\x7c\xdb\x60\x00\x54\xab\x55\xe6\ \x17\x16\x99\x98\x98\x24\xb7\xb4\x6c\x41\xd6\xc9\xf2\xca\x32\xf7\ \x1e\x7e\x80\x42\xb1\xd8\x4c\xcd\xdf\x10\x60\x00\x08\x74\x08\xe8\ \x05\xbe\x00\x7c\x9b\xd3\x60\x6d\xa2\xd1\x28\xbd\xbd\x3d\xf4\xf7\ \xf5\x91\x4c\x26\x2c\x48\x93\xa9\x54\x2a\xcc\xcc\xce\x31\x31\x31\ \xb5\xd1\x2f\xa2\x09\x9d\x95\x7c\x9e\x7b\x0f\x3f\x40\xbe\xb0\xf9\ \x37\x4d\xae\x43\xf3\x37\x04\x18\x00\x02\x1d\x02\x06\x81\x7f\x01\ \x9e\xe1\x54\x58\x1f\x3d\x3d\x5d\xf4\xf5\x6e\xa3\xa3\xbd\xdd\x62\ \x34\xb8\x42\xa1\xc0\xd4\xcc\x2c\x53\x53\x33\x5b\xb2\x34\x1d\x86\ \xfa\x7e\xfd\xf0\x03\x5b\xb2\xd1\xcf\x3a\x36\x7f\x43\x80\x01\x20\ \xd0\x21\x60\x6f\x3d\x04\x1c\x70\x3a\xac\x9f\x96\x96\x24\xbd\xdb\ \x7a\xe8\xdd\xd6\xe3\x5e\x02\x0d\xa4\x5a\xad\x32\x37\xbf\xc0\xf4\ \xf4\x0c\x0b\x8b\xde\xd8\xb7\x51\x8a\xc5\x22\xf7\x3e\xf4\x00\x4b\ \xcb\x9b\x7f\x29\x65\x03\x9a\xbf\x21\xc0\x00\x10\xe8\x10\x70\x4d\ \x3d\x04\xec\xb2\x1a\xeb\x3c\xc1\x22\x11\xba\xba\x3a\xe9\xeb\xed\ \xa1\xa3\xbd\xdd\x9b\x06\xb7\x48\x3e\x5f\x60\x6a\x66\x86\x99\x99\ \x59\x4a\x25\xcf\xf6\x37\x52\xa9\x54\xe2\xbe\x87\x1f\xdc\x92\x27\ \x27\x36\xb0\xf9\x1b\x02\x0c\x00\x81\x0e\x01\xcf\xa4\x76\x4f\x40\ \xbf\xd5\xd8\x18\xf1\x78\x9c\x9e\xee\x2e\x7a\xba\xbb\x68\x6b\x4b\ \x19\x06\x36\x58\xa1\x50\x64\x76\x6e\x8e\xd9\xb9\x79\x96\x97\x57\ \x2c\xc8\x26\x28\x97\xcb\xdc\xff\xf0\xe1\x2d\xd9\xe2\x77\x13\x9a\ \xbf\x21\xc0\x00\x10\xe8\x10\xf0\x1c\x6a\x6f\x10\xec\xb1\x1a\x1b\ \x2b\x91\x88\xd3\xdd\xd5\x45\x4f\x4f\x17\x6d\x29\xc3\xc0\xba\x35\ \xfd\x62\x91\xb9\xb9\x79\x66\x67\xe7\xb7\x64\xf9\x39\xcc\x2a\x95\ \x0a\x0f\x3c\xf2\x10\xb3\xf3\x73\x41\x6e\xfe\x86\x00\x03\x40\xa0\ \x43\xc0\x73\xa9\xed\x13\xb0\xdd\x6a\x6c\x52\x18\x88\xc7\xe9\xec\ \xec\xa0\xab\xb3\x83\x8e\x8e\x76\x1f\x29\x5c\x85\x6a\xb5\xca\xd2\ \xf2\x32\x0b\x0b\x8b\xcc\x2f\xe4\x58\xb6\xe9\x6f\xd9\x99\xff\x83\ \x8f\x3e\x1c\x96\xe6\x6f\x08\x30\x00\x04\x3a\x04\x3c\x13\xb8\x1b\ \xef\x09\xd8\xfc\x09\x19\x81\xb6\xb6\x36\xba\x3a\x3b\xe8\xec\xec\ \xf0\xad\x84\x17\xfa\xd6\x2d\x95\x98\x5f\x58\x64\x61\x61\x91\x85\ \xc5\x9c\x77\xf0\x37\xc0\x78\x3c\xf0\xc8\x43\x41\x5f\xf6\x37\x04\ \x18\x00\x42\x15\x02\x0e\x01\x9f\x03\x0e\x5a\x8d\xad\x13\x8f\xc5\ \x68\x6b\x6f\xa3\xbd\x2d\x45\x7b\x5b\x1b\xa9\x54\x8a\x68\x34\x5c\ \xd3\x76\x25\x9f\x67\x29\xb7\x4c\x6e\x69\x89\xdc\xd2\x12\xf9\xbc\ \xcf\xea\x37\x8a\x42\xb1\xc8\xfd\x0f\x1f\x26\xb7\x14\xc8\x1b\xfe\ \x0c\x01\x06\x80\x50\x87\x80\xdd\xf5\x10\xf0\x2d\x56\xa3\x51\x56\ \x08\x22\xb4\xa5\x52\xb4\xb5\xa7\x48\xb5\xb6\x92\x6a\x6d\xa5\xa5\ \x25\x19\x98\x7b\x08\x8a\xc5\x22\xcb\x2b\x79\x56\x56\x56\xc8\x2d\ \x2d\xb3\x94\x5b\xf2\x95\xbb\x0d\x2a\x5f\xc8\x73\xff\x43\x87\x59\ \x5a\x09\xd4\xa3\x7e\x86\x00\x03\x80\xce\x0b\x01\xfd\xc0\x3f\x02\ \xcf\xb1\x1a\x8d\x1b\x0a\x5a\x5b\x5a\x68\x6d\x6d\xa1\xb5\xb5\x95\ \x54\x6b\x0b\xc9\x64\x92\x64\x32\xd1\x90\xc1\xa0\x5a\xad\x52\x2a\ \x95\x28\x14\x8a\xac\xe4\xf3\xac\xac\xe4\x59\x5e\x59\x61\x65\x25\ \xef\x72\x7e\x93\x58\x5e\x59\xe1\xfe\x87\x1f\x64\x25\xdf\xd4\x3b\ \xfc\x19\x02\x0c\x00\xba\x82\x10\xd0\x03\x7c\x16\xb8\xc9\x6a\x34\ \x97\x44\x22\x5e\x0b\x03\x89\x04\xc9\x64\x82\x64\x22\x49\x3c\x1e\ \x23\x16\x8f\x11\x8f\xc5\x88\xc5\xe2\xc4\x62\xd1\x75\x0b\x0a\xe5\ \x4a\x85\x72\xa9\x44\xa9\x5c\xa6\x5c\x2a\x53\x2a\x97\x29\x16\x8b\ \x14\x0a\xf5\x4f\xb1\x40\xa1\x50\xdc\x92\x37\xc2\x69\x7d\x2c\x2d\ \x2f\x71\xdf\x43\x87\x29\x14\x37\xff\x52\x4c\x03\x37\x7f\x43\x80\ \x01\x20\xd0\x21\xa0\x1d\xf8\x6b\xe0\xa5\x56\x23\x78\x62\xb1\x5a\ \x20\x88\x44\x23\x44\x22\xdf\xf8\x44\xcf\xfb\xe7\x6a\xb5\xfa\x4d\ \x9f\xca\x79\xff\x5c\x2e\x57\x28\x97\xcb\x36\xf6\x80\x5b\xc8\x2d\ \xf2\xc0\xc3\x87\x29\x96\x4a\x36\x7f\x43\x80\x01\x20\x64\x21\x20\ \x01\x7c\x00\xf8\xbf\xad\x86\x14\x2e\x53\x33\xd3\x3c\xf4\xd8\xa3\ \x54\x2a\x15\x9b\xbf\x21\xc0\x00\x10\xe2\x20\xf0\x76\xe0\x5d\x40\ \xd4\x6a\x48\xc1\x77\x7a\xf4\x2c\x47\x4f\x1e\xdf\x92\x7f\x77\x13\ \x36\x7f\x43\x80\x01\x20\xf0\x21\xe0\x95\xc0\x47\x80\x36\xab\x21\ \x05\x53\xb5\x5a\xe5\xb1\xe3\xc7\x18\x3d\x37\x66\xf3\x37\x04\x18\ \x00\xf4\x4d\x21\xe0\xf9\xc0\x67\x80\x1d\x56\x43\x0a\x96\x52\xb9\ \xcc\x43\x47\x1e\x61\x66\x6e\xd6\xe6\x6f\x08\x30\x00\xe8\x82\x21\ \x60\x3f\xf0\x77\xc0\xb3\xac\x86\x14\x0c\x2b\xf9\x3c\x0f\x3e\xf2\ \x10\xb9\xe5\x25\x9b\xbf\x21\xc0\x00\xa0\x4b\x86\x80\x2e\xe0\x93\ \xc0\xcb\xac\x86\xd4\xdc\x16\x16\x17\x79\xf0\xd1\x87\x28\x14\x8b\ \x36\x7f\x43\x80\x01\x40\x57\x14\x02\xe2\xd4\x6e\x0c\x7c\x8b\x75\ \x95\x9a\xd3\xf8\xc4\x39\x8e\x1c\x3f\xba\x25\x77\xfa\x07\xbc\xf9\ \x1b\x02\x0c\x00\xa1\x08\x02\x2f\x07\x3e\x04\x74\x5b\x0d\xa9\x39\ \x54\x2a\x15\x1e\x3f\x71\x8c\xd1\x73\xe3\x5b\xf6\x77\x08\x41\xf3\ \x37\x04\x18\x00\x42\x11\x02\xae\x03\x3e\x05\x7c\xbb\xd5\x90\x1a\ \xdb\x4a\x7e\x85\xc3\x47\x1e\x61\x31\x97\xdb\xb2\xbf\x43\x88\x9a\ \xbf\x21\xc0\x00\x10\x8a\x10\x90\xa2\xb6\x69\xd0\x6b\xac\x86\xd4\ \x98\xa6\x66\x66\x78\xe4\xf1\x23\x94\xca\xa5\x2d\xfb\x3b\x84\xb0\ \xf9\x1b\x02\x0c\x00\xa1\x09\x02\x3f\x05\xbc\x17\xf0\xc5\xf6\x52\ \x83\xa8\x56\xab\x9c\x38\x7d\x8a\x93\x67\x4f\x6f\xe9\xdf\x23\xc4\ \xcd\xdf\x10\x60\x00\x08\x4d\x08\x78\x2e\xb5\xa7\x04\x0e\x5a\x0d\ \x69\x6b\x15\x8b\x45\x1e\x7a\xec\x51\x66\xe7\xe7\x6c\xfe\x86\x00\ \x03\x80\x36\x25\x04\x74\x03\xef\x07\x6e\xb3\x1a\xd2\xd6\x98\x9e\ \x9d\xe1\xd1\xa3\x8f\x6d\xd9\x23\x7e\x36\x7f\x43\x80\x01\x20\xdc\ \x41\xe0\x55\xd4\xee\x0d\xe8\xb3\x1a\xd2\xe6\x28\x97\xcb\x1c\x3d\ \x79\x62\xcb\xb6\xf4\xb5\xf9\x1b\x02\x0c\x00\x7a\x22\x04\xec\x02\ \xfe\x04\xf8\xbf\xac\x86\xb4\xb1\xe6\x17\x17\x78\xe4\xf1\x23\x2c\ \xaf\xac\xd8\xfc\x0d\x01\x32\x00\x34\x4c\x10\xb8\x03\xf8\x4d\x7c\ \xa1\x90\xb4\xee\xaa\xd5\x2a\x27\xce\x9c\xe2\xd4\x99\x33\x54\xa9\ \xda\xfc\x0d\x01\x32\x00\x34\x5c\x08\xb8\x1e\xf8\x28\xf0\x7c\xab\ \x21\xad\x8f\xa5\xe5\x65\x1e\x7e\xfc\x08\x8b\xb9\xc5\x86\xf8\xfb\ \xd8\xfc\x0d\x01\x06\x00\x5d\x2c\x04\xc4\x81\x5f\x00\x7e\x11\x1f\ \x17\x94\xd6\x74\xd6\x7f\x66\x7c\x94\xe3\xa7\x4e\x6e\xd9\x76\xbe\ \x36\x7f\x43\x80\x01\x40\x57\x13\x04\xae\xa3\x76\x83\x60\xd6\x6a\ \x48\xab\xb3\x90\x5b\xe4\xc8\xb1\xc7\xb7\x74\x47\x3f\x9b\xbf\x21\ \xc0\x00\xa0\xb5\x06\x81\xdb\x80\xdf\x06\x06\xac\x86\x74\x69\x95\ \x4a\x65\xe5\xe8\xc9\x13\x2d\x67\xc7\x47\x1b\xea\xfb\xcc\xe6\x6f\ \x08\x30\x00\xe8\x6a\x43\xc0\x36\xe0\x4e\xe0\x27\x80\xa8\x15\x91\ \x2e\xe8\x53\x0b\x8b\x8b\x6f\x7a\xfc\xd4\xf1\xdb\xe6\xe7\xe7\xef\ \x6c\x94\xef\x34\x9b\xbf\x21\xc0\x00\xa0\xf5\x08\x02\x37\x01\x7f\ \x00\x3c\xcb\x6a\x48\x4f\x3a\x5e\xa9\x54\xee\x78\xe9\x8b\xff\xc3\ \xdf\x3f\xf1\x1f\xbc\xfb\xf7\x3f\xf8\xb6\xa5\xa5\xdc\xbb\x6d\xfe\ \x86\x00\x19\x00\x82\x14\x02\x12\xc0\x9b\x81\x77\xe0\x6b\x86\x15\ \x6e\xcb\xc0\x7b\xaa\xd5\xea\x3b\x6f\x7e\xd1\x4d\x4b\x4f\xfd\x2f\ \xdf\xf9\xbe\xf7\xbf\xad\x90\xcf\x6f\x59\x08\xb0\xf9\x6f\x4a\x08\ \xb8\xf5\x8e\x5b\x6f\xf9\x4b\x4b\x61\x00\x08\x5b\x10\xd8\x0e\xfc\ \x1a\xf0\x53\x40\xc2\x8a\x28\x44\x2a\xc0\x27\x80\x77\x64\x33\xe9\ \x93\x97\xfa\x7f\xfc\x8d\xf7\xde\xf5\xb6\x62\xb1\xb8\xe9\x21\xc0\ \xe6\x6f\x08\x30\x00\x68\x33\x82\xc0\xf5\xc0\xbb\x81\x1f\xb4\x1a\ \x0a\x81\x2f\x00\x6f\xc9\x66\xd2\x5f\xbd\xd2\xff\xc1\x66\x87\x00\ \x9b\xbf\x21\xc0\x00\xa0\xcd\x0e\x02\x2f\x06\x7e\x0b\xf8\xf7\x56\ \x43\x01\xf4\x30\xf0\xf6\x6c\x26\xfd\x37\x57\xf3\x3f\xde\xac\x10\ \x60\xf3\x37\x04\x18\x00\xb4\x55\x21\x20\x02\xdc\x02\xbc\x0b\xd8\ \x67\x45\x14\x00\x13\xc0\xaf\x03\x7f\x90\xcd\xa4\x4b\x6b\xf9\x83\ \x36\x3a\x04\xd8\xfc\x0d\x01\x06\x00\x35\x42\x10\x68\xa5\xf6\xc8\ \xe0\xdb\x81\x3d\x56\x44\x4d\x68\x12\xf8\x1d\xe0\xfd\xd9\x4c\x7a\ \x61\xbd\xfe\xd0\x8d\x0a\x01\x36\x7f\x43\x80\x01\x40\x8d\x16\x04\ \x92\xc0\x8f\x03\x3f\x0f\xec\xb7\x22\x6a\x02\xe3\xd4\x36\xbe\xfa\ \x40\x36\x93\xde\x90\xcd\xfb\xd7\x3b\x04\xd8\xfc\x0d\x01\x06\x00\ \x35\x72\x10\x48\x00\xaf\xa1\xf6\x8e\x81\x43\x56\x44\x0d\x68\x14\ \xf8\xef\xd4\x96\xfa\x97\x36\xfa\x5f\xb6\x5e\x21\xc0\xe6\x6f\x08\ \x30\x00\xa8\x59\x82\x40\x1c\xb8\x8d\xda\x1e\x02\xd7\x5a\x11\x35\ \x80\xd3\xd4\x5e\x83\xfd\x47\xd9\x4c\x7a\x65\x33\xff\xc5\x6b\x0d\ \x01\x36\x7f\x43\x80\x01\x40\xcd\x18\x04\x62\xc0\xab\x80\x9f\x01\ \xd2\x56\x44\x5b\xe0\x5e\xe0\x2e\xe0\xe3\xd9\x4c\x3a\xbf\x55\x7f\ \x89\xab\x0d\x01\x36\x7f\x43\x80\x01\x40\x41\x08\x03\xcf\xaf\x07\ \x81\x57\x01\x49\x2b\xa2\x0d\x54\x06\xfe\x06\xb8\x2b\x9b\x49\x7f\ \xa1\x51\xfe\x52\xab\x0d\x01\x36\x7f\x43\x80\x01\x40\x41\x0b\x02\ \x3b\x81\xd7\x01\xaf\xc5\x37\x0f\x6a\x7d\xcd\x02\xff\x1f\xf0\x7b\ \xd9\x4c\xfa\x58\x23\xfe\x05\xaf\x34\x04\xd8\xfc\x0d\x01\x06\x00\ \x05\x39\x08\xb4\x00\x3f\x5a\x5f\x15\x78\x8e\x15\xd1\x1a\x3c\x0c\ \xbc\x0f\xf8\x48\x36\x93\xce\x35\xfa\x5f\xf6\x37\xde\x7b\xd7\xdb\ \x8b\xc5\xe2\x9d\x36\x7f\x43\x80\x01\x40\x86\x81\xe1\x91\xe7\x02\ \xb7\xd7\x03\x41\x9f\x15\xd1\x15\x98\x07\x3e\x09\x7c\x38\x9b\x49\ \xff\x6b\xb3\xfd\xe5\x2f\x16\x02\x6c\xfe\x86\x00\x03\x80\xc2\x1a\ \x04\x92\xc0\xf7\xd7\xc3\xc0\x77\x01\x71\xab\xa2\xf3\x54\x80\xcf\ \x03\x1f\x06\x3e\xbd\x19\x8f\xf1\x6d\x68\x08\xb8\xeb\x7d\x6f\x2f\ \x16\x0a\x77\xda\xfc\x0d\x01\x06\x00\xe9\x9b\xc3\xc0\x0e\x6a\x8f\ \x12\xde\x0e\xdc\x60\x45\x42\xed\x71\xe0\x23\xc0\x47\xb3\x99\xf4\ \x89\x20\x1d\xd8\x3b\xef\x7a\xdf\xdb\x0b\x85\xc2\x9d\x36\x7f\x43\ \x80\x01\x40\xba\x70\x18\x78\x2e\xf0\x4a\xe0\x15\xc0\x33\xac\x48\ \x28\x9c\x00\x3e\x0d\xfc\x15\xf0\x6f\xd9\x4c\xba\x1a\xd4\x03\xbd\ \xf3\xf7\x3f\xf0\x33\xed\x1d\x1d\xbf\x13\x8d\xd9\xfd\x0d\x01\x06\ \x00\xe9\x52\x61\xe0\x86\x7a\x10\x78\x05\xf0\x6c\xe7\x53\xa0\x3c\ \x52\x6f\xf8\x7f\x9d\xcd\xa4\xbf\x12\xa6\x03\x7f\xdf\x9f\x7e\xec\ \xb6\x68\x34\xfa\x61\xc0\x10\x60\x08\x30\x00\x48\x57\x10\x06\x0e\ \x9d\x17\x06\x5e\x00\x44\xad\x4a\x53\xa9\x52\xdb\xa8\xe7\xd3\xc0\ \x5f\x65\x33\xe9\xc3\x61\x2e\xc6\xfb\x3f\xf6\xf1\xdb\x22\x91\x88\ \x21\xc0\x10\x60\x00\x90\x56\x19\x06\x06\x81\x97\x02\x37\xd7\x3f\ \xbb\xad\x4a\x43\x9a\x04\x3e\x57\xff\xdc\x9d\xcd\xa4\x4f\x5a\x12\ \x43\x80\x21\xc0\x00\x20\xad\x67\x20\x78\xe6\x79\x81\xe0\xc5\x40\ \xa7\x55\xd9\x12\xcb\xc0\x17\x81\xbb\xeb\x4d\xff\x6b\x41\xbe\x9e\ \xbf\x1e\x7e\xef\xe3\x9f\xb8\x8d\xda\x93\x0e\x86\x00\x43\x80\x01\ \x40\x5a\x63\x18\x48\x00\x2f\x04\xbe\xb3\xfe\xf3\x05\xc0\x36\x2b\ \xb3\x21\x16\x80\xff\x0d\x7c\x09\xf8\x02\x30\xbc\xd9\x2f\xdf\x31\ \x04\xc8\x10\x60\x00\x90\x2e\x16\x08\x22\xc0\xf5\xf5\x20\xf0\xc2\ \xfa\xe7\x59\xb8\xef\xc0\x6a\x55\x80\x87\xea\xcd\xfe\xcb\xf5\x9f\ \x0f\x66\x33\xe9\x8a\xa5\x31\x04\xc8\x10\x60\x00\x50\xb3\x84\x82\ \x36\xe0\x79\xf5\xcf\x0d\xf5\xcf\x33\x81\x76\xab\x03\xd4\x96\xf2\ \x1f\x06\x1e\xac\x7f\xbe\x02\xfc\xff\xd9\x4c\x7a\xde\xd2\x18\x02\ \x64\x08\x30\x00\x28\x88\x2b\x05\x07\x9e\x12\x08\x6e\x00\xbe\x15\ \x68\x0b\xe8\x61\xaf\x50\x7b\x1c\xef\x41\xe0\xf0\x79\x0d\xff\x71\ \xcf\xec\x0d\x01\x32\x04\x18\x00\x64\x38\x18\x1e\x19\x00\xf6\xd7\ \x3f\xfb\xea\x9f\xfd\xe7\xfd\x6c\xd4\x77\x1a\xcc\x52\xdb\x64\xe7\ \xe4\x45\x7e\x8e\x79\x93\x9e\x21\x40\x86\x00\x03\x80\x74\xf5\x01\ \xa1\x0d\xe8\x07\x7a\xeb\x61\xa0\xf7\x22\x9f\x76\x20\x79\x91\x4f\ \x4b\xfd\x27\x40\xe1\x32\x9f\x25\x60\xfa\x02\x9f\xa9\xf3\xfe\x79\ \x32\x9b\x49\x2f\x38\x3a\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\ \x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\x21\ \xc0\x00\x20\x49\x86\x00\x6d\x6a\x08\xb8\xed\x8e\x5b\x6f\xf9\x0b\ \x03\x80\x24\xc9\x10\x60\x08\x30\x00\x48\x92\x0c\x01\x86\x00\x03\ \x80\x24\x19\x02\x0c\x01\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\ \x00\x48\x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\ \x48\x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\ \x92\x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\x92\ \x21\x40\x86\x00\x03\x80\x24\x19\x02\x64\x08\x30\x00\x48\x92\x21\ \x40\x86\x00\x03\x80\x24\x19\x02\x14\xe6\x10\x60\x00\x90\x24\x43\ \x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\x43\x80\x01\x40\x92\ \x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\x21\x0c\x01\x06\x00\ \x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\x00\x85\x30\x04\x18\ \x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\ \x60\x00\x90\x24\x43\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\ \x43\x80\x01\x40\x92\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\ \x21\x0c\x01\x06\x00\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\ \x00\x85\x30\x04\x18\x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\ \x19\x02\x14\xc2\x10\x60\x00\x90\x24\x43\x80\x1a\x3b\x04\xfc\xe8\ \x1d\xb7\xde\xf2\xa9\xf5\xfe\x83\xe3\xd6\x56\x92\x9a\xd7\x1d\xb7\ \xde\xf2\xb1\xdf\xfb\xf8\x27\x30\x04\x04\xd6\x2c\x70\xc4\x15\x00\ \x49\x92\x2b\x01\xe1\x31\x09\xdc\x7c\xc7\xad\xb7\xdc\x6b\x00\x90\ \x24\x19\x02\x6c\xfe\x06\x00\x49\x92\x21\xc0\xe6\x6f\x00\x90\x24\ \xd5\x42\xc0\xab\x81\x0f\x19\x02\x6c\xfe\x06\x00\x49\x32\x04\xc8\ \xe6\x6f\x00\x90\x24\x43\x80\xc2\xdc\xfc\x0d\x00\x92\x64\x08\x50\ \x08\x9b\xbf\x01\x40\x92\x0c\x01\x0a\x61\xf3\x37\x00\x48\x92\x21\ \x40\x21\x6c\xfe\x06\x00\x49\x32\x04\x28\x84\xcd\xdf\x00\x20\x49\ \x86\x00\x85\xb0\xf9\x1b\x00\x24\xc9\x10\xa0\x10\x36\x7f\x03\x80\ \x24\x19\x02\x0c\x01\x21\x6c\xfe\x06\x00\x49\x32\x04\x18\x02\x42\ \xd8\xfc\x0d\x00\x92\x64\x08\x30\x04\x84\xb0\xf9\x1b\x00\x24\x49\ \x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\ \x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\ \x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\ \x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\ \xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\ \xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\ \x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\ \x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\ \x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\ \x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\ \x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\ \xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\ \x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x61\ \x0f\x01\xa1\x6c\xfe\x06\x00\x49\x52\x98\x43\x40\x68\x9b\xbf\x01\ \x40\x92\x14\xd6\x10\x10\xea\xe6\x6f\x00\x90\x24\x85\x31\x04\x84\ \xbe\xf9\x1b\x00\x24\x49\x61\x0b\x01\x36\x7f\x03\x80\x24\x29\x64\ \x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\x0d\x00\x92\xa4\ \x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\ \x92\x42\x16\x02\x6c\xfe\x06\x00\x49\x52\xc8\x42\x80\xcd\xdf\x00\ \x20\x49\x0a\x59\x08\xb0\xf9\x1b\x00\x24\x49\x21\x0b\x01\x36\x7f\ \x03\x80\x24\x29\x64\x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\ \xfc\x0d\x00\x92\xa4\x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\ \x60\xf3\x37\x00\x48\x92\x02\x1c\x02\x7e\x0c\xf8\x93\xa7\x84\x00\ \x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\x42\x16\ \x02\xfe\x3b\xf0\x32\x9b\xbf\x24\x49\xe1\x0a\x01\x5d\x56\x41\x92\ \x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\ \x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\ \x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\ \x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\ \x49\x92\x24\x49\x92\x24\x49\x92\xa4\x80\xf9\x3f\xf8\xb6\x7b\x59\ \x54\xb9\xf5\x59\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x04\x5d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\x24\x49\x44\x41\x54\x78\xda\x9d\x96\x5b\x6c\x53\x75\ \x1c\xc7\xbf\x67\x6d\x57\xe8\x56\x76\x3b\x63\xeb\x06\xe8\xc6\x2c\ \x13\x99\x26\x06\xb2\x05\x87\x78\x7b\x60\x08\xb2\x11\x97\xa0\x31\ \xde\x1e\x7c\xf0\xc9\x4b\x88\x44\x4d\x0c\xbe\x28\xe1\xc1\x37\x79\ \xf0\x81\xc4\x07\x7d\x31\x0c\xa3\x14\x43\x36\x18\xb0\xc4\x2e\x60\ \xd0\x6d\x66\x6a\x57\xb3\x8e\x5d\xea\xba\x76\xbd\x9e\xd3\x73\x7a\ \x7a\x8e\xbf\xf3\x3f\xa7\x6b\xbb\x75\x0f\xf4\x9f\xfc\xfa\xbf\x9d\ \x7c\x3f\xbf\x5b\x4f\xcb\xa1\xcc\xf1\xe2\x0f\xcf\xf4\x71\x52\xd8\ \x23\x49\x19\x88\x92\x8c\x98\x64\x3d\x3a\xf9\xde\x3f\x57\xd7\x3f\ \xc7\x95\x23\x7e\xe2\xf2\x0b\x7d\xd6\x4c\xd8\xd3\xd1\xb6\x03\x4e\ \xa7\x13\x92\x2c\xc3\x33\xec\x45\x5c\xb2\x1c\xf5\x9d\x09\x5c\x6d\ \xf9\xa4\xce\xab\x28\x99\xee\xe5\x73\x49\xae\x2c\xc0\xe0\xd0\x41\ \x6f\x53\xbd\xa3\x7b\x35\x96\xc0\xa3\x7b\x76\x33\x80\x28\x8a\xf0\ \x8c\xdc\x85\x20\xab\xe3\x2d\x7c\x75\xf7\xcc\x5c\x08\x65\x03\x4e\ \x0d\x1d\xd0\xd2\x4a\xc5\x78\x2a\x63\x39\x8b\x74\xc4\x73\xf8\xa9\ \x27\x11\x8d\xc5\x90\x4a\x8a\xf8\xcb\x7f\x1f\x4d\x7c\x2d\xae\x7b\ \xa7\xcb\x07\x9c\xbc\x7c\xf8\xfc\xa5\xfe\x9b\xa7\x73\xfb\xde\x0b\ \xed\xda\x91\xe7\x7a\xb0\xb0\x10\x84\x20\xa6\x29\xa2\x4c\x31\xe0\ \xf7\x2f\x9d\xe1\xca\x9a\xa6\x7a\x25\x19\x2d\x29\x68\x71\x6c\x83\ \xcd\xb1\xeb\x6d\xf7\x5b\xa3\x17\x4b\xdd\x1f\xbc\xe0\xf6\xb6\x36\ \x56\x77\x3f\xd1\xd5\x09\xdf\xcc\xec\x46\xc0\xc4\x79\x5e\xeb\xfa\ \xe0\x1b\x20\x7e\x87\x76\x15\x1b\x15\xac\x15\xf8\xfb\xfb\xef\xc6\ \x3a\xdf\x99\x39\xb4\xfe\xea\xf9\x8b\xfb\x48\xdc\xd9\xed\x7e\xa4\ \x6d\xf3\x08\x18\xe0\x44\x2b\xb0\xfa\x47\xe9\xbe\x22\xa6\xef\x57\ \x5b\x40\xad\xea\xe1\xe4\xf0\xf4\xae\xc2\xab\x0f\x1b\x78\xd6\xa6\ \x62\x5a\xb7\x0c\xd2\x24\x2e\xc9\x59\xc8\x8a\x3a\x1e\x3a\x97\xe8\ \x29\x00\xb4\x00\xb1\x09\x02\x94\x20\xa8\x1a\xe0\x3a\x06\xf0\x7d\ \xb4\xce\x98\x87\x5a\xe1\x03\xec\x73\xf2\xeb\x2f\xd0\xb0\xff\xdd\ \x8e\xd6\x67\x3f\xf7\xe7\x6e\x36\x02\xca\x18\x92\x68\x81\x50\xf5\ \x1a\xe6\xaf\x5f\xd1\xb7\x59\xbd\x6c\xe6\x95\x3b\x0f\xe8\x77\x01\ \xd1\xc9\x4d\x45\x34\x72\x58\x88\xdb\x20\xc4\xac\x6c\x4e\x44\x6c\ \xd0\xd4\x7c\xb4\x5b\xf9\x26\xd8\x6b\xeb\x60\xaf\xa9\x81\x22\xc4\ \x11\x9e\x9e\xd6\x8f\x9b\xf3\x80\x81\x66\xaa\xc1\x14\xb2\x19\x0e\ \xd1\x65\x3b\xc4\x84\x8d\xcc\x8a\x74\xca\x52\x04\xda\xda\xb8\x13\ \xf6\xfa\xed\xb0\xd7\xf1\x24\x56\xcb\x6c\x4b\xcd\x36\x82\xc9\x94\ \x29\x09\x9c\x26\xc3\xff\xf3\x8f\x10\x56\xc2\x78\xfc\xf4\x4a\x41\ \x91\x07\x5a\xa0\xae\x4c\xe0\xcf\xdb\xbc\x21\xb4\xfd\x61\x12\x6a\ \x81\xbd\xc1\x45\x22\x8d\x24\x48\xa2\xb5\xd5\x2c\x14\x8e\x84\x34\ \x55\x00\xd2\x8b\xe0\x92\xf7\xe8\x4c\x5d\x73\x20\x91\x68\xc6\xec\ \xf0\x88\xbe\xec\x22\xc0\x54\x1e\x30\xf8\x18\xc4\x7f\xc7\x30\xe7\ \x73\x63\xcf\x1b\x9f\x42\xe3\x2a\xc1\x65\x23\xac\xc0\x1a\xb7\x85\ \x66\x91\xf6\x31\x20\x13\x26\x8b\x18\xb3\x92\x22\x71\xb9\x28\x42\ \xff\xed\xa0\xee\xfd\x22\x89\xb7\x16\x17\xf9\xd5\x5e\x04\xae\x8d\ \xc0\xb6\xe3\x18\x5c\x87\xfa\x59\xa8\xd0\x05\xd5\xb4\x21\x94\x4d\ \x92\x25\x68\xad\xcf\xe4\xbd\x1e\x41\x36\x5d\xd4\x4d\x89\x78\x23\ \x66\x47\x46\xf5\x25\x4f\x80\x70\x31\xe0\xf5\xe3\x98\xfc\xf6\x27\ \xb4\x0f\x7e\x0c\x87\x6b\x27\x38\x65\xd5\x10\xd1\xc5\x55\x13\xc0\ \xc4\x73\x00\x91\x4c\x29\xf6\xfe\xd6\x12\x84\x70\xc4\x47\xe2\xee\ \x0d\x6d\xba\xf7\xd4\x11\xf8\xae\xdc\x41\xe7\x9b\x9f\x91\x4f\x94\ \x67\x25\x62\x88\x28\x05\xe2\x0c\x90\x32\xce\x35\xc9\x68\x2d\x73\ \xc4\xa3\x75\x08\xdc\x18\xd3\x97\xd5\x04\x48\x6d\x00\xf0\x7b\xdb\ \xa1\x55\xee\xa6\xf4\x9c\xa4\x5c\x47\x8d\x74\xb0\x34\xd0\xb3\x4a\ \xc2\x84\xa4\x0c\xef\x59\x6a\x8a\xbd\x9f\xb9\xb5\x08\x31\xbc\xfa\ \x1b\x89\xef\x2f\x3c\x5f\x03\xe8\x73\xfb\xcb\x1f\xc1\xd1\xfc\x10\ \x79\x1f\xcc\xe7\x99\x89\x9b\x10\x06\x14\x59\x3b\x16\x8e\xf8\xaa\ \x13\x81\x51\xaf\xbe\xac\x24\x40\xa6\x24\xc0\xe6\xac\xa7\xee\x39\ \x4b\xc5\xd5\x8b\x1a\x31\x45\x73\x39\x37\xd7\x6b\x85\x55\x8b\xbd\ \xbf\x39\x0f\x31\x12\xbb\x4b\xe2\x07\xd6\x7f\x41\x19\x60\xea\x2b\ \x97\x56\xb7\xef\x69\xb8\x7a\x5f\x32\xd2\xa3\xc4\x0d\x51\x96\x16\ \x33\x02\x66\x12\x6b\xcb\x58\xa8\x12\xb1\xfb\x21\xa4\x96\x43\x50\ \xc4\x74\x4e\xcb\x4e\x00\xb9\x24\x80\x22\x50\xdb\x06\xde\xe7\xaa\ \x5a\x29\x3d\x72\xd0\xe8\x1a\x06\x11\x90\x8c\xd0\xab\x61\x69\x16\ \xc2\xf2\x02\x52\xff\x2d\xd1\xbb\x6e\x2d\x03\xf3\x64\xfa\xcb\xe7\ \x1a\xd9\xb0\xde\xa5\x04\xd0\x36\x03\x68\x1d\xaf\x9c\xa1\x1f\x95\ \x6a\x12\xf3\x21\xb5\xe8\x87\x10\x9c\x63\x66\x8e\x71\x32\xfd\x1f\ \xc3\x2f\x24\x32\x8e\x07\x18\x45\x45\x36\xc7\x10\xd9\x25\x32\x0f\ \x89\x45\x1e\x44\xac\xd4\xf8\x1f\xb6\x1b\x62\x55\x02\x20\xb9\x20\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x2a\x82\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x28\x04\x49\x44\x41\x54\x78\xda\xed\xdd\x6f\x6c\x1c\xf7\x9d\xdf\ \xf1\xcf\x92\x5c\x51\xe2\x1f\x8b\xfa\xc7\x48\xb6\x45\x33\x8a\x44\ \x59\x87\xa4\xd9\x48\x45\x5a\xb1\x96\xad\x34\xb8\xb3\x2f\xae\x11\ \xca\x75\x13\x07\x4a\x11\xf2\x4e\xb2\xaf\x41\x75\x96\x0a\xe4\x81\ \x72\xf5\xbf\x1c\x8c\x2b\xfc\xa0\x52\x7a\x0f\x0a\x37\x41\xe4\xa0\ \x65\x61\x20\x41\xa5\xe2\x72\xbd\x8b\x9f\x58\xb1\x03\xe9\x4e\x88\ \x63\xa5\xa9\xe3\xa3\x63\xfb\x14\x25\xb6\x6c\xc9\x12\x29\x71\x45\ \x72\xc9\xe5\xfc\xfa\x60\x97\x32\x45\xee\xcc\xec\x2e\x77\xf7\x37\ \x33\xbf\xf7\x0b\x10\x20\x6b\xa4\xe5\x77\x69\x5b\xf3\xd9\xdf\xcc\ \x7c\x7e\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x82\ \x94\xed\x01\xfa\x87\x47\xba\x24\x65\xe6\xfe\x79\x66\xfc\x8a\x66\ \xae\x5d\x69\xe8\x0c\x67\x0e\xfe\xbe\xed\x6f\x03\x80\x08\xfa\xf9\ \xef\x46\xf5\x27\x3f\xfc\x59\x43\xbf\x66\x73\xeb\x0a\xbd\xfa\xd8\ \xbf\x3c\x69\xfb\xbd\x23\xf9\x5a\x1a\xf9\xc5\xfa\x87\x47\x76\x4b\ \xda\x2d\xe9\xd3\x92\x7a\x35\xef\xc4\x0f\x00\x90\x66\x73\x93\xca\ \x3c\xfb\xd7\x92\xa4\x74\xe7\xaa\xb1\xf4\x2d\x6b\xce\x4a\x3a\x27\ \xe9\x37\x92\xce\x4a\x3a\x7b\x6a\xef\xd6\x73\xb6\xe7\x44\xfc\xd5\ \x3d\x00\xf4\x0f\x8f\x0c\x48\xfa\xa2\xa4\x01\x49\x5d\xb6\xdf\x30\ \x00\xc4\x46\x2a\xd5\xa5\xc2\x87\xa6\x9b\xf4\x0f\x8f\x8c\xa9\x10\ \x06\x7e\x22\xe9\xe4\xa9\xbd\x5b\x4f\xda\x1e\x15\xf1\x53\x97\x00\ \xd0\x3f\x3c\xd2\x2b\x69\x50\xd2\x63\xe2\xa4\x0f\x00\xb5\xd6\xa5\ \x42\x30\xd8\x2d\xe9\xc9\xfe\xe1\x11\x49\x3a\xa1\x42\x20\x38\xc1\ \x0a\x01\xca\x51\xd3\x00\x50\x3c\xf1\x3f\xa9\xc2\xc9\x1f\x00\xd0\ \x38\x03\xc5\x1f\x47\xfa\x87\x47\xce\x4a\x3a\x29\xe9\xfb\xa7\xf6\ \x6e\x3d\x6b\x7b\x30\x44\x53\xcd\x02\x40\xff\xf0\xc8\x53\xe2\x13\ \x3f\x00\x44\x41\xa6\xf8\xe3\x60\x31\x0c\x7c\x5f\xac\x0c\x60\x81\ \x25\x07\x80\xfe\xe1\x91\x8c\xa4\x63\xe2\x86\x3e\x00\x88\xa2\x4c\ \xf1\xc7\x91\xfe\xe1\x91\x13\x2a\xac\x0a\x9c\xb0\x3d\x14\xec\x5b\ \x52\x00\x28\x7e\xea\x7f\xd2\xf6\x9b\x00\x00\x94\x65\x40\xd2\x40\ \xff\xf0\xc8\x39\x15\x56\x05\x8e\x9e\xda\xbb\x75\xcc\xf6\x50\xb0\ \xa3\xaa\x00\x50\x7c\x76\xff\x98\x0a\xff\x31\x01\x00\xe2\xa5\x57\ \x85\x0f\x6f\x8f\x15\x57\x05\x9e\xe6\xf2\x80\x7b\x9a\x2a\xfd\x03\ \xc5\x93\xff\x4b\xe2\xe4\x0f\x00\x71\xd7\xa5\xc2\x4d\xdb\xff\xd8\ \x3f\x3c\x72\xac\x78\x23\x37\x1c\x51\x51\x00\x98\x77\xf2\xcf\xd8\ \x1e\x1c\x00\x50\x53\x83\x22\x08\x38\xa5\xec\x00\xc0\xc9\x1f\x00\ \x9c\x30\xa8\x42\x10\x38\x52\xfc\x7b\x1f\x09\x55\x56\x00\xe0\xe4\ \x0f\x00\xce\x39\xa8\x42\x10\x78\xca\xf6\x20\xa8\x8f\x72\x6f\x02\ \x3c\x22\x4e\xfe\x0d\x37\x9e\xcb\xeb\xd7\x97\xc6\x6d\x8f\xd1\x30\ \xdb\x6f\x5f\x65\x7b\x04\x00\x37\xeb\x52\xa1\x69\xf0\x6b\x92\x86\ \xa8\x1c\x4e\x96\xd0\x00\xd0\x3f\x3c\x72\x50\x34\xfb\x59\xf1\xeb\ \x4b\xe3\x0d\xdf\x89\xcc\x26\x76\x65\x04\x22\xab\x57\xd2\x4b\xc5\ \x27\x06\x86\x78\x74\x30\x19\x02\x2f\x01\x14\x4b\x7e\x8e\xd8\x1e\ \x12\x00\x10\x09\x03\x2a\x5c\x16\x18\xb0\x3d\x08\x96\x2e\xec\x1e\ \x80\x63\xb6\x07\x04\x00\x44\x4a\x97\xa4\xe3\xfd\xc3\x23\xc7\xb9\ \x49\x30\xde\x7c\x03\x40\x71\xe9\x3f\x63\x7b\x40\x00\x40\x24\x0d\ \x48\x7a\xad\x7f\x78\x64\xb7\xed\x41\x50\x9d\x92\x01\xa0\x98\xea\ \xa8\xf8\x05\x00\x04\xe9\x55\xe1\xde\x80\x83\xb6\x07\x41\xe5\xfc\ \x56\x00\x0e\x8a\x5d\xfd\x00\x00\xe5\x39\xc2\x25\x81\xf8\x59\x14\ \x00\x8a\xff\x02\x1f\xb3\x3d\x18\x00\x20\x56\x06\x54\x58\x0d\xe8\ \xb5\x3d\x08\xca\x53\x6a\x05\x60\x50\x7c\xfa\x07\x00\x54\x2e\xa3\ \xc2\x7d\x01\x19\xdb\x83\x20\x5c\xa9\x00\xc0\xa7\x7f\x00\x40\xb5\ \xba\x54\x58\x09\xc8\xd8\x1e\x04\xc1\x6e\x0a\x00\xc5\x7f\x61\xbd\ \xb6\x87\x02\x00\xc4\x5a\x97\x0a\x21\x60\xd0\xf6\x20\xf0\xb7\x70\ \x05\xe0\x6b\xb6\x07\x02\x00\x24\x42\x97\xa4\x63\x3c\x26\x18\x5d\ \x0b\x03\xc0\x80\xed\x81\x00\x00\x89\x72\x9c\xcb\x01\xd1\x74\x23\ \x00\x14\xef\xdc\xec\xb5\x3d\x10\x00\x20\x51\xba\xc4\x3d\x01\x91\ \x34\x7f\x05\x60\xb7\xed\x61\x00\x00\x89\xd4\xa5\xc2\x4a\x40\x97\ \xed\x41\xf0\x91\xf9\x01\xe0\xd3\xb6\x87\x01\x00\x24\x56\xaf\x0a\ \x2b\x01\x5d\xb6\x07\x41\xc1\xfc\x00\x90\xb1\x3d\x0c\x00\x20\xd1\ \x32\x62\x93\xb9\xc8\x98\x1f\x00\x7a\x6d\x0f\x03\x00\x48\xbc\x81\ \xfe\xe1\x11\x42\x40\x04\x10\x00\x00\x00\x8d\x36\xc8\x06\x42\xf6\ \x35\x2d\xfd\x25\x00\x00\xa8\xd8\x11\x8a\x82\xec\x22\x00\x00\x00\ \x6c\x39\xc6\xe3\x81\xf6\x34\x49\x37\x3a\x00\x00\x00\x68\x34\x3a\ \x02\x2c\x69\x92\xa4\x53\x7b\xb7\x9e\xb3\x3d\x08\x00\xc0\x49\x5d\ \xa2\x23\xc0\x0a\x2e\x01\x00\x00\x6c\xeb\x15\x1d\x01\x0d\x47\x00\ \x00\x00\x44\x41\x46\xd2\x71\xdb\x43\xb8\x84\x00\x00\x00\x88\x8a\ \xdd\x74\x04\x34\x0e\x01\x00\x00\x10\x25\x83\xfd\xc3\x23\x4f\xd9\ \x1e\xc2\x05\x04\x00\x00\x40\xd4\x3c\x49\x47\x40\xfd\x11\x00\x00\ \x00\x51\x74\xac\x7f\x78\x64\xb7\xed\x21\x92\x8c\x00\x00\x00\x88\ \xaa\xe3\x74\x04\xd4\x0f\x01\x00\x00\x10\x55\x5d\xe2\xf1\xc0\xba\ \x21\x00\x00\x00\xa2\xac\x4b\x84\x80\xba\x20\x00\x00\x00\xa2\x2e\ \x23\x3a\x02\x6a\x8e\x00\x00\x00\x88\x03\x3a\x02\x6a\x8c\x00\x00\ \x00\x88\x8b\xc1\xfe\xe1\x91\x23\xb6\x87\x48\x0a\x02\x00\x00\x20\ \x4e\x0e\xd2\x11\x50\x1b\x04\x00\x00\x40\xdc\x1c\xeb\x1f\x1e\x19\ \xb0\x3d\x44\xdc\x11\x00\x00\x00\x71\x74\x8c\x8e\x80\xa5\x21\x00\ \x00\x00\xe2\xa8\x4b\x85\xc7\x03\x7b\x6d\x0f\x12\x57\x04\x00\x00\ \x40\x5c\x75\xa9\xd0\x16\xd8\x65\x7b\x90\x38\x22\x00\x00\x00\xe2\ \x2c\x23\xe9\x25\xdb\x43\xc4\x11\x01\x00\x00\x10\x77\x19\x3a\x02\ \x2a\x47\x00\x00\x00\x24\x01\x1d\x01\x15\x22\x00\x00\x00\x92\x82\ \x8e\x80\x0a\x10\x00\x00\x00\x49\x42\x47\x40\x99\x08\x00\x00\x80\ \xa4\xa1\x23\xa0\x0c\x04\x00\x00\x40\xd2\x74\xa9\xd0\x11\x90\xb1\ \x3d\x48\x94\x11\x00\x00\x00\x49\xd4\xa5\xc2\x4a\x40\x97\xed\x41\ \xa2\x8a\x00\x00\x00\x48\xaa\x8c\x0a\x2b\x01\x5d\xb6\x07\x89\x22\ \x02\x00\x00\x20\xc9\x32\x92\x78\x3c\xb0\x04\x02\x00\x00\x20\xe9\ \x06\x29\x0a\x5a\x8c\x00\x00\x00\x70\xc1\x20\x1d\x01\x37\x23\x00\ \x00\x00\x5c\x71\x8c\x10\xf0\x11\x02\x00\x00\xc0\x25\x47\x78\x3c\ \xb0\x80\x00\x00\x00\x70\x49\x97\xe8\x08\x90\x44\x00\x00\x00\xb8\ \xa7\x4b\x74\x04\x10\x00\x00\x00\x4e\xca\xc8\xf1\x8e\x00\x02\x00\ \x00\xc0\x55\x19\x49\xce\x3e\x1e\x48\x00\x00\x00\xb8\x6c\xc0\xd5\ \x8e\x00\x02\x00\x00\xc0\x75\x83\xfd\xc3\x23\x07\x6d\x0f\xd1\x68\ \x04\x00\x00\x00\x0a\x8f\x07\x0e\xda\x1e\xa2\x91\x08\x00\x00\x00\ \x14\x1c\x73\xe9\xf1\x40\x02\x00\x00\x00\x1f\x71\xa6\x23\x80\x00\ \x00\x00\xc0\x47\xba\x24\x1d\x77\xe1\xf1\x40\x02\x00\x00\x00\x37\ \xeb\x95\x03\x1d\x01\x04\x00\x00\x00\x16\xcb\x28\xe1\x1d\x01\x04\ \x00\x00\x00\x4a\x4b\x74\x47\x00\x01\x00\x00\x00\x7f\x89\xed\x08\ \x20\x00\x00\x00\x10\xec\x48\xff\xf0\xc8\x80\xed\x21\x6a\x8d\x00\ \x00\x00\x40\xb8\x63\xfd\xc3\x23\xbd\xb6\x87\xa8\x25\x02\x00\x00\ \x00\xe1\xba\x24\x1d\xb7\x3d\x44\x2d\x11\x00\x00\x00\x28\x4f\xa6\ \x7f\x78\xe4\x88\xed\x21\x6a\x85\x00\x00\x00\x40\xf9\x0e\xf6\x0f\ \x8f\xec\xb6\x3d\x44\x2d\x10\x00\x00\x00\xa8\xcc\xb1\x24\x94\x04\ \x11\x00\x00\x00\xa8\x4c\xaf\xa4\x27\x6d\x0f\xb1\x54\x04\x00\x00\ \x00\x2a\x17\xfb\x4b\x01\x04\x00\x00\x00\xaa\x13\xeb\x1b\x02\x09\ \x00\x00\x00\x54\x27\x13\xe7\x96\x40\x02\x00\x00\x00\xd5\x7b\x32\ \xae\x37\x04\x12\x00\x00\x00\xa8\x5e\x97\x62\x7a\x43\x20\x01\x00\ \x00\x80\xa5\x39\x18\xc7\x9a\x60\x02\x00\x00\x00\x4b\x17\xbb\x55\ \x00\x02\x00\x00\x00\x4b\x37\x18\xb7\x55\x00\x02\x00\x00\x00\xb5\ \x11\xab\x55\x00\x02\x00\x00\x00\xb5\x11\xab\x55\x00\x02\x00\x00\ \x00\xb5\x13\x9b\x55\x00\x02\x00\x00\x00\xb5\x13\x9b\x55\x00\x02\ \x00\x00\x00\xb5\xf5\x98\xed\x01\xca\x41\x00\x00\x00\xa0\xb6\x06\ \xe3\xd0\x0e\x48\x00\x00\x00\xa0\xb6\xba\x24\x0d\xda\x1e\x22\x0c\ \x01\x00\x00\x80\xda\x8b\xfc\x65\x00\x02\x00\x00\x00\xb5\xd7\xdb\ \x3f\x3c\x32\x60\x7b\x88\x20\x04\x00\x00\x00\xea\xe3\x6b\xb6\x07\ \x08\x42\x00\x00\x00\xa0\x3e\x06\xa2\xfc\x48\x60\x8b\xed\x01\x00\ \xa0\x51\x4e\x65\x5f\xd1\xa9\xec\x2b\x7a\x3b\xf7\x96\xde\xce\xfd\ \xba\xac\x3f\xd3\xf5\x05\xdb\x53\x23\xd4\x6c\x9b\xcc\xe4\x1d\xf2\ \xae\x6d\x97\x77\x75\x87\xcc\xf4\x5a\xdb\x13\xcd\x37\x20\xe9\xa8\ \xed\x21\x4a\x49\xcd\xfd\xa4\x7f\x78\xc4\xd8\x1e\x46\x92\x66\xc6\ \xaf\x68\xe6\xda\x95\x86\x7e\xcd\x33\x07\x7f\xdf\xf6\xdb\x06\x50\ \x47\xa7\xb2\xaf\xe8\xbf\x5e\xfa\x2f\xfa\x60\xe6\x7d\xdb\xa3\xa0\ \x01\xbc\x2b\xbb\x94\x7f\x6f\xaf\x34\xdb\x66\x7b\x14\x49\x3a\x77\ \x6a\xef\xd6\x8f\xdb\x1e\xa2\x14\x2e\x01\x00\x48\xac\xac\x97\xd5\ \x53\xef\x7d\x53\x4f\xbd\xf7\x4d\x4e\xfe\x0e\x69\x5a\xfd\x8a\x96\ \x6d\xfb\x0f\x6a\x5a\xf9\xaa\xed\x51\xa4\xc2\xcd\x80\x19\xdb\x43\ \x94\x42\x00\x00\x90\x48\x59\x2f\xab\x6f\xfc\xf6\x4f\x75\x2a\xfb\ \x8a\xed\x51\x60\x43\xf3\x84\x5a\x7a\xbf\xad\xa6\xd5\x91\xf8\xf7\ \x1f\xc9\x9b\x01\x09\x00\x92\xc6\x73\x79\xdb\x23\x00\xa8\xa1\xb9\ \x93\x7f\xb9\xd7\xf9\x91\x5c\x2d\x1b\xbf\x13\x85\x10\x30\x60\x7b\ \x80\x52\x08\x00\x92\x7e\x7d\x69\xdc\xf6\x08\x00\x6a\xe8\xe9\xf7\ \xbe\xc9\xc9\x1f\x37\xb4\x6c\xfc\x8e\x9a\x3a\xfe\xc1\xe6\x08\x91\ \xbc\x0c\x40\x00\x90\x34\x9e\x9b\xb1\x3d\x02\x80\x1a\x39\x3e\xfa\ \x03\xfd\x62\xe2\x35\xdb\x63\x20\x62\x9a\x37\xfe\x37\xa9\x79\xc2\ \xe6\x08\x91\xbb\x0c\x40\x00\x90\xf4\xea\xef\x46\x6d\x8f\x00\xa0\ \x06\xb2\x5e\x56\xff\xfd\xf2\xf7\x6c\x8f\x81\x08\x4a\x2d\xfb\x50\ \xcd\xeb\x7e\x6c\x73\x84\x01\xdb\xdf\x83\x85\x08\x00\x92\x7e\x4e\ \x00\x00\x12\xe1\xf8\xe8\x0f\x94\xf5\xb2\xb6\xc7\x40\x44\x35\xaf\ \xfd\xb1\xcd\x55\x80\xde\xa8\x95\x02\x11\x00\x24\xbd\x79\x69\x9c\ \x1b\x01\x81\x04\x78\xf1\xda\xff\xb1\x3d\x02\xa2\xac\x79\xc2\xf6\ \xa3\x81\x03\xb6\xbf\x05\xf3\x11\x00\x8a\x7e\xf2\xf6\x45\xdb\x23\ \x00\x58\x82\x53\xd9\x57\x78\xd6\x1f\xa1\x9a\x57\xfd\xd4\xe6\x97\ \xff\xa2\xed\xf7\x3f\x1f\x01\xa0\xe8\x85\xd7\xce\xdb\x1e\x01\xc0\ \x12\xfc\x62\x92\x1b\xff\x10\x2e\xd5\xf1\x86\xcd\xcb\x00\xbb\x6d\ \xbf\xff\xf9\x08\x00\x45\x6f\x5e\x1a\xe7\x5e\x00\x20\xc6\xde\xc9\ \xbd\x65\x7b\x04\xc4\x44\xd3\x0a\x7b\x1f\xf8\xfa\x87\x47\x76\xdb\ \x7e\xff\x37\xbe\x0f\xb6\x07\x88\x92\xef\xfc\xdd\xdb\xb6\x47\x00\ \x50\x25\x1e\xfd\x43\xb9\x52\x2b\x7e\x63\xf3\xcb\xef\xb6\xfd\xfe\ \xe7\x10\x00\xe6\x79\xf5\x77\xa3\xac\x02\x00\x40\xd2\xd9\xed\x03\ \xb8\xc7\xf6\xdb\x9f\x43\x00\x58\xe0\x3f\xff\x64\xc4\xf6\x08\x00\ \x80\xe4\xda\x6d\x7b\x80\x39\x04\x80\x05\xde\xbc\x34\x4e\x08\x00\ \x00\xd4\x4d\x54\xee\x03\x20\x00\x94\xf0\xc2\x6b\xe7\x79\x2c\x10\ \x00\x50\x2f\x19\xdb\x03\x48\x04\x00\x5f\xdf\x7a\xf1\x75\xbd\xc9\ \x26\x41\x00\x80\xda\xfb\xb4\xed\x01\x24\x02\x80\xaf\xf1\x5c\x5e\ \xff\xee\x87\x3f\x23\x04\x00\x00\x6a\x2d\x63\x7b\x00\x89\x00\x10\ \x88\x10\x00\x00\xa8\x83\x8c\xed\x01\x24\x02\x40\xa8\xf1\x5c\x5e\ \x5f\x1d\xfe\x3b\xfd\xe8\x57\xef\xd9\x1e\x05\x00\x90\x10\xfd\xc3\ \x23\x19\xdb\x33\x10\x00\xca\xf4\xad\x17\x5f\xd7\x37\xfe\xea\x17\ \x6c\x1a\x04\x00\xa8\x85\x2e\xdb\x03\x10\x00\x2a\xf0\x93\xb7\x2f\ \x6a\xe0\x7b\xaf\xb0\x1a\x00\x00\x58\xaa\xdd\xb6\x07\x20\x00\x54\ \x68\x3c\x97\xd7\xb7\x5e\x7c\x5d\x5f\xfc\xde\x4f\xf5\xa3\x5f\xbd\ \xc7\x8a\x00\x00\x20\x96\x5a\x6c\x0f\x10\x57\x17\xae\x4d\xea\x5b\ \x2f\xbe\xae\xce\xd6\x11\xdd\xf3\x89\x6e\xdd\xf3\x89\x75\xda\x7e\ \xfb\x6a\x75\xb6\xf2\x2d\x05\x00\x84\xb2\x5e\x09\xcc\xd9\x6a\x89\ \xc6\x73\x79\xfd\xe8\x57\xef\xdd\xb8\x2c\xd0\xb7\xae\x53\x1b\x6e\ \x59\xa1\xbe\x75\x9d\xb6\x47\x03\xdc\xb2\xda\xf6\x00\x40\xbc\x10\ \x00\x6a\xec\xcd\x4b\xe3\x7a\xf3\xd2\x38\x4d\x82\x40\x83\x75\x7d\ \xc1\xf6\x04\x40\x45\x7a\x6d\x0f\xc0\x3d\x00\x00\x00\x34\x5e\xaf\ \xed\x01\x08\x00\x00\x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\x00\ \x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\x00\x00\x38\x88\x00\x00\ \x00\x80\x83\x08\x00\x00\x00\x38\x88\x00\x00\x00\x80\x83\x08\x00\ \x00\x00\x38\x88\x00\x00\x00\x80\x83\x22\x17\x00\x52\xa9\xc8\x8d\ \x04\x00\x40\xe2\x44\xee\x6c\xdb\x94\x6e\xb5\x3d\x02\x00\x00\x89\ \x17\xb9\x00\xa0\xa6\xe8\x8d\x04\x00\x40\xd2\x44\xee\x6c\xcb\x0a\ \x00\x00\x00\xf5\x17\xb9\x00\x20\x49\xcd\xad\x2b\x6c\x8f\x00\x00\ \x40\xa2\x45\x32\x00\x34\x11\x00\x00\x00\xa8\xab\x48\x06\x80\xe6\ \xe5\xed\xb6\x47\x00\x00\x20\xd1\x22\x19\x00\x9a\xd2\xad\xdc\x0b\ \x00\x00\x40\x1d\x45\x32\x00\x48\x52\x4b\x47\x97\xed\x11\x00\x00\ \x48\xac\xe8\x06\x80\xb6\x4e\xa5\x9a\xd3\xb6\xc7\x00\x00\x20\x91\ \x22\x1b\x00\x24\x29\x7d\xcb\x6a\xdb\x23\x00\x00\x90\x48\x91\x0e\ \x00\x2d\x6d\x9d\x3c\x12\x08\x00\x40\x1d\x44\x3a\x00\x48\xd2\xb2\ \x55\x1f\x53\x8a\x76\x40\x00\x00\x6a\x2a\xf2\x67\xd6\x54\x73\x8b\ \xd2\x2b\xd7\xd9\x1e\x03\x00\x80\x44\x89\x7c\x00\x90\x0a\x97\x02\ \x78\x2a\x00\x00\x80\xda\x89\x45\x00\x90\xa4\x65\x2b\xd7\xaa\xa5\ \xed\x16\xdb\x63\x00\x00\x90\x08\xb1\x09\x00\x92\xb4\x6c\x55\x37\ \x21\x00\x00\x80\x1a\x88\x55\x00\x90\x0a\x21\x60\xd9\xaa\x8f\xd9\ \x1e\x03\x00\x80\x58\x6b\xb1\x3d\x40\x55\x43\xb7\x75\xaa\x29\xbd\ \x4c\xd3\xa3\x17\xe5\xcd\xe4\x6c\x8f\x03\x00\x40\xec\xc4\x6e\x05\ \xe0\xc6\xe0\xe9\x56\x2d\xef\xde\xa8\xf4\x2d\xab\x79\x4c\x10\x00\ \x80\x0a\xc5\x72\x05\x60\xbe\x74\xe7\x6a\xb5\xb4\x77\x29\x7f\x7d\ \x4c\xf9\xeb\xe3\x32\xb3\x33\xb6\x47\x02\x00\x20\xf2\x62\x1f\x00\ \x24\x29\xd5\xd4\xa4\x74\xe7\x6a\xa5\x3b\x57\x6b\x76\xea\xba\x66\ \x27\xaf\x6b\x36\x37\x49\x18\x00\x00\xc0\x47\x22\x02\xc0\x7c\xcd\ \xcb\xdb\xd5\xbc\xbc\x5d\x92\x64\x66\xf3\x32\xf9\x19\xcd\x4e\x4f\ \xda\x1e\x0b\x00\x80\x48\x49\x5c\x00\x98\x2f\xd5\xdc\xa2\x54\x73\ \x8b\x9a\xd8\x4f\x00\x00\x80\x9b\x70\xf7\x1c\x00\x00\x0e\x22\x00\ \x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\ \x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\ \x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\ \x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\ \x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\ \x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\ \x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\ \xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\ \x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\ \x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\ \x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\ \x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\ \x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\ \x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\ \x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\ \x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\ \x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\ \x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\ \xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\ \x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\ \x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\ \x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\ \x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\ \x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\ \x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\ \x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\ \x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\ \x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\ \x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\ \xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\ \x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\ \x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\ \x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\ \x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\ \x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\ \x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\ \x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\ \x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\ \x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\ \x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\ \xe0\x20\x02\x00\x00\x00\x0e\x22\x00\x00\x00\xe0\x20\x02\x00\x00\ \x00\x0e\x22\x00\x00\x00\xe0\xa0\x16\xdb\x03\xd4\xc3\x96\x55\xad\ \xba\xfb\xf6\x0e\x6d\x5e\xd5\xaa\x0d\xed\x69\x6d\x59\xd5\x6a\x7b\ \x24\x00\x75\xf6\xb9\xd7\x6d\x4f\x00\xc4\x4b\x62\x02\xc0\x86\xf6\ \xb4\xbe\x74\x67\x97\xbe\xf0\xf1\x95\xea\x58\xc6\xc2\x06\x00\x00\ \x41\x62\x1f\x00\xb6\xac\x6a\xd5\x63\x3b\xba\xf5\x99\xee\x15\xb6\ \x47\x01\x00\x20\x36\x62\x1b\x00\x3a\x96\x35\xe9\x8f\x3f\xb5\x46\ \x5f\xda\xba\xca\xf6\x28\x00\x00\xc4\x4e\x2c\x03\xc0\x96\x55\xad\ \xfa\x8b\xbb\x6f\xd5\x86\xf6\xb4\xed\x51\x00\x00\x88\xa5\xd8\x05\ \x80\x2f\x6c\xba\x45\x7f\xf6\xcf\xd7\xdb\x1e\x03\x00\x80\x58\x8b\ \xd5\xdd\x72\x9c\xfc\x01\x00\xa8\x8d\xd8\x04\x00\x4e\xfe\x00\x00\ \xd4\x4e\x2c\x02\xc0\xdd\xb7\x77\x70\xf2\x07\x00\xa0\x86\x22\x1f\ \x00\x36\xb4\xa7\x39\xf9\x03\x00\x50\x63\x91\xbf\x09\xf0\xcf\x76\ \xae\xa7\xd8\x07\x28\xc3\x5b\x53\xbf\xd6\xfb\x33\x17\xf4\xf6\xd4\ \x9b\xb6\x47\x69\xa8\xf7\xa7\x2f\xe8\xfd\x99\x0b\xb6\xc7\x40\x8c\ \x34\xad\x7a\x45\x4d\xed\xff\x60\x7b\x0c\xed\xfe\x7f\xff\xec\xa5\ \x3a\xbe\xfc\x59\x49\xbf\x90\x74\xe2\xe4\x27\xff\x7e\xac\xd4\x6f\ \x48\xcd\xfd\xa4\x7f\x78\xc4\xd8\xfe\x66\x2c\xc4\x75\x7f\x20\xd8\ \xfb\x33\x17\xf4\xfd\x8b\xdf\xd5\x4f\xc7\x5f\x56\x76\x76\xdc\xf6\ \x38\x00\xa2\xe9\x79\x49\x4f\x9f\xfc\xe4\xdf\x9f\x9b\xff\x8b\x91\ \xfe\x68\xfd\x47\x9f\x5a\x63\x7b\x04\x20\xb2\x7e\xf8\xfe\x0b\xfa\ \xca\x9b\x7b\xf4\xb7\x63\x7f\xcd\xc9\x1f\x40\x90\x41\x33\x69\x5e\ \xbb\xfb\x95\xcf\x66\xe6\xff\x62\x64\x03\xc0\x17\x36\xdd\x42\xd1\ \x0f\xe0\xe3\xf9\xf3\xdf\xd5\x5f\xbe\x75\x44\x26\x67\x7b\x12\x00\ \x91\x97\x97\xcc\x94\xba\x24\xbd\x74\xf7\x2b\x9f\xed\x9d\xfb\xe5\ \xc8\x06\x00\x2a\x7e\x81\xd2\xde\xcf\x5d\xd0\xb1\xf3\xdf\x91\x24\ \x99\x09\x23\xcd\xda\x9e\x08\x40\x64\x19\xc9\xcb\xde\xb8\xc2\xdf\ \xa5\x26\x1d\x99\xfb\x87\x48\x06\x80\x2d\xab\x5a\xd9\xc2\x17\xf0\ \xf1\x83\x77\x5f\xb8\xe9\x9f\xbd\xeb\x91\xbb\x7d\x07\x40\x44\x98\ \xeb\x46\x9a\xff\x57\x84\xa7\x81\xb9\x9f\x46\x32\x00\xdc\x7d\x7b\ \x87\xed\x11\x80\xc8\x7a\xeb\xfa\x82\xbb\xfc\x67\x8b\x2b\x01\x00\ \x30\x8f\x99\x29\xfc\xf0\x13\xc9\x00\xf0\x99\x8f\xb5\xd9\x1e\x01\ \x88\x15\x93\x93\x94\xb7\x3d\x05\x80\xc8\xf0\x8a\x9f\xfe\x03\x44\ \x33\x00\x74\xaf\xb0\x3d\x02\x10\x59\xeb\x97\x6f\x28\xf9\xeb\xde\ \xc2\xa5\x3e\x00\xce\x32\xfe\x7f\x1f\x8c\xcd\xfd\x24\x72\x01\x80\ \x4f\xff\x40\xb0\xcf\xac\xdc\x51\xfa\x40\x19\x89\x1f\x40\xf2\x99\ \x9c\x64\xfc\x57\x04\x4f\xcc\xfd\x24\x72\x01\x00\x40\xb0\xfb\xba\ \xef\x57\x47\x4b\x67\xc9\x63\x61\xd7\xfc\x00\x24\x5c\xf8\x3d\x41\ \x4f\xcf\xfd\x24\x72\x01\x60\x3b\xcb\xff\x40\xa8\xa1\x3b\xf6\xf9\ \x1e\x33\xd7\x8d\xe4\xd9\x9e\x10\x80\x0d\x21\x4f\x05\x1d\x7d\x79\ \xd7\x99\x73\x73\xff\x10\xb9\x00\x00\x20\xdc\x43\x1b\x1e\x56\x66\ \xe5\xf6\xd2\x07\x0d\x97\x02\x00\x17\x99\x29\x05\xf5\x82\x9c\xd3\ \xbc\x4f\xff\x12\x01\x00\x88\xad\xc3\x7d\x4f\xf8\x5f\x0a\xc8\x8b\ \x96\x40\xc0\x25\x79\xc9\x4c\x06\x06\xff\xa1\x97\x77\x9d\x19\x9b\ \xff\x0b\x04\x00\x20\xa6\xd6\xb7\x6e\xd0\xe1\x2d\x8f\xfb\x1e\xa7\ \x25\x10\x70\x84\x09\x5d\xfa\x7f\xfa\xe5\x5d\x67\x4e\x2e\xfc\x45\ \x02\x00\x10\x63\x77\xad\xb9\x47\x77\xad\xb9\xc7\xf7\x38\x2d\x81\ \x40\xf2\x99\x89\xc0\xfb\x7e\xce\xbe\xbc\xeb\xcc\x53\xa5\x0e\x10\ \x00\x80\x98\x3b\xbc\xe5\x71\xdf\x6e\x00\x5a\x02\x81\x64\x33\x33\ \x92\x99\x0e\xfc\x2d\x43\x7e\x07\x08\x00\x40\xcc\x75\xb4\x74\xea\ \xf0\x96\x27\x7c\x8f\xd3\x12\x08\x24\x54\xf8\x0d\xbf\x87\x5e\xde\ \x75\xe6\xac\xdf\x41\x02\x00\x90\x00\x99\x95\xdb\xf5\xd0\xad\x0f\ \xfb\x1e\xa7\x25\x10\x48\x1e\x13\xfc\xff\xf5\xc9\x97\x77\x9d\x39\ \x1a\xf4\xe7\x09\x00\x40\x42\x1c\xd8\x74\x48\x9b\xdb\xfb\x4a\x1f\ \xa4\x25\x10\x48\x14\x93\x0b\x2c\xfd\x1a\x53\xc0\xd2\xff\x1c\x02\ \x00\x90\x20\x87\xfb\x02\x9e\x0a\xa0\x25\x10\x48\x06\xaf\xac\x47\ \xfe\xce\x85\xbd\x0c\x01\x00\x48\x90\xcd\xed\x7d\x3a\xb0\xe9\x90\ \xef\x71\x5a\x02\x81\xf8\x0b\x59\xfa\x3f\xf1\xf2\xae\x33\x27\xca\ \x79\x1d\x02\x00\x90\x30\x0f\xdd\x4a\x4b\x20\x90\x54\x66\x2a\x70\ \xa3\x9f\x31\x95\xb1\xf4\x3f\x87\x00\x00\x24\x10\x2d\x81\x40\x02\ \xcd\x86\x2e\xfd\xef\x59\xd8\xf6\x17\x84\x00\x00\x24\x10\x2d\x81\ \x40\xc2\x84\xb7\xfd\x1d\x2d\xd5\xf6\x17\x84\x00\x00\x24\x14\x2d\ \x81\x40\x72\x98\x49\x53\xd1\x46\x3f\xe5\x20\x00\x00\x09\x46\x4b\ \x20\x90\x00\xe1\x97\xed\x2a\x5a\xfa\x9f\x43\x00\x00\x12\x8c\x96\ \x40\x20\xe6\xca\xdb\xe8\xe7\x6c\x35\x2f\xdd\x62\xfb\xbd\xc5\xd5\ \xcc\xcc\x8c\x46\x47\x47\x95\xcb\x71\x37\x15\xa2\x6d\x8d\xd6\xe9\ \x0f\x3a\xfe\x50\x2f\x66\xff\xa6\xe4\x71\xef\xba\x51\xd3\x2d\x29\ \x29\x65\x7b\x52\x00\x0b\x85\x3c\xba\xeb\xbb\xd1\x4f\x39\x08\x00\ \x55\xc8\xe5\x72\x3a\x7f\xfe\xbc\x3c\x8f\x07\xaa\x11\x0f\x0f\xad\ \xf8\x8a\xde\x98\x7a\x5d\xbf\xcd\x9f\x5f\x7c\xb0\xd8\x12\x98\xea\ \x20\x01\x00\x51\x12\x52\xde\x35\x26\x69\xcf\x52\x5e\x9f\x4b\x00\ \x55\xf8\xf0\xc3\x0f\x39\xf9\x23\x76\x06\x3b\x1f\xf1\x3d\x46\x4b\ \x20\x10\x31\xe1\xf5\xdd\x4f\x97\xd3\xf6\x17\x84\x00\x50\x85\x6c\ \x36\x6b\x7b\x04\xa0\x62\x1b\x5b\x7a\xf4\xe5\x8e\xbd\xbe\xc7\x69\ \x09\x04\xa2\x63\xa9\x1b\xfd\x94\x83\x00\x00\x38\xe4\xf3\x2b\xee\ \xd5\xd6\xf4\xb6\xd2\x07\x69\x09\x04\x22\xc1\xe4\x42\xdb\xfe\x96\ \xb4\xf4\x3f\x87\x00\x00\x38\x66\xb0\x73\xbf\xda\x52\x6d\x25\x8f\ \xd1\x12\x08\x58\x16\xde\xf6\x37\x54\xcd\x23\x7f\xa5\x10\x00\x00\ \xc7\xac\x69\x5e\xab\xc1\xce\xfd\xbe\xc7\x69\x09\x04\xec\xf1\x82\ \x97\xfe\x9f\x2f\x77\xa3\x9f\x72\x10\x00\x00\x07\x65\x5a\x77\x28\ \xd3\xba\xc3\xf7\x38\x2d\x81\x40\xe3\x99\x29\x85\xb5\xfd\x1d\x2a\ \xf7\xb5\xca\x41\x00\x00\x1c\x35\xd8\xb9\x5f\x6b\x9a\xd7\x96\x3e\ \x48\x4b\x20\xd0\x58\x0d\x5c\xfa\x9f\x43\x00\x00\x1c\xd5\x96\x6a\ \xd3\x50\xd0\xa3\x81\xb4\x04\x02\x8d\x61\x24\x2f\x5b\xdb\x8d\x7e\ \xca\x41\x00\x00\x1c\xd6\x97\xbe\x53\x9f\x5f\x71\xaf\xef\xf1\x90\ \xeb\x91\x00\x6a\xc0\x4c\x86\xb6\xfd\xd5\x74\xe9\x7f\x0e\x01\x00\ \x70\xdc\x97\x3b\xf6\x6a\x63\x4b\x4f\xe9\x83\xe1\x65\x24\x00\x96\ \xc0\xcc\x84\x3e\x79\x33\x54\xaf\xaf\x4d\x00\xa8\x42\x5b\x5b\xdb\ \xd2\x5f\x04\x88\x10\x5a\x02\x01\x0b\xc2\xbb\x37\xaa\xde\xe8\xa7\ \x1c\x04\x80\x2a\x74\x77\x77\xab\xa9\x89\x6f\x1d\x92\x63\x63\x4b\ \x8f\x1e\xe8\xf0\xef\x16\xa1\x25\x10\xa8\xbd\x32\xda\xfe\x9e\xaa\ \xe7\xd7\x67\x33\xa0\x2a\xb4\xb6\xb6\xaa\xb7\xb7\x57\x97\x2f\x5f\ \xd6\xcc\x0c\x1f\x8d\x90\x0c\x5f\x6e\xdb\xab\x77\xbc\xb7\xf4\xfa\ \xc4\x2f\x17\x1f\x2c\x7e\x52\x49\x75\xb2\x61\x10\x50\x0b\x66\x3a\ \x74\xa3\x9f\xba\x2d\xfd\xcf\x21\x00\x54\x29\x9d\x4e\x6b\xfd\xfa\ \xf5\xb6\xc7\x00\x6a\xea\x89\xee\x3f\xd7\x1f\xbf\xf6\x6f\x95\xcd\ \x8f\x2f\x3a\x66\xf2\x92\x72\x52\xaa\xd5\xf6\x94\x40\xcc\x79\xa1\ \x8f\xd9\x1e\x5a\xea\x46\x3f\xe5\x60\x1d\x1b\xc0\x0d\xeb\x5b\x37\ \xe8\xc0\x27\xfc\x6f\x38\xa6\x25\x10\x58\xba\x90\xa5\xff\x13\x2f\ \xef\x3a\xf3\x7c\x23\xe6\x20\x00\x00\xb8\xc9\x7d\xeb\xee\xd7\x5d\ \x6b\xee\xf1\x3d\x4e\x4b\x20\x50\x3d\x33\x15\xba\xd1\x4f\xdd\x97\ \xfe\xe7\x10\x00\x00\x2c\x72\x78\xcb\xe3\xea\x48\x77\x96\x3e\x48\ \x4b\x20\x50\x1d\x0b\x6d\x7f\x41\x08\x00\x00\x16\xe9\x68\xe9\xd4\ \x33\x77\x3e\xeb\x7b\x9c\x96\x40\xa0\x72\x21\xab\x67\x47\x6b\xb9\ \xd1\x4f\x39\x08\x00\x00\x4a\xca\xac\xdc\xae\x87\x6e\x7d\xd8\xf7\ \x38\x2d\x81\x40\xf9\x42\xee\x9f\x39\x27\xe9\xe9\x46\xcf\x44\x00\ \x00\xe0\x6b\xe8\x8e\xfd\xda\xdc\xde\x57\xfa\x20\x2d\x81\x40\x79\ \xf2\xa1\x6d\x7f\x7b\x1a\xb9\xf4\x3f\x87\x00\x00\xc0\x57\x47\x73\ \x87\x0e\xf7\x3d\xee\x7b\x9c\x96\x40\x20\x84\x09\x5d\xfa\xaf\x6b\ \xdb\x5f\x10\x02\x00\x80\x40\x9b\xdb\xfb\x34\x74\xc7\x7e\xdf\xe3\ \xb4\x04\x02\xfe\xcc\x44\xe8\x46\x3f\x4f\xd9\x9a\x8d\x00\x00\x20\ \xd4\xe0\xc6\x7d\xca\xac\xdc\x5e\xfa\x60\x78\x9f\x39\xe0\x24\x33\ \x53\x68\xfc\x2b\xc9\x6b\x93\x1a\xf8\xc8\x5f\x29\x04\x00\x00\x65\ \x39\xdc\xf7\x84\x3a\x5a\x4a\x3f\x1a\x68\xc2\xaf\x71\x02\x6e\x09\ \x09\xc6\xde\xd5\x07\x65\x6b\xe9\x7f\x0e\x01\x00\x40\x59\xd6\xb7\ \x6e\xd0\x81\x4d\xb4\x04\x02\xe5\x30\x59\xff\xa7\x64\x4c\x6e\x9b\ \xbc\xf1\x7b\x6d\x8f\x48\x00\x00\x50\xbe\xfb\xba\x69\x09\x04\xc2\ \x98\x5c\x40\xdb\x9f\xd7\xa6\xd9\x8b\x8f\xd9\x1e\x51\x12\x01\x00\ \x40\x85\x0e\x6f\x79\xdc\xf7\x52\x00\x2d\x81\x70\x9e\x17\xdc\xf6\ \x37\x7b\xf9\x11\xc9\xb4\xdb\x9e\x52\x12\x01\x00\x40\x85\x3a\x5a\ \x3a\xf5\xcc\x36\x5a\x02\x81\x52\xbc\xa0\xa5\xff\xc9\x1d\x32\x93\ \x3b\x6c\x8f\x78\x03\x01\x00\x40\xc5\x68\x09\x04\x16\x33\x53\xf2\ \xbf\x0f\x26\xbf\xb6\xf0\xe9\x3f\x42\x08\x00\x00\xaa\x32\xd4\xb3\ \x8f\x96\x40\x60\x4e\xc8\x46\x3f\xb3\x57\x1e\x99\x7b\xf4\x2f\x32\ \x08\x00\x00\xaa\xd2\xd1\xd2\x49\x4b\x20\x20\x15\xda\xfe\xb2\x01\ \x8f\xfc\x8d\xdf\x2b\x33\xb5\xcd\xf6\x94\x8b\x10\x00\x00\x54\x6d\ \x73\x7b\x9f\x86\x7a\x68\x09\x84\xdb\xcc\xa4\xff\x7f\xe7\x66\xfa\ \x0e\x79\x57\x1f\xb4\x3d\x62\x49\x04\x00\x00\x4b\x32\xd8\x43\x4b\ \x20\x1c\x16\x52\x82\xe5\x5d\xd9\x1f\xb9\xa5\xff\x39\x04\x00\x00\ \x4b\x46\x4b\x20\x9c\x14\xb6\xf4\x7f\xf5\x41\x99\xe9\x3b\x6c\x4f\ \xe9\x8b\x00\x00\x60\xc9\x68\x09\x84\x8b\xcc\xf5\x90\xb6\xbf\xab\ \x7b\x6c\x8f\x18\x88\x00\x00\xa0\x26\x68\x09\x84\x4b\xcc\x74\xc0\ \x4d\xae\x5e\x9b\xbc\x88\x3d\xf2\x57\x0a\x01\x00\x40\xcd\x84\xb6\ \x04\x4e\xd9\x9e\x10\xa8\x01\x2f\xb8\xf1\xd2\xbb\xfa\xa0\x4c\x7e\ \xad\xed\x29\x43\x11\x00\x00\xd4\x4c\x68\x4b\xe0\xa4\xa1\x25\x10\ \xb1\x17\xb8\xf4\x3f\xb9\x23\x12\x1b\xfd\x94\x83\x00\x00\xa0\xa6\ \x68\x09\x44\x92\x85\x6e\xf4\x13\x83\xa5\xff\x39\x04\x00\x00\x35\ \x17\xda\x12\xc8\x86\x41\x88\xa3\x90\xcd\xae\x66\x2f\x47\xaf\xed\ \x2f\x08\x01\x00\x40\xcd\x85\xb6\x04\x4e\xd3\x12\x88\xf8\x09\xba\ \x91\xd5\xbb\xf6\x07\x91\xda\xe8\xa7\x1c\x04\x00\x00\x75\x51\x56\ \x4b\x20\x0b\x01\x88\x89\xb0\x8d\x7e\xbc\x6b\xff\xda\xf6\x88\x15\ \x23\x00\x00\xa8\x9b\xd0\x96\xc0\x2c\x09\x00\x31\x90\x8f\xdf\x46\ \x3f\xe5\x68\xb1\x3d\x40\x9c\x65\xb3\x59\xe5\x72\x54\x9c\x01\x41\ \xf6\xaf\xfe\xba\xbe\x71\xed\x4f\x35\x61\x26\x16\x1d\x33\x79\x49\ \x39\x29\xd5\x6a\x7b\x4a\xc0\x87\x09\x59\xfa\xbf\xfa\x60\x24\x37\ \xfa\x29\x07\x01\xa0\x0a\x9e\xe7\xe9\xfc\xf9\xf3\x9c\xfc\x81\x32\ \xa4\xb5\x4c\x5f\xea\xd8\xab\xe7\xc7\xbf\x53\xf2\xb8\x99\x34\x4a\ \xb5\xa4\xa4\x66\xdb\x93\x02\x8b\x99\x89\xb0\x8d\x7e\xa2\xdd\xf6\ \x17\x84\x4b\x00\x55\xb8\x78\xf1\x22\x27\x7f\xa0\x02\xfd\xcb\x77\ \x29\xd3\xea\x73\x83\x94\xa1\x25\x10\xd1\x64\x66\x0a\x37\xac\xfa\ \xf1\xae\xec\x2f\xff\xc5\x22\x88\x00\x50\x85\xf1\xf1\x71\xdb\x23\ \x00\xb1\x33\xd8\xb9\x5f\x6d\x29\x9f\xeb\xa4\xb4\x04\x22\x6a\x42\ \x76\xb2\xf4\x46\xbf\x1a\xe9\x8d\x7e\xca\x41\x00\xa8\x82\xe7\xb1\ \xc1\x39\x50\xa9\xb6\x54\x9b\xbe\xbe\xf2\xa0\xef\x71\x5a\x02\x11\ \x25\xa1\x1b\xfd\xc4\xa4\xed\x2f\x08\x01\x00\x40\xc3\xf4\xa5\xef\ \xd4\xe7\x57\xf8\xff\xc5\x49\x4b\x20\xa2\xc0\xe4\xe2\xbf\xd1\x4f\ \x39\x08\x00\x00\x1a\xea\x81\xf6\x3d\xda\xd8\xd2\x53\xfa\x20\x2d\ \x81\xb0\xcd\x0b\x79\xe4\xef\xf2\x23\xb1\xd8\xe8\xa7\x1c\x04\x00\ \x00\x0d\xd5\x96\x6a\xd3\x60\xa7\xff\x27\x28\x5a\x02\x61\x93\x97\ \x0d\xde\xe8\x27\x6e\x6d\x7f\x41\x08\x00\x00\x1a\x6e\x63\x4b\x8f\ \x1e\x68\xf7\x7f\x7c\x8a\x96\x40\xd8\x10\xd8\xf6\x17\xb3\x8d\x7e\ \xca\x41\x00\x00\x60\xc5\x03\x6d\x7b\xb4\x35\xed\x53\xa0\x42\x4b\ \x20\x1a\x6d\x36\x64\xe9\xff\xc3\x83\xb1\x6c\xfb\x0b\x42\x00\x00\ \x60\x4d\xd0\xa3\x81\x26\x5f\xb8\x19\x0b\xa8\xbb\xb0\xb6\xbf\xf1\ \x7b\x63\xdb\xf6\x17\x84\x00\x00\xc0\x9a\x35\xcd\x6b\xf5\xa5\x8e\ \xbd\xbe\xc7\xcd\xa4\xf1\x5f\x92\x05\x6a\x24\xe8\xbf\xb3\x42\xdb\ \xdf\x83\xb6\x47\xac\x0b\x02\x40\x15\xd2\xe9\xb4\xed\x11\x80\xc4\ \xa0\x25\x10\x56\x85\xac\x34\x79\x57\xf6\x27\x6e\xe9\x7f\x0e\x01\ \xa0\x0a\xdd\xdd\xdd\xb6\x47\x00\x12\x85\x96\x40\x58\x51\xce\x46\ \x3f\x31\x6f\xfb\x0b\x42\x00\xa8\x42\x47\x47\x87\x6e\xbb\xed\x36\ \x56\x02\x80\x1a\xa1\x25\x10\x36\x98\xeb\xc9\xdd\xe8\xa7\x1c\xec\ \x06\x58\xa5\x8e\x8e\x0e\x75\x74\x74\xd8\x1e\x03\x48\x8c\xad\xda\ \xaa\x73\xef\xbc\xa3\x1f\xbe\xf7\x42\xc9\xe3\xde\x75\xa3\xa6\x5b\ \x52\x52\xca\xf6\xa4\x48\x02\x33\x13\xd2\xf6\xf7\xe1\x41\xdb\x23\ \xd6\x1d\x2b\x00\x00\x22\x63\xa8\x67\x9f\x36\xb7\xf7\x95\x3e\x48\ \x4b\x20\x6a\xc5\x0b\xd9\xe8\xe7\xea\x83\x89\x69\xfb\x0b\x42\x00\ \x00\x10\x19\x1d\x2d\x9d\x3a\xdc\xf7\xb8\xef\x71\x5a\x02\x51\x0b\ \x2e\x6c\xf4\x53\x0e\x02\x00\x80\x48\xd9\xdc\xde\xa7\xa1\x1e\xff\ \x7d\xd6\x69\x09\xc4\x52\x98\x5c\xa1\x63\xa2\x24\xaf\x4d\xb3\x97\ \x0e\xda\x1e\xb1\x61\x08\x00\x00\x22\x67\xb0\x67\x9f\x32\x2b\xb7\ \x97\x3e\x48\x4b\x20\xaa\x15\xd6\xf6\x77\xf9\x91\xc4\x3e\xf2\x57\ \x0a\x01\x00\x40\x24\x1d\xee\x7b\x42\x1d\x2d\x9d\x25\x8f\xd1\x12\ \x88\x6a\x04\x6d\x37\x6d\xae\xef\x4a\xd4\x46\x3f\xe5\x20\x00\x00\ \x88\xa4\xf5\xad\x1b\x74\x60\xd3\x21\xdf\xe3\xb4\x04\xa2\x12\x81\ \x1b\xfd\xe4\xd7\x6a\x76\xf4\xab\xb6\x47\x6c\x38\x02\x00\x80\xc8\ \xba\xaf\xfb\x7e\xdd\xb5\xe6\x9e\xd2\x07\x69\x09\x44\xb9\xf2\x21\ \x4b\xff\x57\xdc\x5a\xfa\x9f\x43\x00\x00\x10\x69\x87\xb7\x3c\xee\ \x7b\x29\x80\x96\x40\x84\x72\x74\xa3\x9f\x72\x10\x00\x00\x44\x5a\ \x47\x4b\xa7\x9e\xd9\xf6\xac\xef\x71\x5a\x02\x11\xc4\x4c\x86\xb4\ \xfd\x39\xb8\xf4\x3f\x87\x00\x00\x20\xf2\x32\x2b\xb7\xeb\xa1\x5b\ \x1f\xf6\x3d\xee\xf1\x68\x20\x4a\x30\x33\x65\x6c\xf4\xe3\x30\x02\ \x00\x80\x58\xa0\x25\x10\x15\x31\xc1\x6d\x7f\xff\xa2\xfd\x4f\x12\ \xbd\xd1\x4f\x39\x08\x00\x00\x62\x81\x96\x40\x54\x22\xa8\x30\x2a\ \xb3\x72\xbb\xfe\xcd\x6d\x0f\x57\xf6\x82\x09\x44\x00\x00\x10\x1b\ \xb4\x04\xa2\x1c\x41\x61\xb0\x10\x24\x9f\xb0\x3d\x62\x24\x10\x00\ \x00\xc4\x0a\x2d\x81\x08\x14\x72\x39\xe8\xc0\xa6\x43\x5a\xdf\xba\ \xc1\xf6\x94\x91\x40\x00\x00\x10\x3b\xb4\x04\xc2\x4f\xd0\x2a\xd0\ \x5d\x6b\xee\xd1\x7d\xdd\xf7\xdb\x1e\x31\x32\x08\x00\x00\x62\x87\ \x96\x40\x94\x62\xa6\xfc\x37\xfa\xe9\x68\xe9\xd4\xe1\x2d\x8f\x57\ \xf6\x82\x09\x47\x00\x00\x10\x4b\xb4\x04\xe2\x26\x21\x1b\xfd\xfc\ \xf9\x9d\xff\xc9\xbf\x50\xca\x51\x04\x00\x00\xb1\x45\x4b\x20\xe6\ \x04\x05\xbe\x87\x6e\x7d\x58\xdb\xbb\xfe\xa9\xed\x11\x23\x87\x00\ \x00\x20\xb6\x68\x09\x84\x54\xbc\xe9\xcf\xe7\x92\xcf\xfa\xe5\x1b\ \x34\xd4\xb3\xcf\xf6\x88\x91\x44\x00\x00\x10\x6b\xb4\x04\x3a\x2e\ \xe4\xa6\xcf\x67\xb6\x3d\xcb\xd2\xbf\x0f\x02\x00\x80\xd8\xa3\x25\ \xd0\x51\x21\xf7\x7a\x0c\xf5\xec\xf7\xff\xef\x02\x04\x00\x00\xf1\ \x47\x4b\xa0\x9b\xcc\x75\xff\x8d\x7e\x36\xb7\xf7\x69\x90\xa5\xff\ \x40\x04\x00\x00\x89\x40\x4b\xa0\x5b\xcc\x4c\x58\xdb\x1f\x8f\xfc\ \x85\x21\x00\x00\x48\x0c\x5a\x02\x1d\x11\xb2\xd1\x4f\xe0\x25\x21\ \xdc\x40\x00\x00\x90\x28\xb4\x04\x26\x9f\xc9\x06\x6f\xf4\x13\x74\ \x53\x28\x3e\x42\x00\x00\x90\x28\xb4\x04\x26\x9b\xc9\x05\xb7\xfd\ \x05\x3d\x16\x8a\x9b\x11\x00\x00\x24\x0e\x2d\x81\x09\x15\xd2\xf6\ \x17\x58\x0c\x85\x45\x08\x00\x00\x12\x89\x96\xc0\xe4\xf1\x42\x36\ \xfa\xf1\x0d\x7d\x28\x89\x00\x00\x20\x91\x68\x09\x4c\x16\x33\xa5\ \xc0\xb6\x3f\x36\xfa\xa9\x5c\x8b\xed\x01\xe2\x6e\x62\x62\xc2\xf6\ \x08\x00\x7c\xf4\xa5\xef\xd4\x03\x6b\xf6\xe8\xaf\x2e\x1f\x2f\x79\ \xdc\xbb\x6e\xd4\x74\x4b\x4a\x4a\xd9\x9e\x14\x81\x42\x97\xfe\x9f\ \x60\xe9\xbf\x0a\x04\x80\x2a\x5d\xbc\x78\x51\xa3\xa3\xa3\xb6\xc7\ \x00\x10\xe2\xf3\xa9\x7b\x75\xb6\xe5\x55\xfd\x36\x7f\x7e\xf1\xc1\ \x62\x4b\x60\xaa\x9d\x04\x10\x59\x46\xf2\xb2\xc1\x1b\xfd\xf8\x3e\ \xfa\x89\x40\x5c\x02\xa8\xc2\xe5\xcb\x97\x39\xf9\x03\x31\xd1\x96\ \x6a\xd3\x60\xe7\x23\xbe\xc7\x69\x09\x8c\x36\x33\x19\xdc\xf6\xf7\ \xef\x3f\x7e\xd0\xf6\x88\xb1\x45\x00\xa8\xc2\xd5\xab\x57\x6d\x8f\ \x00\xa0\x02\x1b\x5b\x7a\xf4\x40\xfb\x1e\xdf\xe3\xb4\x04\x46\x54\ \x48\x6f\xc3\xe1\xbe\xc7\x95\x4a\xb1\x7a\x53\x2d\x02\x40\x15\x66\ \x66\xf8\xb8\x00\xc4\xcd\x03\x6d\x7b\xb4\x35\xbd\xad\xf4\x41\x5a\ \x02\xa3\x27\x64\xe9\x9f\x8d\x7e\x96\x8e\x00\x00\xc0\x19\x83\x9d\ \xfb\xd5\x96\x6a\x2b\x79\x8c\x96\xc0\x68\x09\x5a\x95\xc9\xac\xdc\ \xce\x46\x3f\x35\x40\x00\x00\xe0\x8c\x35\xcd\x6b\xf5\xa5\x8e\xbd\ \xbe\xc7\x69\x09\x8c\x86\xa0\xfb\x32\x0a\x1b\xfd\x3c\x61\x7b\xc4\ \x44\x20\x00\x00\x70\x4a\xff\xf2\x5d\xca\xb4\xee\x28\x7d\x90\x96\ \x40\xfb\x8a\x4f\x66\xf8\x19\xea\xd9\xa7\xf5\xad\x1b\x6c\x4f\x99\ \x08\x04\x00\x00\xce\x09\xba\x14\x40\x4b\xa0\x5d\x26\xa4\xed\x8f\ \x8d\x7e\x6a\x87\x00\x00\xc0\x39\x6d\xa9\x36\x7d\x7d\xe5\x41\xdf\ \xe3\xb4\x04\xda\x11\xb6\xd1\x0f\x6d\x7f\xb5\x45\x00\x00\xe0\xa4\ \xbe\xf4\x9d\xfa\xfc\x8a\x7b\x7d\x8f\x7b\x3c\x1a\xd8\x58\xb3\xc1\ \x4b\xff\x6c\xf4\x53\x7b\x04\x00\x00\xce\x7a\xa0\x7d\x8f\x36\xb6\ \xf4\x94\x3e\x18\x72\x2d\x1a\xb5\x15\x74\xef\xc5\x43\xb7\x3e\xcc\ \x46\x3f\x75\x40\x00\xa8\x42\x53\x13\xdf\x36\x20\x09\x68\x09\x8c\ \x06\x33\x61\x02\x37\xfa\x19\xe2\x91\xbf\xba\xe0\x4c\x56\x85\xd5\ \xab\x57\xdb\x1e\x01\x40\x8d\xd0\x12\x68\x59\x58\xdb\x1f\x1b\xfd\ \xd4\x0d\x01\xa0\x0a\x6b\xd6\xac\xd1\xaa\x55\xab\x6c\x8f\x01\xa0\ \x46\x68\x09\xb4\x24\xe4\xb1\xcb\xa1\x9e\xfd\x6c\xf4\x53\x47\xec\ \x06\x58\xa5\xee\xee\x6e\xad\x5a\xb5\x8a\x5a\x60\x20\x21\xfe\x6c\ \xfd\x53\xfa\xfa\x1b\xfb\x94\xcd\x8f\x2f\x3a\x66\xf2\x92\x72\x52\ \xaa\xd5\xf6\x94\xc9\x62\x26\x82\x37\xfa\xa1\xed\xaf\xbe\x08\x00\ \x4b\x90\x4e\xa7\x95\x4e\xa7\x6d\x8f\x01\xa0\x06\xee\x50\xaf\x0e\ \x6c\x3a\xa4\xbf\x78\xf3\x5b\x25\x8f\x9b\x49\xa3\x54\x4b\x4a\x6a\ \xb6\x3d\x69\x32\x98\x99\xc2\x3d\x16\xa5\x14\xda\xfe\x78\xe4\xaf\ \xde\xb8\x04\x00\x00\x45\xf7\x75\xdf\xef\x7f\xb7\x39\x2d\x81\xb5\ \x63\x8a\xf7\x56\xf8\x18\xea\xd9\xc7\x46\x3f\x0d\x40\x00\x00\x80\ \x79\x02\x9f\x37\xa7\x25\xb0\x26\xc2\x36\xfa\xa1\xed\xaf\x31\x08\ \x00\x00\x30\x4f\x47\x4b\xa7\x9e\xd9\xf6\xac\xef\x71\x5a\x02\x97\ \xc6\xe4\xd8\xe8\x27\x2a\x08\x00\x00\xb0\x40\xd8\xa7\x50\x5a\x02\ \xab\xe4\x15\x03\x94\x8f\xc3\x5b\x1e\x67\xa3\x9f\x06\x22\x00\x00\ \x40\x09\x81\xd7\xa1\x69\x09\xac\x8a\x97\x0d\xde\xe8\x87\xb6\xbf\ \xc6\x22\x00\x00\x40\x09\x61\x77\xa2\xd3\x12\x58\x19\x33\x25\xdf\ \xb6\x3f\x36\xfa\xb1\x83\x00\x00\x00\x3e\x36\xb7\xf7\x69\xa8\x67\ \xbf\xef\x71\x5a\x02\xcb\x34\x1b\xbc\xf4\xff\xcc\xb6\x67\x69\xfb\ \xb3\x80\x00\x00\x00\x01\x06\x7b\xf6\xf9\xb7\xd1\xd1\x12\x18\xce\ \x84\x6f\xf4\x43\xdb\x9f\x1d\x04\x00\x00\x08\x71\xb8\xcf\xbf\x8f\ \xde\x84\x74\xd9\xbb\xce\x4c\xfa\x6f\xf4\x53\x58\x61\xa1\xed\xcf\ \x16\x02\x00\x00\x84\x58\xdf\xba\x41\x07\x36\x1d\xf2\x3d\x1e\x74\ \x92\x73\x5a\xd8\x46\x3f\x7d\x8f\xb3\xf4\x6f\x11\x01\x00\x00\xca\ \x40\x4b\x60\x85\x4c\xf1\xae\x7f\x1f\x43\x3d\xfb\x69\xfb\xb3\x8c\ \x00\x00\x00\x65\xa2\x25\xb0\x7c\x41\x37\x48\xb2\xd1\x4f\x34\x10\ \x00\x00\xa0\x4c\xb4\x04\x96\xc7\xcc\x04\xb7\xfd\x3d\xf3\x7b\xcf\ \x56\xf6\x82\xa8\x0b\x02\x00\x00\x54\x80\x96\xc0\x10\x5e\xf8\x46\ \x3f\xb4\xfd\x45\x03\x01\x00\x00\x2a\x44\x4b\xa0\xbf\xa0\xa5\xff\ \xbb\xd6\xdc\xc3\x46\x3f\x11\x42\x00\x00\x80\x0a\xd1\x12\xe8\xf3\ \xbe\x73\x85\xc7\x22\x4b\xa1\xed\x2f\x7a\x08\x00\x00\x50\x05\x5a\ \x02\x17\x98\x0d\xdf\xe8\x87\x47\xfe\xa2\x85\x00\x00\x00\x55\xa2\ \x25\xf0\x23\x41\xf7\x3e\xdc\xf7\xb1\xfb\xd9\xe8\x27\x82\x08\x00\ \x00\xb0\x04\xb4\x04\x06\x6f\xf4\xb3\x7e\xf9\x06\x1d\xf8\xf8\xa1\ \x8a\x5e\x0f\x8d\x41\x00\x00\x80\x25\x70\xbe\x25\x30\x1f\xb6\xf4\ \xff\x04\x4b\xff\x11\x45\x00\x00\x80\x25\x72\xb6\x25\x90\x8d\x7e\ \x62\x8d\x00\x00\x00\x35\xe0\x62\x4b\xa0\x99\x34\x92\x57\xfa\xd8\ \xe6\xf6\xbe\xc0\x95\x11\xd8\xf7\x51\x00\x98\xa5\xbe\x0a\x00\xaa\ \xe5\x5a\x4b\xa0\x99\x09\xdf\xe8\x07\x01\x22\x70\xce\x65\x05\x00\ \x00\x6a\xc4\x99\x96\x40\x13\xdc\xf6\x77\x60\xd3\x21\x36\xfa\x89\ \x81\x16\xdb\x03\x2c\x94\xbf\xf6\x5b\x4d\xbd\x3b\x62\x7b\x0c\x00\ \xa8\xca\x57\x9a\x7f\x4f\x3f\xf3\x96\xeb\x5c\x53\x89\x35\xff\x62\ \x4b\x60\xaa\x3d\x65\x7b\xcc\x25\x09\xea\x38\xf8\x64\x6a\x9d\xfe\ \x95\xe9\xd1\xd4\xbb\xa7\x6c\x8f\x19\x68\x7a\x2c\x2d\x69\xa5\xed\ \x31\xac\x8a\x5c\x00\xc8\xbe\xf1\x82\x3e\x78\xf5\x7b\xb6\xc7\x00\ \x80\xaa\xed\x5b\xb1\x4c\xff\x71\xdb\x6d\x25\x8f\x99\x69\x49\xcb\ \xa4\x54\xda\xf6\x94\xd5\x31\x39\xff\x96\xc3\xb6\x59\x4f\x7f\xf4\ \xc6\xcf\xf5\xc1\xab\x03\xb6\xc7\x0c\x35\x9a\xfe\x8c\xb4\xf2\x2f\ \xed\x0d\x60\xec\x3f\x1a\x32\xef\x1e\x00\x07\x7b\x2b\x01\xa0\x0e\ \x7a\x26\xa7\xb5\xe7\xc2\x98\xef\xf1\xd8\xb6\x04\x7a\xc1\x8f\xfc\ \xed\xfd\xdd\x65\xad\x9d\xb6\x7f\x6d\x3b\x16\x3c\x6f\xe9\xaf\xb1\ \x44\x37\x02\x80\x31\x71\xfc\xaf\x11\x00\xa2\x69\xcf\x85\x51\x6d\ \xcb\xfa\xdc\xfa\x1f\xd3\x96\xc0\xa0\xe0\xb2\x63\x6c\x42\xbb\x2e\ \x67\x6d\x8f\x18\x1b\xc6\x8b\xd2\x0a\x40\x04\x86\x01\x80\x24\xd9\ \x7f\xee\x92\xda\x66\x4b\x7f\xd2\x8b\x5b\x4b\xa0\x99\xf2\xdf\xe8\ \xa7\x6d\xd6\xd3\xfe\xdf\x5c\xb2\x3d\x62\xbc\x44\xe0\x9c\xcb\x25\ \x00\x00\xa8\x93\xb5\xd3\x79\xed\xfd\xdd\x65\xdf\xe3\xb1\x69\x09\ \x0c\xd9\xe8\xe7\xe0\x3b\x1f\xf8\x06\x1d\x94\x60\x4c\xc4\x02\x80\ \x14\x89\x81\x00\x20\x49\x76\x5d\xce\x6a\xc7\xd8\x44\xe9\x83\x31\ \x69\x09\x0c\x9a\xf1\xde\x8b\xd7\x74\xe7\x78\x02\x5b\x8e\xea\x29\ \x22\x1f\xb8\x6f\x0e\x00\xf9\x69\xdb\xf3\x00\x40\xe2\xec\xff\x8d\ \xff\xa5\x80\xa8\xb7\x04\x9a\x09\xff\x55\x8a\xb5\xd3\x79\xed\xb9\ \x30\x6a\x7b\xc4\xd8\x31\x11\x28\x01\x92\x16\x04\x00\x43\x00\x00\ \x80\x9a\x6b\x9b\xf5\x74\xf0\x9d\x0f\x7c\x8f\x47\xb6\x25\x30\xe4\ \x3e\x85\x83\x6f\xb3\xf4\x5f\x95\xd9\x68\x9c\x6b\x17\x5f\x02\x30\ \xfc\xcb\x04\x80\x5a\xbb\x73\x7c\x4a\xf7\x5e\xbc\xe6\x7b\x3c\x72\ \x2d\x81\x21\x97\x27\xf6\x5c\x18\x53\xcf\x64\x34\x4e\x64\xb1\xe2\ \xcd\x46\xe2\x11\x40\xa9\x44\x15\xb0\x99\x8e\xf0\x5a\x14\x00\xc4\ \xd8\x9e\x0b\xa3\xfe\x27\xcd\x62\x4b\x60\x54\x98\xeb\xfe\x1b\xfd\ \x14\x7a\x0e\x58\xfa\xaf\x86\x99\x89\xce\x39\x76\xf1\x5e\x00\xf9\ \x18\x3d\x97\x02\x00\x31\xd2\x36\xeb\xe9\x91\x73\xfe\x8f\xcb\x99\ \x69\xff\x96\xbd\x46\x32\x33\xc1\x6d\x7f\x8f\xbd\xfd\x41\x65\x2f\ \x88\x02\x63\xe6\xdf\x6b\x37\x66\x7b\x9c\xf9\x01\xe0\xdc\x47\x03\ \x12\x02\x00\xa0\x1e\x22\xdf\x12\x18\xb2\xd1\xcf\x9e\x0b\xa3\x5a\ \x47\xdb\x5f\x75\x66\xa6\x0a\xe7\xd8\x82\xb3\xb6\xc7\x59\x1c\x00\ \x24\x99\xe9\x49\xdb\x73\x01\x40\x62\x45\xb9\x25\xd0\x64\xfd\x03\ \xc8\xb6\x6c\xf0\x7d\x0c\x08\x60\xcc\xc2\xe5\xff\x31\xdb\x23\xcd\ \x0f\x00\x67\x6f\xfc\xcc\xf3\x24\x42\x00\x00\xd4\x4d\x14\x5b\x02\ \x4d\x2e\xb8\xed\x8f\xa5\xff\x25\xb8\xf9\xd3\xbf\x24\xfd\xc2\xf6\ \x48\xf3\x03\xc0\x4d\xc3\x98\xc5\xc3\x02\x00\x6a\x24\x72\x2d\x81\ \x21\x6d\x7f\x81\x5d\x06\x08\x66\xbc\x52\x2b\xeb\x27\x6d\x8f\x35\ \x3f\x00\xdc\x3c\x8c\x31\x32\xb9\xeb\xb6\xe7\x03\x80\xc4\x8a\x52\ \x4b\xa0\x17\xb2\xd1\x8f\xef\x9c\x08\x65\xa6\x4a\x9e\x4b\xcf\xda\ \x9e\xeb\x46\x00\x38\xfd\xe8\xce\x73\x9a\x77\x1f\x80\xa4\xc2\xdd\ \x8a\x94\x03\x01\x40\xdd\x44\xa1\x25\xd0\x4c\x29\xb0\xed\x8f\x8d\ \x7e\x96\x60\x66\xaa\x54\xf5\xef\xd9\xd3\x8f\xee\x1c\xb3\x3d\xda\ \xc2\xc7\x00\x4f\x2c\xfc\x0d\x26\x77\x9d\x72\x20\x00\xa8\x13\xeb\ \x2d\x81\x21\x4b\xff\x8f\xb0\xf4\x5f\x3d\x6f\x56\x26\x57\x72\xe5\ \xe4\xfb\xb6\x47\x93\x16\x07\x80\xc5\x43\x19\x23\x33\x39\xce\xfd\ \x00\x00\x50\x27\xd6\x5a\x02\x8d\xe4\x65\xd9\xe8\xa7\x2e\x8c\x91\ \x99\x1a\xf7\x3b\x7a\xc2\xf6\x78\xd2\x82\x00\x70\xfa\xd1\x9d\x67\ \xb5\xf0\x32\x80\x54\x4c\x31\xdc\x0f\x00\x00\xf5\x62\xa3\x25\xd0\ \x4c\x06\xb7\xfd\x05\xdd\xa4\x88\x00\xc6\xc8\x4c\x5e\xf3\xab\xfc\ \x3d\x5b\xbc\xe4\x6e\x5d\x4b\x89\x5f\xfb\xb6\xa4\x23\x8b\x7e\x35\ \x3f\x2d\x93\xbb\xae\x54\x6b\x7b\x5d\x07\xba\xd4\xbc\x41\x6f\xa4\ \x3f\x63\xfb\xfb\x02\x00\x0d\x77\xd7\xbb\xcb\xf4\x3f\x37\x5f\x2c\ \x79\xcc\x4c\x4b\x5a\x26\xa5\xd2\xb5\xf9\x5a\x66\x26\xf8\x51\xc3\ \xbb\xde\xbd\x5d\x6f\xa4\xbb\x6d\x7f\x4b\xea\xe6\x5c\xcb\x96\xba\ \xbd\xb6\xc9\x5d\x2f\x74\xfe\x97\xf6\x6d\xdb\xef\x7d\x4e\x6a\xe1\ \x2f\xec\x7c\xee\x74\x97\xa4\x7f\x94\xd4\x55\xf2\x4f\xa4\x5b\xeb\ \x1e\x02\x00\xc0\x55\x4d\x2b\x8f\xab\x69\xe5\xff\x2a\x7d\x30\x25\ \x35\xad\x4c\x95\xf8\x9b\xbb\x42\x46\xf2\xae\xfa\x5f\x56\xf0\xae\ \x3e\x28\xef\xea\x1e\xdb\xdf\x8a\xf8\x99\x7b\x7a\xce\xff\xe6\xf9\ \xb1\xd3\x8f\xee\x5c\x65\x7b\xcc\x39\x8b\xf6\x02\x28\xde\x99\xe8\ \x9f\x50\x66\x72\x32\x53\x59\xee\x09\x00\x80\x3a\xf0\xae\xee\x91\ \xc9\x6d\x2b\x7d\xb0\x46\x2d\x81\x41\x75\xc3\x26\xb7\x8d\x93\x7f\ \x35\xe6\x96\xfd\x83\x9f\x9c\x8b\xcc\xa7\x7f\xa9\xd4\x66\x40\x05\ \x47\x15\x54\x53\x98\x9f\x2e\xbc\x51\x9e\x0e\x00\x80\x9a\xf3\x2e\ \x3f\x22\x79\x6d\x25\x8f\x2d\xb5\x25\x30\x70\xc3\x21\xaf\xad\xf0\ \xb5\x51\x19\x6f\x56\x66\xf2\x6a\xd0\xb2\xbf\x54\xb8\xbf\xee\xa8\ \xed\x51\xe7\x2b\x19\x00\x8a\xab\x00\x4f\x87\xbe\xe1\x89\xab\xf4\ \x04\x00\x40\x8d\x99\xfc\x5a\x79\xa3\x5f\xf5\x3f\x3e\x61\x0a\xf7\ \x04\x54\x2a\x1f\xbc\xd1\x8f\x37\xfa\x55\x99\xfc\x5a\xdb\x6f\x3f\ \x5e\x66\xa6\x82\x6e\xf8\x9b\xef\xe9\x28\x3c\xfb\x3f\x5f\xe0\x95\ \xa4\x9d\xcf\x9d\x7e\x4d\x52\x26\xf4\x55\x5a\x96\x15\xee\x0b\x48\ \x2d\xf5\xc2\x14\x00\x60\x4e\xf3\xba\xa3\x4a\xad\x78\xd5\xf7\x78\ \xaa\x3d\xa5\xd4\xb2\xf2\x5e\xcb\x4c\x07\x9f\xfc\xcd\xe4\x0e\xcd\ \x5e\x3a\x68\xfb\x2d\xc7\x87\xf1\x0a\x0d\x7f\xb3\x65\xed\xdf\x7c\ \xf2\xf4\xa3\x3b\x3f\x67\x7b\xe4\x85\x9a\x42\x8e\x0f\x95\xf5\x2a\ \xf9\x69\x99\x89\xb1\x42\xe3\x11\x00\xa0\x26\x66\x03\x2e\x05\x48\ \x85\x13\xba\xc9\xfa\x3f\xca\x27\xa9\xf0\x08\x61\xd6\x04\x9e\xfc\ \xe5\xb5\x15\xbe\x16\xc2\x19\x23\x4d\x4f\x16\x56\xc0\xcb\x3b\xf9\ \x8f\xa9\xdc\x73\x69\x83\x05\x06\x80\x62\x2f\xc0\xa1\x72\xbf\x29\ \x26\x37\x51\x08\x02\x79\x0b\xdb\x58\x01\x40\xd2\x78\x6d\x9a\xfd\ \xf0\x60\xe0\x6f\x31\x33\x85\x3b\xfa\x4d\xd6\x14\x2a\x7d\xf3\x85\ \x1f\x26\x57\x38\xf1\x7b\x57\x8d\xff\x35\xff\xa2\xb0\xa0\x01\x15\ \x4e\xfc\x33\x53\x32\x13\x63\x85\x8d\x7d\xca\xbf\x11\xfe\x50\x54\ \x9e\xfb\x5f\xa8\xac\x35\xfb\x9d\xcf\x9d\x3e\x26\x69\xb0\xb2\x57\ \x4e\x29\x95\x5e\x2e\xa5\x5b\xa5\x54\xd8\x42\x03\x00\xc0\x4f\xd3\ \xaa\xff\xa1\xa6\xce\x1f\xd7\xe5\xb5\xbd\xf1\x7b\x03\xef\x37\x70\ \x9e\xf1\x64\xa6\xa7\x0a\x1f\x6c\x2b\x7f\xfa\xed\xf9\xd3\x8f\xee\ \x8c\xe4\xa7\x7f\x29\xfc\x12\xc0\x9c\x43\xaa\x74\xe7\x22\x63\x64\ \xa6\x27\x65\xae\x8f\x15\x96\x4a\x66\xa6\xc2\xee\x90\x04\x00\x94\ \xe0\x5d\x7d\x50\x66\xfa\x8e\xda\xbf\x70\x7e\xad\xbc\xab\x0f\xda\ \x7e\x7b\xd1\x33\x9b\xbf\xb1\xcc\x6f\xae\x8f\x15\xce\x5f\x95\x9f\ \xfc\x4f\x46\xf9\xe4\x2f\x95\x19\x00\x8a\x77\x2e\x7e\x4e\xd5\x6e\ \x5f\x58\xdc\x10\xa1\xf0\xcd\x1c\x95\x99\x1c\x2f\x6c\x90\x30\x33\ \x55\xf8\x46\xcf\xfd\x00\x00\x2c\xe6\xb5\xc9\xbb\xb2\xbf\xe6\x2f\ \x3b\x7b\xc5\xe1\xa5\xff\xf9\xe7\x9e\x99\xa9\xc2\x39\x6a\x72\x5c\ \x26\x7b\x45\x66\xf2\x5a\x61\x99\xbf\xfa\x0f\xad\x67\x25\x45\xbe\ \x4c\xa1\xa2\xdb\xf6\x8b\x2d\x81\x2f\xa9\x9c\x27\x03\x00\x00\x35\ \xd5\xbc\xee\x6f\xd5\xb4\xee\x6f\x6a\xf2\x5a\xde\xa5\x3f\xd4\xec\ \xa5\xfb\x6c\xbf\xa5\x24\x3a\x2b\xe9\x73\x51\x7b\xe4\xaf\x94\x8a\ \x2e\xce\x2f\x79\x25\x00\x00\x50\xb5\xd9\x4b\xf7\xc9\x4c\x6c\x5e\ \xf2\xeb\x98\xa9\xdb\x38\xf9\xd7\xc7\x59\xc5\xe4\xe4\x2f\x55\xd9\ \x28\x5d\x5c\x09\x38\x26\x69\xc0\xf6\x1b\x00\x00\x97\xa4\xd2\x57\ \xd4\xb2\xe9\x59\xa9\x79\xb2\xba\x17\x98\x5d\xa1\xfc\x6f\x0e\xc8\ \x4c\xdd\x66\xfb\xad\x24\x4d\xa4\x6f\xf8\x2b\x65\x49\xcd\x3d\x3b\ \x9f\x3b\xfd\x94\xa4\x27\x6d\xbf\x09\x00\x70\x49\x53\xe7\x2f\xd5\ \xbc\xf1\xbb\x55\xfd\xd9\xd9\xf7\xf6\xca\x1b\xfb\xac\xed\xb7\x90\ \x34\x87\x4e\x3f\xba\xf3\xa8\xed\x21\x2a\xb5\xe4\xea\xbe\x9d\xcf\ \x9d\xce\xa8\xb0\x1a\x90\xb1\xfd\x66\x00\xc0\x15\x4d\x5d\x67\xd4\ \x7c\xeb\x70\x45\x7f\x86\x93\x7f\xcd\x9d\x95\x34\x54\xec\xcc\x89\ \x9d\x9a\x75\xf7\x16\x57\x03\x1e\x93\xdf\x36\xc2\x00\x80\x9a\x4a\ \x2d\x7f\x57\xcd\xb7\x0e\x2b\xb5\xfc\xdd\xc0\xdf\x67\x66\x56\x6b\ \xf6\xb7\xfb\x58\xf6\xaf\x9d\x31\x15\xba\xfd\x8f\xda\x1e\x64\x29\ \x6a\x5a\xde\xbf\xf3\xb9\xd3\xbd\x2a\x5c\x12\x18\xb4\xfd\xc6\x00\ \xc0\x15\x4d\x5d\x67\x94\xea\xfc\xbf\x6a\xea\xfc\xe5\x4d\xbf\xee\ \x8d\x7f\x4a\x66\xfc\x9f\xf0\xa9\xbf\x76\xc6\x54\xd8\xd2\xf7\x68\ \x5c\x6e\xf4\x0b\x52\x97\xdd\x7b\x8a\x41\x60\x50\xac\x08\x00\x00\ \xe2\xef\x9c\xa4\xef\x2b\x21\x27\xfe\x39\x75\xdf\xbe\x6f\xe7\x73\ \xa7\x07\x24\x7d\x51\x85\x27\x06\xba\x6c\xbf\x61\x00\x00\xca\x30\ \x26\xe9\x84\xa4\xff\x7d\xfa\xd1\x9d\x27\x6c\x0f\x53\x0f\x0d\xdd\ \xbf\x77\xe7\x73\xa7\x77\x4b\xda\x2d\xe9\xd3\x92\x7a\xc5\x8d\x83\ \x00\x80\x68\x38\xab\xc2\x27\xfd\x9f\xa8\x50\xe3\x7b\xd6\xf6\x40\ \xf5\xd6\xd0\x00\x50\x4a\xb1\x53\x20\x63\x7b\x0e\x00\x80\x7b\x4e\ \x3f\xba\xf3\xa4\xed\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x96\xe2\xff\x03\x0b\x9a\x34\x94\x3f\x7c\x6c\x15\x00\x00\ \x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\ \x65\x00\x32\x30\x31\x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\ \x30\x35\x3a\x34\x34\x2b\x30\x38\x3a\x30\x30\xbe\x22\xc5\x00\x00\ \x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\ \x66\x79\x00\x32\x30\x31\x35\x2d\x30\x34\x2d\x30\x39\x54\x32\x31\ \x3a\x33\x33\x3a\x31\x38\x2b\x30\x38\x3a\x30\x30\x00\x62\xb5\xb3\ \x00\x00\x00\x4d\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\ \x00\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\ \x2e\x31\x2d\x36\x20\x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\ \x32\x30\x31\x36\x2d\x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\ \x6b\x2e\x6f\x72\x67\xdd\xd9\xa5\x4e\x00\x00\x00\x18\x74\x45\x58\ \x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\ \x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\ \x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\ \x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\ \x81\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\ \x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\ \x1c\x7c\x03\xdc\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\ \x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\ \x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\ \x32\x38\x35\x38\x36\x33\x39\x38\xc5\xba\x16\x73\x00\x00\x00\x12\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\ \x39\x2e\x33\x31\x4b\x42\x20\x1c\x1c\x53\x00\x00\x00\x5f\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\ \x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\ \x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\ \x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\ \x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\ \x31\x31\x38\x36\x33\x2f\x31\x31\x38\x36\x33\x31\x38\x2e\x70\x6e\ \x67\xf7\x1a\xf1\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x3a\x01\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\ \x01\x95\x2b\x0e\x1b\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xed\ \xdd\x79\x7c\x64\x67\x7d\xe7\xfb\x4f\xad\x52\x95\xd6\x96\x5a\x52\ \xef\x9b\xdd\x36\xd8\x24\x0c\x30\x2c\xc5\x4c\x41\x48\xd9\xdc\xec\ \xb9\x21\x30\x49\x6c\x13\x3c\xb9\x49\x08\x18\x02\x93\xb0\x24\x21\ \xeb\xdc\xc0\x35\x99\x24\x04\x9b\x04\xb2\xdc\xb0\x04\x92\x4c\x20\ \x24\x64\x9b\x24\x46\x81\x89\xc2\x08\xee\xb0\x79\x6b\xb7\xdd\xee\ \x7d\x91\xd4\xad\x5d\x2a\x49\xb5\xdf\x3f\xaa\x6c\x1a\xbb\xbb\xdd\ \x6a\x6d\xa5\x73\x3e\xef\xd7\xab\x5e\x72\x20\xb4\xfb\xfc\x9e\x47\ \xf5\xfb\x9e\xe7\x9c\xf3\x1c\x90\x24\x49\x92\x24\x49\x92\x24\x49\ \x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\xcd\ \x22\x62\x09\x14\x64\x83\x43\xc3\x51\x60\x1b\xd0\x07\xf4\x00\xbd\ \x8d\x9f\x97\xfa\xb4\x01\xc9\xcb\x7c\x5a\x1a\x3f\x01\x8a\xcf\xf0\ \x59\x00\x26\x2f\xf1\x99\xb8\xe8\x9f\xc7\x81\x73\xb9\x6c\xa6\xe2\ \x28\x49\x32\x00\x48\xcb\x6f\xf0\xad\xc0\x1e\x60\x6f\xe3\xb3\xe7\ \xa2\xff\x7b\x0f\xb0\xeb\xa2\xc6\xdd\x6c\xca\xc0\x59\xe0\x14\x70\ \xf2\x52\x3f\x73\xd9\x4c\xde\x51\x96\x64\x00\x50\xd8\x1b\xfd\xb3\ \x81\x9b\x81\x9b\x1a\x3f\x6f\x06\xf6\x03\xd1\x80\x1e\x76\xad\x11\ \x06\x1e\x06\x0e\x35\x7e\x3e\x0c\x1c\x32\x18\x48\x32\x00\x28\x88\ \xcd\x7e\x00\x78\x09\xf0\xc2\x8b\x1a\xfd\x01\x20\x66\x75\x00\xa8\ \x36\x56\x08\x9e\x08\x04\x5f\x06\xbe\x98\xcb\x66\xce\x58\x1a\x49\ \x06\x00\x6d\x96\x66\xdf\x02\x3c\x0f\x78\x71\xa3\xe9\xbf\x04\xd8\ \x67\x65\xae\xc9\x59\xe0\x8b\xc0\x97\x1a\x3f\xbf\x92\xcb\x66\x16\ \x2c\x8b\x24\x03\x80\x9a\xa1\xe1\x77\x00\xdf\x06\x7c\x7b\xa3\xd9\ \x3f\x8f\xfa\x0d\x76\x5a\x7d\x65\xe0\x81\x46\x20\xf8\x1c\x30\x98\ \xcb\x66\x26\x2d\x8b\x24\x03\x80\xd6\xa3\xe1\xc7\x81\x17\x01\xb7\ \x02\xb7\x34\xce\xf4\x13\x56\x66\x43\x54\x80\xaf\x01\xf7\x01\x9f\ \x05\xbe\x90\xcb\x66\x0a\x96\x45\x32\x00\x48\xab\xd5\xf4\x6f\x00\ \x5e\xd9\x68\xf8\xaf\x00\x3a\xad\x4a\x53\x5a\x00\xfe\xb5\x11\x06\ \xee\xcb\x65\x33\x0f\x58\x12\xc9\x00\x20\x2d\xb7\xe9\x3f\x1f\x78\ \x55\xe3\xf3\x6c\x2b\xb2\x29\x1d\x07\x3e\xdd\xf8\x0c\xe7\xb2\x99\ \x9a\x25\x91\x0c\x00\xd2\x53\x1b\x7e\x14\xc8\x5c\xd4\xf4\xf7\x59\ \x95\x40\x19\x01\xfe\xaa\xf1\xf9\x7c\x2e\x9b\x29\x5b\x12\xc9\x00\ \xa0\x70\x37\xfd\x57\x00\xaf\x06\xbe\x1f\xd8\x6e\x55\x42\x61\x02\ \xf8\x5b\xe0\x53\xc0\x3f\x19\x06\x24\x03\x80\xc2\xd3\xf8\x0f\x02\ \xaf\x03\x5e\x4b\x7d\x77\x3d\x85\xd7\x18\xf0\x09\xe0\x23\xb9\x6c\ \xe6\x41\xcb\x21\x19\x00\x14\xbc\xa6\xdf\x09\xbc\x06\xb8\x13\xf8\ \x0f\xce\x15\x5d\xc2\x57\x80\x8f\x00\x7f\x96\xcb\x66\x26\x2c\x87\ \x64\x00\xd0\xe6\x6d\xfa\x11\xea\xcf\xe7\xdf\x49\xfd\xba\x7e\xda\ \xaa\xe8\x2a\x14\x80\xbf\x6b\x84\x81\x7f\xf4\x12\x81\x64\x00\xd0\ \xe6\x3a\xdb\xff\x31\xe0\x4d\xc0\x75\x56\x44\x2b\x70\x06\xf8\x20\ \xf0\x07\xb9\x6c\x66\xdc\x72\x48\x06\x00\x35\x67\xe3\x3f\x08\xbc\ \xb9\x71\xc6\xdf\x61\x45\xb4\x8a\x16\x81\x3f\x05\xee\x71\x7f\x01\ \xc9\x00\xa0\xe6\x68\xfa\x11\xea\xbb\xf2\xfd\x34\xf0\x9d\x04\xf7\ \x4d\x7a\x6a\x0e\x35\xe0\xf3\xc0\x3d\xc0\xdf\xe4\xb2\x99\xaa\x25\ \x91\x0c\x00\x5a\xdf\xc6\xdf\xda\x38\xd3\x7f\x33\xf5\xd7\xe9\x4a\ \xeb\xed\x38\xf0\x01\xe0\x0f\x73\xd9\xcc\x9c\xe5\x90\x0c\x00\x5a\ \xdb\xc6\x9f\x02\x5e\x0f\xbc\x03\x9f\xdb\x57\x73\x98\x04\xde\x07\ \xdc\x9b\xcb\x66\x66\x2c\x87\x64\x00\xd0\xea\x36\xfe\x36\xe0\x0d\ \xc0\xdb\x80\x01\x2b\xa2\x26\x34\x4d\xfd\xd2\xc0\xef\xe4\xb2\x99\ \x29\xcb\x21\x19\x00\xb4\xb2\xc6\xdf\x01\xdc\x05\xfc\x0c\xd0\x67\ \x45\xb4\x09\xcc\x52\xbf\x34\xf0\x3e\x9f\x1c\x90\x0c\x00\x5a\x7e\ \xe3\xef\xa4\x7e\x63\xdf\x5b\x81\x5e\x2b\xa2\x4d\x68\x1e\xf8\x3d\ \xe0\x37\x73\xd9\xcc\x05\xcb\x21\x19\x00\x74\xe5\xc6\x1f\x07\x7e\ \x0a\xf8\x65\xcf\xf8\x15\x10\x73\xc0\x7b\x81\xdf\xce\x65\x33\x8b\ \x96\x43\x32\x00\xe8\xe9\xcd\xff\xfb\x1b\x5f\x94\x37\x5a\x0d\x05\ \xd0\x19\xe0\x5d\xc0\x9f\xf8\x6a\x62\xc9\x00\xa0\x7a\xe3\x7f\x21\ \xf0\x9b\xc0\xcb\xac\x86\x42\xe0\x6b\xc0\xdb\x72\xd9\xcc\xbf\x58\ \x0a\xc9\x00\x10\xd6\xc6\xbf\x17\x78\x0f\xf0\x23\x8e\x9d\x42\xe8\ \xef\x80\x77\xe4\xb2\x99\x47\x2c\x85\x64\x00\x08\x4b\xe3\x4f\x03\ \xbf\x44\xfd\x06\xbf\x56\x2b\xa2\x10\x2b\x03\x7f\x00\xfc\xa2\x8f\ \x0e\x4a\x06\x80\xa0\x37\xff\xef\xa6\xfe\x88\xd4\x3e\xab\x21\x3d\ \x69\x0c\xf8\x99\x5c\x36\xf3\xa7\x96\x42\x32\x00\x04\xad\xf1\xef\ \x00\xde\x0f\xbc\xda\x6a\x48\x97\xf5\x59\xe0\x0d\xb9\x6c\xe6\x71\ \x4b\x21\x19\x00\x36\x7b\xe3\x8f\x02\x6f\x04\xde\x0d\x74\x5a\x11\ \xe9\x19\x2d\x51\xbf\x37\xe6\xbd\xb9\x6c\xa6\x68\x39\x24\x03\xc0\ \x66\x6c\xfe\xcf\x03\x7e\x1f\x78\xa1\xd5\x90\x96\xed\x30\xf0\x53\ \xb9\x6c\xe6\x7f\x5a\x0a\xc9\x00\xb0\x59\x1a\x7f\x2b\xf0\xeb\xc0\ \x5b\x80\xb8\x15\x91\xae\x59\x0d\xf8\x28\xf0\x56\x5f\x34\x24\x19\ \x00\x9a\xbd\xf9\x3f\x1f\xf8\x13\x7c\x45\xaf\xb4\x9a\x4e\x01\x77\ \xe6\xb2\x99\xcf\x59\x0a\xc9\x00\xd0\x6c\x8d\x3f\x06\xbc\x13\xf8\ \x15\x20\x69\x45\xa4\x55\x57\xa5\x7e\x23\xed\x2f\xe4\xb2\x99\x25\ \xcb\x21\x19\x00\x9a\xa1\xf9\x5f\x07\x7c\x0c\x78\xa9\xd5\x90\xd6\ \xdc\xc3\xc0\x6b\x73\xd9\xcc\xd7\x2c\x85\x64\x00\xd8\xc8\xe6\xff\ \x13\xc0\x6f\x03\xed\x56\x43\x5a\x37\x45\xe0\x57\xa9\x3f\x29\x50\ \xb5\x1c\x92\x01\x60\x3d\x1b\xff\x00\xf0\x47\xc0\xf7\x58\x0d\x69\ \xc3\x7c\x01\xf8\xd1\x5c\x36\x73\xcc\x52\xc8\x00\xa0\xf5\x68\xfe\ \x2f\x07\xfe\x1c\xd8\x66\x35\xa4\x0d\x37\x03\xfc\x58\x2e\x9b\xf9\ \xb4\xa5\x90\x01\x40\x6b\xd5\xf8\x23\xc0\xdb\xa9\x6f\xea\xe3\xe3\ \x7d\x52\xf3\xa8\x01\xbf\x05\xfc\x7c\x2e\x9b\x29\x5b\x0e\x19\x00\ \xb4\x9a\xcd\xbf\x0b\xf8\x08\xf0\x7f\x5a\x0d\xa9\x69\x0d\x01\x3f\ \x94\xcb\x66\x46\x2c\x85\x0c\x00\x5a\x8d\xe6\xff\x5c\xe0\x53\xc0\ \xf5\x56\x43\x6a\x7a\xa3\xc0\x0f\xbb\x83\xa0\x0c\x00\x5a\x69\xf3\ \xbf\x13\xf8\x3d\x20\x65\x35\xa4\x4d\xa3\x0c\xbc\x2b\x97\xcd\xfc\ \x86\xa5\x90\x01\x40\xcb\x6d\xfc\x2d\xc0\xbd\xc0\x4f\x58\x0d\x69\ \xd3\xfa\x6b\xea\x3b\x08\xba\x8d\xb0\x0c\x00\xba\xaa\xe6\xdf\xd7\ \xf8\xe2\x70\x63\x1f\x69\xf3\x3b\x04\x7c\x4f\x2e\x9b\x39\x6e\x29\ \x64\x00\xd0\x95\x9a\xff\xb3\x80\xbf\x07\x0e\x58\x0d\x29\x30\xce\ \x03\xdf\x9f\xcb\x66\xbe\x68\x29\x64\x00\xd0\xa5\x9a\xff\xb7\x53\ \xbf\xd9\x6f\x8b\xd5\x90\x02\x67\x91\xfa\xe5\x80\xbf\xb0\x14\x32\ \x00\xe8\xe2\xe6\xff\x63\xc0\x87\x80\x84\xd5\x90\x02\xab\x0a\xfc\ \x52\x2e\x9b\x79\x8f\xa5\x90\x01\xc0\xc6\x1f\x01\xde\x43\xfd\x4d\ \x7e\xd6\x4f\x0a\x87\x0f\x03\xaf\xcf\x65\x33\x25\x4b\x21\x03\x40\ \x38\x9b\x7f\x8a\xfa\x5b\xfc\x5e\x6d\x35\xa4\xd0\xf9\x1c\xf0\x83\ \xb9\x6c\x66\xca\x52\xc8\x00\x10\xae\xe6\xdf\x0d\xfc\x03\x90\xb1\ \x1a\x52\x68\x3d\x02\xbc\x32\x97\xcd\x9c\xb1\x14\x32\x00\x84\xa3\ \xf9\xf7\x03\xff\x0c\x3c\xd7\x6a\x48\xa1\x77\x1c\xb8\xc5\x37\x0a\ \xca\x00\x10\xfc\xe6\xbf\x0b\xf8\x2c\x70\xa3\xd5\x90\xd4\x70\x0e\ \xb8\x35\x97\xcd\x1c\xb2\x14\x32\x00\x04\xb3\xf9\x5f\x0f\xdc\x07\ \xec\xb3\x1a\x92\x9e\xe2\x02\xf0\x1d\xb9\x6c\xe6\xab\x96\x42\x06\ \x80\x60\x35\xff\x9b\x1b\xcd\x7f\xbb\xd5\x90\x74\x19\x33\xc0\x77\ \xe7\xb2\x99\x2f\x58\x0a\x19\x00\x82\xd1\xfc\xff\x3d\xf0\x8f\x40\ \xaf\xd5\x90\xf4\x0c\xf2\xc0\x0f\xe4\xb2\x99\xfb\x2c\x85\x0c\x00\ \x9b\xbb\xf9\xbf\x0c\xf8\x5b\xa0\xd3\x6a\x48\xba\x4a\x05\xe0\x87\ \x72\xd9\xcc\x67\x2c\x85\x0c\x00\x9b\xb3\xf9\xff\xc7\xc6\x99\x7f\ \x9b\xd5\x08\xd8\x44\x8f\x44\x48\x26\x13\x24\x13\x09\x62\xf1\x38\ \xf1\x58\x8c\x78\x2c\x46\x2c\xfe\x8d\x9f\xb1\x58\x9c\x68\x24\x42\ \x24\x12\x21\x12\x8d\x7c\xe3\x9f\x1b\x1f\x80\x6a\xb5\x46\xad\x56\ \xa5\x56\xab\x51\xab\xd5\xa8\xd6\x6a\xd4\xaa\x35\x2a\xd5\x0a\x95\ \x72\x85\x72\xa5\x42\xa5\x52\xa1\x5c\x7e\xe2\x67\x99\x52\xb9\x4c\ \xb1\x58\xa2\x52\xa9\x38\x10\xc1\x56\x02\x5e\x9d\xcb\x66\xfe\xc6\ \x52\xc8\x00\xb0\xb9\x9a\xff\x0b\x80\x41\xa0\xcb\x6a\x6c\x4e\xd1\ \x68\x94\xd6\xd6\x16\x5a\x5b\x5a\x48\x26\x93\xf5\x86\x9f\x4c\x90\ \x4c\x24\x89\xc7\x63\x4f\x36\xf1\x8d\x52\xa9\x54\x28\x96\x4a\x14\ \x8b\x25\x8a\xc5\x22\xc5\x52\x89\xc2\x52\x81\xc5\xa5\x02\xe5\x72\ \xd9\x01\x0c\x86\x25\xe0\xfb\xbc\x1c\x20\x03\xc0\xe6\x69\xfe\xcf\ \x01\x3e\x8f\xd7\xfc\x37\x8d\x64\x32\x41\xaa\xb5\x95\xd6\xd6\x56\ \x52\xa9\x16\x5a\x5b\x5b\x49\x26\x12\x1b\xde\xe4\xaf\x55\xb9\x5c\ \x66\x69\xa9\xc0\xe2\xd2\xd2\x45\x3f\x97\xa8\xd5\x1c\xeb\x4d\x28\ \x4f\xfd\xe9\x80\x7f\xb3\x14\x32\x00\x34\x77\xf3\x3f\x08\xfc\x4f\ \xbc\xdb\xbf\x79\x27\x69\x04\x52\xad\x29\xd2\x6d\x29\xda\xd2\x69\ \xda\xd2\x69\x12\x89\x78\xe0\x8f\xbb\x5a\xad\xb2\xb0\xb0\x48\x7e\ \x61\x91\xfc\xc2\x02\x0b\x0b\x0b\x54\x2a\x55\x27\xc4\xe6\x30\x0b\ \xe4\x72\xd9\xcc\x97\x2d\x85\x0c\x00\xcd\xd9\xfc\xf7\x00\x43\xc0\ \x1e\xa7\x42\x73\x49\xa5\x52\x74\x76\xb4\xd1\xde\xd6\x46\x3a\x9d\ \x22\x1a\x8d\x86\xbe\x26\xb5\x5a\x8d\x42\xa1\xc8\x7c\x3e\xcf\xdc\ \x5c\x9e\xf9\x7c\x9e\x6a\xd5\x40\xd0\xc4\x26\x80\x57\xe4\xb2\x99\ \x07\x2d\x85\x0c\x00\xcd\xd5\xfc\xb7\x01\xff\x0a\x1c\x74\x1a\x6c\ \xbc\x58\x2c\x46\x47\x7b\x3b\x9d\x1d\xed\x74\x74\xb4\x11\x8f\xc7\ \x2d\xca\x33\xae\x10\xd4\xc8\x2f\x2c\x30\x37\x37\xc7\xec\x5c\x9e\ \x42\xa1\x60\x51\x9a\xcf\x28\xf0\xf2\x5c\x36\xf3\x98\xa5\x90\x01\ \xa0\x39\x9a\x7f\x2f\xf5\x6b\xfe\xcf\x71\x0a\x6c\x9c\x44\x22\x4e\ \x77\x57\x27\x5d\x5d\x9d\xa4\x53\xa9\x4d\x7b\xfd\xbe\x59\x14\x8b\ \x25\x66\x66\x67\x99\x9e\x99\x65\x61\x61\xd1\x82\x34\x8f\xd3\xc0\ \xcb\x72\xd9\xcc\x09\x4b\x21\x03\xc0\xc6\x36\xff\x14\xf5\xd7\x7a\ \xbe\xd8\xe1\x5f\x7f\xf1\x78\xbd\xe9\x77\x77\x75\x92\x4e\xdb\xf4\ \xd7\x32\x0c\x4c\xcf\xcc\x30\x3d\x33\xcb\xe2\xe2\x92\x05\xd9\x78\ \x47\x80\x4c\x2e\x9b\x99\xb0\x14\x32\x00\x6c\x4c\xf3\x8f\x02\x9f\ \x04\x5e\xe5\xd0\xaf\x9f\x68\x34\x4a\x77\x57\x27\x5b\xba\xbb\x68\ \x6b\x4b\xdb\xf4\xd7\x59\xa1\x50\x64\x7a\x66\x86\xc9\xa9\x69\x8a\ \xc5\x92\x05\xd9\x38\xff\x46\xfd\x2d\x82\x5e\xab\x91\x01\x60\x03\ \x02\xc0\x6f\x02\x3f\xeb\xb0\xaf\x8f\x74\x2a\x45\x4f\x4f\x37\xdd\ \x5d\x9d\xc4\x62\x31\x0b\xb2\xc1\x6a\xb5\x1a\xf3\xf9\x3c\x93\x93\ \xd3\xcc\xcc\xce\x51\xf3\x19\xc3\x8d\xf0\xe7\xc0\x6d\xb9\x6c\xc6\ \xe2\x6b\xc3\x85\xe6\x4e\xab\xc1\xa1\xe1\x37\xd8\xfc\xd7\x5e\x2c\ \x16\x65\x4b\x77\x37\x3d\x3d\xdd\xa4\x5a\x5b\x2d\x48\x33\xa5\xfd\ \x48\x84\x8e\xf6\x76\x3a\xda\xdb\x29\x97\xcb\x4c\x4d\xcf\x30\x31\ \x39\x45\xa1\x50\xb4\x38\xeb\xe7\x87\x81\x63\xc0\xbb\x2c\x85\x5c\ \x01\x58\x9f\xe6\xff\x5d\xc0\x67\xc2\x14\x78\xd6\x5b\x32\x99\x60\ \x6b\x6f\x2f\xbd\x3d\xdd\x3e\xb2\xb7\xa9\x56\x05\x60\x6e\x7e\x9e\ \x0b\xe3\x13\xcc\xcf\xe7\x2d\xc8\x3a\x95\x1d\xf8\xf1\x5c\x36\xf3\ \xc7\x96\x42\x06\x80\xb5\x6d\xfe\xcf\xa5\xfe\xac\x7f\x87\xc3\xbd\ \xfa\xd2\xa9\x56\xfa\xb6\xf6\xd2\xd5\xd5\xe9\xb5\xfd\x4d\x6e\x71\ \x71\x89\xf3\xe3\x13\xcc\xcc\xcc\xb8\x03\xe1\xda\x2b\x01\xdf\x95\ \xcb\x66\x3e\x6b\x29\x64\x00\x58\x9b\xe6\xbf\x13\xf8\x22\xb0\xcb\ \xa1\x5e\x5d\x9d\x1d\xed\xf4\xf5\xf5\xd2\xde\xe6\x7b\x93\x82\xa6\ \x58\x2a\x31\x3e\x3e\xc9\xc4\xe4\x94\x1b\x0d\xad\xad\x69\xe0\x3f\ \xe6\xb2\x99\x87\x2d\x85\x0c\x00\xab\xdb\xfc\xd3\xc0\x17\x80\x7f\ \xe7\x30\xaf\x9e\x8e\xf6\x36\xb6\x0d\xf4\x93\x4e\xa7\x2c\x46\xc0\ \x95\xcb\x65\xce\x5f\x98\x60\x7c\x62\xd2\x1b\x06\xd7\xce\x49\xe0\ \x85\xb9\x6c\xe6\x82\xa5\x90\x01\x60\xf5\x02\xc0\xc7\x81\xdb\x1d\ \xe2\xd5\xd1\xde\x96\x66\xdb\x40\x3f\x6d\x6d\x69\x8b\x11\x32\xa5\ \x52\x99\xf3\x17\x2e\x30\x31\x39\x6d\x10\x58\x1b\xff\x02\xbc\x32\ \x97\xcd\xf8\xbe\x68\x19\x00\x56\xa1\xf9\xbf\x09\xb8\xd7\xe1\x5d\ \xb9\x74\x3a\xc5\xf6\x81\x7e\xda\xdb\x5d\xea\x0f\xbb\x62\xa9\xc4\ \xd8\xd8\x38\x93\x53\x53\x16\x63\xf5\xdd\x9d\xcb\x66\x7e\xde\x32\ \xc8\x00\xb0\xb2\xe6\x9f\xa1\xbe\xcd\x6f\xd2\xe1\xbd\x76\x89\x44\ \x9c\xed\xdb\x06\xe8\xee\xea\xc2\x7b\xfb\x74\xb1\xa5\xa5\x02\x67\ \x47\x46\x7d\x6a\x60\x75\xd5\x80\x57\xe5\xb2\x99\xbf\xb6\x14\x32\ \x00\x5c\x5b\xf3\xef\x07\xbe\x82\x37\xfd\x5d\xfb\x84\x88\x44\xe8\ \xef\xdb\x4a\x7f\x5f\xaf\x8f\xf3\xe9\x8a\x66\x66\xe7\x38\x37\x32\ \x46\xb1\xe8\x3e\x02\xab\x55\x52\xea\xf7\x03\x1c\xb1\x14\x32\x00\ \x2c\xaf\xf9\xc7\x80\xfb\x80\x57\x38\xac\xd7\xa6\xbb\xab\x93\xed\ \xdb\x06\x48\x26\x13\x16\x43\x57\xa5\x5a\xab\x31\x3e\x3e\xc1\xd8\ \xf9\x71\x9f\x18\x58\x1d\x0f\x02\x2f\xc9\x65\x33\x0b\x96\x42\x6b\ \x2d\x48\x1b\xe3\xbc\xc7\xe6\x7f\x6d\x92\xc9\x24\xbb\x77\x6e\xf7\ \x3a\xbf\x96\x2d\xda\x58\x31\xda\xd2\xdd\xcd\xd9\x73\x23\xcc\xcc\ \xce\x59\x94\x95\xf9\x16\xe0\x0f\xf1\x06\x66\xb9\x02\x70\xd5\x67\ \xff\xaf\x02\x3e\x45\x48\x5f\x6f\xbc\x12\xfd\x7d\xbd\x0c\xf4\xf7\ \xb9\xdc\xaf\x55\x31\x33\x3b\xc7\xd9\xb3\x23\x94\xca\x65\x8b\xb1\ \x32\x6f\xce\x65\x33\x1f\xb0\x0c\x32\x00\x5c\xb9\xf9\xef\x05\xee\ \x07\xba\x1c\xce\xab\x97\x4a\xb5\xb2\x7b\xe7\x0e\x52\x29\xf7\xeb\ \xd7\xea\xaa\x54\x2a\x8c\x8c\x9e\x67\x62\xd2\xa7\x05\x56\xa0\x48\ \xfd\xf5\xc1\x5f\xb5\x14\x32\x00\x5c\xba\xf9\x47\xa9\x3f\x43\xfb\ \x72\x87\xf2\x2a\x07\x3c\x12\x61\xdb\x40\x1f\x7d\x5b\x7b\xdd\xba\ \x57\x6b\x6a\x3e\xbf\xc0\xe9\x33\xe7\xbc\x49\xf0\xda\x3d\x02\xbc\ \x20\x97\xcd\x2c\x5a\x0a\xad\x85\xcd\x7e\x0f\xc0\xdb\x6c\xfe\x57\ \xaf\xb5\xb5\x85\x3d\xbb\x77\xfa\x96\x3e\xad\x8b\xf6\xb6\x34\x37\ \x1e\x3c\xc0\xd9\x73\xa3\x4c\x4e\x4d\x5b\x90\xe5\x7b\x36\xf0\x5e\ \xe0\xa7\x2d\x85\x5c\x01\xf8\xe6\xb3\xff\xe7\x02\x5f\x02\x5a\x1c\ \xc6\x67\xb6\xb5\xb7\x87\xed\xdb\xfa\xbd\xd6\xaf\x0d\x31\x33\x33\ \xcb\xe9\xb3\x23\x54\x2a\x6e\x76\xb7\x4c\x35\xe0\x3b\x72\xd9\xcc\ \x3f\x5b\x0a\x19\x00\xea\xcd\xbf\x05\xf8\x32\xf0\x1c\x87\xf0\xca\ \xe2\xf1\x38\x7b\x76\xed\xa0\xa3\xa3\xdd\x62\x68\x43\x95\x4a\x25\ \x4e\x9d\x39\xe7\x06\x42\xcb\x77\x16\xf8\xd6\x5c\x36\x33\x69\x29\ \xb4\xaa\xfd\x61\x93\xfe\xbd\xff\x1f\x9b\xff\x33\xeb\xec\x68\x67\ \xf7\xae\x1d\xc4\xe3\x71\x8b\xa1\x0d\x97\x48\x24\x38\xb0\x6f\x0f\ \x17\xc6\x27\x18\x19\x3d\x6f\x41\xae\xde\x4e\xe0\x43\xc0\x7f\xb2\ \x14\x0a\xf5\x0a\xc0\xe0\xd0\xf0\xb7\x53\xdf\xf0\xc7\xb5\xec\x2b\ \x18\xe8\xef\x63\xa0\x7f\xab\x37\xfa\xa9\x29\xcd\xe7\x17\x38\x79\ \xea\x34\xe5\xb2\x97\x04\x96\xe1\x47\x73\xd9\xcc\x9f\x58\x06\x85\ \x32\x00\x0c\x0e\x0d\x77\x03\x0f\x00\xbb\x1d\xba\x4b\x8b\xc5\xa2\ \xec\xd9\xb5\x93\xce\xce\x0e\x8b\xa1\xa6\x56\x2a\x95\x38\x71\xea\ \x0c\x0b\x0b\xde\xe4\x7e\x95\x66\xa8\x5f\x0a\x38\x65\x29\xb4\x1a\ \x36\xdb\xda\xf0\x6f\xd9\xfc\x2f\xaf\xb5\xb5\x85\x7d\x7b\x76\xd3\ \xd2\xe2\x7b\x90\xd4\xfc\x12\x89\x04\xd7\x1f\xd8\xc7\xd9\x73\xa3\ \xee\x19\x70\x75\xba\x80\x3f\x00\xbe\xc3\x52\x28\x54\x2b\x00\x83\ \x43\xc3\x2f\x07\x3e\x87\xbb\xfd\x5d\x52\x77\x57\x27\xbb\x77\xed\ \xf0\x2e\x7f\x6d\x4a\x93\x53\xd3\x9c\x39\x3b\x42\xad\x56\xb3\x18\ \xcf\xec\xb6\x5c\x36\xf3\x67\x96\x41\xa1\x08\x00\x8d\xbb\xfe\xbf\ \x0e\x3c\xcb\x21\x7b\xba\x81\xfe\xad\x0c\xf4\xf7\xfb\xda\x5e\x6d\ \x6a\xf3\xf9\x05\x4e\x9c\x3c\xed\xa3\x82\xcf\x6c\x0c\x78\x76\x2e\ \x9b\x71\xd9\x44\x2b\xb2\x59\x2e\x01\xfc\x9c\xcd\xff\x12\xe9\x2d\ \x12\x61\xd7\xce\xed\xf4\x6c\xe9\xb6\x18\xda\xf4\xda\xdb\xd2\x1c\ \xbc\x6e\x3f\xc7\x4e\x9c\xa4\x58\x2c\x59\x90\x2b\x64\x7e\xe0\x6e\ \xe0\xf5\x96\x42\x81\x5e\x01\x18\x1c\x1a\xbe\x91\xfa\x5e\xff\x6e\ \xf8\x73\x91\x58\x34\xca\xbe\xbd\xbb\x7d\x83\x9f\x02\xa7\x5c\x2e\ \x73\xfc\xe4\x69\x6f\x0e\xbc\xb2\x2a\xf0\xb2\x5c\x36\xf3\x05\x4b\ \xa1\x40\x06\x80\xc1\xa1\xe1\x08\xf5\xeb\xfe\x6e\xf7\x7b\x91\x64\ \x22\xc1\xfe\x7d\x7b\x68\x6d\x35\x13\x29\xa0\xdd\xad\x5a\xe5\xf4\ \x99\x73\x4c\xcf\xcc\x5a\x8c\xcb\x7b\x18\x78\x5e\x2e\x9b\x71\xb9\ \x44\xd7\xa4\xd9\x2f\x01\xfc\x67\x9b\xff\x37\x6b\x6d\x69\xe1\xc0\ \xfe\xbd\x24\x12\x6e\xee\xa3\xe0\x8a\x46\xa3\xec\xd9\xbd\x93\x58\ \x2c\xe6\x13\x02\x97\x77\x33\xf0\x76\xe0\x3d\x96\x42\x81\x5a\x01\ \x18\x1c\x1a\xee\xa3\xfe\x36\xac\x5e\x87\xa9\x2e\x95\x6a\xe5\xc0\ \xbe\x3d\xee\xec\xa7\x50\x39\x37\x32\xc6\x85\xf1\x09\x0b\x71\x69\ \x8b\xc0\xb7\xe4\xb2\x99\xa3\x96\x42\x41\x5a\x01\x78\x8f\xcd\xff\ \x1b\xda\xd2\x29\xf6\xef\xdb\x43\x2c\x16\xb3\x18\x0a\x95\x1d\xdb\ \x07\x88\x46\xa3\x8c\x9d\xbf\x60\x31\x2e\x71\x5e\x00\xfc\x0e\xf0\ \xbd\x96\x42\x81\x58\x01\x18\x1c\x1a\xfe\x56\xe0\xab\x80\xdd\x0e\ \x68\x6f\x6f\x63\xff\xde\xdd\x3e\xe3\xaf\x50\x3b\x7f\x61\x82\x91\ \xd1\x31\x0b\x71\x69\xb7\xe4\xb2\x99\x41\xcb\xa0\x20\x04\x80\x7f\ \x02\x5e\xe9\xf0\xd4\x5f\xe8\xb3\x77\xcf\x2e\x9b\xbf\x04\x8c\x4f\ \x4c\x71\xf6\xdc\x88\x85\x78\xba\xfb\x81\xe7\xe7\xb2\x99\xaa\xa5\ \xd0\xd5\x6a\xba\x4b\x00\x83\x43\xc3\xdf\x69\xf3\xff\xc6\x99\xbf\ \xcd\x5f\xfa\x86\xad\xbd\x5b\xa8\xd5\xaa\x9c\x1b\x71\x25\xe0\x29\ \x9e\x0b\xdc\x09\xfc\xb1\xa5\xd0\xa6\x5c\x01\x18\x1c\x1a\x8e\x35\ \x92\xec\xcd\x61\x1f\x98\xb6\x74\x8a\x03\xfb\xf7\xda\xfc\xa5\x4b\ \x18\x3b\x7f\x81\xd1\x31\xef\x09\x78\x8a\x11\xe0\x60\x2e\x9b\xc9\ \x5b\x0a\x6d\xc6\x15\x80\x1f\xb7\xf9\xd7\xef\xf6\xdf\xbf\x6f\x8f\ \xcd\x5f\xba\x8c\x81\xfe\x3e\xaa\xd5\x2a\xe7\x2f\xf8\x74\xc0\x45\ \xb6\x03\xef\x00\x7e\xc5\x52\x68\x53\xad\x00\x0c\x0e\x0d\x77\x00\ \x47\xa8\x6f\x73\x19\x5a\xad\x2d\x2d\x5c\x77\x60\xaf\x8f\xfa\x49\ \x57\xe1\xcc\xb9\x51\x26\x26\x26\x2d\xc4\x37\x2c\x00\x37\xe4\xb2\ \x99\xb3\x96\x42\x9b\x69\x05\xe0\xe7\xc2\xde\xfc\x93\x89\x04\x07\ \xf6\xdb\xfc\xa5\xab\xb5\x73\xfb\x00\xd5\x4a\x85\xa9\xe9\x19\x8b\ \x51\x97\x06\xde\x4d\xfd\x7e\x00\xa9\xf9\x57\x00\x06\x87\x86\xb7\ \x03\x47\xa9\x3f\xd3\x1a\x4a\xb1\x68\x94\xeb\xaf\xdb\xef\xf6\xbe\ \xd2\x32\xd5\x6a\x35\x8e\x1d\x3f\xc9\x7c\x7e\xc1\x62\xd4\x55\xa9\ \x6f\x11\xfc\x80\xa5\xd0\x66\x58\x01\x78\x67\x98\x9b\x7f\x24\x12\ \x61\xdf\xde\xdd\x36\x7f\x69\x05\xbf\x3f\x47\x8e\x9e\xa0\x50\x28\ \x58\x10\x88\x02\xbf\x0c\xbc\xda\x52\xa8\xa9\x57\x00\x06\x87\x86\ \xb7\x01\xc7\xc2\x1c\x00\x76\xef\xda\xe1\x2b\x7d\xa5\x15\x2a\x16\ \x8b\x1c\x39\x7a\x9c\x72\xb9\x62\x31\xea\xab\x00\xcf\xcd\x65\x33\ \x0f\x59\x0a\x35\xf3\x0a\xc0\xdb\xc3\xdc\xfc\x07\xfa\xb7\xda\xfc\ \xa5\x55\x90\x4c\x26\xd9\xbf\x77\x0f\x47\x8f\x9d\xa0\x5a\xab\xb9\ \x0a\x00\xbf\x04\xfc\x90\x33\x43\x4d\xb9\x02\x30\x38\x34\xdc\x0f\ \x1c\xa7\x7e\xe3\x4a\xe8\x74\x77\x75\xb2\x67\xf7\x2e\x22\x11\x27\ \xa2\xb4\x5a\x66\x66\x66\x39\x71\xea\x8c\x85\xa8\xaf\x02\x7c\x4b\ \x2e\x9b\x39\x64\x29\xd4\x8c\x2b\x00\x6f\x0f\x6b\xf3\x6f\x6d\x6d\ \x61\xf7\xae\x1d\x36\x7f\x69\x95\x75\x75\x75\xd2\xdf\xb7\x95\xf3\ \x17\xc6\x5d\x05\xa8\xaf\x02\xfc\x88\xb3\x42\x4d\xb5\x02\xd0\x78\ \xdd\xef\x71\xa0\x2d\x6c\x45\x8f\xc5\xa2\x1c\xbc\xee\x00\x2d\x2d\ \x49\x67\xa0\xb4\x06\x6a\xb5\x1a\xc7\x4f\x9c\x62\x6e\x3e\xf4\x9b\ \xe2\x55\x80\xe7\xe4\xb2\x99\xc3\xce\x0a\x35\xd3\x0a\xc0\xdb\xc2\ \xd8\xfc\x01\xf6\xec\xda\x69\xf3\x97\xd6\xf2\xcc\x26\x12\x61\xcf\ \xee\x5d\x3c\xf6\xf8\x31\x4a\xa5\x52\x98\x4b\x11\x6b\xac\x02\xdc\ \xee\xac\x50\x53\xac\x00\x0c\x0e\x0d\xf7\x02\x27\x80\xf6\xb0\x15\ \x7c\xa0\xbf\x8f\x6d\x03\x7d\xce\x3c\x69\x1d\x2c\x2c\x2e\xf2\xf8\ \xd1\x13\xd4\xc2\x7d\x53\x60\x05\xb8\x29\x97\xcd\x3c\xe6\x8c\x50\ \x33\xac\x00\xfc\x54\x18\x9b\x7f\x67\x47\x3b\x03\xfd\x5b\x9d\x75\ \xd2\x3a\x49\xa7\x52\xec\xda\xb9\x8d\xd3\x67\x42\xfd\x0a\xe1\x18\ \xf0\x56\xe0\x8d\xce\x08\x6d\xe8\x0a\xc0\xe0\xd0\x70\xa2\x71\xf6\ \xbf\x23\x54\x49\x2b\x1e\xe7\xc6\x83\x07\xdc\xe6\x57\xda\x00\x27\ \x4f\x9d\x61\x7a\x66\x36\xcc\x25\xc8\x03\xbb\x73\xd9\xcc\x94\xb3\ \x41\x1b\xb9\x02\xf0\x9a\xb0\x35\x7f\x80\x3d\xbb\x76\xd8\xfc\xa5\ \x0d\xb2\x6b\xe7\x76\xf2\x0b\x8b\x61\xbe\x1f\xa0\x0d\xf8\x09\xe0\ \x37\x9c\x0d\xda\xc8\x15\x80\x2f\x01\x2f\x0a\x53\x91\xb7\xf6\xf6\ \xb0\x73\xc7\x36\x67\x9b\xb4\x81\xe6\xf3\x0b\x1c\x3d\x76\x22\xcc\ \x25\x38\x05\x1c\xc8\x65\x33\x6e\x95\xa8\xf5\x5f\x01\x18\x1c\x1a\ \xce\x84\xad\xf9\xb7\xb6\xb6\xb0\x7d\x5b\xbf\x33\x4d\xda\x60\xed\ \x6d\x69\xfa\xfb\xb7\x72\xfe\x7c\x68\xf7\x07\xd8\x03\xbc\x0a\xf8\ \xa4\xb3\x41\xeb\x1e\x00\x80\xb7\x84\xa9\xb8\xf5\x47\x91\x76\x12\ \x8d\x46\x9d\x69\x52\x13\xd8\xd6\xdf\xc7\xfc\x5c\x9e\x85\xc5\xc5\ \xb0\x96\xe0\x2d\x06\x00\x3d\xd9\xa3\xd6\xf1\xec\x7f\x17\xf5\x97\ \xfe\x24\xc2\x52\xdc\xed\xdb\xfa\xe9\xef\xf3\xae\x7f\xa9\x99\x14\ \x0a\x05\x1e\x3d\x72\x2c\xcc\x8f\x06\xbe\x30\x97\xcd\x7c\xd9\x99\ \xa0\xf5\x5c\x01\xb8\x2b\x4c\xcd\x3f\x95\x6a\xa5\x6f\x6b\xaf\x33\ \x4c\x6a\x32\x2d\x2d\x2d\x0c\xf4\xf7\x31\x3a\x76\x3e\xcc\xab\x00\ \xaf\x75\x26\x68\x5d\x56\x00\x06\x87\x86\x5b\x80\xb3\x40\x68\x3a\ \xe2\x0d\xd7\x1f\x20\x95\x6a\x75\x86\x49\x4d\xa8\x56\xab\xf1\xd8\ \xe3\xc7\x59\x5a\x5a\x0a\xe3\xe1\x17\x81\x5d\xb9\x6c\xe6\x82\x33\ \xc1\x15\x80\xf5\xf0\x7d\x61\x6a\xfe\xfd\x7d\xbd\x36\x7f\xa9\x99\ \xcf\x7c\x22\x11\x76\xef\xda\xce\x91\xc7\x8f\x87\xf1\xf0\x93\xc0\ \x1d\xc0\xfb\x9c\x09\x06\x80\xf5\x70\x67\x68\x7e\xb3\x92\x49\x06\ \xfa\xdd\xea\x57\x6a\x76\xe9\x54\x8a\xbe\xad\xbd\x5c\x18\x9f\x08\ \xe3\xe1\xdf\x69\x00\xd0\x9a\x5f\x02\x18\x1c\x1a\xde\x01\x9c\x64\ \xe3\x5f\x3d\xbc\x2e\xae\xdb\xbf\x97\xf6\xf6\x36\x67\x96\xb4\x09\ \x54\xab\x55\x1e\x3d\x72\x94\x62\x31\x94\x1b\x04\xbd\x20\x97\xcd\ \x7c\xd5\x59\xe0\x0a\xc0\x5a\x7a\x6d\x58\x9a\x7f\x77\x57\xa7\xcd\ \x5f\xda\x44\xa2\xd1\x28\x3b\xb6\x6f\xe3\xc4\xc9\xd3\x61\x3c\xfc\ \xff\x0c\x18\x00\x5c\x01\x58\xd3\x15\x80\x47\x80\x67\x05\xbe\x90\ \x91\x08\xcf\xba\xe1\x7a\x92\xc9\x84\xb3\x4a\xda\x64\x8e\x1e\x3b\ \xc9\x7c\x3e\x1f\xb6\xc3\x9e\x00\x76\xe6\xb2\x99\x82\x33\xc0\x15\ \x80\xb5\x68\xfe\x99\x30\x34\x7f\x80\xfe\xbe\xad\x36\x7f\x69\x93\ \xda\xb1\x63\x80\xc7\x8e\x1c\x0b\xdb\x61\xf7\x52\xbf\x41\xdb\x8d\ \x81\x0c\x00\x6b\xe2\xce\x30\x14\x31\x91\x88\xd3\xdf\xe7\x33\xff\ \xd2\x66\x95\x6a\x6d\xa5\xb7\x67\x0b\x13\x93\xa1\x7b\x59\xde\x9d\ \x06\x80\xf0\x5a\xb3\x4b\x00\x83\x43\xc3\x29\x60\x04\xe8\x0a\x7a\ \x11\xf7\xec\xde\xc9\x96\xee\x2e\x67\x93\xb4\x89\x95\xcb\x65\x0e\ \x3f\xfa\x38\x95\x6a\x35\x54\x87\x0d\xec\xcd\x65\x33\xe7\x9c\x01\ \xae\x00\xac\xa6\xef\x09\x43\xf3\x4f\xa7\x53\x74\x77\xd9\xfc\xa5\ \x4d\xff\x65\x18\x8f\x33\xd0\xdf\xc7\xb9\xd1\xb1\xb0\xf5\x80\x1f\ \xc2\x47\x02\x0d\x00\xab\xec\x55\x61\x28\xe0\xf6\x81\x7e\x22\x11\ \x27\x92\x14\x04\xbd\xbd\x5b\xb8\x30\x3e\x41\xa9\x5c\x0e\xd3\x61\ \xbf\xca\x00\x10\x4e\x6b\xd2\xba\x06\x87\x86\x5b\x81\xf3\x40\x47\ \x90\x8b\xd7\xde\x96\xe6\xba\x03\xfb\x9c\x45\x52\x80\x8c\x4f\x4c\ \x72\xf6\xdc\x68\x98\x0e\xb9\x4a\xfd\x69\x80\x51\x47\xdf\x15\x80\ \xd5\x70\x6b\xd0\x9b\x3f\xc0\xb6\x81\x7e\x67\x90\x14\x30\x3d\x3d\ \x5b\x38\x7f\x61\x82\x52\x29\x34\x9b\x03\x45\x81\x1f\x00\x3e\xe8\ \xe8\x1b\x00\x56\xc3\x0f\x06\xbd\x70\x1d\xed\x6d\xb4\xb5\xa5\x9d\ \x41\x52\xd0\xba\x61\x24\xc2\x40\xff\x56\xce\x9c\x1d\x09\xd3\x61\ \xbf\xca\x00\x10\x3e\xab\x7e\x09\x60\x70\x68\x38\x0e\x8c\x01\x3d\ \x41\x2e\xdc\xc1\xeb\xf6\x93\x4e\xa7\x9c\x41\x52\x00\xd5\x6a\x35\ \x0e\x3f\xf6\x78\x98\xb6\x08\x2e\x03\xdb\x72\xd9\xcc\x84\xa3\xef\ \x0a\xc0\x4a\xbc\x22\xe8\xcd\xbf\xb3\xa3\xdd\xe6\x2f\x05\xf9\xcc\ \x28\x12\x61\xa0\xbf\x8f\xd3\x67\x42\xf3\x74\x5c\x9c\xfa\xa6\x40\ \x1f\x76\xf4\x0d\x00\x2b\x11\xf8\xe5\xff\x3e\x37\xfd\x91\x02\x6f\ \x4b\x77\x17\xa3\xa3\xe7\xc3\xf4\x44\xc0\x0f\x1a\x00\x42\x16\x74\ \x57\xf3\x0f\x1b\x1c\x1a\x8e\x02\xe7\x80\x81\xa0\x16\x2c\x9d\x6a\ \xe5\xe0\xf5\x07\x9c\x39\x52\x08\x9c\xbf\x30\xce\xc8\xe8\xf9\xb0\ \x1c\x6e\x01\xe8\xcf\x65\x33\xb3\x8e\xbc\x2b\x00\xd7\xe2\x05\x41\ \x6e\xfe\x00\x7d\x5b\x3d\xfb\x97\xc2\xa2\xb7\x67\x0b\x63\xe7\xc7\ \xa9\x86\x63\x77\xc0\x16\x20\x07\xfc\x95\x23\x6f\x00\xb8\x16\xb7\ \x06\xb9\x58\xc9\x64\x82\xae\xae\x4e\x67\x8d\x14\x12\xb1\x58\x8c\ \x9e\x9e\x6e\xc6\xc7\x27\xc3\x72\xc8\xb7\x1a\x00\x0c\x00\x06\x80\ \x4b\xd8\xda\xdb\x4b\xc4\x6d\xff\xa4\x50\xe9\xeb\xed\x0d\x5b\x00\ \x50\x48\xac\x5a\x37\x1b\x1c\x1a\x6e\xa3\xfe\x7e\xe9\x96\x60\x9e\ \x09\x44\xb9\xe9\x59\x37\x10\x8d\x46\x9d\x35\x52\xc8\x9c\x3c\x7d\ \x86\xe9\xe9\xd0\x5c\x1a\xdf\x9f\xcb\x66\x4e\x38\xea\xae\x00\x2c\ \xc7\xcb\x82\xda\xfc\x01\xb6\x74\x77\xdb\xfc\xa5\x90\xea\xed\xd9\ \x12\xa6\x00\x70\x2b\xf0\x87\x8e\xba\x01\x60\xb9\x93\x26\xb0\x7a\ \x7a\xba\x9d\x2d\x52\x48\xb5\xb7\xb5\xd1\xd2\x92\xa4\x50\x28\x86\ \xe1\x70\x6f\x31\x00\x18\x00\xae\x65\xd2\x04\x52\x3a\x95\x22\xd5\ \xda\xea\x6c\x91\x42\xac\x67\x4b\x77\x58\x1e\x09\xcc\x0d\x0e\x0d\ \x47\x73\xd9\x4c\xd5\x51\x37\x00\x3c\xa3\xc1\xa1\xe1\xed\xc0\x73\ \x3c\xfb\x97\x14\xe4\x00\x30\x3a\x76\x81\x5a\xad\x16\xf4\x43\xed\ \x05\x9e\x0f\x7c\xd9\x51\x37\x00\x5c\xed\xd9\x7f\x20\x6f\x8f\x8f\ \x46\xa3\x74\xfb\xe8\x9f\xe4\x97\x65\x3c\x4e\x67\x67\x07\x33\x33\ \xa1\xb8\x17\xe0\x16\x03\x80\x01\xe0\x6a\xfd\xc7\xa0\x16\xa8\xbb\ \xab\x93\x58\x2c\xe6\x4c\x91\x44\x6f\x4f\x77\x58\x02\x40\x16\xb8\ \xdb\x11\x37\x00\x5c\x8d\x97\x04\xb5\x40\x5b\xba\xbb\x9c\x25\x92\ \x80\xfa\xcd\x80\xf1\x78\x9c\x72\xf0\xdf\x0f\xf0\x62\x47\x3b\xf8\ \x56\xbc\x6c\x3f\x38\x34\xdc\x01\x4c\x01\x81\x3b\x4d\x8e\xc7\xe3\ \xdc\xf4\xac\x83\x6e\xfe\x23\xe9\x49\x67\xcf\x8d\x32\x3e\x11\x8a\ \x8d\x81\x6e\xcc\x65\x33\x8f\x39\xe2\xae\x00\x5c\xc9\x0b\x83\xd8\ \xfc\xa1\xbe\xfc\x6f\xf3\x97\xf4\xd4\xef\x85\x90\x04\x80\x97\x00\ \x06\x00\x03\xc0\x15\x65\x82\xfc\x8b\x2e\x49\x17\x4b\xa7\x53\x24\ \x12\x71\x4a\xa5\xc0\x5f\x06\x78\x09\xf0\x31\x47\xdc\x00\xf0\x4c\ \x93\x24\x70\x12\x89\x38\xe9\x74\xca\x19\x22\xe9\x9b\x44\x22\x11\ \xba\x3a\x43\xb1\x0a\x90\x71\xb4\x0d\x00\xcf\x24\x90\x37\x8b\xb8\ \xfc\x2f\xe9\xb2\xdf\x0f\xdd\xa1\x08\x00\xcf\x19\x1c\x1a\x6e\xcb\ \x65\x33\x79\x47\xdc\x00\xf0\x34\x83\x43\xc3\xd7\x03\x7d\x41\x2c\ \x8c\xaf\xfd\x95\x74\x39\xe9\x54\x8a\x44\x3c\x4e\x29\xd8\x4f\x03\ \xc4\xa9\xdf\xe3\xf5\x79\x47\xdc\x00\x70\x29\x81\x5c\xfe\x8f\xc5\ \x62\xa4\x53\x2e\xff\x4b\xba\xb4\x48\x24\x42\x47\x47\x3b\x93\x53\ \xd3\x41\x3f\xd4\x97\x18\x00\x0c\x00\x97\xf3\xef\x82\x58\x94\x8e\ \xf6\x76\x97\xff\x25\x5d\x51\x67\x38\x02\xc0\x73\x1d\x69\x03\xc0\ \xe5\xdc\x14\xd4\x5f\x6c\x49\xba\x92\xf6\xf6\x36\x22\x11\x08\xf8\ \xab\x01\x6e\x76\xa4\x0d\x00\xa1\x9a\x1c\x1d\x1d\x6d\xce\x0c\x49\ \x57\x14\x8b\xc5\x48\xa7\xd3\xe4\xf3\x0b\x41\x3e\xcc\x1b\x07\x87\ \x86\xe3\xb9\x6c\xa6\xec\x88\x1b\x00\x9e\x34\x38\x34\xdc\x09\xec\ \x0e\x5a\x41\x52\xa9\x14\xf1\x78\xdc\x99\x21\xe9\x19\x75\x76\xb4\ \x07\x3d\x00\x24\x81\x83\xc0\x23\x8e\xb6\x01\xe0\x62\x37\x11\xc0\ \x37\x00\x76\x7a\xf6\x2f\xe9\x2a\x75\x74\xb4\x33\x32\x7a\x3e\xe8\ \x87\x79\xb3\x01\xc0\x00\x70\xa9\x49\x11\x38\xed\x6d\x06\x00\x49\ \x57\x27\xd5\xda\x4a\x3c\x16\xa3\x5c\xa9\x04\x3d\x00\x7c\xca\xd1\ \x36\x00\x04\x3a\x00\x44\x22\xb8\xfb\x9f\xa4\x65\x49\xb7\xa5\x99\ \x9d\x9d\x0b\x7a\x00\x90\x01\x20\xd8\x93\x22\xd5\x9a\x22\x1a\x8d\ \x3a\x2b\x24\x5d\xb5\xb6\x74\xca\x00\x20\x03\xc0\xe6\x4f\xf2\x9e\ \xfd\x4b\x5a\x6e\x00\x48\x07\xfd\x10\x0f\x0e\x0e\x0d\x27\x72\xd9\ \x4c\xc9\xd1\x36\x00\x30\x38\x34\x9c\x02\x76\xf8\x8b\x2c\x29\xec\ \x52\xa9\x14\x91\x48\x84\x5a\x70\x37\x04\x48\x00\xfb\x80\x23\x8e\ \xb6\x01\x00\x60\x0f\x01\x7c\x02\xc0\x00\x20\x69\xb9\xa2\xd1\x08\ \xe9\x54\x8a\xfc\x42\xa0\x1f\x07\xdc\x6b\x00\x30\x00\x5c\x3c\x19\ \x02\x25\x99\x4c\x90\x48\xf8\xfc\xbf\xa4\xe5\x4b\xb7\x85\x22\x00\ \xc8\x00\xf0\xe4\x0a\x40\xa0\xa4\x5a\x5b\x9d\x0d\x92\xfc\xfe\x30\ \x00\x18\x00\xc2\x16\x00\x5a\x0d\x00\x92\x0c\x00\xa1\xf9\xce\x97\ \x97\x00\xbe\xf1\x0b\x9c\x6a\x71\x36\x48\xba\x26\x2d\x2d\xc9\xa0\ \xdf\x08\xe8\x0a\x80\x01\x20\xb8\x93\xc1\x15\x00\x49\xd7\x2a\x12\ \x89\xd0\xda\xd2\xc2\xe2\xd2\x92\x01\x40\x81\x0f\x00\x81\x5a\x0e\ \x8a\x46\xa3\x24\x13\x09\x67\x83\xa4\x15\x9c\x44\x04\x3a\x00\xec\ \x1a\x1c\x1a\x8e\xe5\xb2\x99\x8a\x23\x1d\xe2\x00\x30\x38\x34\x1c\ \x05\x76\x05\xed\x17\x37\x12\x89\x38\x1b\x24\xad\xe0\x7b\xa4\x15\ \x98\x09\xea\xe1\x25\xa8\xef\xfd\x72\xda\x91\x0e\xf7\x0a\x40\x5f\ \x63\x32\x04\xe7\x17\xb7\xc5\xeb\xff\x92\x56\x26\xd5\x1a\xf8\xef\ \x11\x03\x80\x01\x80\xde\xa0\x15\x21\x99\x4c\x3a\x13\x24\xf9\x3d\ \x72\x65\x3d\x8e\xb2\x01\xa0\x27\x78\xbf\xb8\x5e\xff\x97\xe4\xf7\ \x88\x01\xc0\x00\x10\xc2\x15\x00\x03\x80\xa4\x95\x89\x44\x22\x24\ \x12\x71\x4a\xa5\x72\x50\x0f\xb1\xd7\x51\x36\x00\x04\x2f\x00\x24\ \xbc\x04\x20\x69\x35\x4e\x26\x92\x41\x0e\x00\xae\x00\x18\x00\x82\ \x15\x00\x22\x91\x08\xf1\x78\xcc\x99\x20\x69\x15\x4e\x26\x12\xe4\ \x83\x7b\x78\x06\x00\x03\x40\xb0\x26\x41\x32\x99\xf0\x11\x40\x49\ \xab\xf6\x7d\x12\x60\x06\x00\x03\x40\xb0\x56\x00\xdc\x00\x48\xd2\ \xea\x7d\x9f\x04\xfa\x72\xa2\xf7\x00\x18\x00\x82\x95\x02\x63\x71\ \x5f\x01\x2c\x69\x95\xbe\x50\x83\x7d\x39\xd1\x15\x00\x03\x00\xdd\ \x81\x2a\x40\xcc\xeb\xff\x92\x56\xeb\x84\x22\xd0\xdf\x27\x5d\x8e\ \xb0\x01\x20\x50\x6b\x5c\x06\x00\x49\x7e\x9f\x84\xef\xbb\x5f\xd7\ \x16\x00\x02\xb5\xdf\x65\x2c\xe4\x4f\x00\xfc\xf7\xbf\xff\x7b\x7f\ \x0b\xb4\xaa\x5e\xfa\xfc\xe7\xb3\x7b\xfb\xf6\x70\xae\x00\xc4\x02\ \x7d\x49\xd1\x3d\xd3\x0d\x00\xae\x00\x48\xd2\xa5\x03\x40\xd4\x15\ \x00\x19\x00\x5c\x01\x90\x14\x36\x91\x48\x84\x58\x2c\x46\xa5\x12\ \xc8\xb7\xe6\x1a\x00\x0c\x00\x01\x0b\x00\x31\x9f\x02\x90\xb4\x8a\ \x5f\xaa\x06\x00\x19\x00\x36\x87\xa8\x9b\x00\x49\x5a\xcd\x55\x80\ \x68\x60\xbf\x53\x0c\x00\x06\x80\x60\x4d\x02\x77\x01\x94\xe4\x77\ \xca\xd5\x9d\x2f\x0d\x0e\x0d\xc7\x72\xd9\x4c\xc5\x51\x36\x00\x98\ \xd6\x25\x29\x5c\x27\x15\x2d\xc0\x82\xa3\x1c\xde\x00\x10\xa8\x8b\ \xe6\x5e\x02\x90\x64\x00\x08\xe7\xf7\xbf\x01\x60\xf9\xca\xfe\xb2\ \x4a\x52\x28\x4f\x2a\x4a\x8e\x70\xb8\x03\x40\xd1\x00\x20\x49\xa1\ \xfc\x4e\x29\x3a\xc2\x06\x00\x7f\x59\x25\x29\x5c\xdf\x29\x15\x6f\ \x00\x34\x00\x14\x2c\x9b\x24\x5d\x5a\xad\x56\xf3\xec\x5f\xae\x00\ \x6c\x06\xd5\x6a\x8d\x58\xcc\x55\x00\x49\x06\x00\x03\x80\x01\x20\ \x54\x93\xa0\x56\xab\x02\x51\x67\x82\x24\x03\x80\x01\xc0\x00\x10\ \xae\x00\x50\x73\x16\x48\xf2\x3b\xc5\x00\x60\x00\x30\x00\x48\xd2\ \xb5\xab\x1a\x00\x14\xe0\x00\x50\xf0\x97\x55\x92\x42\x77\x52\xe1\ \x0d\xe0\x06\x00\xa6\x03\xf5\xcb\x5a\x35\x00\x48\x32\x00\x5c\x85\ \x19\x47\xd7\x00\x30\x11\xa4\x02\x54\xaa\x3e\xd6\x2a\x69\x15\xbf\ \x53\x2a\xd5\xa0\x1e\xda\x84\xa3\x6b\x00\x98\x0c\xd4\x2f\x6b\xd9\ \x00\x20\x69\x35\x03\x40\x60\xbf\x53\x26\x1d\x5d\x03\x40\xa0\x52\ \x60\xb9\x62\x00\x90\xb4\x4a\xcd\xbf\x5a\x0d\xf2\x25\x00\x03\x80\ \x01\x20\x60\x2b\x00\x21\x0f\x00\x2f\x7d\xfe\xf3\xfd\x2d\xd0\xaa\ \xea\xdd\xb2\x25\xbc\x01\xa0\x5c\x0e\xf2\xe1\x19\x00\x0c\x00\x01\ \x5b\x01\x08\xf9\x25\x80\xdd\xdb\xb7\xfb\x5b\x20\xad\xd6\xf7\x49\ \xb0\x4f\x28\x0c\x00\x06\x80\x80\xdd\x04\xe8\x25\x00\x49\xab\xb6\ \x02\x10\xe8\xef\x13\x6f\x02\x34\x00\x04\x6d\x05\xa0\xec\x2c\x90\ \xe4\x0a\x80\x2b\x00\x06\x80\xb0\x4d\x82\x92\x01\x40\xd2\x6a\x7d\ \x9f\x94\x4a\xae\x00\x28\xd0\x01\x60\x9c\xfa\x96\x90\xc9\x20\x14\ \xa0\x58\x2c\x39\x0b\x24\xf9\x7d\xf2\xcc\xce\x39\xc2\x21\x0f\x00\ \xb9\x6c\xa6\x3a\x38\x34\x7c\x1a\xb8\x2e\x08\x05\xa8\x54\x2a\x54\ \x2a\x15\x62\xb1\x98\xb3\x41\x92\x01\xe0\x32\x87\x06\x8c\x38\xc2\ \xae\x00\x00\x9c\x0c\x4a\x00\x00\x28\x96\x4a\xa4\x0c\x00\x92\x56\ \xfc\x5d\x12\xd8\xf7\xe5\x9c\xce\x65\x33\x55\x47\xd8\x00\x00\x70\ \x2a\x68\xa9\x3d\xd5\xda\xea\x6c\x90\x74\xcd\x6a\xb5\x5a\x90\x57\ \x00\x4e\x3a\xc2\x06\x80\x80\x06\x00\xdf\x72\x29\x69\x65\xca\xe5\ \x72\x90\x77\x01\x34\x00\x18\x00\x82\x39\x19\x8a\x25\x6f\x04\x94\ \xb4\xd2\x13\x89\x40\x7f\x8f\x18\x00\x0c\x00\xc1\x9c\x0c\x85\x25\ \x5f\x73\x2d\x69\x65\x96\x0a\x81\xfe\x1e\x31\x00\x18\x00\x9e\x14\ \xa8\x4b\x00\x8b\x06\x00\x49\x2b\x0d\x00\x4b\x06\x00\x85\x27\x00\ \xd4\x80\x48\x10\x8a\x50\x2e\x97\x29\x97\xcb\xc4\xe3\x71\x67\x84\ \xa4\x6b\x3c\x91\x58\x32\x00\x28\xf8\x01\x20\x97\xcd\x14\x1a\x7b\ \x01\xec\x09\x52\x7a\x6f\x6f\x37\x00\x48\x72\x05\xe0\x29\x0a\x04\ \x6c\xd5\x57\x2b\x5b\x01\x00\x78\x28\x48\x01\x60\x71\x69\x89\xf6\ \xf6\x36\x67\x84\xa4\x65\x2b\x95\x4a\x41\x7e\xb1\xd8\xa3\xb9\x6c\ \xc6\x3d\xd3\x0d\x00\xdf\xe4\x10\xf0\x5d\xa6\x77\x49\x61\x17\xf0\ \xfb\x88\x1e\x76\x84\x0d\x00\x81\x9e\x14\x01\xbf\x7e\x27\x69\x4d\ \x4f\x20\x02\xfd\xfd\x71\xc8\x11\x36\x00\x04\x3a\x00\x2c\x2d\x2d\ \x51\xad\x56\x89\x46\xa3\xce\x0a\x49\xcb\x92\x5f\x58\x74\x05\x40\ \xa1\x0a\x00\x87\x80\x2a\x10\x88\x8e\x59\xab\xc1\xc2\xc2\xa2\xf7\ \x01\x48\x5a\xb6\x85\xfc\x82\x01\x40\xe1\x09\x00\xb9\x6c\x26\x3f\ \x38\x34\x7c\x12\xd8\x1f\xa4\x14\x6f\x00\x90\xb4\x1c\x4b\x85\x02\ \xe5\xe0\xde\x00\xb8\x04\x1c\x75\x94\x0d\x00\x97\x4b\x86\x01\x0a\ \x00\x0b\xce\x08\x49\xcb\x3c\xfb\x0f\xf4\xf2\xff\xe1\x5c\x36\x53\ \x71\x94\x0d\x00\x97\x0b\x00\xdf\x13\x98\x5f\xe4\x85\x05\x6a\xb5\ \x1a\x91\x48\xc4\x99\x21\xc9\x13\x07\x97\xff\x0d\x00\x57\xf0\xf5\ \x20\x15\xa3\x52\xa9\x52\x28\x14\x69\x6d\x6d\x71\x66\x48\x32\x00\ \x04\xec\x3b\x5e\xab\x1b\x00\x86\x83\x56\x90\xf9\x7c\xde\x00\x20\ \xe9\xaa\x94\xcb\x65\x0a\x85\x40\xbf\x4e\x7c\xd8\x51\x36\x00\x5c\ \x52\x2e\x9b\x39\x39\x38\x34\x3c\x0a\x6c\x0b\x4a\x41\xe6\xe6\xf2\ \x6c\xed\xed\x71\x66\x48\x7a\x46\xb3\x73\xf3\x41\x3e\xbc\x22\xf0\ \x15\x47\xd9\x00\xf0\x4c\x09\xf1\x07\x82\xb4\x02\x50\xad\xd6\x88\ \x46\xbd\x0f\x40\xd2\x33\x9d\x30\x04\x3a\x00\xdc\x9f\xcb\x66\xdc\ \x21\xcd\x00\x70\x45\x5f\x0a\x52\x00\xa8\x56\xab\xe4\x17\x16\xe8\ \xf0\x71\x40\x49\x57\x50\xab\xd5\x98\x9b\xcf\x07\xf9\x10\xbf\xe8\ \x28\x1b\x00\xae\x66\x05\x20\x60\xa9\x7e\xce\x00\x20\xe9\x8a\x16\ \x16\x17\x83\xfc\x02\x20\x03\x80\x01\xe0\xaa\x7c\x19\x28\xaf\xd2\ \x9f\xd5\x14\x66\xe7\xf2\xec\xd8\xee\xe4\x90\x74\xa5\x13\x85\xf9\ \xa0\x1f\xa2\x01\x20\xe0\x56\xe5\x42\xf7\xe0\xd0\xf0\x57\x80\xe7\ \x07\xa9\x30\xcf\xbe\xf1\x20\xc9\x64\xc2\x19\x22\xe9\x92\x1e\x7b\ \xfc\x38\x8b\x8b\x81\xdd\x04\xe8\x7c\x2e\x9b\x19\x70\x94\x5d\x01\ \xb8\xda\xa4\x18\xa8\x00\x30\x33\x3b\x4b\xdf\xd6\x5e\x67\x88\xa4\ \xa7\x29\x96\x4a\x41\x6e\xfe\x9e\xfd\x1b\x00\x96\x65\x08\x78\x63\ \x90\x0a\x33\x3d\x63\x00\x90\x74\x99\x13\x84\x99\xd9\xa0\x1f\xe2\ \x90\xa3\x6c\x00\xb8\x5a\x83\x04\xe8\xcd\x80\x50\x7f\x33\x60\xb1\ \x58\xf2\x32\x80\xa4\xa7\x9f\x20\x4c\x07\x3e\x00\xdc\xe7\x28\x1b\ \x00\xae\x4a\x2e\x9b\xb9\x30\x38\x34\x7c\x3f\xf0\xbc\x60\xad\x02\ \xcc\xd0\xdf\xb7\xd5\x59\x22\xe9\x49\xc5\x62\x89\x85\x60\x2f\xff\ \x9f\x07\x1e\x70\xa4\x0d\x00\xcb\xf1\xd9\xe0\x05\x80\x59\x03\x80\ \xa4\xa7\x9d\x18\x04\xdc\x67\x73\xd9\x4c\xcd\x91\x36\x00\x2c\xc7\ \x7d\xc0\xdb\x83\x54\x9c\xc5\xc5\x25\x0a\x85\x22\x2d\x2d\x49\x67\ \x8a\xa4\x27\x4f\x0c\x82\x1e\x00\x1c\x65\x03\xc0\x72\x0d\x01\x8b\ \x40\x2a\x68\x69\x7f\xa0\xbf\xcf\x99\x22\x89\x42\xa1\xc8\xe2\x62\ \xa0\x77\xc7\xad\xe1\xf5\xff\xd0\x58\xd5\x0d\xef\x07\x87\x86\xff\ \x19\xb8\x35\x48\x05\x4a\x26\x13\x3c\xeb\x86\xeb\x89\x44\x7c\x37\ \x80\x14\x76\xe7\x46\xc7\xb8\x70\x61\x22\xc8\x87\xf8\x48\x2e\x9b\ \xb9\xc9\x91\x76\x05\xe0\x5a\x7c\x36\x68\x01\xa0\x58\x2c\x31\x9f\ \xcf\xd3\xd1\xde\xee\x6c\x91\x42\xac\x56\xab\x31\x35\x35\x1d\xf4\ \xc3\x74\xf9\xdf\x00\x70\xcd\xee\x03\xde\x1b\xb4\x22\x4d\x4e\x4e\ \x1b\x00\xa4\x90\x9b\x99\x9d\xa3\x5c\xae\x04\xfd\x30\x5d\xfe\x37\ \x00\x5c\xb3\xaf\x03\x67\x81\x9d\xc1\xfb\xc5\x2f\x13\x8f\xc7\x9d\ \x31\x52\x48\x4d\x4e\x4e\x05\xfd\x10\x17\x81\x7f\x71\xa4\x0d\x00\ \xd7\x24\x97\xcd\xd4\x06\x87\x86\xff\x0a\x78\x53\x90\x8a\x54\xab\ \xd5\x98\x9a\x9e\x71\x67\x40\x29\xa4\x8a\xc5\x62\xd0\x5f\xfd\x0b\ \xf0\x4f\xb9\x6c\x26\xef\x68\x1b\x00\x56\xe2\x2f\x83\x16\x00\x00\ \x26\x26\xa7\xd8\xda\xdb\x8b\xf7\x02\x4a\xe1\x33\x11\xfc\x6b\xff\ \x4f\x7c\x77\xcb\x00\xb0\x22\x43\xc0\x05\x20\x50\xcf\xce\x15\x0a\ \x45\xe6\xe6\xe7\xe9\xec\xf0\x5e\x00\x29\x4c\xaa\xd5\x2a\x13\x13\ \x81\x5f\xfe\x2f\x02\x7f\xeb\x68\x1b\x00\x56\x24\x97\xcd\x54\x06\ \x87\x86\x3f\x03\xfc\x78\xd0\x8a\x75\x61\x7c\xc2\x00\x20\x85\xcc\ \xd4\xf4\x0c\x95\x4a\xe0\x6f\xfe\x1b\xcc\x65\x33\x33\x8e\xb6\x01\ \x60\x35\xfc\x65\x10\x03\xc0\xfc\x7c\x9e\xc5\xc5\x25\x52\xa9\x56\ \x67\x8e\x14\x02\xb5\x5a\x2d\xe8\xcf\xfd\x3f\xe1\xd3\x8e\xb6\x01\ \x60\xd5\xd2\x24\x30\x0d\x74\x07\xad\x60\xe7\xc7\x27\xd8\xbb\x7b\ \xa7\x33\x47\x0a\x81\xd9\xb9\x79\x0a\xc5\x62\xd0\x0f\xb3\x0c\x7c\ \xc6\xd1\x0e\x9f\x35\xbb\xa5\x6d\x70\x68\xf8\x63\xc0\x30\x02\x67\ \x31\x00\x00\x19\xa7\x49\x44\x41\x54\x6b\x03\x57\xb0\x08\x3c\xeb\ \xc6\x83\x24\x13\xbe\x26\x58\x0a\xba\xc7\x8f\x1e\x27\xbf\xb0\x18\ \xf4\xc3\xfc\x5c\x2e\x9b\xf9\x76\x47\xdb\x15\x80\xd5\xf4\xe9\x20\ \x06\x80\x5a\x0d\xc6\xc7\x27\xd9\xb1\x7d\xc0\xd9\x23\x05\x58\x7e\ \x61\x21\x0c\xcd\x1f\xbc\xfb\xdf\x00\xb0\x06\xfe\x07\x30\x09\xf4\ \x04\xad\x68\x13\x93\x53\xf4\xf7\xf5\xba\x31\x90\x14\x60\x63\x63\ \xe3\x61\x38\xcc\x12\xf0\x17\x8e\x76\x38\xad\xe9\x53\xed\x83\x43\ \xc3\xf7\x12\xc0\x3d\x01\x00\xfa\xb6\xf6\xba\x0a\x20\x05\xf5\xec\ \x3f\xbf\xc0\xe3\xc7\x4e\x84\xe1\x50\xff\x3a\x97\xcd\xfc\x80\x23\ \xee\x0a\xc0\x5a\xf8\x70\x50\x03\xc0\xf8\xc4\x24\x7d\x5b\x7b\x49\ \x24\x5c\x05\x90\x82\x66\x74\xec\x42\x58\x0e\xf5\xc3\x8e\xb6\x2b\ \x00\x6b\xb9\x0a\x70\x3f\xf0\xad\x41\x2c\xde\xd6\xde\x2d\xec\xdc\ \xb1\xdd\x59\x24\x05\xc8\xfc\x7c\x9e\xa3\xc7\x4f\x86\xe1\x50\xc7\ \x80\x5d\xb9\x6c\xa6\xec\xa8\xbb\x02\xb0\x96\x09\xf3\x7d\x41\x2c\ \xde\xc4\xe4\x34\x7d\x7d\x5b\x7d\x22\x40\xf2\xec\x7f\x33\xfa\xb8\ \xcd\xdf\x00\xb0\xd6\x3e\x41\xfd\x15\xc1\xc9\xa0\x15\xaf\x56\xab\ \x31\x36\x36\xce\xee\x5d\xae\x02\x48\x41\x30\x37\x37\x4f\x7e\x61\ \x21\x2c\x87\xeb\xf2\x7f\xc8\xad\xcb\xab\x6d\x06\x87\x86\x3f\x0d\ \x04\xf6\x46\x93\x1b\x0f\x5e\x47\x6b\x6b\x8b\xb3\x49\xda\xe4\x81\ \xfe\xb1\xc7\x8f\xb1\xb4\x54\x08\xc3\xe1\xfe\xef\x5c\x36\xf3\x22\ \x47\xdd\x15\x80\xf5\x4a\x9a\x81\x0d\x00\x67\x47\x46\xb9\x6e\xff\ \x5e\x67\x93\xb4\x89\x4d\x4e\x4d\x87\xa5\xf9\x7b\xf6\xaf\x75\x0d\ \x00\xff\x03\x18\x01\x02\xb9\x56\x3e\x3f\x9f\x67\x66\x76\x8e\xae\ \xce\x0e\x67\x94\xb4\x09\x55\x2a\x15\x46\x47\xcf\x87\xe5\x70\x17\ \x81\x3f\x73\xd4\xb5\x2e\x01\x20\x97\xcd\x94\x07\x87\x86\x3f\x04\ \xfc\x5a\x50\x0b\x79\x6e\x64\x8c\x8e\x8e\x76\xa2\x91\x88\xb3\x4a\ \xda\x64\xc6\xce\x8f\x53\x0e\xfe\x1b\xff\x9e\xf0\xf1\x5c\x36\x33\ \xed\xa8\x6b\x3d\x1f\x62\xff\x10\xf0\x0b\x40\x20\x2f\x96\x17\x8b\ \x45\xc6\xc7\x27\xe8\xef\xdb\xea\xac\x92\x36\x91\x42\xa1\xc8\xf8\ \xc4\x64\x58\x0e\xb7\x06\xdc\xe3\xa8\x0b\xd6\xe9\x26\xc0\x27\x0c\ \x0e\x0d\x7f\x18\xb8\x33\xa8\xc5\x8c\x46\xa3\x3c\xeb\x86\xeb\xdd\ \x1c\x48\xda\x44\x8e\x9f\x38\xc5\xec\xdc\x7c\x58\x0e\xf7\xb3\xb9\ \x6c\xe6\x56\x47\x5d\xeb\xbd\x02\x00\xf0\xfe\x20\x07\x80\x6a\xb5\ \xca\xd9\x73\x23\xec\xdb\xbb\xdb\x99\x25\x6d\x02\xd3\x33\xb3\x61\ \x6a\xfe\x4f\x7c\x07\x4b\xeb\xbf\x02\xd0\x58\x05\xf8\x3c\xf0\xf2\ \x20\x17\x75\xdf\xde\xdd\xde\x10\x28\x35\xb9\x4a\xa5\xc2\xe1\xc7\ \x8e\x52\x2e\x87\x66\x2f\x9c\x23\xc0\x8d\xb9\x6c\xa6\xe6\xe8\x6b\ \x23\x56\x00\x9e\x48\xa0\x81\x0e\x00\x67\xcf\x8e\xd0\xde\x96\x26\ \x16\x8b\x39\xc3\xa4\x26\x75\x6e\x64\x2c\x4c\xcd\x1f\xe0\x5e\x9b\ \xbf\x36\x3a\x00\xfc\x0d\x70\x1c\xd8\x1f\xd4\xa2\x96\xca\x65\x46\ \x46\xcf\xb3\x6b\xa7\x3b\x04\x4a\xcd\x68\x7e\x3e\xcf\xe4\x54\xa8\ \x6e\x84\x9f\x01\x3e\xe2\xc8\xeb\x62\x1b\xf2\xcc\xda\xe0\xd0\xf0\ \xcf\x00\xbf\x15\xf4\xe2\x5e\x77\x60\x1f\xed\x6d\x69\x67\x99\xd4\ \x44\xaa\xd5\x2a\x8f\x1e\x39\x46\xb1\x58\x0c\xd3\x61\xbf\x2f\x97\ \xcd\xfc\x8c\xa3\xaf\x8d\x5e\x01\x00\xf8\x23\xe0\x17\x81\x2d\x41\ \x2e\xee\xe9\x33\xe7\xb8\xf1\xe0\x01\xa2\xd1\xa8\x33\x4d\x6a\x12\ \xa3\x63\xe7\xc3\xd6\xfc\x8b\x78\xf3\x9f\x9a\x65\x05\xa0\xb1\x0a\ \xf0\x2b\xc0\xaf\x06\xbd\xc0\x3d\x5b\xba\xd9\xbd\x6b\x87\x33\x4d\ \x6a\x02\x73\x73\xf3\x1c\x3b\x71\x2a\x6c\x87\xfd\x47\xb9\x6c\xe6\ \x27\x1c\x7d\x35\xcb\x0a\x00\x8d\x44\xfa\x5f\x80\xae\x20\x17\x78\ \x72\x6a\x9a\xce\x8e\x76\xba\xba\x3a\x9d\x6d\xd2\x06\x2a\x97\xcb\ \x9c\x3a\x73\x2e\x6c\x87\x5d\x02\xde\xe3\xe8\xab\xa9\x56\x00\x1a\ \xab\x00\xff\x15\xf8\xa5\xa0\x17\x39\x16\x8b\x71\xe3\xc1\x03\x24\ \x12\x09\x67\x9c\xb4\x41\x8e\x9f\x38\xcd\xec\xdc\x5c\xd8\x0e\xfb\ \xc3\xb9\x6c\xe6\xc7\x1c\x7d\x35\xdb\x0a\x00\xc0\xfb\x80\xb7\x00\ \x81\x3e\x3d\xae\x54\x2a\x9c\x3a\x73\x8e\x03\xfb\xf6\x10\xf1\x5d\ \x01\xd2\xba\x9b\x98\x98\x0a\x63\xf3\x2f\x03\xef\x76\xf4\xd5\x94\ \x2b\x00\x8d\x55\x80\x77\x53\x7f\x47\x40\xe0\x6d\xdf\xd6\xef\xbb\ \x02\xa4\x75\xb6\xb4\x54\xe0\xb1\xc7\x8f\x51\xab\x85\xee\x11\xf8\ \x8f\xe5\xb2\x99\xd7\x39\x03\xd4\xac\x2b\x00\x00\xbf\x0d\xbc\x19\ \x08\xfc\xd6\x79\x23\xa3\xe7\x49\xa7\xd3\x3e\x1a\x28\xad\x93\x4a\ \xa5\xc2\x89\x53\xa7\xc3\xd8\xfc\x2b\x9e\xfd\xab\xe9\x57\x00\x1a\ \xab\x00\x77\x03\xef\x0c\x45\xe2\x8a\xc7\xb8\xe1\x7a\xef\x07\x90\ \xd6\x5a\xad\x06\x27\x4f\x9d\x66\x66\x76\x2e\x8c\x87\xff\xf1\x5c\ \x36\xf3\x5a\x67\x81\x9a\x7d\x05\x00\xe0\x37\x81\x37\x86\x61\x15\ \xa0\x5c\xae\x70\xe2\xd4\x19\xae\x3f\xb0\xcf\xfb\x01\xa4\x35\x74\ \x61\x7c\x3c\xac\xcd\xbf\x0c\xfc\xba\x33\x40\x9b\x62\x05\xa0\xb1\ \x0a\xf0\x8b\xc0\xff\x1d\x96\xc2\xf7\xf6\x6c\x71\xab\x60\x69\x8d\ \xcc\xcf\xe7\x39\x7a\xfc\x64\x58\x0f\xff\x43\xb9\x6c\xe6\x0d\xce\ \x02\x6d\x96\x15\x00\xa8\x6f\x0d\xfc\x7a\x60\x57\x18\x0a\x3f\x31\ \x39\x45\x3a\x9d\xa2\x67\x4b\xb7\xb3\x50\x5a\x45\xc5\x62\x89\x13\ \xa7\xce\x84\xf5\xf0\x67\x81\x5f\x71\x16\x68\x53\xad\x00\x34\x56\ \x01\x7e\x14\xf8\x68\x68\x8a\x1f\x89\x70\x60\xff\x5e\x6f\x0a\x94\ \x56\x49\xa5\x52\xe1\xf1\x63\x27\x58\x5a\x2a\x84\xb5\x04\x3f\x9f\ \xcb\x66\xee\x76\x26\x68\xb3\xad\x00\x00\xfc\x09\xf5\x7d\x01\x9e\ \x1f\x86\xe2\xd7\x6a\x35\x4e\x9c\x3c\xcd\xc1\xeb\xf6\xd3\xd2\x92\ \x74\x36\x4a\x2b\xfc\x7d\x3a\x79\xea\x6c\x98\x9b\xff\x49\xe0\x77\ \x9c\x09\xda\x94\x2b\x00\x8d\x55\x80\x6f\x03\x3e\x17\xa6\x41\x48\ \x26\x13\x1c\xbc\x6e\x3f\xf1\x78\xdc\x19\x29\x5d\xa3\xd3\x67\xce\ \x85\xed\x15\xbf\x4f\x75\x5b\x2e\x9b\xf9\x33\x67\x82\x36\x6d\x00\ \x68\x84\x80\xcf\x00\xdf\x17\xa6\x81\x48\xa7\x53\x5c\xb7\x7f\xaf\ \x6f\x0e\x94\xae\xc1\xd8\xf9\x71\x46\xc7\xce\x87\xb9\x04\x5f\x02\ \x32\xb9\x6c\xa6\xe6\x6c\xd0\xd5\x6a\xd6\x53\xce\x77\x00\xdf\x09\ \x84\xe6\x61\xf9\x85\x85\x45\x4e\x9f\x39\xc7\x9e\xdd\x3b\x7d\x3c\ \x50\x5a\x86\xe9\xe9\x99\xb0\x37\xff\x1a\xf0\xb3\x36\x7f\x05\x62\ \x05\xa0\xb1\x0a\x70\x0f\xf5\x1d\x02\x43\xc5\xc7\x03\xa5\xab\x37\ \x37\x37\xcf\xf1\x93\xa1\xdc\xe9\xef\x62\x9f\xcc\x65\x33\xff\xc9\ \xd9\xa0\xa0\xac\x00\x00\xfc\x32\xf0\x1a\x60\x5b\x98\x06\x64\x62\ \x72\x8a\x68\x34\xca\x8e\xed\x03\xce\x4e\xe9\x0a\xe6\xf3\x79\x9b\ \x3f\xcc\xd5\x6a\xb5\x9f\x75\x36\x28\x50\x2b\x00\x8d\x55\x80\x1f\ \x06\x42\x79\x53\xcb\x40\x7f\x1f\xdb\x06\xfa\x9c\xa1\xd2\x25\xe4\ \x17\x16\x39\x76\xfc\x24\xd5\x6a\x35\xd4\x75\xa8\xd5\x6a\x3f\x73\ \xcb\xcb\x5e\xfa\x3e\x67\x84\x02\x17\x00\x1a\x21\xe0\x1f\xa8\xdf\ \x0f\x10\x3a\xdb\xb7\x0d\xd0\xdf\xd7\xeb\x2c\x95\x2e\xb2\xb8\xb8\ \xc4\xd1\xe3\x27\xa8\x54\xaa\x61\x2f\xc5\x57\x0a\x85\xc2\x8b\xbf\ \xeb\x96\x6f\xab\x38\x2b\x74\x2d\x36\xc3\x73\x67\x6f\x04\x1e\x02\ \xda\xc2\x36\x38\x23\xa3\x63\x44\xa3\x51\xb6\xf6\x6e\x71\xa6\x4a\ \xc0\x52\xa1\xc0\xb1\xe3\x27\x6d\xfe\x50\x59\x2a\x14\x5e\xff\xdd\ \x36\x7f\x05\x79\x05\xa0\xb1\x0a\xf0\x76\xe0\x37\xc2\x3a\x48\x3b\ \xb6\x0f\xd0\xb7\xd5\x95\x00\x79\xe6\x7f\xec\xf8\x49\xca\x15\x7b\ \xde\xf4\xec\xcc\xdf\xfd\xe0\x77\x7f\xc7\xf7\x3a\x2b\x14\x86\x00\ \x10\x07\xbe\x0c\x3c\x37\xac\x03\xb5\x6d\xa0\x8f\x81\x7e\xef\x09\ \x50\x38\xe5\x17\x16\x39\x7e\xc2\x33\x7f\x80\x42\xa1\xc0\x97\x1f\ \xfc\x7a\x2d\x95\x4a\xbf\xf5\xed\x3f\xf5\x93\xf7\x38\x3b\x14\xe8\ \x00\xd0\x08\x01\x2f\x02\xfe\x17\x10\x0b\xeb\x60\xf5\xf7\xf5\xb2\ \x7d\x9b\x4f\x07\x28\x5c\xe6\xf3\x79\x8e\x9f\x38\x1d\xfa\x1b\xfe\ \x9e\xf0\xf0\x63\x87\x99\x98\x9a\x04\xa8\xb5\xa6\x52\x6f\xfd\xf9\ \xbb\xde\x68\x08\x50\xb0\x03\x40\x23\x04\xdc\x0b\xbc\x29\xcc\x03\ \xd6\xdb\xdb\xc3\xce\xed\x03\x6e\x16\xa4\x50\xf0\x39\xff\x6f\x36\ \x3e\x39\xc1\xa1\x23\x8f\x5e\xfc\x1f\xd5\x92\x2d\x2d\x6f\x7d\xd7\ \x9b\xdf\x64\x08\x50\xe0\x03\x40\x3b\xf0\x35\xe0\xfa\x30\x0f\xda\ \x96\xee\x2e\x76\xef\xda\x61\x08\x50\xa0\x4d\x4f\xcf\x70\xea\xcc\ \x39\x9b\x7f\x43\xa9\x54\xe2\x2b\x0f\x7e\x9d\x62\xa9\xf4\xd4\xff\ \xaa\x96\x48\x26\xdf\xfa\x8b\x3f\xfd\x66\x43\x80\x82\x1b\x00\x1a\ \x21\x20\x03\xfc\x2b\x9b\xe3\x09\x86\x35\xd3\xde\x96\x66\xdf\xde\ \xdd\xc4\x62\x31\x67\xb1\x02\xc7\xbd\xfd\x9f\xee\xa2\xa5\xff\x4b\ \x31\x04\x28\xf8\x01\xa0\x11\x02\xfe\x2b\xf0\x4b\x61\x1f\xbc\x96\ \x96\x16\x0e\xec\xdb\x4d\x32\xe9\xab\x84\x15\x0c\xb5\x5a\x8d\x33\ \x67\x47\xc2\xfe\x56\xbf\xa7\x19\xbd\x30\xc6\x63\xc7\x8e\x3e\x63\ \xf9\x0c\x01\x0a\x43\x00\x88\x53\xbf\x21\xf0\x85\x61\x1f\xc0\x78\ \x3c\xc6\xfe\xbd\x7b\x48\xa7\x53\xce\x66\x6d\x6a\x95\x4a\x85\x93\ \xa7\xce\x32\x37\x3f\x6f\x31\x2e\xb2\xb8\xb4\xc4\x57\x1f\xbc\x9f\ \x4a\xf5\xaa\x1e\x7f\x34\x04\x28\xd8\x01\xa0\x11\x02\x6e\x00\xbe\ \x4a\x08\x37\x08\x7a\xaa\x68\x24\xc2\x9e\xdd\x3b\xe9\xea\xea\x74\ \x46\x6b\x53\x2a\x16\x4b\x1c\x3f\x79\x8a\xa5\xa5\x82\xc5\xb8\xb8\ \x9b\xd7\x6a\xdc\xff\xc8\x43\xcc\xce\xcd\x2d\xeb\x7f\x66\x08\x50\ \xa0\x03\x40\x23\x04\xbc\x01\xf8\x3d\x87\xb1\xae\xbf\x6f\x2b\xdb\ \x06\xfa\xbc\x39\x50\x9b\xca\xfc\x7c\x9e\x13\xa7\xce\x50\x71\x83\ \x9f\xa7\x39\x75\xf6\x0c\x27\xce\x9c\xba\xa6\xec\x60\x08\x50\xa0\ \x03\x40\x23\x04\xfc\x3d\xf0\x5d\x0e\x65\x5d\x47\x7b\x1b\x7b\x76\ \xef\x22\x1e\xf7\xe6\x40\x35\xfb\xd9\x2d\x5c\x18\x1f\x67\x64\xd4\ \x9b\xfd\x2e\x65\x2e\x3f\xcf\xd7\x1f\x7e\x70\x25\x4f\x41\x18\x02\ \x14\xf8\x00\xb0\x0d\x78\x00\x70\x9b\xbc\x86\x44\x22\xc1\xbe\xbd\ \xbb\x48\xa7\xbc\x2f\x40\xcd\xa9\x52\xa9\x70\xfa\xcc\x39\x66\x66\ \xe7\x2c\xc6\xa5\xea\x53\xad\xf0\xb5\x07\x1f\x60\x61\x69\x71\xc5\ \x39\xcb\x10\xa0\xc0\x06\x80\x46\x08\xb8\x05\xf8\x47\x42\xbc\x4b\ \xe0\xd3\x06\x36\x12\x61\xd7\xce\x6d\xf4\x6c\xf1\x45\x42\x6a\x2e\ \x4b\x4b\x05\x4e\x9c\x3a\x4d\xa1\x50\xb4\x18\x97\x71\xf8\xe8\x11\ \xce\x8f\x5f\x58\xad\x3f\xce\x10\xa0\xe0\x06\x80\x46\x08\xf8\x05\ \xe0\xdd\x0e\xe9\x37\xeb\xee\xea\x64\xd7\xce\xed\xee\x17\xa0\xa6\ \x30\x31\x31\xc5\xd9\x91\x51\x37\xf7\xb9\x82\x73\x63\xa3\x3c\x7e\ \xe2\xd8\x6a\xff\xb1\x86\x00\x05\x3a\x00\x44\x80\xcf\x00\xbe\x21\ \xeb\x29\x12\x89\x04\x7b\x76\xef\xa4\xbd\x2d\x6d\x31\xb4\x21\xca\ \xe5\x32\xa7\xcf\x8c\x2c\xf7\x6e\xf6\xd0\x99\x9d\x9f\xe3\xfe\x43\ \x0f\xad\x55\x40\x32\x04\x28\x98\x01\xa0\x11\x02\xba\xa9\xbf\x35\ \xf0\x3a\x87\xf6\xe9\xfa\xfb\xb7\xb2\xad\xdf\xa7\x04\xb4\xbe\xe6\ \xe6\xe6\x39\x75\xe6\x1c\xe5\x72\xd9\x62\x5c\x41\xa9\x54\xe2\xab\ \x0f\xdd\x4f\xa1\xb8\xa6\x97\x46\x0c\x01\x0a\x66\x00\x68\x84\x80\ \xe7\x52\xdf\x24\xc8\xd3\xdd\x4b\x48\xa7\x52\xec\xd9\xbd\x83\x96\ \x96\x16\x8b\xa1\x35\x55\xad\x56\x19\x1d\x3b\xcf\x85\xf1\x49\x8b\ \xf1\x4c\x5d\xb9\x56\xe3\xc1\xc3\x87\x98\x9e\x9d\x59\x97\x7f\x9d\ \x21\x40\x81\x0c\x00\x8d\x10\xf0\x3a\xe0\x23\x0e\xef\x65\x06\x3d\ \x12\x61\xa0\xbf\x8f\xfe\xbe\x5e\x57\x03\xb4\x26\xe6\xe7\xf3\x9c\ \x3e\x3b\x42\xb1\xe8\x8d\x7e\x57\xe3\xf8\xe9\x93\x9c\x3e\x77\x76\ \x5d\x33\x47\xa2\xa5\xe5\xad\xbf\xe8\x5b\x04\x0d\x00\x01\x0d\x01\ \x1f\x04\x7e\xca\x21\xbe\xbc\xd6\xd6\x56\x76\xef\xda\xee\xe3\x82\ \x5a\x35\x95\x4a\x85\x73\x23\x63\xee\xe5\xbf\x0c\x13\x53\x93\x3c\ \xfc\xd8\xe1\x0d\x59\x78\x48\xb6\xb6\xfe\x97\x77\xbd\xe9\xae\xf7\ \x3b\x0a\x06\x80\xa0\x05\x80\x16\xe0\x5f\x80\x97\x3a\xcc\x57\xd6\ \xb7\xb5\x97\x6d\x03\x7d\x44\xa3\x51\x8b\xa1\x6b\x36\x3d\x33\xcb\ \xd9\x73\xa3\x5e\xeb\x5f\x86\x85\xc5\x45\xbe\xfe\xf0\x03\x94\x37\ \x68\x17\xc4\x58\x3c\x5e\xeb\xea\xee\xbe\xed\x2d\x77\xbe\xee\xcf\ \x1d\x0d\x03\x40\xd0\x42\x40\x1f\x30\x8c\x37\x05\x3e\xa3\x64\x32\ \xc1\x8e\xed\xdb\xe8\xea\xec\xb0\x18\x5a\x96\x42\xa1\xc8\xb9\x91\ \x51\x66\xe7\x7c\x89\xcf\x72\x94\x4a\x25\xbe\xf6\xf0\x83\x2c\x15\ \x96\x36\xaa\xf9\xb3\xa5\xa7\x87\x68\x2c\x56\xaa\x56\xab\xb7\xbf\ \xf9\xb5\x77\x7c\xd2\x51\x31\x00\x04\x2d\x04\xdc\x48\xfd\xa6\xc0\ \x1e\x87\xfb\x99\xb5\xb7\xb5\xb1\x63\xc7\x00\xa9\xd6\x56\x8b\xa1\ \x2b\xaa\x54\x2a\x8c\x9d\x1f\x67\x7c\x62\xd2\xe7\xfa\x97\xa9\x5a\ \xad\xf2\xc0\x23\x0f\x33\x3b\xbf\x31\x8f\x45\x5e\xd4\xfc\x9f\xcc\ \x23\xb5\x5a\xed\xf6\x37\xdd\x71\xbb\x21\xc0\x00\x10\xb8\x10\xf0\ \x72\xe0\x9f\x00\x6f\x7d\xbf\x4a\xbd\x3d\x5b\xd8\x36\xd0\x47\x3c\ \x1e\xb7\x18\xfa\x26\xb5\x5a\x8d\xc9\xa9\x69\x46\x47\xcf\x6f\xd8\ \xd2\xf5\x66\xaf\xdf\xe1\xc7\x1f\xe3\xc2\xe4\x44\xb3\x34\x7f\x43\ \x80\x01\x20\xf0\x21\xe0\x0e\xe0\x63\x61\x3a\xe6\x15\x7f\x51\x44\ \xa3\x0c\xf4\xf7\xd1\xdb\xbb\xc5\xfb\x03\x04\xd4\x9f\xe9\x3f\x37\ \x3a\xe6\x6b\x7b\x57\xe0\xf8\xa9\x93\x9c\x1e\x39\xbb\x31\xbf\xd3\ \x97\x6f\xfe\x4f\x86\x00\xe0\xf6\xbb\x6e\xbf\xcd\x10\x60\x00\x08\ \x5c\x08\xf8\x65\xe0\xd7\x1c\xf6\xe5\x49\xc4\xe3\xf4\xf7\x6f\xa5\ \xa7\x67\x0b\x51\x1f\x1b\x0c\xa5\xf9\xf9\x3c\xa3\x63\x17\xc8\x2f\ \x2c\x58\x8c\x15\x18\x39\x3f\xc6\x91\xe3\x47\x9b\xb5\xf9\x1b\x02\ \x0c\x00\x81\x0f\x01\x1f\x05\x7e\xd4\xa1\xbf\x86\x20\x90\x48\x30\ \xd0\xbf\x95\x9e\x2d\xdd\xee\x1f\x10\x12\xf9\xfc\x02\xa3\x63\x17\ \x98\xcf\xe7\x2d\xc6\x0a\x4d\xcd\x4c\xf3\xd0\xa3\x8f\x6c\xc8\xfd\ \x12\xcb\x68\xfe\x4f\x28\x03\xb7\x19\x02\x0c\x00\x41\x0b\x00\x49\ \xea\x6f\x0e\x7c\x85\xc3\x7f\x6d\x92\xc9\x04\x03\xfd\x7d\x6c\xe9\ \xee\x32\x08\x04\xb5\xf1\x2f\x2c\x30\x36\x36\xce\xdc\xbc\x77\xf6\ \xaf\x4e\x3d\xf3\x7c\xfd\xd0\x43\x54\x36\xe0\x9e\x89\x6b\x68\xfe\ \x86\x00\x03\x40\xa0\x43\x40\x07\x30\x08\xbc\xd0\x29\xb0\x82\x15\ \x81\x78\x9c\xad\x5b\x7b\xe8\xed\xd9\xe2\xdb\x06\x03\xa0\x56\xab\ \x31\x3b\x37\xcf\x85\x0b\xe3\xe4\x17\x16\x2d\xc8\x2a\x59\x5c\x5a\ \xe4\xfe\x43\x0f\x51\x2c\x95\x36\x53\xf3\x37\x04\x18\x00\x02\x1d\ \x02\x7a\x80\xcf\x03\xdf\xe2\x34\x58\x99\x68\x34\x4a\x4f\x4f\x37\ \x7d\xbd\xbd\x24\x93\x09\x0b\xb2\xc9\x54\xab\x55\xa6\xa6\x67\xb8\ \x70\x61\x62\xad\x5f\x44\x13\x3a\x4b\x85\x02\xf7\x1f\x7a\x88\x42\ \x71\xfd\x6f\x9a\x5c\x85\xe6\x6f\x08\x30\x00\x04\x3a\x04\x0c\x00\ \xff\x0a\xdc\xe0\x54\x58\x1d\xdd\xdd\x9d\xf4\xf6\x6c\xa1\xbd\xad\ \xcd\x62\x34\xb9\x62\xb1\xc8\xc4\xd4\x34\x13\x13\x53\x1b\xb2\x34\ \x1d\x86\xfa\x7e\xfd\xd0\x43\x1b\xb2\xd1\xcf\x2a\x36\x7f\x43\x80\ \x01\x20\xd0\x21\x60\x77\x23\x04\xec\x73\x3a\xac\x9e\x96\x96\x24\ \x3d\x5b\xba\xe9\xd9\xd2\xed\x5e\x02\x4d\xa4\x56\xab\x31\x33\x3b\ \xc7\xe4\xe4\x14\x73\xf3\xde\xd8\xb7\x56\x4a\xa5\x12\xf7\x3f\xf2\ \x10\x0b\x8b\xeb\x7f\x29\x65\x0d\x9a\xbf\x21\xc0\x00\x10\xe8\x10\ \x70\x5d\x23\x04\xec\xb0\x1a\xab\x3c\xc1\x22\x11\x3a\x3b\x3b\xe8\ \xed\xe9\xa6\xbd\xad\xcd\x9b\x06\x37\x48\xa1\x50\x64\x62\x6a\x8a\ \xa9\xa9\x69\xca\x65\xcf\xf6\xd7\x52\xb9\x5c\xe6\x81\xc3\x0f\x6f\ \xc8\x93\x13\x6b\xd8\xfc\x0d\x01\x06\x80\x40\x87\x80\x9b\xa8\xdf\ \x13\xd0\x67\x35\xd6\x46\x3c\x1e\xa7\xbb\xab\x93\xee\xae\x4e\xd2\ \xe9\x94\x61\x60\x8d\x15\x8b\x25\xa6\x67\x66\x98\x9e\x99\x65\x71\ \x71\xc9\x82\xac\x83\x4a\xa5\xc2\x83\x87\x0f\x6d\xc8\x16\xbf\xeb\ \xd0\xfc\x0d\x01\x06\x80\x40\x87\x80\xe7\x51\x7f\x83\x60\xb7\xd5\ \x58\x5b\x89\x44\x9c\xae\xce\x4e\xba\xbb\x3b\x49\xa7\x0c\x03\xab\ \xd6\xf4\x4b\x25\x66\x66\x66\x99\x9e\x9e\xdd\x90\xe5\xe7\x30\xab\ \x56\xab\x3c\xf4\xe8\x23\x4c\xcf\xce\x04\xb9\xf9\x1b\x02\x0c\x00\ \x81\x0e\x01\x2f\xa0\xbe\x4f\xc0\x56\xab\xb1\x4e\x61\x20\x1e\xa7\ \xa3\xa3\x9d\xce\x8e\x76\xda\xdb\xdb\x7c\xa4\x70\x19\x6a\xb5\x1a\ \x0b\x8b\x8b\xcc\xcd\xcd\x33\x3b\x97\x67\xd1\xa6\xbf\x61\x67\xfe\ \x0f\x3f\x76\x38\x2c\xcd\xdf\x10\x60\x00\x08\x74\x08\xb8\x09\xb8\ \x0f\xef\x09\x58\xff\x09\x19\x81\x74\x3a\x4d\x67\x47\x3b\x1d\x1d\ \xed\xbe\x95\xf0\x52\xdf\xba\xe5\x32\xb3\x73\xf3\xcc\xcd\xcd\x33\ \x37\x9f\xf7\x0e\xfe\x26\x18\x8f\x87\x1e\x7d\x24\xe8\xcb\xfe\x86\ \x00\x03\x40\xa8\x42\xc0\x01\xe0\xb3\xc0\x7e\xab\xb1\x71\xe2\xb1\ \x18\xe9\xb6\x34\x6d\xe9\x14\x6d\xe9\x34\xa9\x54\x8a\x68\x34\x5c\ \xd3\x76\xa9\x50\x60\x21\xbf\x48\x7e\x61\x81\xfc\xc2\x02\x85\x82\ \xcf\xea\x37\x8b\x62\xa9\xc4\x83\x87\x0f\x91\x5f\x08\xe4\x0d\x7f\ \x86\x00\x03\x40\xa8\x43\xc0\xce\x46\x08\x78\x96\xd5\x68\x96\x15\ \x82\x08\xe9\x54\x8a\x74\x5b\x8a\x54\x6b\x2b\xa9\xd6\x56\x5a\x5a\ \x92\x81\xb9\x87\xa0\x54\x2a\xb1\xb8\x54\x60\x69\x69\x89\xfc\xc2\ \x22\x0b\xf9\x05\x5f\xb9\xdb\xa4\x0a\xc5\x02\x0f\x3e\x72\x88\x85\ \xa5\x40\x3d\xea\x67\x08\x30\x00\xe8\xa2\x10\xd0\x07\xfc\x13\xf0\ \x3c\xab\xd1\xbc\xa1\xa0\xb5\xa5\x85\xd6\xd6\x16\x5a\x5b\x5b\x49\ \xb5\xb6\x90\x4c\x26\x49\x26\x13\x4d\x19\x0c\x6a\xb5\x1a\xe5\x72\ \x99\x62\xb1\xc4\x52\xa1\xc0\xd2\x52\x81\xc5\xa5\x25\x96\x96\x0a\ \x2e\xe7\x6f\x12\x8b\x4b\x4b\x3c\x78\xf8\x61\x96\x0a\x9b\x7a\x87\ \x3f\x43\x80\x01\x40\x57\x11\x02\xba\x81\xbf\x07\x5e\x6a\x35\x36\ \x97\x44\x22\x5e\x0f\x03\x89\x04\xc9\x64\x82\x64\x22\x49\x3c\x1e\ \x23\x16\x8f\x11\x8f\xc5\x88\xc5\xe2\xc4\x62\xd1\x55\x0b\x0a\x95\ \x6a\x95\x4a\xb9\x4c\xb9\x52\xa1\x52\xae\x50\xae\x54\x28\x95\x4a\ \x14\x8b\x8d\x4f\xa9\x48\xb1\x58\xda\x90\x37\xc2\x69\x75\x2c\x2c\ \x2e\xf0\xc0\x23\x87\x28\x96\xd6\xff\x52\x4c\x13\x37\x7f\x43\x80\ \x01\x20\xd0\x21\xa0\x0d\xf8\x2b\xe0\x56\xab\x11\x3c\xb1\x58\x3d\ \x10\x44\xa2\x11\x22\x91\x6f\x7c\xa2\x17\xfd\x73\xad\x56\xfb\xa6\ \x4f\xf5\xa2\x7f\xae\x54\xaa\x54\x2a\x15\x1b\x7b\xc0\xcd\xe5\xe7\ \x79\xe8\xf0\x21\x4a\xe5\xb2\xcd\xdf\x10\x60\x00\x08\x59\x08\x48\ \x00\x1f\x04\xfe\x2f\xab\x21\x85\xcb\xc4\xd4\x24\x8f\x3c\xfe\x18\ \xd5\x6a\xd5\xe6\x6f\x08\x30\x00\x84\x38\x08\xbc\x13\x78\x0f\x10\ \xb5\x1a\x52\xf0\x9d\x19\x39\xc7\xb1\x53\x27\x36\xe4\xdf\xbd\x09\ \x9b\xbf\x21\xc0\x00\x10\xf8\x10\xf0\x6a\xe0\xa3\x40\xda\x6a\x48\ \xc1\x54\xab\xd5\x78\xfc\xc4\x71\x46\xce\x8f\xda\xfc\x0d\x01\x06\ \x00\x7d\x53\x08\x78\x11\xf0\x19\x60\x9b\xd5\x90\x82\xa5\x5c\xa9\ \xf0\xc8\x91\x47\x99\x9a\x99\xb6\xf9\x1b\x02\x0c\x00\xba\x64\x08\ \xd8\x0b\xfc\x1d\xf0\x1c\xab\x21\x05\xc3\x52\xa1\xc0\xc3\x8f\x3e\ \x42\x7e\x71\xc1\xe6\x6f\x08\x30\x00\xe8\x8a\x21\xa0\x13\xf8\x24\ \xf0\x4a\xab\x21\x6d\x6e\x73\xf3\xf3\x3c\xfc\xd8\x23\x14\x4b\x25\ \x9b\xbf\x21\xc0\x00\xa0\xab\x0a\x01\x71\xea\x37\x06\xbe\xcd\xba\ \x4a\x9b\xd3\xd8\x85\xf3\x1c\x39\x71\x6c\x43\xee\xf4\x0f\x78\xf3\ \x37\x04\x18\x00\x42\x11\x04\x7e\x00\xf8\x30\xd0\x65\x35\xa4\xcd\ \xa1\x5a\xad\x72\xf4\xe4\x71\x46\xce\x8f\x6d\xd8\xdf\x21\x04\xcd\ \xdf\x10\x60\x00\x08\x45\x08\x38\x08\x7c\x0a\xf8\x56\xab\x21\x35\ \xb7\xa5\xc2\x12\x87\x8e\x3c\xca\x7c\x3e\xbf\x61\x7f\x87\x10\x35\ \x7f\x43\x80\x01\x20\x14\x21\x20\x45\x7d\xd3\xa0\xd7\x59\x0d\xa9\ \x39\x4d\x4c\x4d\xf1\xe8\xd1\x23\x94\x2b\xe5\x0d\xfb\x3b\x84\xb0\ \xf9\x1b\x02\x0c\x00\xa1\x09\x02\x3f\x09\xbc\x1f\xf0\xc5\xf6\x52\ \x93\xa8\xd5\x6a\x9c\x3c\x73\x9a\x53\xe7\xce\x6c\xe8\xdf\x23\xc4\ \xcd\xdf\x10\x60\x00\x08\x4d\x08\x78\x01\xf5\xa7\x04\xf6\x5b\x0d\ \x69\x63\x95\x4a\x25\x1e\x79\xfc\x31\xa6\x67\x67\x6c\xfe\x86\x00\ \x03\x80\xd6\x25\x04\x74\x01\x1f\x00\xee\xb0\x1a\xd2\xc6\x98\x9c\ \x9e\xe2\xb1\x63\x8f\x6f\xd8\x23\x7e\x36\x7f\x43\x80\x01\x20\xdc\ \x41\xe0\x35\xd4\xef\x0d\xe8\xb5\x1a\xd2\xfa\xa8\x54\x2a\x1c\x3b\ \x75\x72\xc3\xb6\xf4\xb5\xf9\x1b\x02\x0c\x00\x7a\x22\x04\xec\x00\ \xfe\x18\xf8\x3f\xac\x86\xb4\xb6\x66\xe7\xe7\x78\xf4\xe8\x11\x16\ \x97\x96\x6c\xfe\x86\x00\x19\x00\x9a\x26\x08\xdc\x05\xfc\x06\xbe\ \x50\x48\x5a\x75\xb5\x5a\x8d\x93\x67\x4f\x73\xfa\xec\x59\x6a\xd4\ \x6c\xfe\x86\x00\x19\x00\x9a\x2e\x04\xdc\x08\x7c\x0c\x78\x91\xd5\ \x90\x56\xc7\xc2\xe2\x22\x87\x8f\x1e\x61\x3e\x3f\xdf\x14\x7f\x1f\ \x9b\xbf\x21\xc0\x00\xa0\xcb\x85\x80\x38\xf0\xf3\xc0\x2f\xe0\xe3\ \x82\xd2\x8a\xce\xfa\xcf\x8e\x8d\x70\xe2\xf4\xa9\x0d\xdb\xce\xd7\ \xe6\x6f\x08\x30\x00\xe8\x5a\x82\xc0\x41\xea\x37\x08\xe6\xac\x86\ \xb4\x3c\x73\xf9\x79\x8e\x1c\x3f\xba\xa1\x3b\xfa\xd9\xfc\x0d\x01\ \x06\x00\xad\x34\x08\xdc\x01\xfc\x16\xd0\x6f\x35\xa4\x2b\xab\x56\ \xab\x4b\xc7\x4e\x9d\x6c\x39\x37\x36\xd2\x54\xdf\x67\x36\x7f\x43\ \x80\x01\x40\xd7\x1a\x02\xb6\x00\x77\x03\x3f\x0e\x44\xad\x88\x74\ \x49\x9f\x9a\x9b\x9f\x7f\xcb\xd1\xd3\x27\xee\x98\x9d\x9d\xbd\xbb\ \x59\xbe\xd3\x6c\xfe\x86\x00\x03\x80\x56\x23\x08\xbc\x14\xf8\x7d\ \xe0\x39\x56\x43\x7a\xd2\x89\x6a\xb5\x7a\xd7\xad\x2f\xff\x0f\xff\ \xf0\xc4\x7f\xf0\xde\xdf\xfb\xd0\x3b\x16\x16\xf2\xef\xb5\xf9\x1b\ \x02\x64\x00\x08\x52\x08\x48\x00\x6f\x05\xde\x85\xaf\x19\x56\xb8\ \x2d\x02\xef\xab\xd5\x6a\xef\xbe\xe5\x65\x2f\x5d\x78\xea\x7f\xf9\ \xee\x7b\x3f\xf0\x8e\x62\xa1\xb0\x61\x21\xc0\xe6\xbf\x2e\x21\xe0\ \xf6\xbb\x6e\xbf\xed\x2f\x2c\x85\x01\x20\x6c\x41\x60\x2b\xf0\xab\ \xc0\x4f\x02\x09\x2b\xa2\x10\xa9\x02\x7f\x0a\xbc\x2b\x97\xcd\x9c\ \xba\xd2\xff\xe3\xaf\xbf\xff\x9e\x77\x94\x4a\xa5\x75\x0f\x01\x36\ \x7f\x43\x80\x01\x40\xeb\x11\x04\x6e\x04\xde\x0b\x7c\xbf\xd5\x50\ \x08\x7c\x1e\x78\x5b\x2e\x9b\xf9\xca\xd5\xfe\x0f\xd6\x3b\x04\xd8\ \xfc\x0d\x01\x06\x00\xad\x77\x10\x78\x39\xf0\x9b\xc0\xbf\xb7\x1a\ \x0a\xa0\xc3\xc0\x3b\x73\xd9\xcc\xdf\x5c\xcb\xff\x78\xbd\x42\x80\ \xcd\xdf\x10\x60\x00\xd0\x46\x85\x80\x08\x70\x1b\xf0\x1e\x60\x8f\ \x15\x51\x00\x5c\x00\x7e\x0d\xf8\xfd\x5c\x36\x53\x5e\xc9\x1f\xb4\ \xd6\x21\xc0\xe6\x6f\x08\x30\x00\xa8\x19\x82\x40\x2b\xf5\x47\x06\ \xdf\x09\xec\xb2\x22\xda\x84\xc6\x81\xdf\x06\x3e\x90\xcb\x66\xe6\ \x56\xeb\x0f\x5d\xab\x10\x60\xf3\x37\x04\x18\x00\xd4\x6c\x41\x20\ \x09\xfc\x18\xf0\x73\xc0\x5e\x2b\xa2\x4d\x60\x8c\xfa\xc6\x57\x1f\ \xcc\x65\x33\x6b\xb2\x79\xff\x6a\x87\x00\x9b\xbf\x21\xc0\x00\xa0\ \x66\x0e\x02\x09\xe0\x75\xd4\xdf\x31\x70\xc0\x8a\xa8\x09\x8d\x00\ \xff\x8d\xfa\x52\xff\xc2\x5a\xff\xcb\x56\x2b\x04\xd8\xfc\x0d\x01\ \x06\x00\x6d\x96\x20\x10\x07\xee\xa0\xbe\x87\xc0\xf5\x56\x44\x4d\ \xe0\x0c\xf5\xd7\x60\xff\x61\x2e\x9b\x59\x5a\xcf\x7f\xf1\x4a\x43\ \x80\xcd\xdf\x10\x60\x00\xd0\x66\x0c\x02\x31\xe0\x35\xc0\x4f\x03\ \x19\x2b\xa2\x0d\x70\x3f\x70\x0f\xf0\x89\x5c\x36\x53\xd8\xa8\xbf\ \xc4\xb5\x86\x00\x9b\xbf\x21\xc0\x00\xa0\x20\x84\x81\x17\x35\x82\ \xc0\x6b\x80\xa4\x15\xd1\x1a\xaa\x00\x7f\x03\xdc\x93\xcb\x66\x3e\ \xdf\x2c\x7f\xa9\xe5\x86\x00\x9b\xbf\x21\xc0\x00\xa0\xa0\x05\x81\ \xed\xc0\x1b\x80\xd7\xe3\x9b\x07\xb5\xba\xa6\x81\xff\x17\xf8\xdd\ \x5c\x36\x73\xbc\x19\xff\x82\x57\x1b\x02\x6c\xfe\x86\x00\x03\x80\ \x82\x1c\x04\x5a\x80\x1f\x69\xac\x0a\x3c\xcf\x8a\x68\x05\x0e\x03\ \xf7\x02\x1f\xcd\x65\x33\xf9\x66\xff\xcb\xfe\xfa\xfb\xef\x79\x67\ \xa9\x54\xba\xdb\xe6\x6f\x08\x30\x00\xc8\x30\x30\x34\xfc\x02\xe0\ \xce\x46\x20\xe8\xb5\x22\xba\x0a\xb3\xc0\x27\x81\x8f\xe4\xb2\x99\ \x7f\xdb\x6c\x7f\xf9\xcb\x85\x00\x9b\xbf\x21\xc0\x00\xa0\xb0\x06\ \x81\x24\xf0\xbd\x8d\x30\xf0\x1d\x40\xdc\xaa\xe8\x22\x55\xe0\x73\ \xc0\x47\x80\x4f\xaf\xc7\x63\x7c\x6b\x1a\x02\xee\xb9\xf7\x9d\xa5\ \x62\xf1\x6e\x9b\xbf\x21\xc0\x00\x20\x7d\x73\x18\xd8\x46\xfd\x51\ \xc2\x3b\x81\x9b\xad\x48\xa8\x1d\x05\x3e\x0a\x7c\x2c\x97\xcd\x9c\ \x0c\xd2\x81\xbd\xfb\x9e\x7b\xdf\x59\x2c\x16\xef\xb6\xf9\x1b\x02\ \x0c\x00\xd2\xa5\xc3\xc0\x0b\x80\x57\x03\xaf\x02\x6e\xb0\x22\xa1\ \x70\x12\xf8\x34\xf0\x97\xc0\xff\xca\x65\x33\xb5\xa0\x1e\xe8\xdd\ \xbf\xf7\xc1\x9f\x6e\x6b\x6f\xff\xed\x68\xcc\xee\x6f\x08\x30\x00\ \x48\x57\x0a\x03\x37\x37\x82\xc0\xab\x80\xe7\x3a\x9f\x02\xe5\xd1\ \x46\xc3\xff\xab\x5c\x36\xf3\xe5\x30\x1d\xf8\xbd\x7f\xf2\xf1\x3b\ \xa2\xd1\xe8\x47\x00\x43\x80\x21\xc0\x00\x20\x5d\x45\x18\x38\x70\ \x51\x18\x78\x31\x10\xb5\x2a\x9b\x4a\x8d\xfa\x46\x3d\x9f\x06\xfe\ \x32\x97\xcd\x1c\x0a\x73\x31\x3e\xf0\xf1\x4f\xdc\x11\x89\x44\x0c\ \x01\x86\x00\x03\x80\xb4\xcc\x30\x30\x00\xdc\x0a\xdc\xd2\xf8\xec\ \xb4\x2a\x4d\x69\x1c\xf8\x6c\xe3\x73\x5f\x2e\x9b\x39\x65\x49\x0c\ \x01\x86\x00\x03\x80\xb4\x9a\x81\xe0\xa6\x8b\x02\xc1\xcb\x81\x0e\ \xab\xb2\x21\x16\x81\x2f\x00\xf7\x35\x9a\xfe\xd7\x82\x7c\x3d\x7f\ \x35\xfc\xee\x27\xfe\xf4\x0e\xea\x4f\x3a\x18\x02\x0c\x01\x06\x00\ \x69\x85\x61\x20\x01\xbc\x04\xf8\xf6\xc6\xcf\x17\x03\x5b\xac\xcc\ \x9a\x98\x03\xfe\x37\xf0\x45\xe0\xf3\xc0\xd0\x7a\xbf\x7c\xc7\x10\ \x20\x43\x80\x01\x40\xba\x5c\x20\x88\x00\x37\x36\x82\xc0\x4b\x1a\ \x9f\xe7\xe0\xbe\x03\xcb\x55\x05\x1e\x69\x34\xfb\x2f\x35\x7e\x3e\ \x9c\xcb\x66\xaa\x96\xc6\x10\x20\x43\x80\x01\x40\x9b\x25\x14\xa4\ \x81\x17\x36\x3e\x37\x37\x3e\x37\x01\x6d\x56\x07\xa8\x2f\xe5\x1f\ \x06\x1e\x6e\x7c\xbe\x0c\xfc\x7f\xb9\x6c\x66\xd6\xd2\x18\x02\x64\ \x08\x30\x00\x28\x88\x2b\x05\xfb\x9e\x12\x08\x6e\x06\x9e\x0d\xa4\ \x03\x7a\xd8\x4b\xd4\x1f\xc7\x7b\x18\x38\x74\x51\xc3\x3f\xea\x99\ \xbd\x21\x40\x86\x00\x03\x80\x0c\x07\x43\xc3\xfd\xc0\xde\xc6\x67\ \x4f\xe3\xb3\xf7\xa2\x9f\xcd\xfa\x4e\x83\x69\xea\x9b\xec\x9c\xba\ \xcc\xcf\x51\x6f\xd2\x33\x04\xc8\x10\x60\x00\x90\xae\x3d\x20\xa4\ \x81\x3e\xa0\xa7\x11\x06\x7a\x2e\xf3\x69\x03\x92\x97\xf9\xb4\x34\ \x7e\x02\x14\x9f\xe1\xb3\x00\x4c\x5e\xe2\x33\x71\xd1\x3f\x8f\xe7\ \xb2\x99\x39\x47\xc7\x10\x20\x43\x80\x01\x40\x92\x0c\x01\x32\x04\ \x18\x00\x24\xc9\x10\x20\x43\x80\x01\x40\x92\x0c\x01\x32\x04\x18\ \x00\x24\xc9\x10\xa0\x75\x0d\x01\x77\xdc\x75\xfb\x6d\xff\xdd\x00\ \x20\x49\x32\x04\x18\x02\x0c\x00\x92\x24\x43\x80\x21\xc0\x00\x20\ \x49\x86\x00\x43\x80\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\ \x92\x64\x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\ \x64\x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\ \x08\x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\ \x90\x21\xc0\x00\x20\x49\x86\x00\x19\x02\x0c\x00\x92\x64\x08\x90\ \x21\xc0\x00\x20\x49\x86\x00\x85\x39\x04\x18\x00\x24\xc9\x10\xa0\ \x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\x60\x00\x90\x24\x43\ \x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\x43\x80\x01\x40\x92\ \x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\x21\x0c\x01\x06\x00\ \x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\x00\x85\x30\x04\x18\ \x00\x24\xc9\x10\xa0\x10\x86\x00\x03\x80\x24\x19\x02\x14\xc2\x10\ \x60\x00\x90\x24\x43\x80\x42\x18\x02\x0c\x00\x92\x64\x08\x50\x08\ \x43\x80\x01\x40\x92\x0c\x01\x0a\x61\x08\x30\x00\x48\x92\x21\x40\ \x21\x0c\x01\x06\x00\x49\x32\x04\x28\x84\x21\xc0\x00\x20\x49\x86\ \x00\x85\x30\x04\x18\x00\x24\xc9\x10\xa0\xe6\x0e\x01\x3f\x72\xd7\ \xed\xb7\x7d\x6a\xb5\xff\xe0\xb8\xb5\x95\xa4\xcd\xeb\xae\xdb\x6f\ \xfb\xf8\xef\x7e\xe2\x4f\x31\x04\x04\xd6\x34\x70\xc4\x15\x00\x49\ \x92\x2b\x01\xe1\x31\x0e\xdc\x72\xd7\xed\xb7\xdd\x6f\x00\x90\x24\ \x19\x02\x6c\xfe\x06\x00\x49\x92\x21\xc0\xe6\x6f\x00\x90\x24\xd5\ \x43\xc0\x6b\x81\x0f\x1b\x02\x6c\xfe\x06\x00\x49\x32\x04\xc8\xe6\ \x6f\x00\x90\x24\x43\x80\xc2\xdc\xfc\x0d\x00\x92\x64\x08\x50\x08\ \x9b\xbf\x01\x40\x92\x0c\x01\x0a\x61\xf3\x37\x00\x48\x92\x21\x40\ \x21\x6c\xfe\x06\x00\x49\x32\x04\x28\x84\xcd\xdf\x00\x20\x49\x86\ \x00\x85\xb0\xf9\x1b\x00\x24\xc9\x10\xa0\x10\x36\x7f\x03\x80\x24\ \x19\x02\x0c\x01\x21\x6c\xfe\x06\x00\x49\x32\x04\x18\x02\x42\xd8\ \xfc\x0d\x00\x92\x64\x08\x30\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\ \x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\ \x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\ \x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\ \x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\ \x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\x24\xc9\x10\x10\xc2\ \xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\x00\x92\x24\x43\x40\ \x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\x37\x00\x48\x92\x0c\ \x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\xcd\xdf\x00\x20\x49\ \x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x86\x80\x10\x36\x7f\x03\x80\ \x24\xc9\x10\x10\xc2\xe6\x6f\x00\x90\x24\x19\x02\x42\xd8\xfc\x0d\ \x00\x92\x24\x43\x40\x08\x9b\xbf\x01\x40\x92\x64\x08\x08\x61\xf3\ \x37\x00\x48\x92\x0c\x01\x21\x6c\xfe\x06\x00\x49\x92\x21\x20\x84\ \xcd\xdf\x00\x20\x49\x32\x04\x84\xb0\xf9\x1b\x00\x24\x49\x61\x0f\ \x01\xa1\x6c\xfe\x06\x00\x49\x52\x98\x43\x40\x68\x9b\xbf\x01\x40\ \x92\x14\xd6\x10\x10\xea\xe6\x6f\x00\x90\x24\x85\x31\x04\x84\xbe\ \xf9\x1b\x00\x24\x49\x61\x0b\x01\x36\x7f\x03\x80\x24\x29\x64\x21\ \xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\x0d\x00\x92\xa4\x90\ \x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\ \x42\x16\x02\x6c\xfe\x06\x00\x49\x52\xc8\x42\x80\xcd\xdf\x00\x20\ \x49\x0a\x59\x08\xb0\xf9\x1b\x00\x24\x49\x21\x0b\x01\x36\x7f\x03\ \x80\x24\x29\x64\x21\xc0\xe6\x6f\x00\x90\x24\x85\x2c\x04\xd8\xfc\ \x0d\x00\x92\xa4\x90\x85\x00\x9b\xbf\x01\x40\x92\x14\xb2\x10\x60\ \xf3\x37\x00\x48\x92\x02\x1c\x02\x7e\x14\xf8\xe3\xa7\x84\x00\x9b\ \xbf\x01\x40\x92\x14\xb2\x10\x60\xf3\x37\x00\x48\x92\x42\x16\x02\ \xfe\x1b\xf0\x4a\x9b\xbf\x24\x49\xe1\x0a\x01\x9d\x56\x41\x92\x24\ \x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\ \x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\ \x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\ \x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\ \x92\x24\x49\x92\x24\x49\x92\xa4\x80\xf9\xff\x01\x35\xd0\x5c\x2a\ \xdb\x5e\x02\x03\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x09\x77\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x3a\ \x50\x4c\x54\x45\xff\xff\xff\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\ \x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\ \xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\ \xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\ \x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\ \xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\ \xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\ \x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\ \xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\ \xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\ \x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\ \xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\ \xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\x86\xad\xd2\ \x86\xad\xd2\x8a\xb0\xd4\x86\xad\xd2\x86\xad\xd2\x92\xb5\xd7\x86\ \xad\xd2\x9b\xbb\xda\x86\xad\xd2\x8a\xb0\xd3\x9e\xbd\xdb\x9c\xbc\ \xda\x93\xb6\xd7\x9b\xbb\xda\x86\xad\xd2\x9c\xbc\xda\x9c\xbc\xda\ \x90\xb4\xd6\x9b\xbb\xda\x9d\xbc\xda\x9b\xbb\xda\x97\xb9\xd8\x9d\ \xbd\xdb\x9d\xbd\xdb\x9d\xbc\xda\x9e\xbd\xdb\x9e\xbd\xdb\x86\xad\ \xd2\x9c\xbc\xda\x9c\xbc\xda\x9d\xbc\xda\x86\xad\xd2\x9b\xbb\xda\ \x9e\xbd\xdb\x9c\xbc\xda\x86\xad\xd2\x9d\xbc\xda\x9d\xbd\xdb\x86\ \xad\xd2\x9e\xbd\xdb\x9c\xbc\xda\x9c\xbc\xda\x9e\xbd\xdb\x9b\xbb\ \xda\x9e\xbd\xdb\x99\xba\xd9\x9d\xbd\xdb\x8a\xb0\xd3\x9d\xbc\xda\ \x9c\xbc\xda\x9e\xbd\xdb\x9c\xbc\xda\x9b\xbb\xda\x9b\xbb\xda\x9b\ \xbb\xda\x9d\xbd\xdb\x9c\xbc\xda\x9a\xbb\xda\x9e\xbd\xdb\x9b\xbb\ \xda\xa4\xc2\xdd\x9c\xbc\xda\x9e\xbd\xdb\x9a\xbb\xda\x9b\xbb\xda\ \x9c\xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x99\xba\xd9\x9d\xbc\xda\x9c\ \xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x9e\xbd\xdb\x9c\xbc\xda\x9c\xbc\ \xda\x9c\xbc\xda\x9b\xbb\xda\x9d\xbd\xdb\x97\xb9\xd8\x9b\xbb\xda\ \x9d\xbd\xdb\x9d\xbd\xdb\x9b\xbb\xda\x9d\xbc\xda\x9c\xbc\xda\x9c\ \xbc\xda\x9d\xbc\xda\x9b\xbb\xda\x9c\xbc\xda\x86\xad\xd2\x8e\xb2\ \xd5\x98\xb9\xd9\x9e\xbd\xdb\x91\xb4\xd6\x91\xb5\xd6\x9d\xbc\xda\ \x88\xae\xd3\x93\xb6\xd7\x8b\xb0\xd4\x96\xb8\xd8\x8f\xb3\xd5\x99\ \xba\xd9\x89\xaf\xd3\x8d\xb2\xd4\x8c\xb1\xd4\x94\xb7\xd7\x9c\xbc\ \xda\x8d\xb2\xd5\x95\xb7\xd7\x88\xaf\xd3\x8f\xb3\xd6\x97\xb8\xd8\ \x87\xae\xd2\x94\xb6\xd7\x9a\xbb\xd9\x87\xae\xd3\x9b\xbb\xda\x8b\ \xb1\xd4\x97\xb9\xd8\x8a\xb0\xd4\x92\xb5\xd6\xff\xff\xff\x08\x6e\ \x68\xb1\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\x84\x99\ \xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\xab\x6c\ \x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\x1b\xc0\ \x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\x5a\xd5\ \xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\xb7\x1c\ \x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\x78\x34\ \xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\xf8\x0b\ \xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\x7f\xf0\ \x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\xa2\x66\ \x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\xcf\xd4\ \x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\x01\x62\ \x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\x4d\x45\ \x07\xdd\x09\x09\x15\x2b\x0e\x99\x49\x39\x5f\x00\x00\x04\x09\x49\ \x44\x41\x54\x58\xc3\xed\x96\xfb\x5f\x53\x65\x1c\xc7\xbf\xcc\x6d\ \x20\x30\x2e\x72\x99\x22\xc9\x36\x50\x94\x06\x04\x49\x96\xa2\x33\ \xb4\xd4\x68\x8b\x52\x6b\x30\xd6\x20\xc0\x6c\x82\x40\xdc\x56\xb9\ \x0d\x69\x78\xa1\x1b\xa6\x40\x60\x0f\x7d\x0d\x08\x21\x8c\x52\x8a\ \x6e\x7f\x5c\xcf\x73\xce\xce\xb6\xb3\xcb\xb9\xf8\x9b\xaf\x57\x9f\ \xd7\x6b\xe7\x9c\x3d\xe7\xbc\x3f\xe7\xfb\x7c\xbf\xcf\xe5\x00\xfc\ \xaf\x04\xa5\x09\xd2\xec\xd0\xea\xf4\xe9\x19\x24\x23\x5d\xaf\xd3\ \xee\xd0\x08\xcd\x0a\x0d\x76\x66\x66\x11\xb1\xb2\x32\x77\x2a\x36\ \xc8\xd6\x1a\xc2\x54\x4e\x2e\x3b\xe6\x85\xff\x19\xb4\xd9\x4a\x0c\ \xf2\x77\x15\xb0\xa7\x0b\x0a\x8b\x8a\x8d\x69\xbb\xd9\xe5\x9e\x92\ \xbd\xa5\xcf\xed\xe3\x1a\x77\xe5\xcb\xf1\xc6\x32\xf6\x52\x93\xde\ \x6c\xe1\x02\xe6\x0d\xd8\x55\xb9\x59\xcf\xc5\x54\x66\x94\xe4\x2b\ \xf6\x73\xc1\x1e\x60\x48\xe5\x41\xdd\xa1\x1c\xf6\x2f\xbd\xea\xe0\ \xf3\x56\xd6\xc0\xdd\xdb\x5f\x21\xc1\x57\xe7\x84\xbb\x5b\x53\x5b\ \x65\x10\xe5\x30\x57\x57\x93\xa6\x0f\x27\xa6\x3a\x25\x5f\x66\x22\ \xe4\x85\x43\x24\x85\x32\xd8\xc1\x54\x47\x7f\x65\x29\xf8\x7a\x16\ \xe0\x8b\x9a\x3c\x22\xa1\xaa\x7c\xd6\xc9\xfa\xa4\xfc\x61\x7a\x47\ \x67\x4d\xb3\x34\x48\x19\x68\xc0\x7a\x80\x9e\x0e\x27\xe1\x8b\xe9\ \x9b\x4b\x01\x34\x92\x3c\x79\x49\x03\x50\x4a\xeb\x59\x9c\xc0\x6b\ \x68\xd2\xaa\x00\x8e\xe4\x12\x69\xe5\xbe\x0c\xa0\xa5\x83\x4a\x13\ \xc7\xb3\xc0\x5f\x31\x42\x6d\x1e\x91\x53\x5e\x2d\x00\xed\x45\x83\ \x45\x6c\x70\x94\x8e\xf6\x63\xd0\x98\x23\xcb\xd3\x32\x1e\x87\xf2\ \x13\x84\x1c\x15\xf1\x36\x5a\x40\x72\x72\x6f\x86\x02\x9e\xe6\xa1\ \xe4\x55\x3a\xb0\x4d\xb6\x58\x83\x26\x45\xa4\x58\x4d\x31\x7c\xe5\ \x53\xf0\x84\x54\x46\x0d\xe8\x20\x95\xcb\x7e\x12\xe9\xa3\x53\xc8\ \x44\x0c\x96\x53\x4a\x12\x18\xd1\x69\x9b\x81\x98\x5e\x13\x0c\x5e\ \x27\xe4\x0c\x18\x95\x65\x90\x97\xc1\x0a\x67\x08\x39\x2b\x18\xa4\ \x13\xd2\x08\x47\x54\x85\x7f\x0e\x1a\xc9\xe2\x1b\x61\x3e\xdf\x44\ \xea\x00\x32\x55\x19\x34\x03\xbc\xf9\x83\xdd\xc1\x1b\x98\xe9\x24\ \x82\xf2\x02\x55\x06\x05\xe5\xf0\x16\x62\x0b\x6f\x40\x87\xf6\xdb\ \x50\xa3\xae\x02\xb4\x86\xef\x20\x9e\xe7\x0d\x0a\x09\xb1\xc1\x29\ \x95\x06\x17\xe0\x22\xe2\xbb\xbc\x01\x9d\x47\xc7\x40\xa7\x8e\x7f\ \xf0\x1e\x38\x11\x5b\x79\x03\x5a\x51\x9d\xae\x4e\x15\xff\xe3\x52\ \x9b\xcb\x65\xc7\x76\xde\x40\x7e\x0a\xc7\x69\x79\x05\x79\xb9\x79\ \x03\xa5\x9c\x29\x7c\xfe\x69\x15\x05\x3d\x55\x04\x0f\xd7\x22\xbc\ \x5b\xc8\x81\x0a\xad\xaf\x2c\x45\x78\x21\x07\xb4\x0a\x16\xa5\x55\ \x88\xbc\xde\x15\x53\x85\xf7\xd9\x38\x28\x52\x82\xff\x1c\xed\xbd\ \x07\x3a\x10\x3b\x23\x23\xf1\x03\x25\x23\x71\xe3\xd1\x2f\xd1\xe8\ \xbb\x62\x46\xa2\x99\x2d\xe8\xb2\x73\x61\xf3\xd7\x18\x1c\xbb\x7b\ \xc0\x15\x99\x0b\x74\x36\x5e\x02\x68\x96\xa2\x7f\x7b\xfc\x04\x45\ \xfa\x10\xa0\x0d\x85\xd9\x08\x27\xd8\x96\x65\x4e\x49\x6f\x6d\xfe\ \xfe\x07\xc6\xa9\x05\xba\x10\x2f\x0b\x0b\x0a\xdd\xab\x3e\x02\x6b\ \x56\x52\x7a\x79\x71\x65\x0d\x13\xe4\xed\x81\x2b\x88\xbd\x31\x6b\ \x62\x96\xd5\x92\xb8\xb4\x6f\x6f\x3c\x58\xfd\x13\x93\xa9\xef\xaa\ \xb3\x1f\xed\x03\x91\x55\xf5\x34\x21\x99\xe2\x65\x79\xf9\xaf\x87\ \x2b\x7f\x27\x87\x79\xb5\x22\x0e\x46\x97\xf5\x8f\xd7\xb7\xb7\x58\ \x67\xb7\xd7\xff\xd9\x58\x7c\xfc\xef\xa3\x27\x6b\x4b\x28\xaf\xae\ \x98\x9d\x65\x48\xc1\xf3\xf1\x1a\x8a\xdd\xda\x3a\xec\xac\xa9\xb3\ \x5d\x11\xd9\x3e\x3c\x42\x8f\xf6\x0e\xd1\xee\x3a\x4a\x9b\xc6\xe0\ \xa2\x5b\x01\xdf\xed\x83\x4f\xfa\x11\x47\xc5\xdb\xbb\xf3\x53\xc4\ \xcf\x00\xae\x75\xcb\xf2\xfe\x00\x04\xc7\x11\xaf\x3b\xe3\xbe\x30\ \x26\xbc\x5c\x5d\x3f\x97\x73\xe8\x0e\x00\x84\xe8\x40\x98\x48\xf8\ \xc6\xf1\xf9\x11\x87\xe9\x49\x3a\x0f\x7d\x3e\x80\x5e\x1a\x86\x0f\ \x12\x35\x49\xef\xdf\x00\xb8\x79\x4b\x82\xf7\x3a\x20\x78\x9b\x9e\ \x27\x21\x99\xa6\x58\x21\x9c\xc1\xcb\x52\x11\x4c\x3a\x98\xff\x14\ \x24\x97\x87\x16\xb3\xed\x8b\x54\x2c\x57\xe9\x2f\xfb\xe8\xc5\x57\ \x90\x4a\x01\xa1\x8c\x5f\x8f\x5d\x19\x11\xd1\xfd\x9d\xdf\x4c\x87\ \x6f\xba\x03\x90\x5a\xd3\x77\xb8\x67\xae\x7f\x4b\xaf\xef\x7a\x5c\ \xf7\x38\x66\xc6\x35\xeb\x63\x0d\xc3\xdc\xbd\x3b\xd3\x20\xa5\xa0\ \x87\x31\xfe\xf1\x16\xbe\xcc\x73\x0c\xe1\x88\x9e\xef\xc6\x59\x1f\ \xdc\x9e\x20\xc8\xc8\x11\xf2\x73\xf5\xee\xf4\xf8\x04\x83\x81\xb1\ \xa9\x39\x2e\x16\x7f\xc8\x21\x87\x33\x0d\xcc\x7b\x85\xaa\x71\x89\ \x10\xc6\x96\x77\x7e\x40\x09\xce\x75\x24\xb0\xe0\x15\x97\x00\xbd\ \x0b\x01\xd9\xe0\xc5\xba\xff\x7d\x68\x70\x86\x45\x30\x32\x33\x18\ \x9a\xbd\xaf\x0e\x7e\xa6\xf4\x1f\x7f\x4f\xad\x52\xb7\x8c\xdd\x5a\ \x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\ \x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\ \x31\x3a\x34\x39\x3a\x30\x34\x2b\x30\x38\x3a\x30\x30\x0d\x55\x32\ \x5f\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\ \x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\ \x32\x31\x3a\x34\x33\x3a\x31\x34\x2b\x30\x38\x3a\x30\x30\xab\x23\ \x00\xfb\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\ \x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\ \x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\ \x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\ \x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\ \x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\ \x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\ \x31\xa7\xff\xbb\x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\ \x74\x00\x36\x34\xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\ \x64\x74\x68\x00\x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\ \x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\ \x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\ \x69\x6d\x65\x00\x31\x33\x37\x38\x37\x33\x34\x31\x39\x34\x73\x18\ \xb5\x0a\x00\x00\x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\ \x3a\x53\x69\x7a\x65\x00\x32\x33\x31\x31\x42\xd3\x08\x42\x88\x00\ \x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\ \x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\ \x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\ \x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\ \x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\ \x2f\x73\x72\x63\x2f\x31\x31\x32\x35\x39\x2f\x31\x31\x32\x35\x39\ \x39\x37\x2e\x70\x6e\x67\x07\xf9\x08\xdc\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x23\xbc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x07\x74\x49\ \x4d\x45\x07\xde\x06\x09\x11\x27\x11\xbb\x39\x36\x05\x00\x00\x21\ \x3a\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x98\x5d\x55\x99\xef\xf1\ \xdf\xca\xc0\x98\x5c\x03\x08\x21\x15\x07\x1a\x11\x22\x7d\xbd\xa8\ \x84\x80\x02\x09\x82\x10\xbb\x89\x19\x80\x40\xe8\xee\x38\x3c\xad\ \x10\xba\x99\x91\x41\x54\xe0\x32\x87\x08\xf6\x6d\x44\x41\x64\xb6\ \x15\xaa\x1a\x52\x61\xe8\x06\x82\x5c\x40\x6c\x49\x50\x2e\xd0\x4d\ \x98\x12\xe4\xa2\x56\x20\x44\xc4\x00\x61\x88\xc9\xea\x3f\x52\xd3\ \xae\x3a\xe7\xd4\x19\xf6\xda\xef\xde\x6b\x7f\x3f\x79\x78\x48\x6a\ \x38\xeb\xdd\x87\xec\x1f\x6f\xad\xf3\x9e\xbd\x9d\x17\x80\xb2\x1a\ \x66\x5d\x00\x00\x3b\x04\x00\x50\x62\x23\xac\x0b\x80\xe4\xb6\x52\ \x9b\xc6\x69\xbd\x56\xaa\xcb\xaf\xb1\xae\x06\x65\xe2\xd8\x03\xb0\ \xe0\x9c\xf6\xd0\x74\xed\xa2\x36\x8d\xd3\x38\x6d\xd6\xef\x53\x6f\ \x69\xa5\xba\xb4\x52\x4f\xa8\xd3\x3f\x6d\x5d\x27\x62\x47\x00\x64\ \xcc\x8d\xd4\x7e\x9a\xa5\xe9\x1a\x5f\xc7\x17\x3f\xa7\x4e\x75\xea\ \x11\xcf\x7f\x24\x04\x42\x00\x64\xc8\xed\xa9\xe3\x75\xb0\xde\xd7\ \xe0\xb7\xbd\xac\x45\xba\xd4\x3f\x6f\x5d\x3d\x62\x44\x00\x64\xc4\ \x7d\x54\x17\xea\xb0\xa6\xbf\xfd\xcf\xba\x5a\xff\xdb\xbf\x62\x7d\ \x14\x88\x0d\x01\x90\x01\x37\x56\x67\xeb\x6b\x2d\x6f\xb8\xbe\xa5\ \x4b\xb5\xc0\xbf\x69\x7d\x34\x88\x09\x01\x10\x98\xdb\x5c\x67\xe8\ \x14\x6d\x99\xd2\xc3\xad\xd2\xb9\xfa\x81\xdf\x60\x7d\x54\x88\x05\ \x01\x10\x94\x1b\xaf\x45\xda\x3d\xe5\x07\xbd\x43\x7f\xeb\xdf\xb0\ \x3e\x32\xc4\x81\x00\x08\xc8\xed\xa9\x4e\x6d\x1f\xe0\x81\x9f\xd2\ \x74\xff\x82\xf5\xd1\x21\x06\x4c\x02\x06\xe3\xe6\xea\xc1\x20\xa7\ \xbf\xf4\x97\x5a\xea\x3e\x6b\x7d\x7c\x88\x01\x01\x10\x84\x1b\xe6\ \x16\xe8\x46\x6d\x1a\x6c\x81\x6d\x74\xaf\xfb\x07\xeb\xa3\x44\xf1\ \xf1\x23\x40\x10\xee\x5a\x7d\x25\x83\x65\x4e\xf7\x97\x58\x1f\x29\ \x8a\x8d\x00\x08\xc0\x9d\xa4\xcb\x32\x59\x68\x83\x66\xf8\x3b\xad\ \x8f\x16\x45\x46\x00\xa4\xce\x4d\xd5\x5d\x1a\x9e\xd1\x62\x6f\x68\ \x2f\xbf\xcc\xfa\x88\x51\x5c\x04\x40\xca\xdc\x2e\x5a\xd2\xf0\xb0\ \x6f\x2b\x56\x68\x92\x7f\xcd\xfa\xa8\x51\x54\x6c\x02\xa6\xca\x8d\ \xd1\xed\x99\x9e\xfe\xd2\x47\xd4\xe1\x78\x53\x37\x9a\x44\x00\xa4\ \xeb\x06\xed\x9c\xf9\x9a\xfb\xeb\x02\xeb\xc3\x46\x51\xf1\x23\x40\ \x8a\xdc\x01\xba\xcf\x64\xe1\xf7\x34\xc1\xff\xc6\xfa\xe8\x51\x44\ \x74\x00\xa9\x71\x4e\xf3\x8d\x96\xde\x44\xe7\x5b\x1f\x3d\x8a\x89\ \x00\x48\xcf\x11\xa9\x4f\xfd\xd7\xef\x48\xf7\x49\xeb\xc3\x47\x11\ \xf1\x23\x40\x4a\xdc\x48\x3d\xa3\x1d\x0d\x0b\x58\xec\x0f\xb2\x7e\ \x0e\x50\x3c\x74\x00\x69\x99\x67\x7a\xfa\x4b\x07\xba\x03\xad\x9f\ \x02\x14\x0f\x1d\x40\x2a\xdc\x26\xfa\x9d\xb6\x35\x2e\x62\x89\xdf\ \xcb\xfa\x79\x40\xd1\xd0\x01\xa4\x63\x7f\xf3\xd3\x5f\xda\xd3\xed\ \x60\x5d\x02\x8a\x86\x00\x48\xc7\x4c\xeb\x02\x72\x54\x05\x0a\x84\ \x00\x48\x81\x73\x9a\x6e\x5d\x83\x24\x02\x00\x0d\x63\x0f\x20\x05\ \x6e\x2f\xfd\xd2\xba\x06\x49\xd2\x06\x8d\xf5\xab\xad\x8b\x40\x91\ \xd0\x01\xa4\x61\xa6\x75\x01\xdd\x86\xe9\x29\x77\x11\x13\x01\xa8\ \x1f\x1d\x40\x0a\xdc\x33\xda\xc5\xba\x86\x84\x15\xea\x50\xbb\xff\ \x7f\xd6\x65\x20\xff\x08\x80\x96\xb9\xb1\x7a\xd9\xba\x86\x8a\x56\ \xa8\x5d\x1d\xc4\x00\x6a\x21\x00\x5a\xe6\x3e\xa9\xc7\xac\x6b\xa8\ \x61\xb9\x3a\x88\x01\x54\x43\x00\xb4\xcc\x1d\xac\xfc\x5f\x96\x8b\ \x18\x40\x45\x6c\x02\xb6\x6e\x9c\x75\x01\x75\xd8\x49\xdf\xd0\x63\ \xee\x79\x77\x21\x5b\x84\xe8\x8f\x00\x68\x5d\x9b\x75\x01\x75\x23\ \x06\x30\x00\x01\xd0\xba\xe2\x04\xc0\x46\xc4\x00\x7a\xb1\x07\xd0\ \x22\xf7\x01\x3d\x1a\xe8\xfe\x3f\x59\x60\x6f\xa0\xe4\x08\x80\x16\ \xb8\xe1\x3a\x4e\xe7\x69\x94\x75\x1d\x2d\x5b\xae\x0e\xb5\xfb\xc7\ \xad\xcb\x40\xf6\x08\x80\xa6\xb9\xdd\xf5\x43\x7d\xca\xba\x8a\x14\ \x11\x03\x25\x44\x00\x34\xc5\x8d\xd2\xf9\x3a\x36\xb3\xdb\x7f\x64\ \x89\x18\x28\x15\x02\xa0\x09\x6e\xa6\x2e\xd7\x07\xac\xab\x08\x8a\ \x18\x28\x09\x02\xa0\x41\xee\x83\xba\x5c\x33\xac\xab\xc8\xc8\x72\ \xb5\xab\x83\x18\x88\x19\x01\xd0\x80\x68\x36\xfd\x1a\x43\x0c\x44\ \x8c\x00\xa8\x5b\x74\x9b\x7e\x8d\x79\x5e\x1d\xc4\x40\x7c\x08\x80\ \xba\x44\xbc\xe9\xd7\x18\x62\x20\x32\x04\x40\x1d\x4a\xb0\xe9\xd7\ \x18\x62\x20\x1a\x04\xc0\x10\x4a\xb5\xe9\xd7\x18\x62\x20\x02\x04\ \x40\x0d\x25\xdd\xf4\x6b\x0c\x31\x50\x68\x04\x40\x55\x25\xdf\xf4\ \x6b\xcc\xf3\xea\x50\xbb\x7f\xc2\xba\x0c\x34\x8a\x00\xa8\xc8\x8d\ \xd6\x79\x6c\xfa\x35\x8c\x18\x28\x1c\x02\xa0\x02\x36\xfd\x5a\x42\ \x0c\x14\x08\x01\x30\x00\x9b\x7e\x29\x21\x06\x0a\x81\x00\xe8\x87\ \x4d\xbf\xd4\x3d\xaf\x76\x75\x10\x03\xf9\x45\x00\xf4\x62\xd3\x2f\ \x18\x62\x20\xb7\x08\x00\x49\x6c\xfa\x65\xe2\x39\x75\x10\x03\x79\ \x43\x00\x88\x4d\xbf\x4c\x11\x03\xb9\x52\xfa\x00\x60\xd3\xcf\x04\ \x31\x90\x13\xa5\x0e\x00\x36\xfd\x8c\x11\x03\xe6\x4a\x1c\x00\x6c\ \xfa\xe5\x04\x31\x60\xa8\xa4\x01\xc0\xa6\x5f\xee\x3c\xa7\x0e\xb5\ \xfb\x27\xad\xcb\x28\x9b\x52\x06\x00\x9b\x7e\xb9\x15\x2c\x06\xdc\ \x36\x1a\xaf\xcd\xd4\xa5\x97\xfd\x9f\xad\x0f\x32\x4f\x4a\x17\x00\ \x6c\xfa\x15\x40\x2a\x31\xe0\xb6\xd2\x5f\x6b\x77\xb5\x69\xbc\xc6\ \xab\x4d\x9b\x76\x7f\x78\x83\x5e\xd1\xef\xd5\xa5\xdf\xeb\x39\xdd\ \xe5\x9f\xb7\x3e\x54\x6b\xa5\x0a\x00\x36\xfd\x0a\xa5\xe9\x18\x70\ \x7f\xa1\xe9\x9a\xae\xc9\x1a\x31\xe4\x97\x3e\xad\x45\xba\x5d\x4b\ \xfc\x06\xeb\x83\xb5\x52\xa2\x00\x60\xd3\xaf\x90\x9e\x53\xbb\x3a\ \xea\x8d\x01\xb7\xad\x8e\xd5\x2c\x7d\xbc\xc1\x35\x5e\xd1\x9d\xba\ \xd2\xff\xca\xfa\x50\x2d\x94\x24\x00\xd8\xf4\x2b\xb8\x3a\x62\xc0\ \x6d\xa9\x93\x75\xaa\x46\x37\xb9\x82\x57\xbb\xbe\xe9\x57\x58\x1f\ \x68\xd6\x4a\x11\x00\xd1\x6d\xfa\xfd\x42\xaf\xe8\xf3\xda\xc2\xba\ \x8c\xcc\x55\x8d\x01\x37\x42\x5f\xd5\xd9\x2d\xdf\xa4\x75\x9d\xae\ \xd2\x79\x7e\x95\xf5\x61\x66\xca\x47\xfe\x4b\x1f\x54\xa7\x79\x11\ \x69\xfe\xda\xa0\x6f\x7a\x79\x69\x0b\xcd\x56\xbb\xde\x32\xaf\x27\ \xfb\x5f\xcf\xe8\x3c\xfd\xaf\xc4\x7f\xe3\x43\xf4\x6c\x6a\x8f\xbe\ \x46\x67\x69\x73\xeb\x43\xcc\xee\x97\x79\x01\x41\x0f\x6e\xb8\x4e\ \xd4\x1b\xe6\x65\xa4\xf9\xeb\x7e\xed\x91\x38\xc2\xd2\xc7\x80\x46\ \xe8\xfb\xa9\x3f\xf6\x63\xfa\x80\xf5\xe1\x65\xf5\x2b\xe2\x1f\x01\ \xa2\xdb\xf4\x7b\x52\x67\xf8\x7f\xaf\x78\xa4\x5b\xe8\x60\xcd\xd6\ \xc1\x25\xfc\xa1\x60\xb9\x46\x68\x87\x00\x8f\xfb\xb2\x66\xf9\x47\ \xac\x0f\x2e\x0b\x91\x06\x40\x4e\x37\xfd\xde\xed\x7d\x35\xba\x51\ \x2f\xe9\xdb\xfa\x71\xed\x17\xab\x4a\x1c\x03\x21\xbc\xab\xaf\xfa\ \x1f\x5b\x17\x11\x5e\x94\x01\xe0\x66\xe9\x9f\x73\xb7\xe9\xf7\xac\ \xe6\xe9\x71\xcd\xd5\xcc\xba\x5e\x9f\xee\xf3\xb6\x16\x6b\xa1\x7e\ \xea\xdf\xad\xf3\xd8\x89\x81\xf4\xcc\xd7\x99\xb1\x4f\x08\x44\x17\ \x00\xee\x83\xfa\x9e\xa6\x5b\x57\x31\xc0\xbb\xba\x48\x17\xf9\xf7\ \xba\x2b\xdc\x5a\xd3\x34\x53\x53\x87\x3c\x45\x5f\xd3\x9d\xea\xd4\ \x3d\x7e\x6d\x13\xcf\x02\x31\x90\x8e\x1b\xfc\x97\xad\x4b\x08\x2b\ \xaa\x00\x70\xc3\x75\xbc\xce\xcd\xdd\xa4\xdf\xff\xd5\x3c\xff\xdc\ \xa0\x5a\x37\xd7\x01\xda\x45\x6d\x1a\xd7\xfd\xcf\x28\x49\x7f\x52\ \x97\xba\xb4\x52\x5d\x5a\xa9\x27\xf4\xf3\x56\xa7\xd6\x89\x81\x14\ \x9c\xe6\x17\x58\x97\x10\x52\x44\x01\xe0\x26\xea\xaa\xdc\x6d\xfa\ \xad\xd6\xd7\xfd\x0d\x75\x55\x3f\x4a\xeb\xfd\xdb\x21\x4a\x20\x06\ \x5a\xb2\x41\x5f\xf0\xff\x66\x5d\x44\x38\x91\x04\x80\x1b\xad\xf3\ \x75\xac\x86\x59\xd7\x31\xc0\x75\x3a\xd5\xff\xc1\xba\x88\x8d\x88\ \x81\xa6\xad\xd1\x5e\xfe\x69\xeb\x22\x42\x89\x22\x00\x72\xb9\xe9\ \xf7\x8c\xe6\xf9\x07\xad\x8b\x18\x88\x18\x68\xca\x72\x4d\xf2\x7f\ \xb4\x2e\x22\x8c\xc2\x07\x40\x4e\x37\xfd\x2e\xd4\xc5\x3d\x9b\x7e\ \xf9\x43\x0c\x34\xec\x6e\xff\x57\xd6\x25\x84\x51\xe8\x00\x28\xd2\ \xa6\x5f\xfe\x10\x03\x0d\x99\xe6\xef\xb2\x2e\x21\x84\x02\x07\x40\ \x4e\x37\xfd\x4e\xf1\x37\x5a\x17\xd1\x08\x62\xa0\x4e\x4f\x69\x37\ \xbf\xde\xba\x88\xf4\x15\x34\x00\xd8\xf4\x4b\x17\x31\x50\x87\xaf\ \xfa\x6b\xac\x4b\x48\x5f\x21\x03\x80\x4d\xbf\x30\x88\x81\x9a\xba\ \xf4\xd1\x66\x86\xb2\xf2\xad\x70\x01\xc0\xa6\x5f\x68\xc4\x40\x55\ \xdf\xf2\x17\x58\x97\x90\xb6\x42\x05\x40\x4e\x37\xfd\xee\xd7\x31\ \x45\xd8\xf4\x6b\x0c\x31\x50\xc1\x1a\x7d\xc8\xff\xc9\xba\x88\x74\ \x15\x28\x00\xd8\xf4\xcb\x1e\x31\x30\xc0\xdf\xf8\x9f\x5a\x97\x90\ \xae\x82\x04\x00\x9b\x7e\x96\x88\x81\x5e\xb7\xf8\x39\xd6\x25\xa4\ \xab\x10\x01\xc0\xa6\x5f\x1e\x10\x03\x92\xd6\xe8\xfd\x7e\x9d\x75\ \x11\x69\xca\x7d\x00\xb0\xe9\x97\x2f\xa5\x8f\x81\x83\xfc\x62\xeb\ \x12\xd2\x94\xeb\x00\xc8\xed\xa6\xdf\xbc\xb2\xdf\x51\xa6\xc4\x31\ \x70\x85\x3f\xd6\xba\x84\x34\xe5\x38\x00\x72\xb9\xe9\xf7\xaa\x4e\ \xf1\x37\x59\x17\x91\x17\xa5\x8c\x81\x97\xfc\x87\xad\x4b\x48\x53\ \x4e\x03\x20\x97\x9b\x7e\x5e\xd7\xe9\x54\xff\x9a\x75\x19\x79\x53\ \xba\x18\xd8\x29\xa6\xdb\x87\xe4\x32\x00\xdc\x2c\x5d\xae\xf1\xd6\ \x55\x0c\xf0\x8c\x8e\xf6\x0f\x59\x17\x91\x5f\x25\x8a\x81\xfd\x62\ \xda\xfc\xcd\xd7\xff\x63\x25\xb9\x0f\xba\x45\xba\x2d\x67\xa7\xff\ \xbb\x3a\x4b\xbb\x71\xfa\xd7\xe2\xd7\xfa\x0e\x7f\xb8\xb6\xd5\xe1\ \xea\x50\x74\x03\xb3\x09\xe3\xac\x0b\x48\x53\xae\x02\xc0\x0d\x77\ \x27\x69\x59\xee\xf6\xfc\xef\xd7\xc7\xfd\x79\xe5\xdc\xf3\x6f\x54\ \x29\x62\xa0\xcd\xba\x80\x34\xe5\x28\x00\xdc\x44\x2d\xd5\x65\x39\ \xdb\xf3\x7f\x55\x5f\xf4\x07\x94\x7d\xcf\xbf\x51\x91\xc7\x00\x01\ \x90\x3e\x37\xda\xfd\x1f\x2d\xc9\xd9\x9e\xbf\xd7\xb5\x9a\xc0\x9e\ \x7f\xb3\xa2\x8d\x81\xa8\x7e\x04\xc8\xc5\x26\x20\x9b\x7e\xb1\x8b\ \x6a\x8b\xf0\x01\xff\x59\xeb\x12\xd2\x63\x1e\x00\x39\x9d\xf4\xbb\ \x40\xf3\xf9\xa9\x3f\x6d\x91\xc4\xc0\x93\x7e\x37\xeb\x12\xd2\x63\ \x1a\x00\x39\x9d\xf4\xfb\x99\x8e\xe1\xa7\xfe\x70\x0a\x1f\x03\xf7\ \xfb\x03\xac\x4b\x48\x8f\xe1\x1e\x80\x9b\xa8\x47\x73\xb9\xe9\xf7\ \x39\x4e\xff\x90\x0a\xbf\x37\xb0\xd2\xba\x80\x34\x19\x05\x40\xf7\ \xa6\xdf\x27\xad\x0f\x3f\x81\x4d\xbf\x0c\x15\x38\x06\xba\xac\x0b\ \x48\x53\x23\xf7\xa9\xad\xc0\x39\xed\xac\xb6\x7e\x77\xb8\x1b\xa3\ \x55\xbd\x77\xb7\xeb\xd2\x4b\xfe\xb7\x15\xbf\x2b\x8f\x9b\x7e\x4f\ \x6b\x1e\x9b\x7e\x59\xf3\x6b\xd5\xa1\x8e\x82\xfd\x50\x10\x55\x00\ \x34\xbd\x07\xe0\x36\xd3\x01\x9a\xa1\x2f\x68\xfb\x9a\x5f\xf6\xac\ \x16\x69\x91\x1e\xe9\xbb\xc9\x72\x2e\x37\xfd\xde\xd1\x85\x6c\xfa\ \x59\x2b\x4c\x0c\xcc\xf1\xb7\x58\x97\x90\x9e\x26\x02\xc0\x6d\xad\ \x69\x9a\xa1\xa9\xda\xb2\xee\x6f\x59\xa5\x3b\xb4\x48\x8b\xb5\x8e\ \x4d\x3f\xd4\x56\x80\x18\x98\xec\x7f\x6e\x5d\x42\x7a\x1a\x0c\x00\ \x37\x5a\xa7\xeb\xa4\x26\xff\xe3\xac\xd6\x5a\x7d\xc8\xfa\x80\x07\ \x78\x55\x27\xfb\x1f\x5b\x17\x81\x81\x72\x1d\x03\x7f\xe1\x5f\xb4\ \x2e\x21\x3d\x0d\x04\x80\x1b\xa9\xa3\x75\x96\xb6\xb5\x2e\x39\x35\ \x5e\xd7\xea\x34\xde\xde\x9b\x5f\xb9\x8c\x81\x17\xfc\x47\xac\x4b\ \x48\x53\xdd\xaf\x02\xb8\xc3\xb4\x4c\x97\x47\x74\xfa\x3f\xad\x29\ \xfe\xab\x9c\xfe\x79\xd6\xef\x95\x82\x07\xac\x6b\xe9\xb5\xc8\xba\ \x80\x74\xd5\xd5\x01\xb8\xed\x75\x8b\x26\x5b\x97\x9a\xa2\x77\x74\ \x81\x2e\x61\xd3\xaf\x38\xdc\x70\xad\xd2\xd6\xd6\x55\x48\x8a\xec\ \x6a\x00\x75\x75\x00\x6e\x77\x3d\x1a\xd5\xe9\xff\x33\x7d\xdc\x9f\ \xcf\xe9\x5f\x24\x7e\xbd\xee\xb0\xae\x41\x92\xf4\x07\x3d\x6c\x5d\ \x42\xba\x86\x0c\x00\x77\xa4\x7e\x9e\xbb\x4b\x72\x37\xef\x55\xcd\ \xf5\x9f\xf3\xcb\xad\xcb\x40\xc3\xf2\xd1\x7a\xdf\x15\xdb\x1d\x82\ \x6b\x06\x80\x1b\xe6\x2e\xd2\x4f\xb4\xb9\x75\x91\x29\xf1\xba\x46\ \x13\xd8\xf3\x2f\xa8\x7b\xf5\x8e\x75\x09\xca\x4b\x0c\xa5\xa8\x46\ \x00\xb8\x4d\xb4\x48\x67\x58\x17\x98\x1a\x36\xfd\x0a\xcd\xbf\xa5\ \x85\xd6\x35\x68\xb5\xee\xb1\x2e\x21\x6d\xb5\x3a\x80\x2b\x35\xcd\ \xba\xbc\x94\xbc\xa3\x6f\xeb\x13\x31\x8d\x6f\x94\xd2\x59\xb2\xbe\ \x27\xcf\xf9\xfe\x2d\xeb\x27\x21\x6d\x55\x03\xc0\x9d\xa4\xaf\x58\ \x17\x97\x92\xfb\xd8\xf4\x8b\x81\x5f\xae\xab\x4c\x0b\x78\x41\x3f\ \xb0\x7e\x0e\xd2\x57\xe5\x65\x40\x37\x55\x77\x69\xb8\x75\x71\x29\ \x60\xd2\x2f\x22\x6e\x3b\x2d\xd7\x68\xb3\xe5\x8f\xf4\x37\x5b\x3f\ \x03\xe9\xab\xd8\x01\xb8\x9d\x75\x73\x04\xa7\x3f\x9b\x7e\x91\xf1\ \xab\xb4\xc0\x70\xf9\x88\x6e\x07\xd2\xa7\x42\x07\xe0\xde\xa7\x25\ \xda\xc5\xba\xb0\x96\x3d\xad\xa3\xf9\xa9\x3f\x36\x6e\x4b\x2d\x1f\ \xe2\xfd\xa7\xe1\xdc\xe9\xbf\x60\x7d\xfc\xe9\xab\xd4\x01\x9c\x5d\ \xf8\xd3\x9f\x4d\xbf\x48\xf9\xb7\x74\xaa\xd9\xe2\xd3\xdc\x44\xeb\ \xe3\x4f\xdf\xa0\x0e\xc0\xed\xa0\x67\xb4\xa9\x75\x59\x2d\xb9\x4f\ \xc7\x30\xea\x13\x2f\xf7\x4f\x3a\xc1\x68\xe9\x08\x7b\x80\xc1\x01\ \x70\x93\xfe\xce\xba\xa8\x16\xac\xd2\xc9\xfe\x5f\xac\x8b\x40\x48\ \x6e\xb8\xfe\x5d\x07\x1a\x2d\x3e\xd1\xff\xda\xfa\xf8\xd3\x35\x20\ \x00\xdc\x27\xf4\x98\x9c\x75\x51\x4d\xf2\xba\x46\xa7\xf9\x3f\x5a\ \x97\x81\xd0\xdc\x18\x2d\xd5\x47\x4d\x96\x8e\xae\x07\x18\x18\x00\ \x77\x6b\xaa\x75\x49\x4d\x5a\xa6\x79\xfc\xd4\x5f\x16\x6e\x82\x1e\ \xd1\xfb\x4c\x96\x8e\xac\x07\x48\x6c\x02\xba\x03\x0a\x7a\xfa\xbf\ \xa3\x6f\xb1\xe9\x57\x26\xfe\x19\xcd\x91\xcd\x68\xd7\x39\xd6\xc7\ \x9e\xae\xe4\xab\x00\xc7\x58\x97\xd3\x94\xfb\xf4\x71\x7f\x81\xb7\ \x1e\x13\x45\xa6\xfc\xdd\xda\x5f\xab\x0c\x16\x9e\xe6\x76\xb7\x3e\ \xf6\x34\xf5\xfb\x11\xc0\x6d\xa6\xd5\x0d\x5c\xe8\x33\x1f\xd8\xf4\ \x2b\x31\xf7\x21\x2d\xd2\x27\x32\x5f\x36\xaa\x7d\x80\xfe\x1d\xc0\ \xe7\x0a\x76\xfa\x7b\xfd\x48\x13\x38\xfd\xcb\xcb\xbf\xa4\xbd\xf5\ \xaf\x99\x2f\x1b\x55\x0f\xd0\x3f\x00\x66\x5a\x17\xd3\x90\x65\x9a\ \xec\xbf\xc6\x9e\x7f\xb9\xf9\xb5\x3a\x5c\xe7\x28\xeb\x1b\x5c\x9e\ \x63\x7d\xdc\xe9\xe9\xfd\x11\xc0\x0d\xd3\x4a\x6d\x67\x5d\x4e\x9d\ \xde\xd1\xf9\xba\x84\x9f\xfa\xb1\x91\xdb\x5b\x97\xe8\x33\x99\x2e\ \x19\xcd\x6b\x01\x7d\x1d\xc0\xa7\x0b\x73\xfa\x2f\x66\xd3\x0f\xfd\ \xf9\x5f\xf8\xbd\x35\x4b\xcf\x64\xb8\xe4\x39\xd6\xc7\x9c\x96\xbe\ \x00\x28\xc6\xc6\xc6\x2a\xfd\x9d\x3f\x88\x41\x5f\x0c\xe4\x3b\xf5\ \x3f\x75\x54\x66\xf7\xed\x8b\x66\x1f\xa0\x2f\x00\x6c\x26\xab\x1a\ \xc1\xa6\x1f\x6a\xf0\xeb\xfd\xd5\xfa\xa8\xfe\x51\xf7\x65\x72\xe5\ \xa0\x73\xac\x8f\x37\x1d\x7d\x7b\x00\xbf\xd4\x5e\xd6\xc5\xd4\xb4\ \x4c\x47\xfb\xc8\x2e\xc9\x8c\x30\xdc\x18\x1d\xac\x99\xfa\x7c\xe0\ \xbb\x50\x46\xb1\x0f\xd0\x17\x00\x2f\xea\xc3\xd6\xc5\x54\xc5\xa6\ \x1f\x1a\xe6\x36\xd5\x01\xda\x5d\x6d\x9a\xa8\x30\x6f\xe3\x8d\x62\ \x1e\xa0\x3b\x00\x9c\xd3\x3b\xda\xc4\xba\x98\x2a\x16\xeb\x18\x1f\ \xe5\xd5\x58\x90\x05\x37\x4c\xff\xa9\x5d\x83\x3c\x74\x04\x3d\x40\ \xcf\x1e\xc0\xd6\x39\x3d\xfd\x57\xe9\x6f\xfd\x41\x9c\xfe\x68\x9e\ \xdf\xa0\xf3\x02\x3d\xf4\x39\xd6\xc7\xd6\xba\x9e\x00\x68\xb3\x2e\ \xa4\x02\xaf\xab\x35\xc1\xff\xc4\xba\x0c\x14\x5e\xbb\x96\x05\x79\ \xdc\x08\x5e\x0b\xe8\x09\x80\x71\xd6\x85\x0c\xb2\x4c\x93\xfd\x51\ \x4c\xfa\xa1\x75\xf4\x00\xd5\xf5\x04\xc0\xbb\xd6\x85\x0c\x70\xb6\ \x3e\xc1\x9e\x3f\x52\x43\x0f\x50\x45\x4f\x00\x64\x35\x40\x51\x9f\ \xd7\xfd\xb9\xec\xf9\x23\x3d\x01\x7b\x80\xb3\xad\x8f\xad\x35\x3d\ \x01\xb0\xd2\xba\x90\x84\xdf\x59\x17\x80\xe8\x84\xea\x01\xbe\x50\ \xec\x1e\xa0\x3b\x00\xfc\x9b\x7a\xc3\xba\x94\x7e\xf2\x15\x47\x88\ \x00\x3d\x40\x65\x7d\xa3\xc0\x79\xfa\x21\x20\x4f\xb5\x20\x16\xf4\ \x00\x15\xf4\x05\x40\x9e\xfe\xaf\x9b\xa7\x5a\x10\x09\x7a\x80\x4a\ \xe8\x00\x50\x1e\xf4\x00\x83\xf4\x05\x40\x9e\x86\x1a\xf3\x54\x0b\ \xa2\x41\x0f\x30\x58\xdf\x9b\x81\x76\xcc\xcd\xdd\x4f\x5f\x51\x9b\ \xdf\x60\x5d\x04\x62\xc4\xfb\x02\x06\xea\xed\x00\xfc\x0b\xfa\x2f\ \xeb\x62\xba\xdd\xc1\xe9\x8f\x30\xe8\x01\x06\xea\x7f\x51\xd0\x4e\ \xeb\x62\x72\x56\x07\x62\xc4\x3e\x40\x42\xfe\x02\xe0\x4d\xdd\x67\ \x5d\x02\xe2\x45\x0f\x90\xd4\x2f\x00\xfc\xaf\xf5\x5b\xeb\x72\x24\ \xdd\xed\xf3\xf6\xbe\x04\xc4\x85\x1e\xa0\x9f\xe4\xad\xc1\x3a\xad\ \xcb\x91\xb4\xd0\xba\x00\xc4\x8d\x1e\xa0\xbf\xc4\xdd\x81\xdd\x87\ \xf5\xac\x36\x35\xad\x67\xb9\x76\xe5\x6d\x40\x08\x8b\xd7\x02\xfa\ \x24\x3a\x00\xff\xff\x75\x85\x71\x3d\x67\x72\xfa\x23\x34\x7a\x80\ \x3e\x2e\x79\x57\x25\xb7\xb5\x5e\x30\xba\xef\xba\x24\x3d\xea\x27\ \x59\x3f\x21\x28\x03\x7a\x80\x1e\xc9\x3d\x00\xf9\xd7\x74\xb1\x61\ \x35\xa7\x99\x3e\x17\x28\x0d\x7a\x80\x1e\x6e\xe0\x7d\x15\xdd\xe6\ \x7a\x5e\xe3\x4d\x6a\xf9\x37\x7f\xb0\xf5\xd3\x81\xb2\xa0\x07\xd8\ \x68\xd8\xc0\x0f\xf8\xb7\x75\x96\x49\x25\xeb\x75\x86\xf5\x93\x81\ \xf2\xa0\x07\xd8\xc8\x55\xba\xb3\xb2\xfb\x89\x8e\xcc\xbc\x92\x13\ \xfc\x3f\x5b\x3f\x19\x28\x13\x7a\x00\xa9\x42\x07\x20\x49\xfa\x7b\ \xfd\x2a\xe3\x3a\xae\xe6\xf4\x47\xb6\xe8\x01\xa4\x2a\x1d\x80\xe4\ \xc6\xeb\xd1\x0c\x2f\x15\xfe\xa0\x0e\xe4\xe5\x3f\x64\x8d\x1e\xa0\ \x5a\x07\x20\xff\x7b\xcd\xca\xec\x52\xe1\xbf\xd1\xa1\x9c\xfe\xc8\ \x1e\x3d\x40\xd5\x0e\x40\x92\xdc\x5c\xdd\x98\x41\x05\x6f\xe8\xd3\ \xfe\x29\xeb\xa7\x01\xe5\x44\x0f\x30\xac\xfa\xa7\xfc\x4d\x3a\x3a\ \xf8\x9d\xd6\x5f\xd1\x54\x4e\x7f\x58\xa1\x07\xa8\xd1\x01\x48\x92\ \xdb\x57\xb7\x6a\xdb\x60\xab\x3f\xa6\x19\x9e\x7b\x00\xc0\x50\xd9\ \x7b\x80\x61\xb5\x3f\xed\x7f\xae\x89\x7a\x3c\xd0\xda\xed\xda\x87\ \xd3\x1f\xb6\xca\xde\x03\x0c\xd1\x01\x48\x92\xdb\x42\xd7\x6b\x76\ \xca\xeb\x7a\x9d\xe5\xcf\xb7\x3e\x78\xa0\xec\x3d\xc0\xb0\xa1\xbf\ \xc4\xaf\xf5\x87\xeb\xba\x94\xd7\x3d\x92\xd3\x1f\xf9\x50\xee\x1e\ \xa0\x8e\x0e\x40\x92\xdc\xcc\x94\x2f\xd4\xb1\x95\x7f\xdd\xfa\xd0\ \x81\x8d\xca\xdc\x03\xd4\xd1\x01\x00\x71\x2b\x73\x0f\x40\x00\x00\ \x25\xbe\x4e\x20\x01\x00\x94\xb8\x07\x20\x00\x00\xa9\xb4\x3d\x00\ \x01\x00\xa8\xbc\x3d\x00\x01\x00\x6c\x54\xca\x1e\x80\x00\x00\x24\ \x95\xb5\x07\x20\x00\x80\x1e\xe1\x7a\x80\x4f\x59\x1f\x5a\x35\x04\ \x00\xd0\x2d\x60\x0f\x70\x8e\xf5\xb1\x55\x43\x00\x00\x7d\x4a\xd7\ \x03\x10\x00\x40\xaf\xf2\xf5\x00\x04\x00\xd0\x5f\xc9\x7a\x00\x02\ \x00\xe8\xa7\x6c\x3d\x00\x01\x00\x24\x95\xaa\x07\x20\x00\x80\x84\ \x72\xf5\x00\x04\x00\x30\x50\x89\x7a\x00\x02\x00\x18\xa0\x4c\x3d\ \x00\x01\x00\x0c\x56\x9a\x1e\x80\x00\x00\x06\x29\x4f\x0f\x40\x00\ \x00\x95\x94\xa4\x07\x20\x00\x80\x0a\xca\xf2\xde\x40\x02\x00\xa8\ \x2c\x54\x0f\x30\x3d\x4f\x3d\x00\x01\x00\x54\x54\x8e\x1e\x80\x00\ \x00\xaa\x29\x41\x0f\x40\x00\x00\x55\x94\xa1\x07\x20\x00\x80\xea\ \xa2\xef\x01\x08\x00\xa0\xaa\xf8\x7b\x00\x02\x00\xa8\x25\xf2\x1e\ \x80\x00\x00\x6a\x88\xbd\x07\x20\x00\x80\xda\xa2\xee\x01\x08\x00\ \xa0\xa6\xb8\x7b\x00\x02\x00\x18\x4a\xc4\x3d\x00\x01\x00\x0c\x21\ \xe6\x1e\x80\x00\x00\x86\x16\x6d\x0f\x40\x00\x00\x43\x8a\xb7\x07\ \x20\x00\x80\x7a\x44\xda\x03\x10\x00\x40\x1d\x62\xed\x01\x08\x00\ \xa0\x3e\x51\xf6\x00\x04\x00\x50\x97\x38\x7b\x00\x02\x00\xa8\x57\ \x84\x3d\x00\x01\x00\xd4\x29\xc6\x1e\x80\x00\x00\xea\x17\x5d\x0f\ \x40\x00\x00\x75\x8b\xaf\x07\x20\x00\x80\x46\x44\xd6\x03\x10\x00\ \x40\x03\x62\xeb\x01\x08\x00\xa0\x31\x51\xf5\x00\x04\x00\xd0\x90\ \xb8\x7a\x00\x02\x00\x68\x54\x44\x3d\x00\x01\x00\x34\x28\xa6\x1e\ \x80\x00\x00\x1a\x17\x4d\x0f\x40\x00\x00\x0d\x8b\xa7\x07\x20\x00\ \x80\x66\x44\xd2\x03\x10\x00\x40\x13\x62\xe9\x01\x08\x00\xa0\x39\ \x51\xf4\x00\x04\x00\xd0\x94\x38\x7a\x00\x02\x00\x68\x56\x04\x3d\ \x00\x01\x00\x34\x29\x86\x1e\x80\x00\x00\x9a\x57\xf8\x1e\x80\x00\ \x00\x9a\x56\xfc\x1e\x80\x00\x00\x5a\x51\xf0\x1e\x80\x00\x00\x5a\ \x50\xf4\x1e\x80\x00\x00\x5a\x53\xe8\x1e\x80\x00\x00\x5a\x52\xec\ \x1e\x80\x00\x00\x5a\x15\xae\x07\xf8\x64\xe8\xd2\x09\x00\xa0\x45\ \x01\x7b\x80\x73\x42\xd7\x4e\x00\x00\xad\x2b\x6c\x0f\x40\x00\x00\ \x2d\x2b\x6e\x0f\x40\x00\x00\x69\x28\x68\x0f\x40\x00\x00\x29\x28\ \xea\x6b\x01\x04\x00\x90\x8e\x50\x3d\xc0\x8c\x90\x3d\x00\x01\x00\ \xa4\xa2\x98\x3d\x00\x01\x00\xa4\xa5\x80\x3d\x00\x01\x00\xa4\xa4\ \x88\x3d\x00\x01\x00\xa4\xa7\x70\x3d\x00\x01\x00\xa4\xa6\x78\x3d\ \x00\x01\x00\xa4\xa9\x60\x3d\x00\x01\x00\xa4\xa8\x68\x3d\x00\x01\ \x00\xa4\xab\x50\x3d\x00\x01\x00\xa4\xaa\x58\x3d\x00\x01\x00\xa4\ \xad\x40\x3d\x00\x01\x00\xa4\xac\x48\x3d\x00\x01\x00\xa4\xaf\x30\ \x3d\x00\x01\x00\xa4\xae\x38\x3d\x00\x01\x00\x84\x50\x90\x1e\x80\ \x00\x00\x02\x28\x4a\x0f\x40\x00\x00\x61\x14\xa2\x07\x20\x00\x80\ \x20\x8a\xd1\x03\x10\x00\x40\x28\x05\xe8\x01\x08\x00\x20\x90\x22\ \xf4\x00\x04\x00\x10\x4e\xee\x7b\x00\x02\x00\x08\x26\xff\x3d\x00\ \x01\x00\x84\x14\xae\x07\x78\xde\xdd\xe3\xae\x73\x5f\x76\xef\x6f\ \xe5\x61\x9c\xaf\xef\xcb\x66\x6a\x61\xaa\xe5\x6f\xe5\x5f\x0f\xf2\ \xb4\x00\x39\xe3\xe6\xe8\xa7\x41\x17\x58\xaf\x87\xd5\xa9\x4e\xff\ \x62\x33\xdf\x4c\x07\x00\x84\x15\xaa\x07\xe8\x31\x5c\x53\xf4\x5d\ \xfd\xc6\x3d\xee\xce\x70\xa3\x1a\xfd\x66\x02\x00\x08\x2a\xe0\x3e\ \x40\xd2\x6e\xba\x48\xcb\xdd\x3f\xb8\x91\x8d\x7c\x13\x01\x00\x84\ \x16\xba\x07\xe8\x33\x56\x57\x68\x99\x9b\x5d\xff\x37\x10\x00\x40\ \x60\x99\xf5\x00\x1b\xed\xa4\x76\xb7\xd4\xed\x53\xdf\x17\x13\x00\ \x40\x78\xd9\xf5\x00\x1b\xed\xa1\x07\xdc\x29\xf5\x7c\x21\x01\x00\ \x04\x97\x71\x0f\x20\x49\xc3\xf5\x1d\x77\xa3\xdb\x74\xa8\x2f\x23\ \x00\x80\x2c\x64\xdd\x03\x48\xd2\x5c\x3d\xe4\xda\x6a\x7f\x09\x01\ \x00\x64\xc0\xa0\x07\x90\xa4\x49\x7a\xd4\x4d\xaa\xf5\x05\x04\x00\ \x90\x0d\x8b\x1e\x40\x6a\xd3\x83\xb5\x22\x80\x00\x00\x32\x61\xd4\ \x03\x48\x9b\x69\x61\xf5\x1f\x04\x08\x00\x20\x2b\x36\x3d\x80\xd4\ \xa6\x85\xd5\xb6\x03\x09\x00\x20\x23\x66\x3d\x80\x34\x49\x57\x57\ \xfe\x04\x01\x00\x64\xc7\xaa\x07\x90\xe6\x56\x9e\x0b\x20\x00\x80\ \xcc\x18\xf6\x00\xd2\xfc\x4a\xd3\x81\x04\x00\x90\x25\xbb\x1e\x60\ \xb8\x2e\x1b\xfc\x41\x02\x00\xc8\x90\xdf\xa0\x1f\x9a\x2d\xbe\xc7\ \xe0\xb7\x09\x11\x00\x40\xb6\x3e\x63\xb8\xf6\x85\x03\xdf\x2c\x4c\ \x00\x00\x19\x72\x13\xd5\xc0\x9b\x75\x53\xb7\x93\xbe\x96\xfc\x00\ \x01\x00\x64\x69\xbe\x9c\xe9\xfa\x67\x25\xaf\x1a\x44\x00\x00\x99\ \x71\xfb\x69\x7f\xe3\x12\xc6\xea\xd8\xfe\x7f\x24\x00\x80\xec\xcc\ \xb1\x2e\x60\x60\x0d\x04\x00\x90\x11\xe7\x34\xdd\xba\x06\x49\xbb\ \xb9\x1d\xfa\xfe\x40\x00\x00\x59\xd9\x53\xe3\xac\x4b\x90\x24\xcd\ \xec\xfb\x2d\x01\x00\x64\x65\xa6\x75\x01\x83\xeb\x20\x00\x80\xac\ \xcc\xb4\x2e\xa0\xdb\x3e\x7d\x77\x13\x22\x00\x80\x4c\xb8\x09\xda\ \xc5\xba\x86\x6e\xc3\x35\xad\xe7\xb7\x04\x00\x90\x8d\x29\xd6\x05\ \x54\xaa\x85\x00\x00\xb2\xd1\xd6\xfa\x43\xa4\x5f\x0b\x01\x00\x64\ \x83\x00\x00\x4a\x2c\x1f\x2f\x01\x0e\xa8\x85\x00\x00\xb2\x91\xa7\ \x0e\x60\x9b\x9e\x6b\x04\x12\x00\x40\x36\xf2\xd4\x01\xf4\x56\x43\ \x00\x00\x19\x70\x23\xb4\x9d\x75\x0d\x09\x04\x00\x90\xa1\xd1\x39\ \x3b\xd7\xc6\x6c\xfc\x57\xbe\x8a\x02\x62\xf5\xba\xd6\x59\x97\x90\ \xb0\x6a\xe3\xbf\x08\x00\x20\x03\xde\x6b\xa5\x75\x0d\x09\x5d\x1b\ \xff\x45\x00\x00\xd9\xc8\x53\x00\xac\xa7\x03\x00\xb2\xd5\x65\x5d\ \x40\x3f\xab\xfc\xfa\x8d\xbf\x21\x00\x80\x6c\xe4\xa9\x03\xe8\xad\ \x85\x00\x00\xb2\x91\xa7\x0e\xa0\xb7\x16\x02\x00\xc8\xc6\x4b\xd6\ \x05\x54\xaa\x85\x00\x00\xb2\x71\x9f\xbc\x75\x09\xbd\xee\xed\xf9\ \x0d\x01\x00\x64\xc2\xaf\xd4\x12\xeb\x1a\xba\xad\x25\x00\x80\xec\ \x75\x5a\x17\xd0\xed\x5e\xff\x76\xcf\x6f\x09\x00\x20\x2b\xbf\xb0\ \x2e\xa0\xdb\xc2\xbe\xdf\x12\x00\x40\x26\xdc\x48\x5d\x6c\x5d\x83\ \x24\x69\xbd\xee\xec\xfb\x03\x01\x00\x64\x63\x81\xf6\xb6\x2e\x41\ \x92\xf4\x90\x7f\xad\xef\x0f\x04\x00\x90\x01\x37\x47\x27\x58\xd7\ \xd0\xed\x86\xfe\x7f\x20\x00\x80\xe0\xdc\xae\xfa\x91\x75\x0d\xdd\ \x9e\xd2\x4d\xfd\xff\x48\x00\x00\x81\xb9\xd1\xba\x4d\x5b\x5a\x57\ \xd1\xed\x0c\xbf\xa1\xff\x1f\x09\x00\x20\xb4\xeb\x72\x73\x4b\x90\ \x87\xfc\x9d\xc9\x0f\x10\x00\x40\x50\xee\xeb\x3a\xd4\xba\x86\x5e\ \xa7\x0f\xfc\x00\x01\x00\x04\xe4\xa6\xe8\x22\xeb\x1a\x7a\xdd\xea\ \x1f\x19\xf8\x21\x02\x00\x08\xc6\xb5\xe9\x16\x8d\xb0\xae\xa2\xdb\ \xeb\x3a\x6d\xf0\x07\x09\x00\x20\x10\x37\x52\xed\x1a\x6b\x5d\x45\ \xb7\xf5\x9a\xe3\x5f\x18\xfc\x61\x02\x00\x08\x25\x2f\xa3\x3f\x92\ \x74\xaa\xbf\xa7\xd2\x87\x09\x00\x20\x08\x77\x44\x6e\x46\x7f\xa4\ \xeb\xfd\x77\x2b\x7f\x82\x00\x00\x02\x70\xbb\xea\x1a\xeb\x1a\x7a\ \xfd\x87\x8e\xae\xf6\x29\x02\x00\x48\x5d\xae\x46\x7f\x96\xeb\x10\ \xff\x5e\xb5\x4f\x12\x00\x40\xfa\xae\xcd\xcd\xe8\xcf\xfd\xda\xd3\ \xbf\x52\xfd\xd3\x04\x00\x90\x32\x77\x8a\x0e\xb3\xae\xa1\xdb\x15\ \x9a\xda\xff\xbd\x7f\x83\xe5\xe5\x35\x4a\x20\x12\x6e\x72\x4e\xde\ \xf7\xbf\x4e\xc7\xf9\xab\x86\xfa\x22\x02\x00\x48\x91\x1b\xa7\xf6\ \x5c\x9c\x55\xab\x75\x98\x7f\x70\xe8\x2f\xe3\x47\x00\x20\x35\x6e\ \x44\x2e\x46\x7f\xd6\xe9\x7b\xda\xb5\x9e\xd3\x9f\x0e\x00\x48\xd3\ \x02\xed\x63\x5c\x81\x57\xbb\xbe\xe9\x57\xd4\xfb\xe5\x04\x00\x90\ \x12\x77\x84\x4e\x34\x2e\xe1\x7e\x9d\xee\x7f\xd5\xc8\x37\x10\x00\ \x40\x2a\x8c\xaf\xfa\xb3\x52\xb7\xeb\x66\xff\x40\xa3\xdf\x46\x00\ \x00\x29\x70\xa3\x75\xab\x46\x99\x2c\xfd\xac\x3a\xd5\xa9\x25\xbe\ \xa9\xfb\x0e\x11\x00\x40\x1a\xae\xd5\x84\xc0\x2b\x78\xbd\xaa\xad\ \x34\x52\x1b\xf4\xaa\xba\xd4\xa5\x95\xea\x52\x97\x1e\xf4\xcf\xb4\ \xf2\xa0\x04\x00\xd0\xb2\x4c\x46\x7f\xbe\xe1\xe7\x3b\xa7\x31\x7a\ \xc3\xff\x39\xbd\x07\x25\x00\x80\x16\x65\x32\xfa\xd3\xa9\x4b\x24\ \xef\xf5\xc7\x74\x1f\x96\x39\x00\xa0\x25\x6e\x5c\x06\x57\xfd\x79\ \x5e\x5f\x6a\xee\x67\xfc\xa1\x10\x00\x40\x0b\xdc\x08\xb5\x6b\xfb\ \xc0\x8b\xac\xd5\xa1\x7e\x4d\x98\x87\x26\x00\x80\x56\x64\x31\xfa\ \x73\x94\xff\xcf\x50\x0f\x4d\x00\x00\x4d\x73\x87\x67\x30\xfa\x73\ \x85\xff\x97\x70\x0f\x4e\x00\x00\x4d\x72\x1f\xcb\xe0\xaa\x3f\x8f\ \xe8\xa4\x90\x0f\x4f\x00\x00\x4d\x71\xa3\x75\x5b\xf0\xd1\x9f\x57\ \x35\xdb\xaf\x0b\xb9\x00\x01\x00\x34\x27\xfc\xe8\xcf\x7a\xcd\xf1\ \xbf\x0b\xbb\x04\x01\x00\x34\xc1\x9d\x9c\xc1\xe8\xcf\x37\xfd\xfd\ \xa1\x97\x20\x00\x80\x86\xb9\xc9\x9a\x1f\x7c\x91\x4e\x5d\x12\xfe\ \x48\x08\x00\xa0\x41\x19\x8d\xfe\x7c\x39\xcc\xe8\x4f\x12\x01\x00\ \x34\x24\xb3\xd1\x9f\x3f\x65\x71\x34\x04\x00\xd0\x98\x4b\x8a\x3d\ \xfa\x93\x44\x00\x00\x0d\x70\x87\x87\x7d\x5d\x5e\x52\xe0\xd1\x9f\ \x24\x02\x00\xa8\x5b\x46\xa3\x3f\x27\x67\x77\x44\x04\x00\x50\x27\ \x37\x2a\xa3\xd1\x9f\xf7\x5a\x7f\x98\x7a\x11\x00\x40\xbd\xa2\x18\ \xfd\x49\x22\x00\x80\xba\xb8\x93\x35\x3b\xf8\x22\xdf\x0a\x3f\xfa\ \x93\x44\x00\x00\x75\x70\xfb\x66\x30\xfa\xb3\x28\x83\x35\x06\x20\ \x00\x80\x21\x65\x72\xc3\xaf\x60\x57\xfd\xa9\x85\x00\x00\x86\xe0\ \x46\xe8\x96\x78\x46\x7f\x92\x08\x00\x60\x28\x97\x68\xdf\xe0\x6b\ \x64\x36\xfa\x93\x44\x00\x00\x35\xb9\xd9\x71\x8d\xfe\x24\x11\x00\ \x40\x0d\xee\x63\xba\x36\xf8\x22\x99\x8e\xfe\x24\x11\x00\x40\x55\ \x6e\x54\x06\x37\xfc\xca\x78\xf4\x27\x89\x00\x00\xaa\xbb\x56\x1f\ \x0b\xbc\x42\xe6\xa3\x3f\x49\x04\x00\x50\x85\x3b\x29\xc6\xd1\x9f\ \x24\x02\x00\xa8\xc8\xed\x9b\xc1\x15\x79\x0c\x46\x7f\x92\x08\x00\ \xa0\x02\xb7\x7d\x06\xa3\x3f\xcb\x2d\x46\x7f\x92\x08\x00\x60\x90\ \x8c\xae\xfa\x73\x88\xc5\xe8\x4f\x12\x01\x00\x0c\x36\x3f\x83\xd1\ \x9f\xa3\x6d\x46\x7f\x92\x08\x00\x60\x00\x37\x3b\x83\xd7\xe5\xaf\ \xf0\x3f\xb6\x3e\x4e\x89\x00\x00\x06\x70\x13\xe2\x1e\xfd\x49\x22\ \x00\x80\x7e\x62\xbc\xea\x4f\x2d\x04\x00\xd0\xdf\x35\xb1\x8f\xfe\ \x24\x11\x00\x40\x2f\x77\x92\x0e\x0f\xbe\x88\xf1\xe8\x4f\x12\x01\ \x00\x74\x73\xfb\x94\x61\xf4\x27\x89\x00\x00\x24\x95\x67\xf4\x27\ \x89\x00\x00\xd4\x7d\xd5\x9f\x71\x81\x17\xc9\xc5\xe8\x4f\x12\x01\ \x00\x48\xd2\x7c\x4d\x0e\xbe\x46\x2e\x46\x7f\x92\x08\x00\x20\x9b\ \xd1\x9f\xef\xe7\x63\xf4\x27\x89\x00\x40\xe9\xb9\x09\x99\xdc\xf0\ \x2b\xfc\x85\xc5\x9a\x40\x00\xa0\xe4\xdc\x28\xdd\xa6\xd1\x81\x17\ \xc9\xd1\xe8\x4f\x12\x01\x80\xb2\xcb\x62\xf4\xe7\xc8\xfc\x8c\xfe\ \x24\x11\x00\x28\x35\x77\x62\x26\xa3\x3f\x3f\xb3\x3e\xce\x6a\x08\ \x00\x94\x98\xdb\x47\x0b\x82\x2f\x92\xb3\xd1\x9f\x24\x02\x00\xa5\ \x55\xce\xd1\x9f\x24\x02\x00\x25\x55\xd6\xd1\x9f\x24\x02\x00\x65\ \x75\x71\x39\x47\x7f\x92\x08\x00\x94\x92\x3b\x4c\xa7\x04\x5f\x24\ \x97\xa3\x3f\x49\x04\x00\x4a\x28\x93\xab\xfe\x2c\xc9\xe7\xe8\x4f\ \x12\x01\x80\xd2\x71\xa3\x74\x6b\x06\xa3\x3f\x87\xe5\x73\xf4\x27\ \x89\x00\x40\xf9\xfc\x48\xbb\x06\x5e\x21\xc7\xa3\x3f\x49\x04\x00\ \x4a\xc6\x9d\xa8\x23\x82\x2f\xf2\xed\xfc\x8e\xfe\x24\x11\x00\x28\ \x95\x8c\x46\x7f\x2e\xb6\x3e\xce\x7a\x11\x00\x28\x11\x46\x7f\x06\ \x22\x00\x50\x1a\x19\x8d\xfe\x1c\x9a\xef\xd1\x9f\x24\x02\x00\xe5\ \x91\xcd\xe8\xcf\x93\xd6\x87\xd9\x08\x02\x00\x25\xc1\xe8\x4f\x25\ \x04\x00\x4a\xc1\xed\xc2\xe8\x4f\x25\x04\x00\x4a\xc0\x6d\x99\xc9\ \x55\x7f\x0a\x31\xfa\x93\x44\x00\xa0\x0c\xae\x61\xf4\xa7\x32\x02\ \x00\xd1\x73\x27\x30\xfa\x53\x0d\x01\x80\xc8\xb9\xbd\x33\x18\xfd\ \xb9\xbd\x38\xa3\x3f\x49\x04\x00\xa2\xe6\xc6\xaa\x43\x23\x03\x2f\ \xb2\x5c\x5f\x2c\xce\xe8\x4f\x12\x01\x80\x88\x31\xfa\x33\x14\x02\ \x00\x31\xbb\x48\x53\x82\xaf\x31\xaf\x58\xa3\x3f\x49\x04\x00\xa2\ \xe5\x0e\xd5\xd7\x83\x2f\xf2\x7d\x7f\x93\xf5\x71\xb6\x82\x00\x40\ \xa4\xdc\x2e\xba\x2e\xf8\x22\x05\x1c\xfd\x49\x22\x00\x10\x25\x46\ \x7f\xea\x43\x00\x20\x4e\x5c\xf5\xa7\x2e\x04\x00\x22\xe4\x4e\xd0\ \x9c\xe0\x8b\x14\x74\xf4\x27\x89\x00\x40\x74\x18\xfd\xa9\x1f\x01\ \x80\xc8\xb8\xb1\x6a\x67\xf4\xa7\x5e\x04\x00\xa2\xe2\x86\xeb\x16\ \xb5\x05\x5e\xa4\xd0\xa3\x3f\x49\x04\x00\xe2\x72\x31\xa3\x3f\x8d\ \x20\x00\x10\x91\x4c\x46\x7f\x7e\x50\xec\xd1\x9f\x24\x02\x00\xd1\ \xc8\x68\xf4\xe7\x44\xeb\xe3\x4c\x13\x01\x80\x48\xb8\x2d\x33\xb9\ \xe1\xd7\xec\xa2\x8f\xfe\x24\x11\x00\x88\xc5\x8f\xf4\x97\x81\x57\ \x58\xaf\x23\xfd\x6f\xad\x0f\x33\x5d\x04\x00\xa2\xe0\x8e\x67\xf4\ \xa7\x19\x04\x00\x22\xe0\xf6\xd6\x77\x82\x2f\x12\xc9\xe8\x4f\x12\ \x01\x80\xc2\x63\xf4\xa7\x79\x04\x00\x0a\xce\x0d\xd7\xcd\xc1\x47\ \x7f\xde\x8e\x67\xf4\x27\x89\x00\x40\xd1\x5d\xa4\xfd\x82\xaf\x51\ \xb0\x1b\x7e\xd5\x8f\x00\x40\xa1\xb9\x43\x74\x6a\xf0\x45\xa2\x1a\ \xfd\x49\x22\x00\x50\x60\x6e\x67\x5d\x1f\x7c\x91\xc8\x46\x7f\x92\ \x08\x00\x14\x56\x26\x57\xfd\x59\x1d\xdb\xe8\x4f\x12\x01\x80\xe2\ \xba\x3a\xf8\xe8\xcf\x86\xf8\x46\x7f\x92\x08\x00\x14\x94\x3b\x5e\ \x47\x06\x5f\xe4\x5b\xfe\x3e\xeb\xe3\x0c\x8b\x00\x40\x21\xb9\xcf\ \x30\xfa\x93\x06\x02\x00\x05\xc4\x0d\xbf\xd2\x42\x00\xa0\x70\x18\ \xfd\x49\x0f\x01\x80\xe2\x61\xf4\x27\x35\x04\x00\x0a\x86\xd1\x9f\ \x34\x11\x00\x28\x14\xb7\x33\x57\xfd\x49\x13\x01\x80\x02\x71\x5b\ \xea\x36\xfd\x8f\xc0\x8b\x44\x3e\xfa\x93\x44\x00\xa0\x48\x18\xfd\ \x49\x19\x01\x80\xc2\x70\xc7\x65\x30\xfa\xf3\xed\xd8\x47\x7f\x92\ \x08\x00\x14\x84\xfb\x8c\x2e\x0d\xbe\xc8\xed\xba\xc8\xfa\x38\xb3\ \x45\x00\xa0\x10\xdc\x76\x19\x5c\xf5\x67\x45\x19\x46\x7f\x92\x08\ \x00\x14\x80\x1b\xae\x5b\x34\x3e\xf0\x22\x6f\xeb\x90\x32\x8c\xfe\ \x24\x11\x00\x28\x82\x0b\x19\xfd\x09\x83\x00\x40\xee\xb9\x59\x3a\ \x2d\xf8\x22\xa5\x19\xfd\x49\x22\x00\x90\x5b\xee\x7d\x6e\x93\x8c\ \xae\xfa\xb3\xb4\x3c\xa3\x3f\x49\x23\xac\x0b\x00\x7a\xb8\x31\x3a\ \x50\x3b\xaa\x4d\xe3\xba\xff\xd9\x4c\xde\xfd\x51\x5b\x68\xb3\xc0\ \x0b\xaf\xd6\x61\xe5\x19\xfd\x49\x22\x00\x90\x03\x6e\xbc\x66\x68\ \xa6\xf6\x1b\xb4\xcf\xef\xb4\x75\xf0\xc5\x4b\x36\xfa\x93\x44\x00\ \xc0\x94\xfb\x80\xbe\xa8\x99\x9a\x28\x67\x56\x42\xc9\x46\x7f\x92\ \x08\x00\x98\x71\x63\xf4\x0d\x1d\x1f\xbc\xc1\xaf\xed\x8e\xb2\x8d\ \xfe\x24\x11\x00\x30\xe1\x36\xd3\xb1\x3a\x53\x5b\x19\x97\xb1\x42\ \x73\xcb\x36\xfa\x93\x54\x6f\x00\xa4\xfd\x0e\xac\x4d\xad\x0f\x1c\ \x76\xdc\x30\xcd\xd5\xb9\xfa\x90\x75\x1d\xe5\x1c\xfd\x49\xaa\xeb\ \x65\x40\x37\x45\x97\xa7\xbc\xee\xfd\x6e\x07\xeb\x43\x87\x0d\x37\ \x46\x77\xeb\xfa\x1c\x9c\xfe\xd2\xbc\x32\x8e\xfe\x24\xd5\x11\x00\ \xee\x68\x2d\x4e\xbd\x03\xd8\x55\x4b\xdd\x3e\xd6\x07\x8f\xec\xb9\ \x9d\xb5\x44\x07\x5a\x57\x21\x49\xfa\x81\xbf\xd1\xba\x04\x7b\xae\ \xf6\x0f\x40\x6e\x84\xfe\x49\xff\x18\x68\xed\xf7\x74\x8c\xbf\xd6\ \xfa\x09\x40\x96\xdc\x81\x6a\xd7\x18\xeb\x2a\x24\x49\x4b\xb5\x6f\ \x59\x5f\xfb\xef\xaf\x66\x00\xb8\xad\xd5\xa1\xfd\x83\xae\xff\x5d\ \x9d\xea\xd7\x5b\x3f\x09\xc8\x86\x3b\x4e\xdf\xd5\x70\xeb\x2a\x24\ \x49\xab\xf5\xa9\xf2\xbe\xf6\xdf\x5f\x8d\x00\x70\x63\xf5\xb0\x76\ \x0a\x5e\xc1\x22\x1d\x4a\x04\x94\x81\x5b\xa0\xaf\x5b\xd7\xd0\x6d\ \x83\xa6\x96\xf9\xb5\xff\xfe\xaa\xee\x01\xb8\x4d\x74\x5b\x06\xa7\ \xbf\x34\x43\x0b\xac\x9f\x04\x84\xe7\x8e\xca\xcd\xe9\x5f\xf2\xd1\ \x9f\xa4\xaa\x1d\x80\xbb\x4e\x5f\xce\xac\x8a\xbf\x67\x2f\x20\x6e\ \x6e\x8a\x16\x07\xbf\x9c\x47\xbd\xee\xd0\x8c\x72\xbf\xf6\xdf\x5f\ \x95\x00\x70\x27\xe9\xb2\x0c\xab\x78\x4f\x07\xf8\x87\xad\x9f\x0a\ \x84\xe2\x76\xd4\x52\x6d\x63\x5d\x45\xb7\x15\x9a\xe8\x5f\xb7\x2e\ \x22\x3f\x2a\x06\x80\x9b\xaa\xbb\x32\xde\xac\x79\x55\x93\xfc\x8b\ \xd6\x4f\x06\x42\x70\xa3\xf5\xcb\xe0\xd7\xf2\xad\xd7\xdb\xfa\xb4\ \x7f\xc2\xba\x88\x3c\xa9\x10\x00\x6e\x47\xfd\xda\xe0\xa5\x9a\x65\ \xda\x5f\xef\x5a\x3f\x1d\x08\xe0\xa7\xfa\xbc\x75\x09\xbd\xbe\xc4\ \x6b\xff\x49\x95\x02\xe0\x5f\x75\xa8\x75\x59\x40\x00\x57\xfa\x63\ \xac\x4b\xc8\x9b\x41\x01\xe0\xf6\xd2\x2f\xad\x8b\x02\x02\x60\xf4\ \xa7\x82\xc1\x01\xf0\xa0\x26\x5b\x17\x05\xa4\x8e\xd1\x9f\x8a\x06\ \xcc\x01\xb8\x69\x9c\xfe\x88\x50\xa9\xaf\xfa\x53\x4b\x22\x00\xdc\ \x30\x5d\x6c\x5d\x10\x10\x00\xa3\x3f\x55\x24\x3b\x80\xb9\xb9\x79\ \xb9\x06\x48\x4f\xc9\xaf\xfa\x53\x4b\x32\x00\xbe\x64\x5d\x0e\x90\ \xba\x12\xde\xf0\xab\x7e\xfd\x36\x01\xdd\xd6\x5a\x95\x93\xf7\x6a\ \x01\x69\x79\x57\x7b\x32\xfa\x53\x5d\xff\x0e\x60\x1a\xa7\x3f\xa2\ \xb3\x98\xd3\xbf\x96\xfe\x01\x30\xcb\xba\x18\x20\x75\x59\xbc\xa3\ \xb5\xc0\x7a\x7f\x04\x70\x9b\x6b\xb5\xb6\xb0\x2e\x07\x48\xdd\x04\ \xff\xac\x75\x09\xf9\xd5\xd7\x01\x1c\xc4\xe9\x8f\x28\xcd\xb4\x2e\ \x20\xcf\xfa\x07\x00\x10\x23\xfe\x66\xd7\xd0\x17\x00\x79\xb8\x4c\ \x33\x90\x3e\xfe\x66\xd7\xd0\x17\x00\x6d\xd6\xa5\x00\x41\xf0\x37\ \xbb\x86\xbe\x00\x18\x67\x5d\x0a\x10\xc4\x16\x2e\xed\xbb\x5a\x44\ \xa4\x3b\x00\xdc\x70\x6d\x67\x5d\x0a\x10\x08\x3d\x40\x55\x3d\x1d\ \xc0\x76\x0c\x01\x21\x5a\x74\xb7\x55\xf5\x04\x00\x19\x89\x78\xf1\ \xb7\xbb\xaa\xbe\x0e\x00\x88\x15\x7f\xbb\xab\xea\x09\x80\xd7\xad\ \x0b\x01\x82\x79\xdd\xba\x80\xfc\xea\x09\x80\x2e\xeb\x42\x80\x60\ \x56\x5a\x17\x90\x5f\x3d\x01\xf0\xb2\x75\x21\x40\x30\xfc\xef\xad\ \xaa\xee\x00\xf0\xef\xea\x0f\xd6\xa5\x00\x81\x10\x00\x55\xf5\x0d\ \x02\xd1\x26\x21\x4e\xef\xf1\x3f\xb7\xea\xfa\x02\x80\x94\x44\x9c\ \x5e\xe6\x82\x60\xd5\x11\x00\x88\x1d\x7f\xb3\x6b\xe8\x0b\x80\x07\ \xad\x4b\x01\x82\xe0\x6f\x76\x0d\x7d\x01\x70\xa7\xd6\x5b\x17\x03\ \x04\xd0\x69\x5d\x40\x9e\xf5\x06\x80\x5f\xad\x87\xad\x8b\x01\x52\ \xb7\x52\x4b\xac\x4b\xc8\xb3\xfe\x17\x05\xed\xb4\x2e\x06\x48\xdd\ \xed\x6c\x01\xd6\x42\x00\x20\x6e\x9d\xd6\x05\xe4\x5b\xe2\xee\xc0\ \xee\x71\xed\x66\x5d\x10\x90\xa2\x35\xda\x96\x5b\x82\xd7\x92\xbc\ \x35\xd8\xcd\xd6\xe5\x00\xa9\x5a\xc8\xe9\x5f\x5b\xb2\x03\x18\xa5\ \xe5\x1a\x6b\x5d\x12\x90\x92\x75\xfa\x98\x5f\x61\x5d\x44\xbe\x25\ \x3a\x00\xff\xa6\xce\xb5\x2e\x08\x48\xcd\x95\x9c\xfe\x43\x71\xc9\ \x2d\x52\x37\x52\xcb\xb8\x99\x12\xa2\xf0\x86\x3e\xe2\x5f\xb5\x2e\ \x22\xef\x92\x7b\x00\xf2\xeb\x74\xa6\x75\x49\x40\x2a\x16\x70\xfa\ \x0f\xcd\x0d\x7e\x91\xd4\x2d\xd5\x1e\xd6\x65\x01\x2d\x7a\x59\x3b\ \xf9\xb7\xac\x8b\xc8\xbf\x11\x15\x3e\x76\xb2\x1e\x30\xb8\x46\xf0\ \x1a\x1d\xa7\x35\xd6\x4f\x07\x52\x37\x5c\x97\x99\xdc\x9b\xe7\x4c\ \x4e\xff\x7a\xb8\x4a\x63\x52\xee\x14\x7d\x27\xe3\x3a\xd6\xe9\x40\ \xcf\x9b\x36\xa2\xe4\x76\xd2\x52\x6d\x95\xf1\xa2\x57\xfb\xa3\xac\ \x8f\xbb\x18\x5c\xe5\x39\x49\x77\xa3\xe6\x66\x5a\xc7\x3c\x7f\x95\ \xf5\x53\x81\x50\xdc\x01\xba\xbb\x62\xaf\x19\xca\x43\xfa\x9c\x5f\ \x67\x7d\xd4\xc5\x50\x2d\x00\x36\xd5\x43\x9a\x94\x59\x15\x57\xf8\ \x63\xad\x9f\x08\x84\xe4\x8e\xd5\xe5\x99\x2d\xf6\xa2\x26\xb1\xfd\ \x57\x2f\x57\xed\x9d\x12\xae\x4d\x8f\x66\x74\x43\x85\xfb\x35\xd5\ \xff\xd9\xfa\x89\x40\x58\xee\x2a\x65\xd3\x94\xbf\xa9\xbd\xfd\x93\ \xd6\x47\x5b\x1c\xae\xfa\x5b\xa5\xdc\x24\x3d\xa8\xcd\x82\x57\xb0\ \x5c\x7b\xfa\xd7\xac\x9f\x06\x84\xe6\x46\x6a\xb1\xa6\x04\x5f\x66\ \x83\x0e\xf5\x9d\xd6\xc7\x5a\x24\xc3\xaa\x7f\xca\x2f\xd5\x94\xe0\ \x97\x53\xfa\x0f\xed\xc3\xe9\x5f\x06\x7e\x9d\xfe\x5a\x1d\x81\x17\ \x59\xa3\xe9\x9c\xfe\x8d\x19\x56\xeb\x93\x7e\xa9\xf6\xd0\xd2\x80\ \xab\x5f\xaf\xcf\xfa\x57\xac\x9f\x02\x64\xc3\xaf\xd5\x11\x3a\x5b\ \xe1\xde\x9d\xbf\x42\x9f\xf6\x77\x59\x1f\x65\xd1\x0c\xab\xfd\x69\ \xdf\xa5\xc9\xba\x29\xc8\xca\xeb\x75\xb2\xff\x0a\xef\xd5\x2a\x13\ \xef\xfd\xb9\x3a\x4c\x61\x5e\x9f\xff\x99\x26\xf9\x65\xd6\x47\x58\ \x3c\xae\x9e\x40\x76\xa7\x68\x7e\xca\xa3\x41\xaf\x6b\x8e\xbf\xc7\ \xfa\xe0\x61\xc1\xed\xa6\x45\xfa\x70\xca\x0f\xfa\x3d\x9d\xc4\x46\ \x72\x33\x86\xd5\xf3\x45\xfe\x52\xed\xa7\x47\x53\x5c\xf5\x56\xed\ \xce\xe9\x5f\x56\xfe\x09\x4d\xd4\x95\x4a\xef\x74\x5d\xae\xc3\xfc\ \x71\x9c\xfe\xcd\xa9\xab\x03\xe8\xfe\xd2\xd9\xba\x30\x85\x77\x0a\ \x3e\xa4\xd3\xfd\x23\xd6\x87\x0d\x6b\x6e\x67\x5d\xa8\x43\x5b\x7e\ \x98\x55\x3a\x57\x3f\x64\xe8\xa7\x79\x0d\x04\x80\xe4\x46\xea\x6b\ \x3a\xab\x85\x4b\x86\x3c\xa5\x33\xfc\x9d\xd6\x87\x8c\xbc\x70\x7b\ \xea\x12\x4d\x6e\xfa\xdb\xdf\xd4\xa5\xfa\x8e\x7f\xd3\xfa\x28\x8a\ \xad\xa1\x00\x90\x24\x37\x4a\xc7\x6a\x4e\xc3\xd7\x0e\x5c\xaf\x87\ \x74\x83\x6e\xf2\x1b\xac\x0f\x18\xf9\xe2\x0e\xd6\xd1\x3a\xb0\xe1\ \x79\x93\x15\xba\x55\x97\xf1\x0a\x52\xeb\x1a\x0e\x80\xee\x6f\xdb\ \x41\x33\x35\x53\xfb\xd4\xb1\x35\xb8\x56\xf7\x6a\xa1\xee\xe4\xd5\ \x7e\x54\xe3\xb6\xd4\x54\xcd\xd4\xb4\xba\xde\x32\xf4\x98\x16\xaa\ \xd3\xff\x97\x75\xcd\xb1\x68\x32\x00\xba\xbf\xf9\xfd\x9a\xa6\x29\ \x6a\x53\x9b\xc6\x69\x9b\x7e\x9f\x58\xaf\x55\x5a\xa9\x2e\xbd\xa4\ \x7b\x75\xaf\x7f\xdb\xfa\x20\x51\x04\x6e\x84\x26\xeb\x60\xed\xa8\ \x36\x8d\xd3\xf6\x1a\xd9\xef\x53\x7f\xd2\x4a\x75\xa9\x4b\x4b\xd5\ \xe9\x7f\x6b\x5d\x67\x5c\x5a\x0a\x80\xc4\x03\x6d\xaa\x71\x1a\xa7\ \x31\x5a\xa5\x2e\xad\xf2\xdc\x66\x0c\x2d\x70\x4e\xef\x57\x9b\xb6\ \xd7\x5a\xad\x54\x97\x5f\x6b\x5d\x4f\xbc\x52\x0b\x00\x00\xc5\x53\ \xd7\x1c\x00\x80\x38\x11\x00\x40\x89\xfd\x37\x06\xe8\x39\xbf\xec\ \xd4\x94\x46\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\ \x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\ \x30\x54\x30\x33\x3a\x32\x37\x3a\x33\x30\x2b\x30\x38\x3a\x30\x30\ \xe1\xb5\x5e\x14\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ \x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x34\x2d\x30\x36\x2d\ \x30\x39\x54\x31\x37\x3a\x33\x39\x3a\x31\x37\x2b\x30\x38\x3a\x30\ \x30\x5e\x10\xcd\xa4\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\ \x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\ \x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\ \x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\ \x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\ \xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\ \x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\ \x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\x81\x00\x00\x00\x17\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\ \x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\x1c\x7c\x03\xdc\x00\ \x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\ \x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\ \x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x30\x32\x33\x30\x36\ \x37\x35\x37\xfe\xc5\x1c\xdd\x00\x00\x00\x11\x74\x45\x58\x74\x54\ \x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x36\x34\x38\x35\x42\ \xd0\xe2\x22\x7a\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\ \x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\ \x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\ \x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\ \x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x36\x39\x34\x2f\ \x31\x31\x36\x39\x34\x37\x31\x2e\x70\x6e\x67\x3e\x82\x2d\xbf\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x6c\x9e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x1e\x00\x00\x02\x1e\x08\x06\x00\x00\x00\xf4\xc3\x06\x4a\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x00\x5a\x00\x00\x00\x5a\x00\x70\ \x23\xb8\x7d\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe1\x04\x15\x00\ \x21\x08\x01\xcf\xfe\x3b\x00\x00\x69\x8b\x49\x44\x41\x54\x78\xda\ \xed\xdd\x75\x78\x14\x67\xdb\xfe\xf1\x73\x77\x92\x00\xc1\xbd\xc1\ \xdd\x21\x68\x70\x59\x5c\x0b\x29\x54\x29\xdb\xb4\xd4\x4b\x81\x2a\ \xf5\xb4\xa1\xee\xee\x96\xad\x6b\xea\xde\x6e\x0d\x28\x41\x83\xbb\ \x43\x0a\x85\xe2\x1a\x36\x79\xff\xd8\xec\xf3\xf2\xf0\x20\x91\xb9\ \xe6\x9a\x99\x3d\x3f\xc7\xd1\xa3\xbf\xf7\xf7\x94\x7b\xae\x59\x42\ \xf2\xe5\x9e\xd9\x59\x80\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\xa8\x10\ \x3c\xda\x03\x38\x41\x42\x52\xf2\xa3\x00\xba\x00\xe8\x91\x9d\x99\ \xa1\x3d\x0e\x11\x11\x91\x63\x31\x3c\x4e\x23\x3f\x3a\x6e\xc8\xff\ \x3f\xa7\x81\xf1\x41\x44\x44\x54\x64\x0c\x8f\x53\x38\x2e\x3a\x22\ \xa6\x03\xe8\xce\xf8\x20\x22\x22\x2a\x3c\x86\xc7\x49\x9c\x24\x3a\ \x22\x18\x1f\xe4\x28\xa1\xa0\x1f\x00\x62\x00\x94\x06\x50\x1e\x40\ \x15\x00\x55\x01\x54\xcf\xff\xa7\x5a\xfe\xff\x5f\x65\x00\x15\x00\ \x94\xcb\xff\x6f\x4b\x01\x28\x01\x20\x2e\xff\xd7\x7b\xf3\xff\x39\ \xfe\x7b\x47\x6e\xfe\x3f\x21\x00\x39\x00\x8e\x00\x38\x04\xe0\x00\ \x80\xbd\x00\x76\x03\xd8\x09\x60\x3b\x80\x7f\x00\x6c\x05\xb0\x2d\ \xff\xdf\xdb\x01\xfc\x9b\xff\xdf\x1d\x32\x7c\x81\x3c\xed\xd7\x8b\ \x88\xe4\x30\x3c\x4e\xe0\x34\xd1\x11\x31\x03\x40\x37\xc6\x07\x69\ \x0b\x05\xfd\x1e\x84\x43\xa1\x06\x80\x86\x00\x9a\x01\x68\x01\xa0\ \x09\x80\xba\x08\x07\x46\x09\xed\x39\x0b\x21\x17\xc0\x1e\x00\x5b\ \x00\xac\x02\xb0\x0c\xc0\x52\x00\x2b\x00\xac\x03\xb0\xdd\xf0\x05\ \x8e\x68\x0f\x49\x44\x45\xc3\xf0\x38\x4e\x01\xa3\x23\x82\xf1\x41\ \x96\x08\x05\xfd\x06\xc2\xbb\x12\xcd\x00\x74\x00\x90\x04\x20\x11\ \xe1\xb0\x70\x52\x54\x98\x69\x07\xc2\x41\x32\x1b\x40\x26\x80\x05\ \x00\xd6\x19\xbe\xc0\x7e\xed\xc1\x88\xe8\xe4\x18\x1e\xc7\x28\x64\ \x74\x44\xfc\x05\xa0\x2b\xe3\x83\xcc\x10\x0a\xfa\xbd\x00\x6a\x22\ \x1c\x17\x7d\x00\xf4\x44\x78\xf7\xa2\xa4\xf6\x6c\x0e\xb3\x05\xc0\ \x2c\x00\x41\x84\x2f\x8d\x2e\x33\x7c\x81\xbd\xda\x43\x11\x11\xc3\ \xe3\x3f\x8a\x18\x1d\x11\x8c\x0f\x2a\xb4\x50\xd0\x5f\x02\x40\x53\ \x00\x7d\x01\x0c\x41\xf8\x2d\xdb\xe5\xb4\xe7\x72\xb1\x3c\x84\x2f\ \xd7\xfc\x0c\xe0\x3b\x84\x77\x49\xb6\x1a\xbe\x80\xf6\x5c\x44\x51\ \x85\xe1\x81\x62\x47\x47\x04\xe3\x83\x4e\x2a\xff\x3e\x8c\x06\x00\ \x06\x00\x48\x06\xd0\x03\x40\xbc\xf6\x5c\x04\x00\x58\x0d\xe0\x6b\ \x00\x5f\x00\xc8\xe4\xce\x08\x91\xac\xa8\x0f\x0f\x93\xa2\x23\x62\ \x26\x80\x2e\x8c\x0f\xca\xdf\xcd\xe8\x04\x60\x0c\x80\x51\x08\xdf\ \x8b\x41\xce\x70\x04\xc0\xef\x00\x3e\x40\x78\x67\x64\x13\x77\x45\ \x88\xcc\x13\xd5\xe1\x61\x72\x74\x44\x30\x3e\xa2\x50\x7e\x68\x74\ \x03\x30\x16\xe1\x1d\x8d\x4a\xda\x33\x91\x69\xf2\x10\xbe\x5f\xe4\ \x6d\x00\x9f\x1b\xbe\xc0\x06\xed\x81\x88\x9c\x2c\x6a\xc3\x43\x28\ \x3a\x22\x32\x01\x74\x66\x7c\xb8\x57\xfe\xa5\x93\x44\x00\xe3\x00\ \x5c\x00\xe0\x0c\xed\x99\xc8\x32\x79\x00\x7e\x03\xf0\x2a\x80\x6f\ \x0c\x5f\x60\xa7\xf6\x40\x44\x4e\x12\x95\xe1\x21\x1c\x1d\x11\x8c\ \x0f\x97\x09\x05\xfd\x95\x00\x9c\x05\xe0\x4a\x84\xdf\x75\x42\x04\ \x84\x1f\x7c\xf6\x1e\xc2\x21\x32\x9b\x0f\x40\x23\x3a\xb5\xa8\x0b\ \x0f\x8b\xa2\x23\x62\x16\x80\x24\xc6\x87\x73\x85\x82\xfe\xe6\x00\ \x2e\x07\x90\x82\xf0\x13\x3d\x89\x4e\x67\x06\x80\xa7\x01\x7c\xc9\ \x67\x8a\x10\xfd\xaf\xa8\x0a\x0f\x8b\xa3\x23\x82\xf1\xe1\x20\xf9\ \x97\x50\xba\x01\x98\x8c\xf0\xee\x86\x57\x7b\x26\x72\xb4\x75\x08\ \x47\xc8\x5b\x86\x2f\xb0\x5d\x7b\x18\x22\x3b\x88\x9a\xf0\x50\x8a\ \x8e\x88\x59\x08\x5f\x76\xe1\x16\xac\x0d\xe5\xc7\x46\x1f\x00\x37\ \x03\x18\xac\x3d\x0f\xb9\xd6\x36\x00\x4f\x01\x78\xd5\xf0\x05\xb6\ \x69\x0f\x43\xa4\x25\x2a\xc2\x43\x39\x3a\x22\x66\x23\xbc\xf3\xc1\ \xf8\xb0\x81\xfc\x0f\x4d\xeb\x06\xe0\x56\x00\xc3\xb5\xe7\xa1\xa8\ \xb3\x15\xc0\xa3\x00\x5e\xe3\xcd\xa9\x14\x6d\x5c\x1f\x1e\x36\x89\ \x8e\x08\xc6\x87\xb2\x50\xd0\xdf\x14\xc0\x2d\x00\xfc\xe0\x65\x14\ \xb2\x87\x55\x00\xa6\x02\x78\x9f\x1f\x7e\x47\xd1\xc0\xd5\xe1\x61\ \xb3\xe8\x88\x98\x03\xa0\x13\xe3\xc3\x3a\xa1\xa0\xbf\x02\x80\x6b\ \x00\x4c\x01\x50\x56\x7b\x1e\xa2\x53\xf8\x15\xc0\x9d\x00\xfe\xe4\ \x43\xcb\xc8\xad\x5c\x1b\x1e\x36\x8d\x8e\x08\xc6\x87\xb0\xfc\xfb\ \x36\x86\x00\x78\x00\x40\x1b\xed\x79\x88\x0a\xe9\x28\x80\x67\x00\ \x3c\x64\xf8\x02\x5b\xb5\x87\x21\x32\x93\x2b\xc3\xc3\xe6\xd1\x11\ \x31\x17\x40\x47\xc6\x87\xb9\x42\x41\x7f\x02\x80\xdb\x01\x5c\x0d\ \x97\x7e\x7d\x53\xd4\x59\x8e\xf0\x8d\xcf\x5f\xf2\x19\x21\xe4\x06\ \xae\xfb\xc6\xec\x90\xe8\x88\x60\x7c\x98\x20\xff\x46\xd1\xc1\x00\ \x1e\x43\xf8\x23\xe4\x89\xdc\x28\x0f\xe1\xb7\xe6\xde\xcb\xb7\xe6\ \x92\x93\xb9\x2a\x3c\x24\xa3\xa3\x6c\xe9\x78\xec\xdd\x7f\x40\x62\ \x69\xc6\x47\x11\x85\x82\xfe\xd2\x00\x6e\x44\x78\x87\x23\x56\x7b\ \x1e\x22\x0b\x65\x02\x98\x6c\xf8\x02\x33\xb4\x07\x21\x2a\x2c\xd7\ \x84\x87\x64\x74\xfc\xfa\xfe\x53\xa8\x5a\xa9\x02\xda\x0e\x1b\x8f\ \x9c\x9c\xa3\x12\x87\x98\x07\xa0\x03\xe3\xa3\x60\x42\x41\x7f\x43\ \x00\x8f\x03\x38\x53\x7b\x16\x22\x65\xbb\x11\x8e\xef\xd7\x0d\x5f\ \x20\x57\x7b\x18\xa2\x82\x70\x45\x78\x48\x47\x47\x93\xfa\xb5\x01\ \x00\x3b\x76\xee\x46\xeb\xc1\x17\x4b\x9d\x06\xe3\xe3\x34\x42\x41\ \x7f\x1f\x00\x2f\x00\x68\xa6\x3d\x0b\x91\x0d\x3d\x06\xe0\x1e\xc3\ \x17\xd8\xab\x3d\x08\xd1\xa9\x38\x3e\x3c\xac\x8a\x8e\x88\x6d\x3b\ \x76\xa1\xed\xd0\x4b\xa4\x4e\x67\x3e\x80\xf6\x8c\x8f\xff\x97\x7f\ \xff\xc6\x85\x08\xdf\xe1\x5f\x41\x7b\x1e\x22\x07\xf8\x04\xe1\xcb\ \x30\x9b\xb4\x07\x21\x3a\x11\x47\x87\x87\xd5\xd1\x11\xf1\xf7\x3f\ \xff\xa2\xfd\xf0\x4b\xa5\x4e\x6b\x3e\x18\x1f\x08\x05\xfd\x06\x80\ \x89\x00\x1e\x02\xef\xdf\x20\x2a\x8a\x3f\x01\x5c\x6e\xf8\x02\x4b\ \xb5\x07\x21\x3a\x96\x63\xc3\x43\x2b\x3a\x22\xb6\x6c\xdd\x8e\x8e\ \x67\x5e\x2e\x75\x7a\x59\x00\xda\x45\x63\x7c\x84\x82\xfe\x38\x00\ \xb7\x01\xb8\x0b\x0e\xfe\xfa\x24\xb2\x91\x85\x00\x2e\x36\x7c\x81\ \x39\xda\x83\x10\x01\x0e\xfd\xc6\xae\x1d\x1d\x11\x1b\xb3\xb7\xa1\ \xf3\xa8\x2b\xa5\x4e\xd3\x16\xf1\x91\x90\x94\x0c\x00\x13\xb2\x33\ \x33\x9e\x95\x3c\x4e\x28\xe8\x2f\x01\xe0\x6e\x84\x1f\x67\x4e\x44\ \xe6\x5b\x01\xc0\x6f\xf8\x02\x33\xb5\x07\xa1\xe8\xe6\xb8\xf0\xb0\ \x4b\x74\x44\xac\xdb\xf4\x37\xba\x8d\xbe\x5a\xea\x74\x55\xe3\x23\ \x3f\x3a\x7e\x07\xd0\x13\xc0\x13\xd9\x99\x19\xd7\x9b\x7d\x8c\x50\ \xd0\x1f\x0b\xe0\x1e\x84\x3f\xac\x8d\x88\xe4\xad\x00\x70\xa1\xe1\ \x0b\xcc\xd2\x1e\x84\xa2\x93\xa3\xc2\xc3\x6e\xd1\x11\xb1\x66\xc3\ \x16\xf4\x38\x7b\x82\xd4\x69\x2f\x00\xd0\xd6\xea\xf8\x38\x2e\x3a\ \x22\x4c\x8b\x8f\xfc\x7b\x38\x6e\x03\x90\x66\xe5\x79\x11\xd1\x7f\ \x2c\x02\x70\x81\xe1\x0b\x2c\xd4\x1e\x84\xa2\x8b\x63\xc2\xc3\xae\ \xd1\x11\xb1\x72\xed\x26\xf4\x3e\x6f\xa2\xd4\xe9\x5b\x1a\x1f\x27\ \x89\x8e\x88\x62\xc5\x47\xfe\xbb\x54\xae\x41\xf8\x09\x8c\xfc\x74\ \x58\x22\x7d\xd3\x01\x8c\x35\x7c\x81\x75\xda\x83\x50\x74\x70\x44\ \x78\xd8\x3d\x3a\x22\x96\xad\x5e\x8f\xbe\x17\x5c\x27\xf5\x32\x2c\ \x04\x90\x28\x1d\x1f\xa7\x89\x8e\x88\x22\xc5\x47\x28\xe8\x1f\x0d\ \xe0\x2d\x00\xa5\x24\xcf\x81\x88\x8a\xe4\x33\x00\x97\x18\xbe\xc0\ \x4e\xed\x41\xc8\xdd\x6c\x1f\x1e\x4e\x89\x8e\x88\x45\x2b\xd6\x62\ \xe0\x38\xb1\x8f\x8a\x59\x88\xf0\xce\x87\xc8\x13\x0a\x0b\x18\x1d\ \x11\x05\x8e\x8f\x50\xd0\xdf\x19\xe1\x67\x0b\xd4\x94\x7a\x61\x88\ \xc8\x34\x4f\x01\xb8\xc9\xf0\x05\x72\xb4\x07\x21\x77\xb2\x75\x78\ \x38\x2d\x3a\x22\xb2\x96\xae\xc2\x90\x94\x9b\xa5\x5e\x16\x91\xf8\ \x28\x64\x74\x44\x9c\x32\x3e\x42\x41\x7f\x4d\x00\x1f\x01\xe8\x2a\ \xf5\x62\x10\x91\x88\x3c\x00\x57\x1b\xbe\xc0\x8b\xda\x83\x90\xfb\ \xd8\x36\x3c\x9c\x1a\x1d\x11\x73\x17\xad\xc0\xf0\xf1\x62\xef\x0c\ \x5d\x84\xf0\x65\x17\x53\xe2\xa3\x88\xd1\x11\xf1\x3f\xf1\x91\xff\ \x2c\x8e\x67\x00\x88\x3d\xe8\x84\x88\x2c\xf1\x2f\x80\x51\x86\x2f\ \xf0\x87\xf6\x20\xe4\x1e\xb6\x0c\x0f\xa7\x47\x47\x44\x66\xd6\x52\ \x8c\xba\xfc\x76\xa9\xe5\x4d\x89\x8f\x62\x46\x47\xc4\x7f\xe2\x23\ \x14\xf4\x5f\x0a\xe0\x65\xd8\xf4\x6b\x8b\x88\x8a\x64\x1a\x80\xd1\ \x86\x2f\xb0\x55\x7b\x10\x72\x3e\xdb\xfd\x70\x70\x4b\x74\x44\x4c\ \x9f\xbb\x08\x63\xae\xba\x4b\x6a\xf9\xc5\x00\xda\x14\x35\x3e\x4c\ \x8a\x0e\x00\x40\xe3\x6a\xde\xb7\x82\x37\x94\xee\x0b\x87\xdd\xc7\ \x91\x97\x07\xdc\xf2\xe9\x21\xf8\xbb\xc6\xa1\x65\x0d\xbe\xc9\x86\ \xe8\x34\x1e\x06\x70\x8b\xe1\x0b\x44\xdd\x53\x95\xc9\x3c\xb6\x0a\ \x0f\xb7\x45\x47\xc4\x1f\x99\x0b\x70\xee\xb5\x77\x4b\x2d\x5f\xa4\ \xf8\x30\x33\x3a\x22\x5e\x1c\x5b\x0a\xc3\xdb\xc4\x48\x9d\xa7\xe9\ \x22\xd1\xf1\x4e\x66\xf8\x1e\xba\xef\x27\x95\x66\x7c\x10\x9d\xde\ \x21\x00\xc9\x86\x2f\xf0\x9d\xf6\x20\xe4\x4c\xb6\x09\x0f\xb7\x46\ \x47\x44\x70\xc6\x3c\x8c\x9d\x3c\x55\x6a\xf9\x42\xc5\x87\x44\x74\ \x44\x38\x25\x3e\x8e\x8f\x8e\x08\xc6\x07\x51\x81\x4d\x03\x30\xd2\ \xf0\x05\x76\x68\x0f\x42\xce\x62\x8b\xef\xb0\x6e\x8f\x0e\x00\xf0\ \x75\x6d\x87\xf4\x47\xc5\x9e\x0a\xde\x12\xc0\xc2\x84\xa4\xe4\xd3\ \xfe\x7e\x4a\x46\x07\x00\x5c\xf9\xce\x41\x7c\xb5\xe0\xa8\xd4\x79\ \x9a\xe2\x64\xd1\x01\x00\x83\x9e\xda\x8f\xc5\x5b\x44\xde\xad\x4c\ \xe4\x36\xdd\x01\x6c\x0f\x05\xfd\x37\x69\x0f\x42\xce\xa2\xbe\xe3\ \x11\x0d\xd1\x71\xac\x6f\x7e\xfd\x0b\x97\x4e\x79\x58\x6a\xf9\x25\ \x00\x5a\x9f\x6c\xe7\x43\x3a\x3a\x8e\x65\xd7\x9d\x8f\x53\x45\xc7\ \xb1\xb8\xf3\x41\x54\x28\x9b\x01\xf4\x37\x7c\x81\x65\xda\x83\x90\ \xfd\xa9\x86\x47\xb4\x45\x47\xc4\x17\x3f\x4d\xc3\x95\xb7\x3f\x26\ \xb5\xfc\x52\x00\xad\x8e\x8f\x0f\x2b\xa3\x23\xc2\x6e\xf1\x51\xd0\ \xe8\x88\xf8\x6e\x52\x69\xb4\x62\x7c\x10\x15\xc6\x53\x00\xae\xe3\ \xcd\xa7\x74\x2a\x6a\xe1\x11\xad\xd1\x11\xf1\xe9\x77\xbf\x63\x42\ \xea\x93\x52\xcb\xff\x57\x7c\x68\x44\x47\x84\x5d\xe2\xa3\xb0\xd1\ \x11\xc1\xf8\x20\x2a\xb4\xdd\x00\xfa\x1a\xbe\xc0\x5c\xed\x41\xc8\ \x9e\x54\xc2\x23\xda\xa3\x23\xe2\x83\xaf\x7e\xc1\x75\x53\x9f\x95\ \x5a\x7e\x29\x80\x56\x00\x72\xa1\x14\x1d\x11\xda\xf1\x51\xd4\xe8\ \x88\xf8\x6e\x52\x3c\x5a\xd5\x30\xd4\xe6\x27\x72\xa8\x17\x00\x5c\ \xc3\xdd\x0f\x3a\x9e\xe5\xe1\xc1\xe8\xf8\x6f\xef\x7c\xf6\x23\x6e\ \x7a\xe0\x05\xa9\xe5\x97\x01\xf8\x07\x8a\xd1\x11\xa1\x15\x1f\xc5\ \x8d\x8e\x08\xc6\x07\x51\x91\xec\x02\xd0\xcb\xf0\x05\x16\x6a\x0f\ \x42\xf6\x61\x69\x78\x30\x3a\x4e\xec\xcd\x8f\xbf\xc5\x6d\x8f\xbc\ \xa2\x3d\x86\x38\xab\xe3\xc3\xac\xe8\x88\xf8\x6e\x62\x3c\x5a\xd5\ \x64\x7c\x10\x15\xc1\x83\x86\x2f\x20\xf6\xb6\x3e\x72\x16\xcb\xc2\ \x83\xd1\x71\x6a\xaf\xbc\xff\x25\x52\x9f\x78\x43\x7b\x0c\x71\x56\ \xc5\x87\xd9\xd1\x11\xc1\xf8\x20\x2a\xb2\xf5\x00\xba\x1b\xbe\xc0\ \x66\xed\x41\x48\x97\x25\x77\xcd\x31\x3a\x4e\xef\xb2\xf3\x46\xe0\ \x8e\x09\x7e\xed\x31\xc4\x59\xf1\x9c\x0f\xa9\xe8\x00\x80\xc1\x4f\ \x1f\xc0\xc2\xcd\x21\xd1\xf9\x89\x5c\xaa\x2e\x80\x4d\xf9\x9f\xe7\ \x44\x51\xcc\xaa\xdb\xf5\xbb\x48\x2c\x5a\xbe\x6c\x69\x54\xab\x5c\ \xd1\xa2\x53\x90\x77\xf5\xb8\x51\x98\x72\xe5\x05\xda\x63\x88\x93\ \x8c\x0f\xc9\xe8\x88\x18\xc2\xf8\x20\x2a\x8e\x57\x42\x41\xff\x8f\ \xf9\x9f\x62\x4d\x51\xc8\xaa\xf0\xe8\x81\xf0\xe3\x75\x4d\xb5\x7b\ \xef\x7e\x74\x3d\xeb\x2a\xec\xda\xb3\xcf\xa2\xd3\x90\x37\xe9\xe2\ \x31\xb8\x6e\xfc\x39\xda\x63\x88\x93\x88\x0f\x2b\xa2\x23\x82\xf1\ \x41\x54\x2c\xfd\x01\xec\x09\x05\xfd\x1d\xb4\x07\x21\xeb\x59\x12\ \x1e\xd9\x99\x19\x00\xe3\xa3\xc0\x6e\xba\xfc\x3c\x4c\xf0\x9f\xa5\ \x3d\xc6\x7f\xbc\xff\x4c\xaa\xc8\xba\x66\xc6\x87\x95\xd1\x11\xc1\ \xf8\x20\x2a\x96\x12\x00\x66\x87\x82\xfe\xdb\xb5\x07\x21\x6b\x59\ \xfd\xae\x16\x00\xf8\x13\xe1\x67\xfc\x9b\xaa\x7c\xd9\xd2\x98\xf1\ \xe9\x0b\xa8\x50\xae\x8c\x95\xa7\x24\xea\x9e\xa7\xde\xc4\x4b\xef\ \x7e\xa1\x3a\xc3\xb4\x8f\x9f\x43\xfd\xda\x09\xf8\x7d\x66\x16\xce\ \x9b\x78\x8f\xc8\x31\x8a\x7b\xc3\xa9\x46\x74\x1c\xeb\xdb\x89\xf1\ \x68\xcd\x1b\x4e\x89\x8a\xe3\x2f\x00\x3e\xc3\x17\x38\xa4\x3d\x08\ \xc9\xd3\x78\x8e\x07\xc0\xf8\x28\xb0\xdb\x1f\x7d\x05\x6f\x7c\xf4\ \xad\xca\xb1\x23\xd1\x11\xf1\xdb\xcc\xf9\x38\x7f\x62\x9a\xc8\xb1\ \x8a\x1a\x1f\xda\xd1\x11\xc1\xf8\x20\x2a\xb6\x23\x00\x92\x0c\x5f\ \x20\x4b\x7b\x10\x92\x65\xf9\xb3\xa0\x79\xd9\xa5\x70\xee\xbd\xe1\ \x52\x8c\x1d\x35\xc0\xf2\xe3\x1e\x1f\x1d\x00\xd0\xbb\x73\x5b\xbc\ \xfb\xd4\x5d\x22\xc7\x2b\xca\x65\x17\xbb\x44\x07\x10\xbe\xec\xb2\ \x80\x97\x5d\x88\x8a\x23\x0e\xc0\xfc\x50\xd0\x3f\x41\x7b\x10\x92\ \xa5\xf9\x59\x2d\x00\x77\x3e\x0a\x24\x2f\x2f\x0f\x93\xa7\x3e\x8b\ \x8f\xbe\x0e\x5a\x72\xbc\x13\x45\xc7\xb1\x82\x33\xe6\x61\xec\xe4\ \xa9\x22\xc7\x2e\xe8\xce\x87\x9d\xa2\xe3\x58\xdf\x4c\x8c\x47\x1b\ \xee\x7c\x10\x15\x57\x06\x80\xd1\x7c\xdc\xba\x3b\x69\x7f\x3a\x2d\ \xc0\xf8\x28\x90\xdc\xdc\x5c\x5c\x73\xd7\x93\xf8\xfc\xc7\x3f\x45\ \x8f\x73\xba\xe8\x88\xf8\x65\xc6\x5c\x5c\x38\xf9\x5e\x91\x19\x4e\ \x17\x1f\x76\x8d\x8e\x88\x6f\xae\x8d\x47\x9b\x5a\x8c\x0f\xa2\x62\ \xda\x02\x20\xd1\xf0\x05\xb6\x6b\x0f\x42\xe6\x52\xfd\xd8\x4d\x5e\ \x76\x29\x38\xaf\xd7\x8b\x67\xd3\x26\x63\x48\x9f\xce\x62\xc7\x28\ \x68\x74\x00\x40\xdf\xae\xed\xf1\xf6\x13\x77\x88\xcc\x71\xaa\xcb\ \x2e\x76\x8f\x0e\x00\x18\xfa\xcc\x01\x2c\xd8\xc4\xcb\x2e\x44\xc5\ \x54\x03\xc0\xb6\x50\xd0\xdf\x4d\x7b\x10\x32\x97\xfa\xe7\x7d\x33\ \x3e\x0a\xee\xb1\x57\x3e\xc0\xb7\xbf\xce\x14\x59\xbb\x30\xd1\x11\ \xd1\xb7\x5b\x7b\xbc\xf5\xb8\xcc\x3b\xe1\x4e\x14\x1f\x4e\x88\x8e\ \x08\xc6\x07\x91\x29\x3c\x00\xa6\xf1\xbe\x0f\x77\x51\xbd\xd4\x72\ \x2c\x5e\x76\x39\xb5\x87\x5f\x7a\x0f\x4f\xbe\xfe\x91\xc8\xda\x45\ \x89\x8e\x63\xfd\x34\x6d\x0e\xfc\xd7\xdf\x27\x32\x5b\xe4\xb2\x8b\ \x93\xa2\xe3\x58\xbc\xec\x42\x64\x9a\x74\xc3\x17\x48\xd1\x1e\x82\ \x8a\xcf\x36\xe1\x01\x30\x3e\x4e\xc6\xce\xd1\x11\xf1\xe3\x9f\xb3\ \x71\xd1\x0d\xf7\x8b\xcc\xf8\xe2\xd8\x52\xf8\x63\xe5\x51\x91\xe8\ \x28\x57\xca\x83\xaa\x65\x3c\x58\xfd\x4f\xae\xc8\xec\x00\xf0\xf5\ \xb5\xf1\x48\x64\x7c\x10\x99\x61\x1e\x80\xce\x86\x2f\xe0\xac\xbf\ \x81\xd0\x7f\xb1\x55\x78\x00\x8c\x8f\xe3\x39\x21\x3a\x22\x7e\xf8\ \x63\x16\x52\x6e\x7c\xc0\xaa\x97\xa6\xd8\xca\x95\xf2\x60\xfa\x94\ \xd2\x88\x33\xc2\x97\x46\x56\x6d\x63\x7c\x10\x39\xc0\x2e\x00\xcd\ \x0c\x5f\x60\xab\xf6\x20\x54\x34\xea\xf7\x78\x1c\x8f\xf7\x7c\xfc\ \x3f\x27\x45\x07\x00\x0c\xec\xd9\x09\x6f\x3e\x72\xab\x15\x2f\x4d\ \xb1\x45\xa2\xa3\x42\x29\x0f\xe2\xe3\x3c\xf8\xe6\xda\x78\x34\xa9\ \x2e\xf7\xc7\x61\xd8\x33\x07\x90\xc5\x7b\x3e\x88\xcc\x50\x01\x40\ \x76\x28\xe8\x6f\xaf\x3d\x08\x15\x8d\xed\xc2\x03\x60\x7c\x00\xce\ \x8b\x8e\x88\x81\xbd\x3a\xe1\x8d\x47\x6e\x91\x7c\x69\x8a\xed\xd8\ \xe8\x88\x88\x8f\xf3\xe0\xeb\x09\xf1\x68\x76\x06\xe3\x83\xc8\x01\ \x3c\x00\xe6\x84\x82\xfe\x64\xed\x41\xa8\xf0\x6c\x19\x1e\x40\x74\ \xc7\x87\x53\xa3\x23\x62\x50\xaf\x24\xbc\xfe\xb0\x3d\xe3\xe3\x44\ \xd1\x11\x51\x2a\xce\x83\x2f\x27\xc4\xa3\x45\x02\xe3\x83\xc8\x21\ \x3e\x0d\x05\xfd\xd7\x69\x0f\x41\x85\x63\xbb\x7b\x3c\x8e\x17\x6d\ \xf7\x7c\x38\x3d\x3a\x8e\xf5\xed\xaf\x33\x31\x7e\xca\x43\x96\x1d\ \xef\x74\x4e\x15\x1d\xc7\x3a\x98\x03\x8c\x7a\x7e\x3f\x16\x6f\xe1\ \x3d\x1f\x44\x0e\xf1\xb4\xe1\x0b\x4c\xd2\x1e\x82\x0a\xc6\xf6\xe1\ \x01\x44\x4f\x7c\xb8\x29\x3a\x22\xbe\xf9\xf5\x2f\x5c\x3a\xe5\x61\ \xcb\x8f\x7b\xbc\x82\x46\x47\xc4\xa1\x1c\x20\xf9\x05\xd9\x8f\xbd\ \xff\x6a\x42\x3c\xda\xd6\x66\x7c\x10\x99\xe4\x53\xc3\x17\x18\xad\ \x3d\x04\x9d\x9e\x23\xc2\x03\x70\x7f\x7c\xb8\x31\x3a\x22\xbe\x0e\ \xfe\x85\xcb\x6e\xd1\x8b\x8f\xc2\x46\x47\xc4\xa1\x1c\x60\xf4\x8b\ \xb2\x97\x46\x18\x1f\x44\xa6\x9a\x06\xa0\x27\x3f\xe3\xc5\xde\x1c\ \x13\x1e\x80\x7b\xe3\xc3\xcd\xd1\x11\xf1\xf5\x2f\x33\x70\xd9\xad\ \x8f\x58\x7e\xdc\xa2\x46\x47\xc4\xa1\x1c\xe0\xec\x97\x0e\x60\xde\ \x46\xc6\x07\x91\x43\x2c\x03\xd0\xda\xf0\x05\x0a\xf7\x71\xd7\x64\ \x19\x47\x85\x07\xe0\xbe\xf8\x88\x86\xe8\x88\xf8\xea\xe7\xe9\xb8\ \xfc\xb6\x47\x2d\x3b\x5e\x71\xa3\x23\xe2\xf0\xd1\x70\x7c\xcc\xdd\ \xc0\xf8\x20\x72\x88\x2d\x00\x1a\x19\xbe\xc0\x41\xed\x41\xe8\x7f\ \x39\x2e\x3c\x00\xf7\xc4\x47\x34\x45\x47\xc4\x97\x3f\x4f\xc7\x15\ \x16\xc4\x87\x59\xd1\x11\x71\xf8\x28\x70\xee\xcb\x07\x30\x7b\x3d\ \xe3\x83\xc8\x21\x76\x02\xa8\x6f\xf8\x02\xbb\xb5\x07\xa1\xff\x66\ \xdb\xb7\xd3\x9e\x8a\x1b\xde\x6a\x1b\x8d\xd1\x01\x00\x23\xfa\x75\ \xc3\x8b\xf7\xdd\x20\x7a\x0c\xb3\xa3\x03\x00\x4a\xc4\x00\x1f\x5e\ \x1e\x8f\xa4\x7a\x72\x61\x30\xfc\xd9\x03\x98\x2f\x78\x49\x87\x28\ \xca\x54\x04\xb0\x25\x14\xf4\x57\xd1\x1e\x84\xfe\x9b\x23\xc3\x03\ \x70\x76\x7c\x44\x6b\x74\x44\x9c\xd9\xbf\x3b\x5e\xb8\xf7\x7a\xb1\ \xf5\x1f\x3e\xab\xa4\xa9\xd1\x11\x11\x17\x03\xbc\x7f\x59\x3c\xba\ \xd4\x97\x8d\x0f\xc9\xfb\x49\x88\xa2\x4c\x3c\x80\x4d\xa1\xa0\xff\ \x0c\xed\x41\xe8\xff\x39\x36\x3c\x00\x67\xc6\x47\xb4\x47\x47\xc4\ \xc8\x01\x3d\xf0\xfc\x54\x99\xf8\xb8\xf2\x9d\x83\xf8\x6a\x81\xcc\ \x7d\x65\x71\x31\xc0\xbb\x97\xc6\xa3\x6b\x03\xb9\xf8\x18\xc1\xf8\ \x20\x32\x53\x09\x00\x1b\x42\x41\x7f\x0d\xed\x41\x28\xcc\xd1\xe1\ \x01\x38\x2b\x3e\x18\x1d\xff\x6d\xd4\xc0\x1e\x78\x6e\xaa\xcc\x43\ \x07\xa5\xe3\xe3\x9d\x4b\xe3\xd1\xbd\x21\xe3\x83\xc8\x21\x62\x01\ \xac\x67\x7c\xd8\x83\xe3\xc3\x03\x70\x46\x7c\x30\x3a\x4e\x2c\x79\ \x60\x4f\x3c\x97\x36\x59\x64\x6d\xd1\xf8\x30\x80\xb7\xc7\xc7\xa3\ \x67\x23\xc6\x07\x91\x43\xc4\x20\x1c\x1f\xce\xfc\x66\xe9\x22\x8e\ \x7c\x57\xcb\xc9\xd8\xf5\xdd\x2e\x8c\x8e\xd3\xfb\xf4\xbb\xdf\x31\ \x21\xf5\x49\x91\xb5\x5f\x1c\x5b\x0a\xc3\xdb\xc4\x88\xac\x9d\x13\ \x02\x2e\x7a\xf3\x20\x7e\x5f\x21\xf7\xc8\x80\x2f\xaf\x89\x47\xbb\ \x3a\x7c\xb7\x0b\x91\x49\x72\x00\xd4\x32\x7c\x81\x6d\xda\x83\x44\ \x2b\x57\xec\x78\x44\xd8\x71\xe7\x83\xd1\x51\x30\x67\x0d\xee\x85\ \x67\xee\x96\xf9\xa8\x05\xc9\x9d\x8f\x58\x03\x48\x4f\x29\x85\x3e\ \x4d\x65\xc2\x06\x00\x46\x3c\x77\x00\xf3\x04\x9f\x21\x42\x14\x65\ \x22\x97\x5d\x2a\x6a\x0f\x12\xad\x5c\x15\x1e\x80\xbd\xe2\x83\xd1\ \x51\x38\xa3\x87\xf4\xc6\xd3\x77\x4f\x14\x59\x5b\x3a\x3e\xde\xbc\ \xa8\x14\xfa\x36\x93\x8d\x0f\xc9\x07\x98\x11\x45\x99\x92\x08\xc7\ \x87\xfe\x87\x74\x45\x21\xd7\x85\x07\x60\x8f\xf8\x60\x74\x14\xcd\ \x98\x21\x7d\xf0\x54\xaa\xf3\xe2\x23\xc6\x00\x5e\xbf\xa8\x14\xfa\ \x35\x97\x8b\x8f\x33\x19\x1f\x44\x66\x2a\x0b\x60\x4d\x28\xe8\x2f\ \xa1\x3d\x48\xb4\x71\x65\x78\x00\xba\xf1\xc1\xe8\x28\x9e\xb3\x87\ \xf6\xc1\x93\x77\x5d\x2b\xb2\xb6\x68\x7c\x78\x81\xd7\xfc\xa5\x30\ \x80\xf1\x41\xe4\x14\x55\x01\x2c\x0d\x05\xfd\xae\xfd\x59\x68\x47\ \xae\x7e\xb1\x35\xe2\x83\xd1\x61\x8e\x73\x86\xf9\xf0\xc4\x9d\x13\ \x44\xd6\x96\x8e\x8f\x57\xfc\xa5\x30\xa8\x05\xe3\x83\xc8\x21\xea\ \x03\x98\x1d\x0a\xfa\xb5\xe7\x88\x1a\xae\x0e\x0f\xc0\xda\xf8\x60\ \x74\x98\xeb\xdc\xe1\x7d\xf1\xf8\x1d\xce\x8c\x8f\x97\xc7\x95\xc2\ \xe0\x96\x8c\x0f\x22\x87\x68\x07\xe0\x7b\xed\x21\xa2\x85\xab\xde\ \x4e\x7b\x2a\xd2\x6f\xb5\xbd\xf8\xec\xa1\x8c\x0e\x21\xef\x7d\xf9\ \x33\x6e\xb8\xf7\x39\x91\xb5\x25\xdf\x6a\x1b\xca\x05\xae\x7a\xe7\ \x20\xbe\x59\x24\xf7\x56\xdb\x2f\xae\x89\x47\x7b\xbe\xd5\x96\xc8\ \x2c\x6f\x1a\xbe\xc0\xc5\xda\x43\xb8\x5d\xd4\x84\x07\x20\x1b\x1f\ \x52\xa2\x3d\x3a\x22\xde\xfb\xe2\x27\xdc\x70\xdf\xf3\x22\x6b\x4b\ \xc7\xc7\x35\xef\x1e\xc4\x57\x0b\xe5\xe2\xe3\xf3\x6b\xe2\xd1\x81\ \xf1\x41\x64\x96\xa9\x86\x2f\x70\x97\xf6\x10\x6e\x16\x55\xe1\x01\ \x38\x2b\x3e\x18\x1d\xff\xed\xdd\xcf\x7f\xc2\x8d\xf7\x3b\x33\x3e\ \x26\xbc\x77\x10\x5f\x0a\x5d\xda\x01\x18\x1f\x44\x26\xbb\xc4\xf0\ \x05\xde\xd0\x1e\xc2\xad\xa2\x2e\x3c\x00\x67\xc4\x07\xa3\xe3\xc4\ \xde\xf9\xec\x47\xdc\xf4\xc0\x0b\x22\x6b\x4b\xc6\x47\x6e\x1e\x70\ \xed\x7b\x07\xf1\x79\x96\x60\x7c\x5c\x1d\x8f\x0e\x75\x19\x1f\x44\ \x26\xe9\x6b\xf8\x02\x41\xed\x21\xdc\x28\x2a\xc3\x03\xb0\x77\x7c\ \x30\x3a\x4e\xed\xed\x8c\x1f\x70\xf3\x83\x2f\x8a\xac\x2d\x1d\x1f\ \x13\xdf\x3f\x84\xcf\xe6\xe7\x88\xbd\x36\x8c\x0f\x22\x53\x35\x36\ \x7c\x81\x55\xda\x43\xb8\x4d\xd4\x86\x07\x60\xcf\xf8\x60\x74\x14\ \xcc\x5b\x19\xdf\x63\xca\x83\x2f\x89\xac\x2d\x1d\x1f\x93\x3f\x38\ \x84\x4f\xe7\x31\x3e\x88\x1c\xe0\x08\x80\x2a\x86\x2f\xb0\x57\x7b\ \x10\x37\x71\xfd\xdb\x69\x4f\x45\xf2\xad\xb6\x45\xc1\xe8\x28\xb8\ \x71\xc9\x83\xf0\xe0\x94\x2b\x44\xd6\x96\x7c\xab\xad\xd7\x03\x3c\ \x79\x6e\x49\x8c\x6e\x1f\x2b\xf6\xda\x8c\x7c\xfe\x00\xe6\xac\xe7\ \x5b\x6d\x89\x4c\x10\x07\x60\x61\x28\xe8\x8f\xea\xbf\xa4\x9b\x2d\ \xea\xff\x5a\xb4\x6f\xf3\x32\x94\xad\xd9\xfc\x75\x00\x03\x00\xd4\ \xd1\x9a\x83\xd1\x51\x78\x89\xcd\x1b\xa1\x4a\xa5\xf2\xf8\x79\xda\ \x1c\xd3\xd7\xfe\x6a\xe1\x51\x34\xa9\x6e\xa0\x49\x75\xf3\xdb\xdc\ \xe3\x01\x06\xb5\x8c\xc1\xa6\x9d\x79\x58\x92\x9d\x2b\xf2\xda\xbc\ \x3f\x2b\x07\xbd\x9a\xc4\xa0\x46\x85\xa8\xfe\xbb\x05\x91\x19\x2a\ \x00\xe8\x92\x96\x9e\xf5\xb6\xf6\x20\x6e\x11\xf5\xe1\x01\xe8\xc7\ \x07\xa3\xa3\xe8\xda\xb6\x68\x84\xca\x15\xcb\xe1\xe7\xe9\x73\x4d\ \x5f\x5b\x3a\x3e\x06\xb6\x88\xc1\x96\x5d\x79\x58\xbc\x85\xf1\x41\ \x64\x73\x8d\x52\x53\x12\x4b\xa4\xa5\x67\xfd\xac\x3d\x88\x1b\x30\ \x3c\xf2\x69\xc5\x07\xa3\xa3\xf8\xda\xb6\x68\x8c\x4a\x15\xca\xe1\ \x17\x87\xc6\x47\xf6\xee\x3c\x2c\x62\x7c\x10\xd9\x5d\xcf\xd4\x94\ \xc4\x85\x69\xe9\x59\x4b\xb5\x07\x71\x3a\x5e\xb7\x3a\x8e\x95\x37\ \x9c\x32\x3a\xcc\xf5\xfa\x87\xdf\xe0\x8e\xc7\x5e\x15\x59\x5b\xf2\ \x86\xd3\xbc\x3c\x60\xca\xa7\x87\xf0\x6e\xa6\xdc\x0d\xa7\x9f\x5d\ \x1d\x8f\x8e\xbc\xe1\x94\xc8\x0c\x4d\x0c\x5f\x60\xa5\xf6\x10\x4e\ \xc6\xf0\x38\x01\x2b\xe2\x83\xd1\x21\xe3\xb5\x0f\xbf\xc6\x9d\x8f\ \xbd\x26\xb2\xb6\x74\x7c\xdc\x92\x71\x08\xef\xcc\x64\x7c\x10\xd9\ \xdc\x41\x00\x15\x0d\x5f\xe0\xb0\xf6\x20\x4e\xc5\xfd\xd7\x13\xc8\ \x7f\xb7\xcb\x56\xa9\xf5\x19\x1d\x72\xc6\x9f\x33\x0c\x69\xd7\x5f\ \x22\xb2\xb6\xe4\xbb\x5d\x3c\x1e\xe0\xc1\xe4\x92\x18\xd7\x45\xee\ \xdd\x2e\xa3\x9e\x3f\x80\xd9\xeb\xf8\x6e\x17\xa2\x62\x2a\x05\x9b\ \xbc\x13\xd2\xa9\xf8\xd7\x9f\x13\x48\x48\x4a\xfe\x04\xc0\x59\x12\ \x6b\x33\x3a\xe4\xb5\x6f\xd5\x04\xe5\xca\x96\xc6\xaf\x7f\xcd\x33\ \x7d\x6d\xe9\x7b\x3e\xfa\x35\x8b\xc1\x8e\xfd\x79\xc8\xda\x24\x74\ \xcf\xc7\xec\x1c\xf4\x6c\x1c\x83\x9a\xbc\xe7\x83\xa8\x38\x6a\xa4\ \xa6\x24\x96\x4b\x4b\xcf\xfa\x41\x7b\x10\x27\x62\x78\x1c\x87\xd1\ \xe1\x0e\x1d\x5a\x35\x41\xd9\x32\xf1\xf8\xf5\xaf\xf9\xa6\xaf\x2d\ \x1d\x1f\x7d\x9b\xc5\x60\xe7\x81\x3c\xcc\xdf\x28\x13\x1f\x1f\x30\ \x3e\x88\xcc\xd0\x35\x35\x25\x71\x4e\x5a\x7a\xd6\x0a\xed\x41\x9c\ \x86\xf7\x78\x1c\x83\xd1\xe1\x3e\x2f\xbd\xfb\x05\xee\x79\xea\x4d\ \x91\xb5\x45\xef\xf9\x00\x70\xd7\xe7\x87\xf1\xc6\xf4\x23\x62\xaf\ \x4d\xc6\x55\xf1\xe8\x54\x8f\x7f\xf7\x20\x2a\xa6\x04\xc3\x17\xf8\ \x5b\x7b\x08\x27\xe1\x5f\x79\xf2\x31\x3a\xdc\xe9\x8a\x0b\xce\xc4\ \x5d\x13\x2f\x12\x59\x5b\xf4\x9e\x0f\x00\x69\x23\x4b\x60\x7c\xf7\ \x38\xb1\xd7\x26\xf9\x85\x03\x98\xc5\x7b\x3e\x88\x8a\x6b\x4e\x28\ \xe8\xd7\x9e\xc1\x51\xf8\xd7\x1d\x30\x3a\xdc\xae\x63\x9b\x66\x88\ \x2f\x55\x12\xbf\x67\x66\x99\xbe\xb6\xe8\x65\x17\x00\xbe\xa6\x31\ \xd8\x73\x08\x98\xbb\x41\x26\x10\x78\xd9\x85\xa8\xd8\xca\x02\x68\ \x94\x96\x9e\x95\xa1\x3d\x88\x53\x44\xfd\x77\x1b\x46\xc7\xa9\x6d\ \xdb\xb1\x13\x35\x3a\x9f\x85\xec\x6d\x3b\xb4\x47\x29\x96\xab\x2e\ \x1c\x89\x3b\xae\x95\xf9\x5b\x89\xe4\xce\x07\x00\xdc\x3d\xa2\x04\ \x2e\xef\x29\xbb\xf3\x91\xc9\x9d\x0f\xa2\xe2\xb8\x30\x14\xf4\x9f\ \xad\x3d\x84\x53\x44\xf5\x3d\x1e\x8c\x8e\x53\xdb\xb6\x63\x27\xda\ \x0e\x1d\xff\x9f\xff\x7b\xce\x97\xaf\x20\xa1\x5a\x65\xed\xb1\x8a\ \xe5\xb9\xb7\x32\x70\xdf\xb3\x6f\x89\xac\x2d\x79\xcf\x07\x00\x4c\ \xfd\xfa\x30\x5e\xfa\x5d\xee\x9e\x8f\x4f\xaf\x8a\x47\x12\xef\xf9\ \x20\x2a\x0e\xde\xef\x51\x00\x51\xbb\xe3\xc1\xe8\x38\xb5\xe3\xa3\ \x03\x00\x3a\x8c\xb8\xcc\xf1\x3b\x1f\xd7\x8c\x4b\xc6\x6d\xd7\x5c\ \x28\xb2\xb6\xf4\xce\xc7\x9d\xc3\x4a\xe0\xaa\xde\x72\x3b\x1f\x67\ \x71\xe7\x83\xa8\xb8\xfe\xd2\x1e\xc0\x09\xa2\x32\x3c\x18\x1d\xa7\ \x76\xa2\xe8\x88\x70\x43\x7c\x4c\xf0\x9f\x85\x5b\xaf\x76\x66\x7c\ \xdc\x3e\xb4\x04\xae\xee\xc3\xf8\x20\xb2\xa9\xba\xa1\xa0\xff\x49\ \xed\x21\xec\x2e\xea\x2e\xb5\x30\x3a\x4e\xed\x54\xd1\x71\x2c\x37\ \x5c\x76\x79\xfa\xcd\x4f\xf0\xe0\x0b\xef\x88\xac\x2d\x7d\xd9\xe5\ \x81\xef\x0e\xe3\xb9\xa0\xe0\x65\x97\x2b\xe3\x91\x54\x9f\x97\x5d\ \x88\x8a\xa8\x87\xe1\x0b\xf0\xe9\xa6\x27\x11\x55\xe1\xc1\xe8\x38\ \xb5\x82\x46\x47\x84\x1b\xe2\xe3\xa9\x37\x3e\xc6\x43\x2f\xbe\x2b\ \xb2\xb6\x74\x7c\x3c\xf4\xdd\x61\x3c\xc3\xf8\x20\xb2\xa3\x1c\x00\ \x65\x0c\x5f\x40\xee\x0f\xa8\x83\x45\xcd\xa5\x16\x46\xc7\xa9\x15\ \x36\x3a\x00\x77\x5c\x76\x99\x74\xf1\x18\xdc\x7c\xc5\xf9\x22\x6b\ \x4b\x5f\x76\x99\x32\xb8\x04\x26\xf6\x15\xbc\xec\xf2\xe2\x01\xcc\ \x5c\xcb\xcb\x2e\x44\x45\x10\x0b\xe0\x73\xed\x21\xec\x2a\x2a\xc2\ \x83\xd1\x71\x6a\x45\x89\x8e\x08\x37\xc4\xc7\xe4\x4b\xce\xc6\x4d\ \x97\x3b\x33\x3e\x6e\x1e\x54\x02\x93\xfb\xc9\xc5\xc7\x68\xc6\x07\ \x51\x51\x0d\x0e\x05\xfd\xe7\x68\x0f\x61\x47\xae\xbf\xd4\xc2\xe8\ \x38\xb5\xe2\x44\xc7\xb1\xdc\x70\xd9\xe5\xf1\x57\x3f\xc4\xa3\xaf\ \xbc\x2f\xb2\xb6\xf4\x65\x97\xc7\x7e\x3c\x8c\x27\x7e\x92\xdb\xd5\ \xfd\xe4\xca\x78\x74\xe6\x65\x17\xa2\xa2\xa8\x60\xf8\x02\xbb\xb5\ \x87\xb0\x13\x57\xef\x78\x30\x3a\x4e\xcd\xac\xe8\x00\xdc\xb1\xf3\ \x71\xfd\xa5\xe7\xe0\x86\xcb\xce\x15\x59\x5b\x7a\xe7\xe3\x86\x01\ \x25\x70\xfd\x80\x12\x62\xeb\x73\xe7\x83\xa8\xc8\xbe\xd7\x1e\xc0\ \x6e\x5c\x1b\x1e\x8c\x8e\x53\x33\x33\x3a\x22\xdc\x10\x1f\x37\x5c\ \x7a\x2e\xae\xbf\x54\x66\x77\x54\x3a\x3e\xae\xef\x1f\x87\x1b\x07\ \x32\x3e\x88\x6c\xa6\x73\x28\xe8\x4f\xd1\x1e\xc2\x4e\x5c\xb9\x77\ \x9a\x90\x94\x3c\x12\xc0\x3d\x52\xeb\x6f\xca\xfe\x07\xc3\xfb\x75\ \x83\xd7\xeb\xdc\x6e\xbb\xf6\xee\xa7\xb1\x6a\xfd\x66\xd3\xd7\x5d\ \xb9\x6e\x13\x46\x0f\xee\xad\x7d\x7a\xc5\xd2\xad\x43\x2b\xe4\xe6\ \xe5\xe2\xaf\x79\x4b\x4c\x5f\x5b\xf2\xb3\x5d\x00\xa0\x4b\x03\x03\ \x86\xd7\x83\xe9\xab\x65\x02\xe1\xc3\xd9\x39\xe8\xde\x28\x06\xb5\ \x2a\x3a\xf7\x6b\x9f\x48\xc1\xa8\xd4\x94\xc4\xa7\xd2\xd2\xb3\x0e\ \x69\x0f\x62\x07\xae\x0c\x8f\x7d\x9b\x97\x2d\x2f\x5b\xb3\xf9\x21\ \x00\xfd\x25\xd6\x5f\xbd\x61\x0b\x96\xac\x5c\x8f\x11\xfd\xba\x3a\ \x36\x3e\x86\xf7\xed\x8a\xa5\xab\x36\x98\x1a\x1f\xbe\xae\xed\xf0\ \xe6\xa3\xb7\xc1\x70\xe8\x6b\x72\xac\xee\x1d\x5a\x23\x94\xeb\xdc\ \xf8\x88\x35\x3c\x98\x26\x18\x1f\xdd\x18\x1f\x44\x85\xd5\x27\x2d\ \x3d\xeb\x35\xed\x21\xec\xc0\x95\xe1\x01\x00\xfb\x36\x2f\x9b\x26\ \x1a\x1f\xeb\x37\x63\xe9\xaa\x0d\x18\xde\xb7\x1b\xbc\x5e\xe7\xdd\ \xa3\xeb\xf5\x7a\x4d\x8d\x8f\x48\x74\xc4\xc6\xb8\xe7\x4b\xaa\x7b\ \xc7\xd6\x38\x1a\x0a\x61\xe6\x7c\xe7\xc5\x47\xe7\xfa\x06\xe2\x62\ \x3c\xf8\x73\x95\x60\x7c\x34\x64\x7c\x10\x15\x42\xad\xd4\x94\xc4\ \x65\x69\xe9\x59\x8b\xb5\x07\xd1\xe6\x9e\x9f\x12\x27\x20\x1d\x1f\ \xab\xd6\x6f\xc6\xf2\xd5\x1b\x30\xac\x6f\xd7\xa8\x8e\x0f\x37\x46\ \x47\x44\x8f\x8e\xad\x91\x73\xf4\x28\x66\xce\x5f\x6a\xfa\xda\xd2\ \xf1\x91\x54\xdf\x40\x89\x58\xc1\xf8\x98\xc3\xf8\x20\x2a\xa4\xd1\ \xa9\x29\x89\x0f\xa7\xa5\x67\xc9\xdd\xec\xe5\x00\xee\xfb\x49\x71\ \x1c\xe9\xf8\x58\xb9\x6e\x13\x56\xac\xd9\x88\x61\xbe\xe8\x8c\x0f\ \x37\x47\x47\x44\x8f\x4e\x6d\x70\x24\x27\x07\x99\x59\x0e\x8c\x8f\ \x7a\x06\x4a\xc5\x79\xf0\xc7\x4a\xc6\x07\x91\x0d\x78\x00\xb4\x4e\ \x4b\xcf\x92\x79\xdf\xbe\x43\xb8\xf7\xa7\xc5\x31\xf2\xe3\xe3\x30\ \x04\xe3\x63\xe5\xda\x8d\x18\xda\xb7\x2b\xbc\x9e\xe8\x89\x8f\x68\ \x88\x8e\x88\x9e\x9d\xda\xe0\xf0\x91\x23\xc8\xcc\x5a\x66\xfa\xda\ \xd2\xf1\xd1\xa9\x9e\x81\xf8\x38\x0f\x7e\x67\x7c\x10\xd9\x41\xd3\ \xd4\x94\xc4\x9f\xd3\xd2\xb3\x36\x68\x0f\xa2\xc5\xfd\x3f\x31\xf2\ \xed\xdb\xbc\xec\x4f\xc9\xf8\x58\xb1\x76\x13\x56\xad\xdb\x84\xa1\ \xbe\x2e\x51\x11\x1f\xd1\x14\x1d\x11\x3d\x93\x12\x71\xe8\xf0\x11\ \xcc\x5a\xe0\xbc\xf8\xe8\x58\xcf\x40\xe9\x12\xb2\xf1\xd1\xb5\x61\ \x0c\x6a\x33\x3e\x88\x0a\xe2\x9c\xd4\x94\xc4\x07\xd3\xd2\xb3\xb4\ \xe7\x50\x11\x3d\x3f\x35\x60\x45\x7c\x6c\xc4\xea\x0d\x9b\x31\xb4\ \x4f\x17\x78\x5c\x1c\x1f\xd1\x18\x1d\x11\xbd\x92\x12\x71\xe0\xd0\ \x61\xcc\x76\x62\x7c\xd4\x35\x50\xb6\xa4\x07\xbf\xad\x90\x89\x8f\ \x8f\x18\x1f\x44\x05\x15\x07\x20\x2e\x2d\x3d\xeb\x67\xed\x41\x34\ \x44\xdd\x4f\x0e\xe9\xf8\x58\xbe\x66\x23\xd6\x6c\xdc\x82\x21\x7d\ \x3a\xbb\x32\x3e\xa2\x39\x3a\x22\x7a\x77\x4e\xc4\xfe\x83\x87\x30\ \x7b\xe1\x72\xd3\xd7\x96\x8e\x8f\x0e\x75\x0d\x94\x2b\xe5\xc1\xaf\ \x8c\x0f\x22\x6d\x3d\x53\x53\x12\x5f\x4e\x4b\xcf\xda\xa7\x3d\x88\ \xd5\xa2\xf2\xa7\xc7\xbe\xcd\xcb\xfe\xec\xd1\xb9\x55\xa5\xad\x7b\ \xf2\x3a\x4b\xac\xbf\x6c\xf5\x06\xac\xdd\x94\x8d\x21\xbd\xdd\x15\ \x1f\x8c\x8e\xff\xd7\xbb\x73\x5b\xec\x3b\x70\x10\x73\x1c\x18\x1f\ \xed\xeb\x18\x28\x1f\xef\xc1\xaf\xcb\x19\x1f\x44\xca\x7a\xa7\xa5\ \x67\xbd\xa2\x3d\x84\xd5\xa2\xf6\x27\xc8\xf2\xe7\x3b\xbe\xda\xb1\ \x9e\x51\xee\x93\xb9\x32\xef\x6a\x5a\xb6\x7a\x03\xd6\x6d\xfe\x1b\ \x83\x7b\x27\xb9\x22\x3e\x18\x1d\xff\xab\x4f\x97\xb6\xd8\xbb\xff\ \x00\xe6\x2c\x5a\x61\xfa\xda\x56\xc4\x47\x85\x78\x0f\x82\x8c\x0f\ \x22\x4d\x35\x52\x53\x12\x33\xd3\xd2\xb3\x56\x69\x0f\x62\xa5\xa8\ \xfc\x29\x12\x0a\xfa\x2f\x05\x30\xb6\x6e\x65\x2f\x3a\xd6\x33\x20\ \x15\x1f\x4b\x57\xad\xc7\xfa\x2d\x5b\x31\xb8\x97\xb3\x77\x3e\x76\ \xec\xdc\x83\xa7\xef\x9e\xc4\xe8\x38\x81\x3e\x5d\xda\x61\xcf\xbe\ \xfd\x98\xeb\xc0\xf8\x68\x57\xc7\x40\xa5\xd2\x5e\xfc\xb2\x5c\xe6\ \xeb\xff\xa3\x39\x39\xe8\xda\x20\x06\xb5\x2b\x31\x3e\x88\x4e\xe1\ \xac\xd4\x94\xc4\xfb\xa3\xe9\x46\xd3\xa8\xfb\x49\x12\x0a\xfa\xe3\ \x00\xcc\x44\xf8\xfd\xd4\xb0\x22\x3e\x36\x64\x6f\xc3\xa0\x5e\xce\ \xdd\xf9\xe8\xdf\xa3\xa3\x2b\x1e\x83\x2e\xc5\xd7\xb5\x1d\x76\xef\ \xdd\x8f\xb9\x8b\x9d\x17\x1f\x6d\x6b\x1b\xa8\x5c\xc6\x8b\x5f\x96\ \xc9\xc5\x47\x17\xc6\x07\xd1\xa9\xc4\x02\x40\x5a\x7a\xd6\xaf\xda\ \x83\x58\x25\x1a\xbf\x1b\x3c\x83\xfc\xe8\x88\xe8\xd5\x38\x06\xef\ \x5e\x5a\x4a\xec\x80\x1f\x7f\xf3\x2b\xae\xbf\xf7\x59\xe4\xe6\xe5\ \x69\x9f\x3b\x09\x49\xbb\xfe\x12\x8c\x3f\x67\x98\xc8\xda\xd2\x9f\ \x6a\x7b\x51\xd7\x58\xdc\x9f\x5c\x52\x6c\xfd\x73\x5e\x3e\x20\xf6\ \xa1\x75\x44\x2e\x91\x1a\x0a\xfa\xcb\x6b\x0f\x61\x95\xa8\xda\xf1\ \x08\x05\xfd\x35\x01\xbc\x73\xa2\xff\x4d\x7a\xe7\x63\xf1\xca\x75\ \xd8\xfc\xf7\x76\x0c\xea\xd5\xc9\x91\x3b\x1f\x74\x7a\xbe\x6e\xed\ \xb1\x6b\xf7\x5e\xcc\x5b\xb2\xd2\xf4\xb5\xa5\x77\x3e\x12\x6b\x19\ \xa8\x56\xd6\x8b\x9f\xb8\xf3\x41\xa4\xa5\x45\xb4\x3c\xd1\x34\xaa\ \xc2\x23\x35\x25\xf1\x7b\x00\xb5\x4f\xf6\xbf\x8b\xc7\xc7\x8a\xb5\ \xd8\xb2\x75\x3b\x06\xf6\x64\x7c\xb8\x91\x07\x80\xaf\x6b\x7b\xec\ \xdc\xb5\x07\xf3\x97\x98\x7f\xaf\x98\x74\x7c\xb4\xa9\x65\xa0\x7a\ \x39\x2f\x7e\x5a\xca\xf8\x20\x52\xd0\x34\x35\x25\xf1\xc3\xb4\xf4\ \xac\xed\xda\x83\x48\x8b\x9a\xf0\x08\x05\xfd\x9d\x01\xdc\x73\xba\ \xff\x4e\x3a\x3e\x16\xad\x58\x8b\xec\x6d\x3b\x18\x1f\x2e\xe5\xf1\ \x00\x7d\xbb\xb5\xc7\x8e\x9d\x7b\x90\xb5\xd4\x99\xf1\x71\x46\x79\ \x2f\x7e\x64\x7c\x10\x69\xe8\x97\x96\x9e\xf5\x9c\xf6\x10\xd2\xa2\ \x26\x3c\x52\x53\x12\x67\x02\x28\x57\x90\xff\x56\x3c\x3e\x96\xaf\ \xc5\xdf\xff\xfc\x8b\x01\x3d\x3a\x32\x3e\x5c\xc8\xe3\xf1\xa0\x5f\ \xb7\xf6\xd8\xfe\xef\x6e\x64\x2d\x5d\x6d\xfa\xfa\xd2\xf1\xd1\xba\ \xa6\x81\x84\x0a\x5e\xfc\xb8\x44\x2e\x3e\x3a\x37\x88\x41\x1d\xc6\ \x07\xd1\xf1\xaa\xa4\xa6\x24\xce\x48\x4b\xcf\x32\xff\x1b\x87\x8d\ \x44\x45\x78\x84\x82\xfe\x31\x00\xc6\x17\xe6\xd7\x48\xc7\xc7\xc2\ \xe5\x6b\xb0\x75\xfb\x4e\xc6\x87\x4b\x79\x3c\x1e\xf4\xeb\xde\x01\ \xff\xec\xd8\x8d\x05\xcb\x9c\x19\x1f\x35\x2a\x78\xf1\x83\x50\x7c\ \x7c\xcc\xf8\x20\x3a\x99\x11\x69\xe9\x59\x0f\x69\x0f\x21\xc9\xf5\ \xe1\x11\x0a\xfa\x01\x60\x36\xf2\xdf\xb2\x54\x18\xe2\xf1\xb1\x6c\ \x0d\xb6\xed\xd8\x85\xfe\xdd\x3b\x30\x3e\x5c\xc8\xe3\xf1\xa0\x7f\ \xf7\x0e\xd8\xb6\x7d\x97\x23\xe3\xa3\x55\x4d\x03\xb5\x2a\x7a\xf1\ \x3d\xe3\x83\xc8\x4a\x25\x53\x53\x12\x37\xa4\xa5\x67\xcd\xd7\x1e\ \x44\x4a\x34\xfc\x89\x9f\x00\xa0\xc8\xef\x95\xed\xd5\x38\x06\xef\ \x8e\x97\x7b\xab\xed\xdb\x19\x3f\xe0\xd6\x87\x5f\x46\x1e\xdf\x6a\ \xeb\x4a\x1e\x8f\x07\x0f\xdd\x72\x05\xc6\x8e\x1c\x20\xb2\xbe\xf4\ \x5b\x6d\xcf\xe9\x18\x8b\x27\xce\x91\x7b\xab\xed\xb9\x2f\x1f\xc0\ \xb4\x55\x7c\xab\x2d\xd1\x71\x5e\x0e\x05\xfd\xae\xfd\xdb\xa8\xab\ \x77\x3c\x42\x41\xbf\x01\x60\x3a\x8e\x7b\x6e\x47\x61\xd5\xad\xec\ \x45\xc7\xba\x06\x3e\x99\x27\xf3\x0d\x3e\x6b\xe9\x6a\xec\xd8\xb9\ \x07\xfd\xba\xb5\xe7\xce\x87\x0b\x79\x3c\x1e\x0c\xe8\xd1\x11\x7f\ \x6f\xfb\x17\x0b\x97\xaf\x31\x7d\x7d\xe9\x9d\x8f\x96\x35\x0c\xd4\ \xa9\xec\xc5\x77\x8b\x85\x76\x3e\xe6\xe6\xa0\x73\x7d\xee\x7c\x10\ \x1d\xc3\x0b\x60\x7f\x5a\x7a\xd6\x74\xed\x41\xa4\x4e\xce\xcd\x6e\ \x35\xeb\x1c\x7b\x35\x91\xdd\xf9\x48\xff\xe4\x3b\xdc\xfe\xe8\x2b\ \xdc\xf9\x70\x29\x8f\xc7\x83\x47\x6e\xbb\x0a\xe7\x8f\xe8\x27\xb2\ \xbe\xf4\xce\xc7\x98\xf6\xb1\x78\xea\x5c\xc1\x9d\x8f\x57\x0e\xe0\ \x4f\xee\x7c\x10\x1d\xeb\xe1\x50\xd0\x1f\xa3\x3d\x84\x04\xd7\xee\ \x78\x84\x82\xfe\x58\x00\x41\x33\xd7\xac\x5b\xd9\x8b\x0e\x75\x0d\ \x7c\x2a\xb4\xf3\x31\x7f\xc9\x2a\xec\xdc\xbd\x17\x7d\xbb\x76\x00\ \x37\x3e\xdc\xc7\xe3\xf1\x60\x60\xcf\x4e\xd8\xfc\xf7\x76\x2c\x5e\ \xb1\xd6\xf4\xf5\xa5\x77\x3e\x5a\x24\x18\xa8\x57\xc5\x8b\x6f\x17\ \xc9\xed\x7c\x24\x71\xe7\x83\xe8\x58\x9e\xb4\xf4\x2c\x53\x7f\x8e\ \xd9\x81\x9b\xff\x84\xdf\x2d\xb1\x68\xef\x26\x31\x78\x47\x70\xe7\ \xe3\x8d\x8f\xbe\xc5\x9d\x8f\xbf\x0a\xee\x7b\x9c\xd8\xee\xbd\xfb\ \xb1\x64\xe5\x3a\xed\x31\x8a\xcc\xe3\xf1\xe0\xb1\x3b\xae\xc1\x39\ \xc3\x7c\x22\xeb\x4b\xef\x7c\x9c\xd5\x2e\x16\xcf\x9e\x2f\xb7\xf3\ \x71\x1e\x77\x3e\x88\x8e\x75\x67\xfe\xe7\x8b\xb9\x8a\x2b\x77\x3c\ \x42\x41\x7f\x09\x00\xdf\x4b\xad\x5f\x4f\x78\xe7\x63\xde\xe2\x95\ \xd8\xbd\x77\x1f\xfa\x76\x6d\x2f\x75\x0a\x8e\xb4\x7b\xef\x7e\x74\ \x1f\x73\x0d\x5e\x7a\xf7\x0b\x0c\xe9\xd3\x19\x55\x2b\x57\xd0\x1e\ \xa9\x48\x3c\x1e\x0f\x06\xf6\x4a\xc2\xc6\x2d\xdb\x44\x22\x4a\x7a\ \xe7\xa3\xd9\x19\x06\x1a\x56\xf5\xe2\x1b\xee\x7c\x10\x59\x21\x2e\ \x2d\x3d\xeb\x27\xed\x21\xcc\xe4\xd6\x3f\xd9\x77\x4b\x1f\x40\x7a\ \xe7\xe3\xb5\x0f\xbe\xc6\x5d\x4f\xbc\x2e\x7d\x1a\x8e\x11\x89\x8e\ \x7f\x77\xed\x01\x00\xf4\xbf\xf0\x7a\x47\xef\x7c\x78\x3d\x1e\x3c\ \x71\xe7\xb5\x18\x33\xa4\x8f\xc8\xfa\xd2\x3b\x1f\x23\xdb\xc6\xe2\ \xf9\x0b\xe4\xbe\xfe\xb9\xf3\x41\xf4\x1f\x53\xdc\xb6\xeb\xe1\xba\ \x1d\x8f\xfc\xdf\x20\xb1\xdd\x8e\x63\x49\xef\x7c\xcc\x5d\xb4\x02\ \x7b\xf6\x1f\x80\xaf\x4b\x3b\x2b\x4e\xc7\xb6\x8e\x8f\x8e\x88\xc0\ \xa7\xdf\x3b\x7e\xe7\x63\x50\xaf\x24\xac\xdf\xbc\x15\x4b\x57\xad\ \x37\x7d\x7d\xe9\x9d\x8f\xa6\x67\x78\xd1\xb8\xba\x81\xaf\x17\x72\ \xe7\x83\x48\x98\x91\x96\x9e\xf5\x8b\xf6\x10\x66\x71\xe3\x9f\xe8\ \xdb\xac\x3c\x98\xf4\xce\xc7\x2b\xef\x7d\x89\x7b\x9e\x7a\xd3\xca\ \x53\xb2\x95\x93\x45\x47\x84\xe3\x77\x3e\xbc\x1e\x3c\x95\x7a\x2d\ \xce\x1a\xd4\x4b\x64\x7d\xe9\x9d\x8f\x11\x6d\x62\xf0\xe2\x58\xd9\ \x9d\x8f\x3f\xb8\xf3\x41\x74\x9b\x9b\xde\xe1\xe2\xaa\x1d\x8f\xfc\ \xe7\x76\xfc\x8c\x62\x3e\xb7\xa3\xb0\xa4\x77\x3e\xe6\x2c\x5c\x8e\ \xfd\x07\x0f\xa2\x77\xe7\xb6\x56\x9e\x96\xba\xd3\x45\x47\x84\x1b\ \x76\x3e\x06\xf7\x4e\xc2\x9a\x8d\xd9\x58\xb6\x7a\x83\xe9\xeb\x4b\ \xef\x7c\x34\xa9\xee\x45\xd3\x33\x0c\xb1\xc0\xf9\x64\x6e\x0e\x3a\ \xd5\x8b\x41\xdd\xca\x6e\xfc\x7b\x12\x51\x81\x1d\x4e\x4b\xcf\xfa\ \x43\x7b\x08\x33\xb8\xed\x4f\xf2\x44\x58\x1c\x1d\x11\xd2\x3b\x1f\ \x2f\xbe\xf3\x05\xa6\x3e\x9d\xae\x71\x6a\x2a\x0a\x1a\x1d\x11\xce\ \xdf\xf9\xf0\xe2\xd9\x7b\x26\x61\xe4\x80\x1e\x22\xeb\x4b\xef\x7c\ \x0c\x6b\x1d\x83\x97\xc7\xc9\x7d\xfd\x9f\xff\xea\x01\xfc\xb1\x92\ \x3b\x1f\x14\xd5\xa6\xba\xe5\x69\xa6\xae\xd9\xf1\xc8\xff\x4c\x96\ \xdf\x35\xcf\x49\x7a\xe7\x63\xf6\xc2\xe5\x38\x78\xe8\x30\x7a\x75\ \x4e\xd4\x3a\x45\x4b\x14\x36\x3a\x22\xdc\xb0\xf3\x31\xb4\x4f\x67\ \xac\x5a\xbf\x19\xcb\xd7\x6c\x34\x7d\x7d\xe9\x9d\x8f\xc6\xd5\xbc\ \x68\x91\x60\xe0\x0b\xee\x7c\x10\x49\xf0\x00\xf8\x3b\x2d\x3d\x6b\ \xb6\xf6\x20\xc5\xe5\xa6\x3f\xc1\x63\x51\x84\x0f\x82\x33\x9b\xf4\ \xce\xc7\xf3\x6f\x7f\x86\xfb\x9e\x7d\x4b\xfb\x34\xc5\x14\x35\x3a\ \x22\xdc\xb0\xf3\xf1\xdc\xd4\xeb\x30\xa2\x5f\x37\x91\xf5\xa5\x77\ \x3e\x06\xb7\x8a\xc1\x6b\x7e\xe9\x9d\x0f\xb9\xf9\x89\x6c\xee\x71\ \xed\x01\xcc\xe0\xa6\xf0\x78\x56\x7b\x80\x08\xe9\xf8\x78\xee\xad\ \x0c\xdc\xff\xdc\xdb\xda\xa7\x69\xba\xe2\x46\x47\x84\xd3\xe3\xc3\ \xf0\x7a\xf1\xfc\xbd\xd7\x63\x78\xdf\xae\x22\xeb\x4b\xc7\xc7\xa0\ \x96\x31\x78\xfd\x22\xc9\xf8\x38\x88\xdf\x19\x1f\x14\x9d\x4a\x85\ \x82\xfe\x91\xda\x43\x14\x97\x2b\x2e\xb5\x84\x82\xfe\x3e\x00\xae\ \xd4\x9e\xe3\x58\xd2\x97\x5d\x32\xb3\x96\xe2\x48\x4e\x0e\x7a\x76\ \x6a\xa3\x7d\xaa\xa6\x30\x2b\x3a\x22\x9c\x7e\xd9\xc5\xeb\xf1\x60\ \xa8\xaf\x2b\x96\xaf\xd9\x80\x95\xeb\x36\x99\xbe\xbe\xf4\x65\x97\ \x86\x55\xbd\x68\x5d\xd3\xc0\xe7\x59\x52\x97\x5d\x8e\xa2\x63\x3d\ \x83\x97\x5d\x28\x1a\xf5\x4a\x4b\xcf\x72\xf4\xce\x87\x5b\xfe\xd4\ \xbe\xa0\x3d\xc0\x89\x48\xef\x7c\x3c\x93\xfe\x29\x1e\x7c\xe1\x1d\ \xed\xd3\x2c\xb6\x03\x07\x0f\x9b\x1a\x1d\x11\xfd\x2f\xbc\x5e\xe4\ \xf9\x18\x56\x31\x0c\x2f\x5e\xba\xef\x46\x0c\xe9\xd3\x59\x64\x7d\ \xe9\x9d\x8f\x01\x2d\x62\xf0\x66\x8a\xdc\xd7\xff\x05\xdc\xf9\xa0\ \xe8\x54\x23\x14\xf4\x3b\xfa\xb1\xd6\x8e\xdf\xf1\x08\x05\xfd\x0d\ \x01\xa4\x69\xcf\x71\x32\xd2\x3b\x1f\x33\xe7\x2f\xc5\xd1\x50\x08\ \x3d\x3a\xb6\xd6\x3e\xd5\x22\x8b\x8d\x8d\xc1\xce\x3d\x7b\x31\x2b\ \x6b\x99\xa9\xeb\x36\x6f\x54\x17\x57\x8f\x1b\x85\xd8\x18\xe7\xbe\ \xfd\xdd\xeb\xf5\x60\x78\xdf\xae\x58\xba\x6a\x3d\x56\xad\xdf\x6c\ \xfa\xfa\xd2\x3b\x1f\x0d\xaa\x7a\x91\x58\xdb\xc0\x67\xf3\xb9\xf3\ \x41\x64\xa2\x36\x69\xe9\x59\xaf\x69\x0f\x51\x54\x8e\x0f\x8f\xd4\ \x94\xc4\x37\x01\x34\xd5\x9e\xe3\x54\xe4\xe3\x63\x09\x42\xb9\xb9\ \xe8\xee\xe0\xf8\xe8\x95\x94\x88\x43\x47\x8e\x98\x16\x1f\xcd\x1b\ \xd5\xc5\x57\xaf\x3d\x88\x52\x25\x4b\x68\x9f\x5a\xb1\x79\xbd\x5e\ \x0c\xeb\xdb\x15\x4b\x56\xae\xc7\x6a\x27\xc6\x47\x15\x2f\xda\xd6\ \x36\x90\xc1\xf8\x20\x32\x4b\xed\xd4\x94\xc4\x17\xd2\xd2\xb3\xf6\ \x6b\x0f\x52\x14\x8e\x0e\x8f\x50\xd0\x5f\x1a\x80\x23\x1e\x6e\x21\ \x1d\x1f\x7f\xcd\x5b\x82\xdc\xbc\x3c\x74\xef\xd0\x4a\xfb\x54\x8b\ \xcc\xac\xf8\x70\x53\x74\x44\x78\xbd\x5e\x0c\xef\xd7\x15\x8b\x56\ \xac\xc3\x9a\x0d\x5b\x4c\x5f\x5f\x3a\x3e\xea\x57\xf1\xa2\x5d\x1d\ \x03\x19\x42\x5f\xff\x9f\xcc\x3d\x8a\x0e\x75\x0d\xd4\x63\x7c\x50\ \xf4\xa8\x90\x96\x9e\xf5\xa5\xf6\x10\x45\xe1\xe8\xf0\x48\x4d\x49\ \xbc\x0d\x40\x1f\xed\x39\x0a\x4a\x3e\x3e\x16\x23\x0f\x79\xe8\x16\ \xc5\xf1\xe1\xc6\xe8\x88\xf0\x7a\xbd\x18\xd1\xaf\x1b\x16\x2e\x5f\ \xeb\xd8\xf8\x68\x2f\xf8\xf5\xff\xe9\x3c\xc6\x07\x45\x95\x0e\xa9\ \x29\x89\xf7\xa6\xa5\x67\xe5\x69\x0f\x52\x58\x8e\x0d\x8f\xfc\x07\ \x86\xfd\xe8\xb4\x73\x90\x8e\x8f\x19\x73\x17\x03\x1e\xa0\x5b\xfb\ \xe8\x8b\x0f\x37\x47\x47\x44\x24\x3e\x16\x2c\x5f\x83\xb5\x1b\xb3\ \x4d\x5f\x5f\x3a\x3e\xa4\xbf\xfe\x19\x1f\x14\x65\x36\xa6\xa5\x67\ \xcd\xd5\x1e\xa2\xb0\x1c\xf5\x43\xfb\x58\xa9\x29\x89\x83\x01\xf8\ \xb5\xe7\x28\x0a\x2b\xe2\xc3\xe3\xf5\xa0\x6b\xfb\x96\xda\xa7\x5a\ \x64\x85\x8d\x8f\x68\x88\x8e\x08\xaf\xd7\x8b\x33\xfb\x75\x47\xd6\ \xd2\xd5\x58\xbb\xc9\x99\xf1\xd1\xb1\x9e\x81\x4f\xe6\x32\x3e\x88\ \x8a\xa9\x7b\x5a\x7a\xd6\xc3\xda\x43\x14\x96\x93\xc3\xe3\x73\x00\ \x55\xb5\xe7\x28\x2a\xe9\xf8\x98\x3e\x67\x11\xbc\x86\x17\x5d\xdb\ \xb9\x3f\x3e\xa2\x29\x3a\x22\xbc\x5e\x2f\xce\xec\xdf\x1d\xf3\x97\ \xac\xc2\xba\x4d\x7f\x9b\xbe\xbe\x74\x7c\xd4\xad\xec\x45\xa7\xfa\ \x31\xf8\x64\x6e\x8e\xc8\xfa\x8c\x0f\x8a\x12\xf1\xa9\x29\x89\x9f\ \xa5\xa5\x67\x6d\xd5\x1e\xa4\x30\x1c\x19\x1e\xa1\xa0\x3f\x01\xc0\ \x83\xda\x73\x14\x97\x15\xf1\x61\xc4\x18\xe8\xd2\xae\x85\xf6\xa9\ \x16\xd9\xe9\xe2\x23\x1a\xa3\x23\xc2\xeb\xf5\xe2\xcc\x01\xdd\x31\ \x6f\xf1\x4a\xac\xdf\xec\xc0\xf8\xa8\xe4\x45\x52\xfd\x18\x7c\xcc\ \xf8\x20\x2a\x8e\xfa\x69\xe9\x59\x8e\x7a\x94\xb5\x23\xc3\x23\x35\ \x25\xf1\x21\x00\x9d\xb4\xe7\x30\x83\x74\x7c\x4c\x9b\xbd\x10\x31\ \x2e\x8d\x8f\x68\x8e\x8e\x08\xc3\xeb\xc5\xc8\x01\xdd\x31\x77\xd1\ \x0a\xac\xdf\x6c\xfe\x5f\x7a\xa4\xe3\xa3\x4e\x25\x2f\x3a\x37\x88\ \xc1\xc7\x73\xe4\xe2\xa3\x3d\xe3\x83\xdc\xad\x51\x6a\x4a\xe2\xc3\ \x69\xe9\x42\x8f\x09\x16\xe0\xb8\xf0\xc8\xff\x58\xe0\x2f\x11\xfe\ \xa4\x3e\x57\xb0\x22\x3e\x62\x63\x63\xd0\xb9\xad\x7b\xe2\x83\xd1\ \xf1\xff\x0c\xaf\x17\x23\x07\xf6\xc0\x9c\x85\xcb\xb1\x61\x8b\x33\ \xe3\xa3\x4b\x83\x18\x7c\xc4\xf8\x20\x2a\xaa\x7f\xd2\xd2\xb3\x66\ \x6a\x0f\x51\x50\x8e\x0b\x8f\xd4\x94\xc4\xa1\x08\x7f\x12\xad\xab\ \x48\xc7\xc7\x9f\xb3\x17\xa2\x44\x5c\x2c\x92\xda\x36\xd7\x3e\xd5\ \x22\x8b\xc4\xc7\xbe\xfd\x07\x19\x1d\xc7\x31\xbc\x5e\x8c\x1a\xd0\ \x03\xb3\x16\x2c\xc3\xc6\x2d\xdb\x4c\x5f\x5f\x3a\x3e\x6a\x57\xf2\ \xa2\x6b\x43\xc6\x07\x51\x11\x75\x49\x4b\xcf\x7a\x48\x7b\x88\x82\ \x72\xdc\xae\x41\x28\xe8\x9f\x0f\x20\x51\x7b\x0e\x29\xbf\xad\x38\ \x8a\xb1\xaf\x1d\x14\x5b\xff\xf6\x6b\xc6\xe1\x1a\x7f\xb2\xf6\x69\ \x16\xcb\x91\x9c\xa3\x88\x8b\x75\xee\x63\xd0\x25\x1d\xc9\x39\x8a\ \x0b\x26\xa5\x61\xfa\x9c\x45\x22\xeb\xbf\x38\xb6\x14\x86\xb7\x91\ \x7b\xed\xff\x5a\x13\xc2\x98\x97\x0e\x88\xad\xff\xf6\x25\xa5\xd0\ \xa7\x29\xbf\x76\xc8\x95\x5a\x1a\xbe\xc0\x12\xed\x21\x0a\xc2\x51\ \x3b\x1e\xa1\xa0\xbf\x02\x80\x27\xb4\xe7\x90\x24\xbd\xf3\xf1\xc7\ \xac\x05\x28\x55\x32\x0e\x9d\x12\x9d\xbb\xf3\x61\x18\xfc\x5b\xeb\ \xc9\x18\x86\x17\xa3\x06\xf6\xc4\xcc\xf9\x4b\xb0\x29\xfb\x1f\xd3\ \xd7\x97\xde\xf9\xa8\x55\xd1\x8b\xee\x8d\x62\xf0\xe1\x6c\xc1\x9d\ \x8f\x3a\x06\xea\x55\xe1\xd7\x10\xb9\x4e\xd5\xb4\xf4\xac\x8f\xb5\ \x87\x28\x08\xa7\xfd\xe9\xbb\x46\x7b\x00\x2b\xf4\x6e\x12\x83\xb7\ \x05\x3f\xd5\xf6\xde\x67\xdf\xc2\x0b\x6f\x7f\xa6\x7d\x9a\x24\x24\ \x2e\x36\x06\xef\x3d\x7d\x97\xd8\x0d\xc5\xd2\x9f\x6a\xdb\xb9\xbe\ \x81\x4f\xaf\x8a\x17\x5b\xff\xc2\xd7\x0f\x22\xb8\xdc\x31\xf7\xe1\ \x11\x15\xd4\x39\xa1\xa0\xdf\x11\x3f\xd3\x1d\x31\xe4\x31\xa6\x68\ \x0f\x60\x95\x3e\xc2\xf1\x31\xf5\x99\x00\x5e\x7c\xe7\x73\xed\xd3\ \x24\x21\x71\xb1\xb1\x78\xff\x99\x54\xb1\x7b\x7a\xa4\xe3\x23\xa9\ \x9e\x81\x0c\xc1\xf8\x18\xc7\xf8\x20\x77\x1a\xae\x3d\x40\x41\x38\ \xe6\x52\x4b\x28\xe8\x6f\x0a\xe0\x06\xed\x39\xac\x54\xaf\xb2\xec\ \x67\x5b\xfc\x36\x33\x0b\x65\x4a\x97\x42\xc7\xd6\xb6\xfe\x70\x5f\ \x2a\x22\xc3\x30\x90\x3c\xa8\x17\xa6\xcf\x59\x84\x2d\x5b\xb7\x9b\ \xbe\xbe\xf4\x65\x97\x9a\x15\xbc\xe8\xd5\x24\x06\xef\xcf\x92\xb9\ \xec\x92\x31\xef\x28\xda\xd5\x31\x50\x9f\x97\x5d\xc8\x3d\x9a\xa7\ \xa5\x67\xbd\xa4\x3d\xc4\xe9\x38\xe9\x4f\xdc\xad\xda\x03\x68\x90\ \xde\xf9\xb8\xe7\xa9\x37\xf1\xf2\xbb\x5f\x68\x9f\x26\x09\x29\x11\ \x17\x8b\x0f\x9f\xbb\x47\x2c\x2e\xa5\x77\x3e\x3a\xd6\x35\xf0\xf9\ \xd5\xdc\xf9\x20\x2a\xa0\xb6\xa1\xa0\xbf\x8c\xf6\x10\xa7\xe3\x88\ \x1d\x8f\xfc\x0f\x84\xfb\x04\x0e\x7c\x17\x8e\x19\xa4\x77\x3e\x7e\ \x9d\x39\x1f\x65\xcb\xc4\xa3\x03\x77\x3e\x5c\x29\xc6\x30\x70\xd6\ \xe0\xde\xf8\x63\xd6\x02\x64\x6f\xdb\x61\xfa\xfa\xd2\x3b\x1f\x35\ \x2a\x78\xd1\xa7\x69\x0c\xde\xe3\xce\x07\x51\x41\x6c\x49\x4b\xcf\ \x9a\xa5\x3d\xc4\xa9\x38\xe5\x4f\x5a\x37\x07\xcd\x2a\x42\x7a\xe7\ \xe3\xee\x27\xdf\xc0\x2b\xef\x7f\xa5\x7d\x9a\x24\xa4\x44\x5c\x2c\ \x3e\x79\x21\x0d\xed\x5a\x36\x16\x59\x5f\x7a\xe7\xa3\x7d\x1d\x03\ \x5f\x5e\x23\xbb\xf3\xf1\x0b\x77\x3e\xc8\x1d\x6c\x7f\x75\xc0\x29\ \x3f\xcc\x6d\xff\x42\x5a\x41\x3a\x3e\x52\x9f\x78\x1d\xaf\x7e\xf0\ \xb5\xf6\x69\x92\x90\x12\x71\x71\xf8\xe4\x85\xa9\x68\xdb\xa2\x91\ \xc8\xfa\xd2\xf1\xd1\xae\x8e\x81\xaf\x26\xc8\xc5\x87\xff\xf5\x83\ \xf8\x65\x19\xe3\x83\x1c\xaf\x66\x28\xe8\xaf\xa2\x3d\xc4\xa9\xd8\ \xfe\x52\x4b\xfe\x23\xd2\xdf\xd1\x9e\xc3\x2e\xa4\x2f\xbb\x04\x67\ \xcc\x43\x85\xf2\x65\xd0\xbe\x65\x13\xed\x53\x25\x01\x31\x31\x06\ \x46\x0f\xe9\x8d\x5f\xff\x9a\x87\xad\xdb\x77\x9a\xbe\xbe\xf4\x65\ \x97\x33\xca\x7b\xd1\xaf\x79\x0c\xde\xcd\x14\xba\xec\x32\xff\x28\ \xda\xd6\xe6\x65\x17\x72\xbc\x5d\x69\xe9\x59\x7f\x6a\x0f\x71\x32\ \x4e\xf8\xd3\xd5\x47\x7b\x00\xbb\x91\xde\xf9\xb8\xf3\xb1\xd7\xf0\ \xfa\x47\xdf\x68\x9f\x26\x09\x29\x59\x22\x0e\x19\x2f\xdd\x87\xd6\ \xcd\x1a\x88\xac\x2f\xbd\xf3\x91\x58\xcb\xc0\x37\xd7\x0a\xee\x7c\ \xbc\xc1\x9d\x0f\x72\xbc\xeb\xb4\x07\x38\x15\x27\x84\xc7\xcd\xda\ \x03\xd8\x91\x74\x7c\xdc\xf1\xe8\xab\x78\xe3\xe3\x6f\xb5\x4f\x93\ \x84\x94\x2c\x11\x87\xcf\x5f\xbe\x1f\xad\x9a\xd4\x17\x59\x5f\x3a\ \x3e\xda\xd4\x32\xf0\xcd\x44\xc6\x07\xd1\x49\x54\x0d\x05\xfd\xd5\ \xb4\x87\x38\x19\x5b\x5f\x6a\xc9\xbf\xcc\xf2\x96\xf6\x1c\x76\x25\ \x7d\xd9\xe5\x97\xe9\x73\x51\xb9\x62\x79\xb1\x7b\x02\x48\x57\x4c\ \x8c\x81\x31\x43\xfb\xe0\xe7\x69\x73\xf0\xcf\xbf\xbb\x4c\x5f\x5f\ \xfa\xb2\x4b\xf5\x72\x5e\x0c\x68\x11\x83\x77\x66\xca\x5d\x76\x49\ \xac\x6d\xa0\x01\x2f\xbb\x90\x33\xfd\x6b\xd7\xcb\x2d\x76\xff\x13\ \xd5\x4d\x7b\x00\xbb\x93\xde\xf9\xb8\xed\x91\x97\x91\xfe\xc9\x77\ \xda\xa7\x69\x4b\x87\x8f\xe4\x60\xc5\xda\x8d\xda\x63\x14\x4b\xa9\ \x92\x25\xf0\xc5\xab\x0f\xa0\x79\xa3\xba\x22\xeb\x4b\xef\x7c\xb4\ \xae\x69\xe0\xbb\x49\x72\x3b\x1f\x17\xbd\x71\x10\x3f\x73\xe7\x83\ \x9c\x69\xa2\xf6\x00\x27\x63\xf7\xf0\x98\xac\x3d\x80\x13\x48\xc7\ \xc7\xad\x0f\xbf\x8c\xc0\xa7\xdf\x6b\x9f\xa6\xad\x1c\x3e\x92\x83\ \xb3\xaf\xbe\x0b\x7d\xce\x9b\x84\x65\xab\x37\x68\x8f\x53\x2c\xa5\ \x4a\x96\xc0\x57\xaf\x3d\x88\x66\x0d\xeb\x88\xac\x2f\x1d\x1f\xad\ \x6a\x18\xf8\x7e\x52\x69\xb1\xf5\x19\x1f\xe4\x50\x09\xf9\x1f\xac\ \x6a\x3b\x76\x0f\x8f\xb3\xb4\x07\x70\x0a\xe9\xf8\xb8\xe5\xa1\x97\ \xf0\x56\xc6\x0f\xda\xa7\x69\x0b\x91\xe8\x98\xbd\x70\x39\x00\xa0\ \xef\x05\x93\xdd\x11\x1f\xaf\x3f\x84\xa6\x0d\x6a\x8b\xac\x2f\x1d\ \x1f\x2d\x6b\x78\xf1\xc3\x64\xc6\x07\xd1\x71\xce\xd1\x1e\xe0\x44\ \x6c\x1b\x1e\xa1\xa0\xbf\xb9\x9d\xe7\xb3\x23\xe9\xf8\x98\xf2\xe0\ \x8b\x78\xfb\xb3\xe8\x8e\x8f\xe3\xa3\x23\xc2\x0d\xf1\x11\x5f\xb2\ \x04\xbe\x7e\xfd\x61\x34\xae\x5f\x4b\x64\x7d\xe9\xf8\x68\x91\xe0\ \xc5\x8f\x8c\x0f\xa2\x63\x4d\xd2\x1e\xe0\x44\xec\xfc\x83\xfd\x72\ \xed\x01\x9c\xa8\x4f\x93\x18\xbc\x7d\x89\x5c\x7c\xdc\xfc\xc0\x8b\ \x78\xe7\xb3\x1f\xb5\x4f\x53\xc5\xc9\xa2\x23\xc2\x15\xf1\x51\xaa\ \x04\xbe\x7d\xe3\x61\x34\xaa\x5b\x53\x64\x7d\xe9\xf8\x68\x9e\xe0\ \xc5\x4f\xd7\xc9\xc6\xc7\x4f\x4b\x19\x1f\xe4\x18\x2d\x42\x41\x7f\ \xac\xf6\x10\xc7\xb3\x73\x78\x5c\xac\x3d\x80\x53\xf5\x69\x2a\x1b\ \x1f\x37\x3d\xf0\x02\xde\xfd\xfc\x27\xed\xd3\xb4\xd4\xe9\xa2\x23\ \xc2\x1d\xf1\x51\x12\xdf\xa5\x3f\x82\x06\x75\x6a\x88\xac\x2f\x1d\ \x1f\xcd\xce\x90\x8d\x8f\x94\x37\x19\x1f\xe4\x28\xfd\xb4\x07\x38\ \x9e\x2d\xc3\x23\x14\xf4\x57\x02\x50\x5e\x7b\x0e\x27\x93\x8e\x8f\ \x1b\xef\x7f\x1e\xef\x7d\xf1\xb3\xf6\x69\x5a\xa2\xa0\xd1\x11\xe1\ \x96\xf8\xf8\x3e\xf0\x28\xea\xd7\x4e\x10\x59\xdf\x8a\xf8\xf8\xf9\ \x7a\xc6\x07\x11\x80\xab\xb5\x07\x38\x9e\x2d\xc3\x03\xbc\xa9\xd4\ \x14\xd2\xf1\x71\xc3\x7d\xcf\xe1\xfd\x2f\xdd\x1d\x1f\x85\x8d\x8e\ \x08\x37\xc4\x47\xe9\x52\x25\xf1\x43\xe0\x31\xd4\xab\x75\x86\xc8\ \xfa\xd2\xf1\xd1\xb4\xba\x17\xbf\x30\x3e\x88\x86\x69\x0f\x70\x3c\ \xbb\x86\xc7\x95\xda\x03\xb8\x85\x74\x7c\x5c\x7f\xef\x73\xf8\xe0\ \xab\x5f\xb4\x4f\x53\x44\x51\xa3\x23\xc2\x15\xf1\x11\x5f\x12\x3f\ \xbe\xf5\x18\xea\xd4\xac\x2e\xb2\xbe\x74\x7c\x34\xa9\xee\x45\xf0\ \x06\x7b\xc6\xc7\xba\x1d\xb9\x62\x73\x11\x1d\xc3\x1b\x0a\xfa\x65\ \x3e\x1f\xa1\xa8\x03\x69\x0f\x70\xbc\xfc\xa7\x95\x76\xd0\x9e\xc3\ \x4d\xa4\xe3\xe3\xba\xa9\xcf\xe2\xc3\xaf\x82\xda\xa7\x69\xaa\xe2\ \x46\x47\x84\x3b\xe2\xa3\x14\x7e\x7a\xfb\x71\xd4\x4e\x90\x79\x02\ \xb3\x74\x7c\x34\xae\xe6\xc5\xaf\xc2\xf1\xf1\xe6\xf4\x82\x3f\x3d\ \x35\x94\x0b\xdc\xf9\xf9\x61\xf4\x78\x78\x3f\xe6\x6e\x08\x89\xcd\ \x45\x74\x8c\x0b\xb4\x07\x38\x96\xed\xc2\x03\x40\xa2\xf6\x00\x6e\ \x24\x1d\x1f\x93\xa7\x3e\x83\x0f\xbf\x76\x47\x7c\x98\x15\x1d\x11\ \x6e\x88\x8f\x32\xf1\xa5\xf0\xf3\x3b\x4f\xa0\xd6\x19\x55\x45\xd6\ \x97\x8e\x8f\x46\xd5\xbc\xf8\xf5\x46\xb9\xf8\xb8\xe3\xf3\x43\x18\ \xf5\xfc\x01\xac\xd8\x7a\xf2\x5d\x8c\xbc\x3c\x60\xe6\xda\x10\xda\ \xdd\xbb\x0f\x6f\x4c\x3f\x02\x00\x38\xf3\xb9\x03\x8c\x0f\xb2\x82\ \xad\xde\xac\xe1\xd1\x1e\xe0\x78\xa1\xa0\xff\x31\x00\xd7\x6b\xcf\ \xe1\x56\xbf\x2e\x3f\x8a\x0b\x5f\x3f\x28\xb6\xfe\x53\xa9\x13\x71\ \xf6\xd0\x3e\xda\xa7\x59\x64\x47\x8f\x86\x70\xd6\x95\x77\x98\x16\ \x1d\xc7\xfa\xe5\xdd\x27\xc5\x9e\x0e\x6a\x95\x7d\xfb\x0f\xa2\xcf\ \xf9\x93\xb0\x65\xeb\x76\x91\xf5\x5f\x1c\x5b\x0a\xc3\xdb\xc4\x88\ \xcd\xbf\xfa\x9f\x5c\xf4\x7e\x74\xbf\xd8\xfa\x00\x50\x2a\xd6\x83\ \x89\x7d\xe3\xd0\xa0\xaa\x17\x95\xcb\x78\xf0\xf7\xee\x5c\x2c\xdc\ \x9c\x8b\x97\x7e\x3f\x72\xd2\x5f\xf3\xc5\x35\xf1\x68\x5f\xc7\xd6\ \x1f\x9d\x45\xce\x17\x67\xf8\x02\x32\x1f\x6c\x54\x48\x76\xdc\xf1\ \xb0\xd5\x96\x90\xdb\x48\xef\x7c\x4c\xba\xe7\x69\x7c\xfc\xed\x6f\ \xda\xa7\x59\x64\x31\x31\x06\x3a\xb6\x69\x6a\xfa\xba\x71\xb1\xb1\ \xa8\x56\xb9\x82\xf6\xe9\x15\x5b\x99\xd2\xa5\x10\x7c\xef\x49\x24\ \x54\xab\x2c\xb2\xbe\xf4\xce\x47\xc3\xaa\x5e\xfc\x2e\xb8\xf3\x01\ \x00\x07\x73\xf2\xf0\xd0\xf7\x87\x71\xc5\xdb\x07\x31\xe6\xc5\x03\ \x98\xf0\xde\xa1\x53\x46\x07\xc0\x9d\x0f\xb2\x44\x92\xf6\x00\x11\ \xb6\x0a\x8f\x50\xd0\x5f\x02\x80\xcc\x2d\xf4\xf4\x1f\xd2\xf1\x31\ \xf1\xee\xa7\xf0\xc9\x77\xce\x8d\x8f\xbb\x26\xa6\xe0\xca\xb1\x67\ \x9a\xb6\x5e\x5c\x6c\x2c\xe6\x7e\xf5\x0a\x2a\x55\x28\xa7\x7d\x6a\ \xa6\x28\x5b\x3a\x1e\xbf\xbe\xff\x14\xaa\x57\xad\x24\xb2\xbe\x74\ \x7c\x34\xa8\xea\xc5\x1f\x37\xc9\xc6\x47\x51\x30\x3e\x48\x98\x5f\ \x7b\x80\x08\x5b\x85\x07\xf8\x69\xb4\x96\x91\x8e\x8f\x6b\x53\x9f\ \xc2\xa7\xdf\xfd\xae\x7d\x9a\x45\x66\x56\x7c\xb8\x2d\x3a\x22\xca\ \x96\x8e\xc7\xef\xef\x3f\x8d\x6a\x95\x2b\x8a\xac\x2f\x1d\x1f\xf5\ \xab\x30\x3e\x28\xea\x8c\xd6\x1e\x20\xc2\x6e\xe1\x31\x56\x7b\x80\ \x68\xd2\xa7\x69\x0c\xde\x12\x8c\x8f\x09\xa9\x4f\x22\xe3\xfb\x3f\ \xb4\x4f\xb3\xc8\x8a\x1b\x1f\x71\x71\xee\x8c\x8e\x88\xb2\x65\xe2\ \xf1\xfb\x87\xcf\xa0\x6a\xa5\x0a\x22\xeb\x5b\x11\x1f\x7f\xde\xcc\ \xf8\xa0\xa8\x51\x39\x14\xf4\xcb\x7d\xc3\x2f\x04\xbb\x85\x47\xb2\ \xf6\x00\xd1\xc6\x27\x1c\x1f\xd7\xdc\xf5\x04\x3e\xfb\x21\xfa\xe2\ \x23\x2e\x2e\x16\x73\xbf\x74\x6f\x74\x44\x94\x2b\x13\x8f\x3f\x3e\ \x7a\x06\x95\x2b\xca\x3c\x68\x58\x3a\x3e\xea\x55\xf6\x62\x1a\xe3\ \x83\xa2\x47\x17\xed\x01\x00\x1b\x85\x47\xfe\xfd\x1d\x32\x17\x8d\ \xe9\x94\xa4\xe3\xe3\xea\x3b\x9f\xc0\xe7\x3f\xfe\xa9\x7d\x9a\x45\ \x56\xd8\xf8\x88\x96\xe8\x88\x28\x57\xa6\x34\xfe\xfc\xe8\x59\x54\ \xaa\x50\x56\x64\x7d\xe9\xf8\xa8\x5b\xd9\x8b\xe9\x53\x18\x1f\x14\ \x15\xce\xd7\x1e\x00\xb0\x51\x78\x00\xe8\xa4\x3d\x40\x34\x93\x8e\ \x8f\xab\xee\x78\x1c\x5f\xfc\x38\x4d\xfb\x34\x8b\xec\xae\x89\x29\ \xb8\xf2\x82\xd3\xc7\x47\xb4\x45\x47\x44\xf9\xb2\xa5\x31\xed\xe3\ \xe7\x51\xa1\x5c\x19\x91\xf5\xa5\xe3\xa3\x4e\x25\xc6\x07\x45\x85\ \x91\xda\x03\x00\xf6\x0a\x8f\x31\xda\x03\x44\x3b\xe9\xf8\xb8\xf2\ \x8e\xc7\xf0\xc5\x4f\x0e\x8e\x8f\x49\x29\xb8\xe2\x14\xf1\x51\x22\ \x4a\xa3\x23\xa2\x7c\xd9\xd2\x98\xf1\xe9\xf3\x28\x5f\x56\xe6\x07\ \xb8\x15\xf1\x31\xe3\x16\xc6\x07\xb9\x5a\xb5\x50\xd0\x1f\xab\x3d\ \x84\x9d\xc2\x63\x94\xf6\x00\x64\x41\x7c\xdc\xfe\x18\xbe\xfc\x79\ \xba\xf6\x69\x16\x59\xea\x49\xe2\xa3\x44\x5c\x2c\xe6\x44\x71\x74\ \x44\x94\x2f\x5b\x06\x33\x3e\x7d\x01\xe5\xca\xc4\x8b\xac\x2f\x1d\ \x1f\xb5\x2b\xda\x73\xe7\xa3\x4a\x19\xdb\x3d\xeb\x91\x9c\xab\xb5\ \xf6\x00\xb6\x08\x8f\xfc\xcf\x67\xa9\xab\x3d\x07\x85\x49\xc7\xc7\ \x15\xb7\x3d\x8a\xaf\x7e\x99\xa1\x7d\x9a\x45\x76\x7c\x7c\x84\xa3\ \xe3\xd5\xa8\x8f\x8e\x88\x0a\xe5\xca\xe0\xaf\x8c\x17\x51\xa6\xb4\ \xcc\xd7\x90\x15\x3b\x1f\x3f\x5d\x67\x8f\xf8\x28\x15\xe7\xc1\x9c\ \xdb\xcb\xa0\x4e\x25\x5b\x7c\xab\x26\x77\x30\xef\x21\x45\x45\x64\ \x97\xaf\xe6\x86\xda\x03\xd0\x7f\x93\x8e\x8f\xcb\x6f\x7d\x04\x5f\ \xbb\x20\x3e\xfe\x3f\x3a\x64\x6e\xac\x74\xaa\x0a\xe5\xca\x20\xf3\ \xb3\x97\x50\xba\x54\x49\x91\xf5\xa5\xe3\xa3\xd9\x19\x5e\xfc\xae\ \xfc\x9c\x8f\x3e\x4d\x62\x90\x75\x67\x69\x54\x2f\xc7\xdd\x0e\x32\ \x95\xfa\xbb\x47\x6d\xf1\x15\x1d\x0a\xfa\xaf\x04\xf0\x82\xf6\x1c\ \xf4\xbf\x82\xcb\x8f\x62\x9c\xe0\x67\xbb\xbc\xfa\xe0\xcd\x18\xea\ \xb3\xc5\x3b\xbc\x8a\x64\xef\xfe\x83\x28\x2b\xf4\x37\x7b\x37\xd8\ \xb9\x7b\x2f\x3a\x9e\x79\x39\x0e\x1e\x3a\x2c\xb2\xbe\xf4\x67\xbb\ \xec\x3a\x90\x87\x71\xaf\x1f\xc4\xbc\x8d\xd6\xde\x63\xf1\xc8\xe8\ \x92\x38\x3f\x49\xfd\x52\x3c\xb9\x53\x9e\xe1\x0b\xa8\x6e\x3a\xd8\ \x65\xc7\x43\xbd\xc0\xe8\xc4\xa4\x77\x3e\x2e\xbd\xe5\x61\x7c\xfb\ \xeb\x5f\xda\xa7\x59\x64\x8c\x8e\x53\xab\x58\xbe\x2c\x66\x7f\xf1\ \x32\x4a\x96\x88\x13\x59\x5f\x7a\xe7\xa3\x42\xbc\x07\x5f\x4c\x88\ \xc7\x63\x67\xcb\xec\xdc\x1c\xaf\x7b\x43\x03\x99\xb7\x95\x61\x74\ \x90\x24\x4f\x28\xe8\xaf\xa2\x39\x80\x5d\xc2\xa3\x87\xf6\x00\x74\ \x72\xd2\xf1\x31\x7e\xca\xc3\xf8\xf6\xb7\x99\xda\xa7\x49\x42\x2a\ \x96\x2f\x8b\xd9\x5f\xbe\x82\xb8\x38\x99\x1f\xa6\xd2\xf1\xe1\x01\ \x70\x6e\xc7\x58\x2c\xba\xbb\x0c\xae\xee\x23\x13\x50\x1d\xea\x1a\ \xf8\xfa\xda\x78\x7c\x70\x79\x3c\x6a\x94\xb7\xc5\x46\x34\xb9\x5b\ \x57\xcd\x83\xab\x7f\x85\xe7\x3f\x38\xec\x90\xf6\x1c\x74\x7a\xd2\ \x97\x5d\x5e\x7f\xf8\x16\x0c\xee\x6d\x9b\x0f\x50\x24\x93\xfd\xbb\ \x6b\x0f\xda\x0d\xbb\x14\x39\x47\x65\x22\x41\xfa\xb2\x4b\xc4\x9e\ \x43\x79\xf8\x61\xc9\x51\x3c\xf0\xed\x61\x6c\xdd\x93\x57\xac\xb5\ \xae\xef\x1f\x87\x31\x1d\x62\x79\xf3\x28\x59\xed\x25\xc3\x17\xb8\ \x52\xeb\xe0\x76\x08\x8f\x44\x00\xf3\xb5\xe7\xa0\x82\x91\x8e\x8f\ \x37\x1e\xb9\x05\x83\x7a\x31\x3e\xdc\x6a\xc7\xae\x3d\x68\x3b\x74\ \x3c\x42\x21\x99\x7b\x26\xac\x8a\x8f\x88\x9d\x07\xf2\xb0\x64\x4b\ \x2e\xfe\x58\x75\x14\x33\xd7\x86\x30\x6b\xdd\xc9\xcf\xab\xe9\x19\ \x5e\x74\x6d\x10\x83\x9e\x8d\x0c\xb4\xaa\xe9\x45\x8d\xf2\x5e\x78\ \xd4\xbf\x03\x53\x94\x5a\x6b\xf8\x02\x0d\xb4\x0e\xae\xfe\x65\x1f\ \x0a\xfa\x27\x03\x78\x42\x7b\x0e\x2a\x38\xe9\xf8\x78\xf3\xd1\x5b\ \x31\xb0\x27\x1f\x64\xeb\x56\x3b\x76\xee\x41\xe2\xd0\x8b\x91\x9b\ \x5b\xbc\xdd\x82\x93\xb1\x3a\x3e\x8e\x97\x9b\x07\x84\x72\xc3\xff\ \xf6\x7a\xc2\xff\x18\xdc\xd0\x20\xfb\xf1\x18\xbe\x80\xca\x81\xed\ \xf0\xc7\x61\x88\xf6\x00\x54\x38\xd2\xf7\x7c\xa4\xdc\xf8\x00\x7e\ \xfc\x63\xb6\xf6\x69\x92\x90\xca\x15\xcb\x21\xeb\x9b\xd7\xc5\xd6\ \x97\xbe\xe7\xe3\x74\xbc\x1e\x20\xd6\x00\x4a\xc4\x84\xff\xcd\xe8\ \x20\x9b\x52\xbb\xc1\xd4\x0e\x7f\x24\x9c\xfb\x5e\xca\x28\x26\x1d\ \x1f\x17\xdd\x78\x3f\x7e\xfa\x93\xf1\xe1\x56\x95\x2b\x96\xc7\x82\ \xef\xde\x10\x5b\x5f\x3b\x3e\x88\x1c\xa0\x9d\xd6\x81\x55\xc3\x23\ \x14\xf4\x7b\x01\xf0\x71\x8f\x0e\x25\x1d\x1f\xfe\x1b\xee\xc7\x4f\ \xd3\xe6\x68\x9f\x66\x54\xc8\xcd\xcd\xb5\xfc\x98\x55\x2a\x96\xc7\ \x82\x6f\x19\x1f\x44\x4a\xfa\x69\x1d\x58\x7b\xc7\xa3\xa6\xf2\xf1\ \xa9\x98\xc4\xe3\xe3\xfa\xfb\xf0\xf3\x74\xc6\x87\xa4\x23\x47\x72\ \xb0\x64\xc5\x6a\xec\x3f\x70\xc0\xf2\x63\x57\xa9\x54\x1e\x59\xdf\ \xba\xf7\xb2\x0b\x91\x8d\xf5\xd5\x3a\xb0\x76\x78\x74\x50\x3e\x3e\ \x99\x40\x3a\x3e\xc6\x5d\x77\x1f\x7e\x99\x3e\x57\xfb\x34\x5d\xe9\ \xc8\x91\x1c\xac\x58\xb3\x0e\x00\xb0\x76\xc3\x66\x95\xf8\xa8\x5a\ \xa9\x02\xe3\x83\xc8\x7a\x6a\x1f\x16\xa7\x1d\x1e\x7d\x94\x8f\x4f\ \x26\x91\x8e\x8f\x0b\xaf\xbb\x17\xc1\x19\xf3\xb4\x4f\xd3\x55\x8e\ \x8d\x8e\x08\xcd\xf8\x98\xef\xe2\x1b\x4e\x89\x6c\xa8\x64\x28\xe8\ \x57\x79\xfb\x97\x76\x78\xf4\x54\x3e\x3e\x99\x48\x3a\x3e\xc6\x4e\ \x9e\x8a\xe0\x5f\x8c\x0f\x33\x9c\x28\x3a\x22\xb4\xe2\xa3\x5a\xe5\ \x0a\x98\xff\xcd\x6b\x62\xeb\x33\x3e\x88\xfe\x47\x2d\x8d\x83\x6a\ \x87\x47\x0b\xe5\xe3\x93\xc9\xc4\xe3\x63\xd2\x54\xfc\xfa\xd7\x7c\ \xed\xd3\x74\xb4\x53\x45\x47\x84\x5e\x7c\x54\xc4\xfc\xaf\x19\x1f\ \x44\x16\x49\xd4\x38\xa8\x5a\x78\x84\x82\x7e\x03\x80\x35\x9f\xbc\ \x44\x96\x92\x8e\x8f\x0b\x26\xa5\xe1\xb7\x99\xf3\xb5\x4f\xd3\x91\ \x0a\x12\x1d\x11\x6a\xf1\x51\xa5\x22\xe6\x31\x3e\x88\xac\xd0\x5d\ \xe3\xa0\x9a\x3b\x1e\xd5\x14\x8f\x4d\xc2\xa4\xe3\xe3\xfc\x89\x69\ \xf8\x3d\x33\x4b\xfb\x34\x1d\xa5\x30\xd1\x11\xa1\x15\x1f\xd5\xab\ \x54\xc4\xbc\xaf\x5f\x15\x5b\x9f\xf1\x41\x04\x40\xe9\xc3\xe2\x34\ \xc3\xa3\x99\xe2\xb1\xc9\x02\xd2\xf1\x71\xde\xb5\xf7\xe0\x8f\xcc\ \x05\xda\xa7\xe9\x08\x45\x89\x8e\x08\xbd\xf8\xa8\x84\xb9\x5f\x31\ \x3e\x88\x04\xb5\xd2\x38\xa8\x66\x78\xf0\xad\xb4\x51\xc0\xd7\x34\ \x06\x01\xc1\xf8\x38\xf7\xda\xbb\xf1\xc7\x2c\xc6\xc7\xa9\x14\x27\ \x3a\x22\xb4\xe2\xe3\x8c\xaa\x8c\x0f\x22\x41\x15\x42\x41\xbf\xe5\ \x07\xd5\x0c\x0f\x7e\x04\x69\x94\xe8\x2b\x1d\x1f\x13\xee\xc6\x9f\ \xb3\x17\x6a\x9f\xa6\x2d\x99\x11\x1d\x11\x9a\xf1\x31\xe7\xcb\x57\ \xc4\xd6\x67\x7c\x50\x94\x2b\x63\xf5\x01\x35\xc3\x43\xe5\x6e\x5a\ \xd2\x21\x1d\x1f\xe7\x5c\x93\x8a\x69\x8c\x8f\xff\x62\x66\x74\x44\ \x68\xc5\x47\x42\xb5\xca\x8c\x0f\x22\x19\xb5\xad\x3e\xa0\x66\x78\ \xd4\x55\x3c\x36\x29\x90\x8e\x8f\xb3\xaf\x49\xc5\xf4\x39\x8b\xb4\ \x4f\xd3\x16\x24\xa2\x23\x42\x33\x3e\x66\x7f\xf1\xb2\xd8\xfa\x8c\ \x0f\x8a\x52\xcd\xad\x3e\xa0\x4a\x78\x84\x82\x7e\x0f\x80\x12\x1a\ \xc7\x26\x5d\xd2\xf1\x31\xe6\xea\xbb\x30\x7d\x6e\x74\xc7\x87\x64\ \x74\x44\x68\xc5\x47\x8d\xea\x55\x18\x1f\x44\xe6\x6a\x6b\xf5\x01\ \xb5\x76\x3c\xf8\x89\xb4\x51\x4c\x3c\x3e\xae\xba\x0b\x33\xe6\x2e\ \xd6\x3e\x4d\x15\x56\x44\x47\x84\x66\x7c\xcc\x62\x7c\x10\x99\xc5\ \xf2\xdb\x1e\xb4\xc2\xa3\x86\xd2\x71\xc9\x26\xfa\x36\x8d\x41\xe0\ \x62\xb9\xf8\x18\x7d\xd5\x9d\xf8\x6b\x5e\x74\xc5\x87\x95\xd1\x11\ \xa1\x15\x1f\x35\xab\x57\xc1\xac\xcf\x5f\x12\x5b\x9f\xf1\x41\x51\ \x24\x3a\x2e\xb5\x00\x68\xa8\x74\x5c\xb2\x91\xbe\xcd\x64\xe3\xe3\ \xac\x2b\xef\xc4\xcc\xf9\x4b\xb4\x4f\xd3\x12\x1a\xd1\x11\xa1\x16\ \x1f\x67\x54\x45\x26\xe3\x83\xa8\xb8\x2c\xff\xbc\x16\xad\xf0\xe0\ \xc3\xc3\x08\x80\x7c\x7c\x24\x5f\x71\x07\x66\xce\x5f\xaa\x7d\x9a\ \xa2\x34\xa3\x23\x42\x2b\x3e\x6a\x9d\x51\x15\x99\x9f\x31\x3e\x88\ \x8a\xa1\x94\xd5\xcf\xf2\xd0\x0a\x0f\x7e\x38\x1c\xfd\x87\x7c\x7c\ \xdc\x8e\xcc\x2c\x77\xc6\x87\x1d\xa2\x23\x42\x2d\x3e\x12\xaa\x62\ \xe6\x67\x2f\x8a\xad\xcf\xf8\xa0\x28\x60\xe9\xe7\xa6\x69\x85\x47\ \x13\xa5\xe3\x92\x4d\x49\xc7\xc7\xa8\xcb\x6f\xc7\xac\xac\x65\xda\ \xa7\x69\x2a\x3b\x45\x47\x84\x56\x7c\xd4\x4e\xa8\x86\x99\x19\x8c\ \x0f\xa2\x22\xaa\x68\xe5\xc1\xb4\xc2\x83\xcf\xf0\xa0\xff\x21\x1d\ \x1f\x23\x2f\xbf\x0d\xb3\x16\xb8\x23\x3e\xec\x18\x1d\x11\x6a\xf1\ \x51\xa3\x1a\xfe\xca\x78\x41\x6c\x7d\xc6\x07\xb9\x58\x82\x95\x07\ \xd3\x0a\x8f\xaa\x4a\xc7\x25\x9b\x13\x8f\x8f\xcb\x6e\xc3\xec\x85\ \xcb\xb5\x4f\xb3\x58\xec\x1c\x1d\x11\x5a\xf1\x51\xa7\x46\x75\xfc\ \xf5\x29\xe3\x83\xa8\x90\xea\x58\x79\x30\xcb\xc3\x23\xff\x26\x16\ \x3e\x3c\x8c\x4e\x4a\x3a\x3e\xce\xbc\xf4\x56\xcc\x71\x68\x7c\x38\ \x21\x3a\x22\xd4\xe2\xa3\x66\x75\xcc\x60\x7c\x10\x15\x46\x7d\x2b\ \x0f\xa6\xb1\xe3\x11\xa3\x70\x4c\x72\x18\xe9\xf8\x18\x71\xe9\xad\ \x98\xb3\x68\x85\xf6\x69\x16\x8a\x93\xa2\x23\x42\x2b\x3e\xea\xd6\ \xac\x8e\xe9\x9f\x3c\x2f\xb6\x3e\xe3\x83\x5c\xc6\xf5\xe1\x51\x5a\ \xe1\x98\xe4\x40\xe2\xf1\x31\xfe\x16\xcc\x75\x48\x7c\x38\x31\x3a\ \x22\xb4\xe2\xa3\x5e\xad\x33\x18\x1f\x44\x05\x53\xcf\xca\x83\x69\ \x84\x47\x79\x85\x63\x92\x43\x49\xc7\xc7\xf0\xf1\xb7\x60\xde\xe2\ \x95\xda\xa7\x79\x4a\x4e\x8e\x8e\x08\xcd\xf8\x98\xf6\xf1\x73\x62\ \xeb\x33\x3e\xc8\x25\x6a\x5a\x79\x30\x8d\xf0\xa8\xac\x70\x4c\x72\ \x30\xe9\xf8\x18\x76\xc9\x14\xcc\x5f\x62\xcf\xf8\x70\x43\x74\x44\ \x68\xc5\x47\xfd\xda\x09\x8c\x0f\xa2\x53\xab\x6e\xe5\xc1\x34\xc2\ \xa3\x9a\xc2\x31\xc9\xe1\xa4\xe3\x63\xe8\xc5\x53\x30\x7f\xc9\x2a\ \xed\xd3\xfc\x2f\x6e\x8a\x8e\x08\xcd\xf8\xf8\xf3\xa3\x67\xc5\xd6\ \x67\x7c\x90\xc3\x55\xb0\xf2\x60\x1a\xe1\x61\x69\x59\x91\x7b\xc8\ \xc7\xc7\xcd\xc8\x5a\x6a\x8f\xf8\x70\x63\x74\x44\x68\xc5\x47\x83\ \x3a\x35\x18\x1f\x44\x27\x26\xf7\x8d\xf5\x04\x18\x1e\xe4\x28\xd2\ \xf1\x31\x24\xe5\x66\x2c\x58\xba\x5a\xf5\x1c\xdd\x1c\x1d\x11\x9a\ \xf1\xf1\xc7\x87\x8c\x0f\xa2\xe3\x78\xad\xfc\xbc\x16\x5e\x6a\x21\ \xc7\x91\x8e\x8f\xc1\x29\x37\x61\xc1\x32\x9d\xf8\xc8\xcd\xcd\x75\ \x7d\x74\x44\x68\xc5\x47\xc3\xba\x35\xf0\xc7\x87\xcf\x88\xad\xcf\ \xf8\x20\x87\x32\xac\x3a\x90\x46\x78\x54\x51\x38\x26\xb9\x8c\x78\ \x7c\x5c\x74\x13\x16\x2e\x5f\x63\xf9\x79\x79\xbd\x5e\xd4\xaf\x63\ \xe9\x0d\xe6\xaa\xf4\xe2\xa3\x26\x7e\xff\x80\xf1\x41\x74\x8c\x58\ \xab\x0e\xc4\x77\xb5\x90\x63\x49\xc7\xc7\x20\xff\x8d\x2a\xf1\x51\ \x3a\x3e\x9e\xf1\x61\x81\x46\xf5\x6a\xe2\xb7\x0f\x9e\x16\x5b\x9f\ \xf1\x41\x0e\x63\xd9\x13\xc5\x35\xc2\xa3\x82\xc2\x31\xc9\xa5\xac\ \x88\x8f\x45\x2b\xd6\x5a\x7e\x5e\x8c\x0f\x6b\x34\xae\x57\x0b\xbf\ \xbd\xcf\xf8\x20\x02\x50\xd2\xaa\x03\x69\x84\x47\x39\x85\x63\x92\ \x8b\x49\xc7\xc7\xc0\x71\x37\x60\x31\xe3\x43\x9c\x5a\x7c\xd4\xaf\ \x85\x5f\xdf\x7f\x4a\x6c\x7d\xc6\x07\x39\x44\xbc\x55\x07\xe2\x23\ \xd3\xc9\x15\xfa\x36\x8b\x41\xba\x60\x7c\x0c\x18\x77\x03\x16\xaf\ \x5c\x67\xf9\x79\x31\x3e\xac\xd1\xa4\x7e\x6d\xfc\xfa\x1e\xe3\x83\ \xa2\x9a\x65\x6f\xa9\xd5\x08\x0f\x4b\xdf\x2f\x4c\xd1\xa3\x9f\x74\ \x7c\x5c\x78\x3d\x96\x30\x3e\xc4\xa9\xc5\x47\x83\xda\x08\xbe\xf7\ \xa4\xd8\xfa\x8c\x0f\xb2\x39\x57\x87\x87\x65\x37\xb0\x50\xf4\x91\ \x8e\x8f\xfe\x17\x5e\x8f\xa5\xab\xd6\x5b\x7e\x5e\x8c\x0f\x6b\x34\ \x6d\x50\x07\xbf\xbc\xfb\xa4\xd8\xfa\x8c\x0f\xb2\x31\x57\xdf\xe3\ \x11\xa7\x70\x4c\x8a\x22\xd2\xf1\xd1\x6f\xec\x75\x8c\x0f\x0b\x68\ \xc5\x47\xb3\x86\x8c\x0f\x8a\x4a\xae\x0e\x8f\x18\x85\x63\x52\x94\ \xb1\x22\x3e\x96\xad\xde\x60\xf9\x79\x31\x3e\xac\xd1\xac\x61\x1d\ \xfc\xfc\xce\x13\x62\xeb\x33\x3e\xc8\x86\x5c\xfd\x76\x5a\x8d\x63\ \x52\x14\x92\x8e\x8f\xbe\x17\x4c\xc6\xf2\x35\x8c\x0f\x69\x5a\xf1\ \xd1\xbc\x51\x5d\xfc\xc4\xf8\xa0\xe8\xe1\xea\x07\x88\x31\x3c\xc8\ \x32\xd2\xf1\xe1\x3b\x7f\x32\x96\xaf\xd9\x68\xf9\x79\x31\x3e\xac\ \xd1\xa2\x51\x5d\xfc\xf4\xf6\xe3\x62\xeb\x33\x3e\xc8\x46\x2c\xbb\ \x1a\xa1\x11\x01\x1e\x85\x63\x52\x14\x93\x8f\x8f\x49\x58\xb1\x96\ \xf1\x21\x4d\x2d\x3e\x1a\xd7\xc3\x8f\x8c\x0f\x72\x3f\xcb\x7a\x80\ \xbb\x0f\x14\x15\xa4\xe3\xa3\xcf\x79\x93\xb0\x62\xed\x26\xcb\xcf\ \x8b\xf1\x61\x8d\x96\x8d\xeb\xe1\xc7\xb7\x1e\x13\x5b\x9f\xf1\x41\ \x36\x60\xd9\xa6\x00\xc3\x83\xa2\x86\x7c\x7c\x4c\xc4\xca\x75\x8c\ \x0f\x69\x6a\xf1\xd1\xa4\x3e\x7e\x08\x30\x3e\x88\x8a\x8b\xe1\x41\ \x51\x45\x3a\x3e\x7a\x9f\x3b\x11\xab\x18\x1f\xe2\xb4\xe2\xa3\x55\ \xd3\xfa\xf8\x3e\xf0\xa8\xd8\xfa\x8c\x0f\x52\x94\x6b\xd5\x81\x34\ \xc2\xc3\xb2\x93\x23\x3a\x11\xe9\xf8\xe8\x75\xee\x44\xac\x5a\xbf\ \xd9\xf2\xf3\x62\x7c\x58\xa3\x75\xd3\x06\xf8\x3e\x9d\xf1\x41\xae\ \x13\xb2\xea\x40\x0c\x0f\x8a\x4a\xe2\xf1\x71\xce\xb5\x58\xcd\xf8\ \x10\xa7\x16\x1f\xcd\x1a\xe0\xbb\xf4\x47\xc4\xd6\x67\x7c\x90\x82\ \x1c\xab\x0e\xa4\x11\x1e\x96\x55\x15\xd1\xa9\x48\xc7\x47\xcf\x73\ \xae\xc5\xea\x0d\x5b\x2c\x3f\x2f\xc6\x87\x35\xda\x34\x6b\x88\x6f\ \xdf\x64\x7c\x90\x6b\x1c\xb1\xea\x40\x1a\xe1\x61\x59\x55\x11\x9d\ \x8e\x78\x7c\x9c\x3d\x01\x6b\x18\x1f\xe2\xb4\xe2\x23\xb1\x79\x43\ \x7c\xfb\xe6\xc3\x62\xeb\x33\x3e\xc8\x42\x87\xad\x3a\x90\x46\x78\ \x58\x56\x55\x44\x05\x21\x1d\x1f\x3d\xce\x9e\x80\x35\x1b\xb3\x2d\ \x3f\x2f\xc6\x87\x35\x12\x9b\x37\xc2\x37\x6f\x30\x3e\xc8\xf1\x0e\ \x59\x75\x20\x8d\xf0\xb0\xec\xe4\x88\x0a\x4a\x3c\x3e\xc6\x5c\x83\ \xb5\x8c\x0f\x71\x5a\xf1\xd1\xb6\x45\x23\x7c\xfd\xfa\x43\x62\xeb\ \x33\x3e\xc8\x02\x07\xad\x3a\x90\x46\x78\x58\xff\x5d\x81\xa8\x00\ \xa4\xe3\xa3\xfb\x98\x6b\xb0\x6e\x13\xe3\x43\x9a\x56\x7c\xb4\x6b\ \xd9\x98\xf1\x41\x4e\xe6\xea\xf0\xd8\xab\x70\x4c\xa2\x02\x91\x8e\ \x8f\x6e\xa3\xaf\xc1\xba\x4d\x7f\x5b\x7e\x5e\x8c\x0f\x6b\xb4\x6b\ \xd9\x18\x5f\xbd\xf6\xa0\xd8\xfa\x8c\x0f\x12\xe4\xea\xf0\xd8\xad\ \x70\x4c\xa2\x02\x93\x8f\x8f\xab\xb1\x7e\x33\xe3\x43\x9a\x56\x7c\ \xb4\x6f\xd5\x04\x5f\x32\x3e\xc8\x79\x5c\x1d\x1e\x3b\x15\x8e\x49\ \x54\x28\xd2\xf1\xd1\xf5\xac\xab\xb1\x7e\xf3\x56\xcb\xcf\x8b\xf1\ \x61\x8d\x0e\xad\x9a\xe0\xcb\x57\x1f\x10\x5b\x9f\xf1\x41\x02\x5c\ \x7d\x73\xe9\x76\x85\x63\x12\x15\x9a\x7c\x7c\x5c\x85\x0d\x5b\x18\ \x1f\xd2\xd4\xe2\xa3\x75\x53\x7c\xf1\x0a\xe3\x83\x1c\xc3\xd5\xcf\ \xf1\xf8\x47\xe1\x98\x44\x45\xd2\xaf\x59\x0c\xd2\x53\xe4\xe2\xa3\ \x4b\x32\xe3\xc3\x0a\x5a\xf1\xd1\xb1\x4d\x53\x7c\xfe\xca\xfd\x62\ \xeb\x33\x3e\xc8\x44\x96\x7d\x21\x69\x84\xc7\x36\x85\x63\x12\x15\ \x59\xbf\xe6\xf2\xf1\xb1\x71\x8b\xf5\x7f\x2c\x18\x1f\xd6\xe8\xd4\ \xa6\x19\x3e\x7b\xf9\x3e\xb1\xf5\x19\x1f\x64\x06\xc3\x17\xc8\xb3\ \xea\x58\x1a\xe1\x61\xfd\x5f\xef\x88\x8a\x49\x3a\x3e\x3a\x27\x5f\ \x89\x8d\xd9\x8c\x0f\x69\x5a\xf1\x91\x94\xd8\x9c\xf1\x41\x76\x66\ \xe9\x83\x3d\x19\x1e\x44\x05\xd4\xaf\x79\x0c\xde\x94\x8c\x8f\x51\ \x57\x62\x53\xb6\xf5\x57\x22\x19\x1f\xd6\x48\x4a\x6c\x8e\x8c\x97\ \xee\x15\x5b\x9f\xf1\x41\xc5\x60\xe9\x63\x2e\x78\x8f\x07\x51\x21\ \xf4\x17\x8e\x8f\xa4\x51\x57\x60\xd3\xdf\x8c\x0f\x69\x5a\xf1\xd1\ \xb9\x6d\x0b\x7c\xfa\x22\xe3\x83\x6c\x67\x87\x95\x07\xe3\xdb\x69\ \x89\x0a\x49\x3c\x3e\x46\x5e\x81\xcd\x8c\x0f\x71\x5a\xf1\xd1\xa5\ \x5d\x0b\x7c\xfa\xe2\x54\xb1\xf5\x19\x1f\x54\x04\x96\x3e\x52\x99\ \x4f\x2e\x25\x2a\x02\xe9\xf8\xe8\x34\xf2\x0a\x6c\xde\x6a\xfd\x3b\ \xcf\x19\x1f\xd6\xe8\xd2\xae\x25\x3e\x79\x81\xf1\x41\xb6\xb1\xc1\ \xca\x83\xf1\x43\xe2\x88\x8a\x48\x3c\x3e\xce\xbc\x1c\x5b\x18\x1f\ \xe2\xb4\xe2\xa3\x6b\xfb\x96\xf8\xf8\xf9\x34\xb1\xf5\x19\x1f\x54\ \x08\xeb\xac\x3c\x98\xe5\xe1\x91\xff\x96\x9d\x5c\xab\x8f\x4b\x24\ \x41\x3a\x3e\x3a\x9e\x79\x39\xb6\x6c\xb3\xf4\xf2\x2b\x00\xc6\x87\ \x55\xba\x75\x68\x85\x8f\x18\x1f\xa4\x6f\x8d\x95\x07\xd3\xd8\xf1\ \x00\x80\x3d\x4a\xc7\x25\x32\x9d\x78\x7c\x8c\xb8\x0c\xd9\x8c\x0f\ \x71\x5a\xf1\xd1\xbd\x43\x2b\x7c\xf4\xdc\x3d\x62\xeb\x33\x3e\xa8\ \x00\xd6\x59\x79\x30\xad\xf0\xd8\xa2\x74\x5c\x22\x11\xd2\xf1\xd1\ \x81\xf1\x61\x09\xb5\xf8\xe8\xd8\x1a\x1f\x3e\x7b\xb7\xd8\xfa\x8c\ \x0f\x3a\x8d\xcd\x56\x1e\x4c\x2b\x3c\x56\x2b\x1d\x97\x48\x8c\x15\ \xf1\xf1\xf7\x3f\xff\x5a\x7e\x5e\x8c\x0f\x6b\xf4\xe8\xd4\x06\x1f\ \x30\x3e\x48\x87\xa5\x4f\x2f\xd4\x0a\x8f\xa5\x4a\xc7\x25\x12\x25\ \x1d\x1f\xed\x87\x5f\xca\xf8\xb0\x80\x56\x7c\xf4\xec\xd4\x06\xef\ \x3f\x93\x2a\xb6\x3e\xe3\x83\x4e\xc2\xf5\x0f\x10\x03\x18\x1e\xe4\ \x62\x56\xc4\xc7\xd6\xed\x8c\x0f\x69\x5a\xf1\xd1\x2b\x29\x11\xef\ \x3f\xcd\xf8\x20\xcb\xe4\x1a\xbe\x80\xa5\x6f\xf8\xd0\x0a\x8f\x15\ \x4a\xc7\x25\xb2\x84\x74\x7c\xb4\x1b\x76\x29\xb6\x6e\xb7\xfe\x59\ \x7c\x8c\x0f\x6b\xf4\xea\x9c\x88\xf7\x9e\xbe\x4b\x6c\x7d\xc6\x07\ \x1d\xc3\xf2\x9b\xc7\xb4\xc2\x63\x9d\xd2\x71\x89\x2c\x23\x1f\x1f\ \xe3\xb1\x8d\xf1\x21\x4e\x2b\x3e\x7a\x77\x6e\x8b\x77\x9f\x62\x7c\ \x90\x38\xcb\xef\xb9\xd4\x0a\x0f\xeb\x9f\x8a\x44\xa4\x40\x3a\x3e\ \xda\x0e\x1b\x8f\x6d\x3b\x18\x1f\xd2\xb4\xe2\xa3\x4f\x97\xb6\x78\ \xe7\xc9\x3b\xc5\xd6\x67\x7c\x10\x80\x85\x56\x1f\x50\x25\x3c\x0c\ \x5f\xc0\xd2\x8f\xe0\x25\xd2\x24\x1e\x1f\x43\xc7\xe3\x9f\x1d\xbb\ \x2c\x3f\x2f\xc6\x87\x35\x7c\x5d\xdb\xe1\xed\x27\xef\x10\x5b\x9f\ \xf1\x11\xf5\xe6\x5b\x7d\x40\xad\x1d\x0f\x40\xe1\xba\x12\x91\x16\ \xe9\xf8\x48\x1c\x7a\x09\xfe\xf9\x77\x97\xe5\xe7\xc5\xf8\xb0\x46\ \xdf\xae\xed\xf1\xf6\x13\x8c\x0f\x12\xb1\xc0\xea\x03\x6a\x86\x07\ \xdf\xd9\x42\x51\x45\x3c\x3e\x86\x30\x3e\xac\xa0\x16\x1f\xdd\xda\ \xe3\xad\xc7\x6f\x17\x5b\x9f\xf1\x11\xb5\xa2\xe6\x1e\x0f\x00\x98\ \xad\x78\x6c\x22\x15\x56\xc4\xc7\xf6\x7f\x77\x5b\x7e\x5e\x8c\x0f\ \x6b\xf4\xeb\xde\x01\x01\xc6\x07\x99\xeb\x1f\xab\x0f\xa8\x19\x1e\ \xb3\x14\x8f\x4d\xa4\x46\x3a\x3e\xda\x0c\xb9\x18\xdb\x77\x32\x3e\ \xa4\x69\xc5\x47\xff\xee\x1d\x90\xfe\xd8\x6d\x62\xeb\x33\x3e\xa2\ \xca\x51\xc3\x17\xb0\xfc\x37\x5b\x33\x3c\xb2\x14\x8f\x4d\xa4\xca\ \x8a\x9d\x8f\x1d\x8c\x0f\x71\x5a\xf1\x31\xa0\x47\x47\xbc\xf9\xe8\ \xad\x62\xeb\x33\x3e\xa2\xc6\x7a\x8d\x83\x6a\x86\xc7\x3a\xc5\x63\ \x13\xa9\x93\x8c\x8f\xbc\xbc\x3c\x24\x0e\x1d\x8f\x1d\xbb\xac\xff\ \x20\x68\xc6\x87\x35\x06\xf6\xec\x84\x37\x1f\x61\x7c\x50\xb1\xa8\ \x5c\x79\x50\x0b\x0f\xc3\x17\xd8\xaf\x75\x6c\x22\xbb\x90\x8c\x8f\ \xdc\xdc\x5c\xb4\x1b\x3a\x1e\xff\x32\x3e\xc4\xa9\xc5\x47\xaf\x4e\ \x78\xe3\x91\x5b\xc4\xd6\x67\x7c\xb8\xde\x34\x8d\x83\x6a\xee\x78\ \x00\xc0\x16\xe5\xe3\x13\xa9\x93\x8c\x8f\xa3\xa1\x10\xda\x0d\xbf\ \x94\xf1\x61\x01\xad\xf8\x18\xd4\x2b\x09\xaf\x3f\xcc\xf8\xa0\x22\ \xc9\xd4\x38\xa8\x76\x78\xf0\x06\x53\x22\xc8\xc6\x47\x4e\xce\x51\ \x74\x18\x71\x19\xfe\xdd\x6d\xe9\x07\x50\x02\x60\x7c\x58\x65\x70\ \xef\x24\xbc\xf6\xd0\x14\xb1\xf5\x19\x1f\xae\xb5\x5c\xe3\xa0\xda\ \xe1\x11\x54\x3e\x3e\x91\x6d\x48\xc6\xc7\xe1\x23\x39\xe8\x38\xe2\ \x32\xec\x64\x7c\x88\xd3\x8a\x8f\x21\x7d\x3a\xe3\xd5\x87\x6e\x16\ \x5b\x9f\xf1\xe1\x4a\xd6\xdf\x81\x0e\xfd\xf0\x98\xae\x7c\x7c\x22\ \x5b\xe9\xdf\x3c\x06\x6f\x08\xc5\xc7\xa1\xc3\x47\xd0\x69\xe4\xe5\ \x8c\x0f\x0b\x68\xc5\xc7\xd0\x3e\x5d\xf0\xca\x83\x8c\x0f\x2a\x90\ \x2d\x86\x2f\xa0\x72\x60\xed\xf0\xe0\xd3\x4b\x89\x8e\x33\x40\x30\ \x3e\x0e\x1c\x3c\x8c\xa4\x51\x57\x60\xd7\x9e\x7d\x96\x9f\x17\xe3\ \xc3\x1a\xc3\x7c\x5d\xf0\xca\x03\x37\x89\xad\xcf\xf8\x70\x0d\x95\ \x1b\x4b\x01\xe5\xf0\x30\x7c\x81\x7d\x00\xf2\x34\x67\x20\xb2\x23\ \xc9\xf8\xd8\x7f\xe0\x10\x3a\x8f\xba\x92\xf1\x61\x01\xb5\xf8\xe8\ \xdb\x15\x2f\xdf\x7f\xa3\xd8\xfa\x8c\x0f\x57\xf8\x51\xeb\xc0\xda\ \x3b\x1e\x00\xb0\x42\x7b\x00\x22\x3b\x92\x8c\x8f\xbd\xfb\x0f\xa0\ \x4b\xf2\x55\x8c\x0f\x0b\x68\xc5\xc7\xf0\x7e\xdd\xf0\x12\xe3\x83\ \x4e\x2e\x3a\x77\x3c\xf2\xfd\xac\x3d\x00\x91\x5d\x49\xc6\xc7\x9e\ \x7d\xfb\xd1\x75\xf4\xd5\xd8\xbd\xd7\xfa\x47\xea\x30\x3e\xac\x31\ \xa2\x5f\x37\xbc\x78\xdf\x0d\x62\xeb\x33\x3e\x1c\x6d\x95\xd6\x81\ \xed\x10\x1e\xdf\x69\x0f\x40\x64\x67\x92\xf1\xb1\x7b\xcf\x3e\x74\ \x63\x7c\x58\x42\x2b\x3e\xce\xec\xdf\x1d\x2f\xdc\x7b\xbd\xd8\xfa\ \x8c\x0f\x47\x3a\x60\xf8\x02\x47\xb4\x0e\x6e\x87\xf0\x50\x79\x80\ \x09\x91\x93\x48\xc6\xc7\xce\xdd\x7b\xd1\x7d\xcc\x35\xd8\xc3\xf8\ \x10\xa7\x15\x1f\x23\x07\xf4\xc0\xf3\x53\x19\x1f\xf4\x1f\x33\x35\ \x0f\x6e\x87\xf0\xd8\xaa\x3d\x00\x91\x13\x48\xc6\xc7\xbf\xbb\xf6\ \xa0\xc7\xd9\x13\xb0\x67\x1f\xe3\x43\x9a\x56\x7c\x8c\x1a\xd8\x03\ \xcf\x4d\xbd\x4e\x6c\x7d\xc6\x87\xa3\x7c\xa5\x79\x70\xf5\xf0\xc8\ \x7f\x1f\xf1\x6a\xed\x39\x88\x9c\x40\x32\x3e\xb6\xef\xdc\x8d\x9e\ \x67\x5f\x8b\x3d\xfb\xac\xff\xa1\xc8\xf8\xb0\x46\xf2\xc0\x9e\x78\ \x2e\x6d\xb2\xd8\xfa\x8c\x0f\xc7\x50\x7b\x47\x0b\x60\x83\xf0\xc8\ \xf7\xb5\xf6\x00\x44\x4e\x21\x19\x1f\xff\xfc\xbb\x0b\xbd\xcf\xbd\ \x16\x7b\x19\x1f\xe2\xd4\xe2\x63\x50\x2f\x3c\x7b\xcf\x64\xb1\xf5\ \x19\x1f\x8e\xb0\x4c\xf3\xe0\x76\x09\x8f\x2f\xb4\x07\x20\x72\x12\ \xc9\xf8\xd8\xba\x7d\x27\x7a\x9f\x37\x11\x7b\xf7\x33\x3e\xa4\x69\ \xc5\xc7\x59\x83\x7b\xe1\x99\xbb\x27\x89\xad\xcf\xf8\xb0\xb5\x5d\ \x86\x2f\x90\xa3\x39\x80\x5d\xc2\x83\x37\x98\x12\x15\x92\x64\x7c\ \xfc\xfd\xcf\xbf\xe8\x73\xde\x24\xc6\x87\x05\xb4\xe2\x63\xf4\x90\ \xde\x78\xfa\xee\x89\x62\xeb\x33\x3e\x6c\x4b\xf5\x32\x0b\x60\x93\ \xf0\x30\x7c\x81\xbd\x00\xd4\xde\xda\x43\xe4\x54\x92\xf1\x91\xbd\ \x6d\x07\xfa\x9e\x3f\x19\xfb\xf6\x1f\xb4\xfc\xbc\x18\x1f\xd6\x18\ \x33\xa4\x0f\x9e\x4a\x65\x7c\x44\x99\x8f\xb5\x07\xb0\x45\x78\xe4\ \xfb\x5d\x7b\x00\x22\x27\x92\x8c\x8f\xcd\x5b\xb7\xa3\xef\xd8\xc9\ \xd8\x77\x80\xf1\x21\x4d\x2b\x3e\xce\x1e\xda\x07\x4f\xde\x75\xad\ \xd8\xfa\x8c\x0f\xdb\xf9\x55\x7b\x00\x3b\x85\xc7\x07\xda\x03\x10\ \x39\xd5\x80\xe6\x31\x78\xe3\x22\x99\xf8\xd8\x94\xfd\x0f\xfa\x8d\ \xbd\x8e\xf1\x61\x01\xad\xf8\x38\x67\x98\x0f\x4f\xdc\x39\x41\x6c\ \x7d\xc6\x87\x6d\xe4\x1a\xbe\xc0\x36\xed\x21\xec\x14\x1e\x7c\x82\ \x29\x51\x31\x0c\x68\x21\x17\x1f\x1b\xb7\x6c\xc3\x80\x0b\xaf\xc7\ \x7e\xc6\x87\x38\xad\xf8\x38\x77\x78\x5f\x3c\x7e\x07\xe3\xc3\xe5\ \x54\x1f\x1c\x16\x61\xa7\xf0\xd8\x04\x7e\x52\x2d\x51\xb1\x48\xc6\ \xc7\xfa\xcd\x5b\x31\x60\xdc\x0d\xd8\x7f\xe0\x90\xe5\xe7\xc5\xf8\ \xb0\xc6\x79\x23\xfa\xe2\xb1\x3b\xae\x11\x5b\x9f\xf1\xa1\xee\x5d\ \xed\x01\x00\x1b\x85\x47\xfe\x83\xc4\x66\x69\xcf\x41\xe4\x74\x92\ \xf1\xb1\x6e\xd3\xdf\x18\xe4\xbf\x01\xfb\x0f\x32\x3e\xa4\x69\xc5\ \xc7\xf9\x23\xfa\xe1\xb1\xdb\xaf\x16\x5b\x9f\xf1\xa1\xea\x4b\xed\ \x01\x00\x1b\x85\x47\xbe\xb7\xb5\x07\x20\x72\x03\xc9\xf8\x58\xb3\ \x31\x1b\x83\x2f\xba\x11\x07\x18\x1f\xe2\xd4\xe2\xe3\xcc\xfe\x78\ \xf4\x36\xc6\x87\x0b\xad\xd7\x1e\x00\xb0\x5f\x78\x7c\xae\x3d\x00\ \x91\x5b\x48\xc6\xc7\xea\xf5\x5b\x30\x38\xe5\x26\xc6\x87\x05\xb4\ \xe2\xe3\x82\x91\xfd\xf1\xc8\xad\x57\x89\xad\xcf\xf8\xb0\xdc\xcc\ \xfc\x2b\x0b\xea\x6c\x15\x1e\x86\x2f\xb0\x01\xbc\xcf\x83\xc8\x34\ \x92\xf1\xb1\x6a\xdd\x66\x0c\xbd\xf8\x66\x1c\x38\x78\xd8\xf2\xf3\ \x62\x7c\x58\x63\xec\xa8\x01\x78\xf8\x96\x2b\xc5\xd6\x67\x7c\x58\ \xea\x4d\xed\x01\x22\x6c\x15\x1e\xf9\x7e\xd3\x1e\x80\xc8\x4d\x24\ \xe3\x63\xc5\xda\x4d\x18\x76\xc9\x14\x1c\x3c\xc4\xf8\x90\xa6\x15\ \x1f\x17\x26\x0f\xc4\x43\xb7\x5c\x21\xb6\x3e\xe3\xc3\x32\xb6\xb9\ \xa2\x60\x68\x0f\x70\xbc\xd4\x94\xc4\x10\x80\xb3\xb4\xe7\x20\x72\ \x93\x86\x55\xbd\x68\x5d\xd3\xc0\xe7\x59\xe6\x7f\x83\xdf\xb1\x73\ \x37\x7e\xf8\x63\x36\xce\x19\xe6\x43\x6c\x4c\x8c\xa5\xe7\x15\x17\ \x1b\x8b\xd2\xf1\xa5\xb0\x6b\xf7\x5e\x4b\x8f\xab\x65\xd7\xee\xbd\ \x28\x1d\x5f\x0a\x71\xb1\xb1\x96\x1e\x37\xb1\x79\x23\x54\xad\x5c\ \x01\x3f\x4d\x9b\x23\xb2\xfe\x57\x0b\x8f\xa2\x49\x75\x03\x4d\xaa\ \xdb\xf1\xef\xc2\xae\x90\x63\xf8\x02\x53\xb4\x87\x88\xb0\xe3\xef\ \x32\x3f\xa9\x96\x48\x80\xe4\xce\xc7\xb2\xd5\xeb\x31\x62\xfc\xad\ \xdc\xf9\xb0\x80\xd6\xce\x87\xff\xac\x41\x78\xe0\xe6\xcb\xc5\xd6\ \xe7\xce\x87\xa8\x6f\xb4\x07\x38\x96\xed\xc2\xc3\xf0\x05\x76\x02\ \x88\x8e\xbf\xbe\x10\x59\x4c\x32\x3e\x96\xac\x5a\x87\x33\x2f\xbb\ \x0d\x07\x0f\x5b\xff\xb1\x4b\x8c\x0f\x6b\x5c\x34\x7a\x30\xee\xbf\ \xe9\x32\xb1\xf5\x19\x1f\x62\x5e\xd6\x1e\xe0\x58\xb6\x0b\x8f\x7c\ \xef\x69\x0f\x40\xe4\x56\x03\x5a\xc4\xe0\x75\xa1\xf8\x58\xbc\x62\ \x2d\x46\x5e\x76\x1b\x0e\x31\x3e\xc4\x69\xc5\x47\xca\x98\x21\xb8\ \xef\x46\xc6\x87\xc3\xfc\xa2\x3d\xc0\xb1\x6c\x77\x8f\x07\x00\xa4\ \xa6\x24\x6e\x05\x20\xf7\x95\x4d\x14\xe5\x1a\x56\xf5\xa2\x95\xd0\ \x3d\x1f\xdb\x76\xec\x44\x70\xc6\x3c\x8c\x19\xda\x07\x31\x31\xd6\ \x7e\x8b\xe1\x3d\x1f\xd6\x68\xd7\xb2\x31\x2a\x96\x2f\x8b\x5f\x66\ \xcc\x15\x59\x9f\xf7\x7c\x98\x6a\x83\xe1\x0b\x3c\xaa\x3d\xc4\xb1\ \xec\xfa\xbb\x3a\x5b\x7b\x00\x22\xb7\x1b\x28\xb8\xf3\xb1\x60\xd9\ \x6a\x24\x5f\x71\x07\x77\x3e\x2c\xa0\xb5\xf3\x71\xc9\x39\x43\x31\ \xf5\x86\xf1\x62\xeb\x73\xe7\xc3\x34\xaf\x68\x0f\x70\x3c\x5b\x86\ \x87\xe1\x0b\xe4\x01\x98\xa1\x3d\x07\x91\xdb\x49\xc6\x47\xd6\xd2\ \x55\x38\xeb\xca\x3b\x71\x98\xf1\x21\x4e\x2b\x3e\xc6\x9f\x33\x0c\ \x69\xd7\x5f\x22\xb6\x3e\xe3\xc3\x14\xf6\x78\x6a\xd8\x31\x6c\x79\ \xa9\x05\x00\x52\x53\x12\xf7\x03\x18\xa3\x3d\x07\x91\xdb\x49\x5e\ \x76\xf9\xfb\x9f\x7f\xf1\x47\xe6\x02\x8c\x1e\xd2\x1b\x31\x06\x2f\ \xbb\x48\xd2\xba\xec\xd2\xbe\x55\x13\x94\x2b\x5b\x1a\xbf\xfe\x35\ \x4f\x64\x7d\x5e\x76\x29\x96\xc3\x86\x2f\x70\x93\xf6\x10\xc7\xb3\ \xf3\xef\xa4\x2d\x3e\xcc\x86\x28\x1a\x48\xee\x7c\xcc\x5d\xbc\x02\ \x63\xae\xba\x0b\x87\x8f\xe4\x58\x7e\x5e\xdc\xf9\xb0\xc6\x65\xe7\ \x0d\xc7\xdd\x93\x2f\x16\x5b\x9f\x3b\x1f\x45\xf6\xbe\xf6\x00\x27\ \x62\xdb\xf0\x30\x7c\x81\xfd\x00\xd6\x69\xcf\x41\x14\x2d\x24\xe3\ \x63\xce\xa2\xe5\x38\xfb\x1a\xc6\x87\x15\xb4\xe2\xe3\xf2\xf3\x47\ \x20\x75\x52\x8a\xd8\xfa\x8c\x8f\x22\x79\x56\x7b\x80\x13\xb1\x6d\ \x78\xe4\x7b\x5a\x7b\x00\xa2\x68\x22\x19\x1f\xb3\x17\x2c\xc7\xb9\ \x13\x52\x71\x84\xf1\x21\x4e\x2b\x3e\xae\xb8\xe0\x4c\xdc\x35\xf1\ \x22\xb1\xf5\x19\x1f\x85\x66\xcb\x37\x6a\xd8\xf6\x1e\x0f\x00\x48\ \x4d\x49\x5c\x05\xe0\x66\xed\x39\x88\xa2\x89\xe4\x3d\x1f\x9b\xb7\ \x6e\xc7\x8c\x79\x8b\x71\xd6\xe0\x5e\x30\x78\xcf\x87\x28\xad\x7b\ \x3e\x3a\xb6\x69\x86\xf8\x52\x25\xf1\x7b\x66\x96\xc8\xfa\xbc\xe7\ \xa3\xc0\xbe\x36\x7c\x81\x77\xb5\x87\x38\x11\x5b\xff\xce\x19\xbe\ \xc0\x76\x00\xdb\xb4\xe7\x20\x8a\x36\x92\x3b\x1f\x33\xe7\x2f\xc5\ \x79\xd7\xde\x83\x23\x39\xdc\xf9\x90\xa6\xb5\xf3\x71\xd5\x85\x23\ \x71\xc7\xb5\x7e\xb1\xf5\xb9\xf3\x51\x20\xb6\x7a\x76\xc7\xb1\x6c\ \x1d\x1e\xf9\x9e\xd2\x1e\x80\x28\x1a\x49\xc6\xc7\x5f\xf3\x96\xe0\ \xfc\x89\x69\x38\x92\x63\xfd\x0f\x0f\xc6\x87\x35\xae\xbe\x70\x14\ \x6e\x9f\x30\x4e\x6c\x7d\xc6\xc7\x69\xd9\xf6\x93\xde\x6d\x7d\xa9\ \x05\x00\x52\x53\x12\x97\x03\xb0\xdd\xdb\x81\x88\xa2\x81\xe4\x65\ \x97\x4d\xd9\xff\x60\x56\xd6\x52\x24\x0f\xec\x09\xc3\xb0\xf6\xef\ \x40\xbc\xec\x62\x8d\xa4\xc4\xe6\x28\x51\x22\x16\x7f\xcc\x5a\x20\ \xb2\x3e\x2f\xbb\x9c\xd4\x77\x86\x2f\xf0\xb6\xf6\x10\x27\x63\xfb\ \xdf\x2d\xc3\x17\xd8\x06\x60\xab\xf6\x1c\x44\xd1\x4a\x72\xe7\x63\ \xda\x9c\x45\x18\x3b\x79\x2a\x72\xb8\xf3\x21\x4e\x6b\xe7\x63\x82\ \xff\x2c\xdc\x7a\xf5\x85\x62\xeb\x73\xe7\xe3\x84\x1e\xd4\x1e\xe0\ \x54\x6c\xbf\xe3\x01\x00\xa9\x29\x89\x00\x30\x50\x7b\x0e\xa2\x68\ \x25\xb9\xf3\xb1\x61\xcb\x36\xcc\x59\xb8\x1c\xa3\x06\xf6\x80\xe1\ \xe5\xce\x87\x24\xad\x9d\x8f\xce\x6d\x9b\x23\x36\x36\x06\x7f\xce\ \x5e\x28\xb2\x3e\x77\x3e\xfe\xc7\x25\x69\xe9\x32\x37\xf7\x9a\xc1\ \x29\xe1\xb1\x14\xc0\x14\xed\x39\x88\xa2\x99\x6c\x7c\x6c\xc5\xdc\ \xc5\x2b\x30\x72\x00\xe3\x43\x9a\x5e\x7c\xb4\x40\x4c\x8c\x81\x69\ \x8c\x0f\x69\x9f\x18\xbe\xc0\x87\xda\x43\x9c\x8a\x23\x7e\x87\x0c\ \x5f\x60\x27\x80\x55\xda\x73\x10\x45\x3b\xc9\xcb\x2e\xbf\xcf\xcc\ \xc2\x45\x37\xdc\x8f\x9c\xa3\x21\xcb\xcf\x8b\x97\x5d\xac\x31\xe9\ \xe2\x31\xb8\xf9\x8a\xf3\xc5\xd6\xe7\x65\x17\x00\xc0\xfd\xda\x03\ \x9c\x8e\x23\x76\x3c\x00\x20\x35\x25\x71\x37\x80\x64\xed\x39\x88\ \xa2\x9d\xe4\xce\xc7\xba\x4d\x7f\x23\x6b\xe9\x2a\x8c\xec\xdf\x03\ \x5e\xee\x7c\x88\xd2\xda\xf9\xe8\xd2\xae\x25\xbc\x5e\x2f\xa6\xcf\ \x59\x24\xb2\x7e\x94\xef\x7c\xe4\x18\xbe\xc0\xd5\xda\x43\x9c\x8e\ \x93\x7e\x67\x6c\xf9\xcc\x79\xa2\x68\x24\xb9\xf3\x11\x9c\x31\x0f\ \x29\x37\x3d\x80\xa3\xdc\xf9\x10\xa7\xb5\xf3\x71\xdd\xf8\xb3\x71\ \xe3\x65\xe7\x89\xad\x1f\xc5\x3b\x1f\xcf\x6b\x0f\x50\x10\x8e\x09\ \x0f\xc3\x17\x38\x02\x20\xa8\x3d\x07\x11\x85\x49\xc6\xc7\x2f\xd3\ \xe7\xe2\xe2\x9b\x1f\x64\x7c\x58\x40\x2b\x3e\xae\xbf\xf4\x1c\xdc\ \x70\xe9\xb9\x62\xeb\x47\x69\x7c\xd8\xf6\xa1\x61\xc7\x72\xcc\xa5\ \x16\x00\x48\x4d\x49\x5c\x0d\xe0\x12\xed\x39\x88\x28\x4c\xf2\xb2\ \xcb\xda\x8d\xd9\x58\xb4\x62\x2d\x46\xf4\xef\xc6\xcb\x2e\xc2\xb4\ \x2e\xbb\x74\xeb\xd0\x0a\x79\xc8\xc3\x8c\xb9\x8b\x45\xd6\x8f\xb2\ \xcb\x2e\x5b\x0c\x5f\xe0\x6e\xed\x21\x0a\xc2\x69\xbf\x1b\x7f\x02\ \x88\xba\x84\x25\xb2\x33\xc9\x9d\x8f\x1f\xff\x9c\x8d\x4b\xa7\x3c\ \x8c\xa3\x21\xee\x7c\x48\xd3\xda\xf9\xb8\xf1\xb2\xf3\x70\xdd\xf8\ \xb3\xc5\xd6\x8f\xa2\x9d\x8f\x54\xed\x01\x0a\xca\x51\x3b\x1e\x69\ \xe9\x59\x48\x4d\x49\xac\x08\xa0\xab\xf6\x2c\x44\xf4\xff\x24\x77\ \x3e\x56\x6f\xd8\x82\x25\x2b\xd7\x63\x44\xbf\xae\xdc\xf9\x10\xa6\ \xb5\xf3\xd1\xbd\x43\x6b\x84\x72\x73\xf1\xd7\xbc\x25\x22\xeb\x47\ \xc9\xce\xc7\xd9\x69\xe9\x59\xd6\x17\x7a\x11\x38\x2a\x3c\x00\x20\ \x35\x25\x71\x3e\x80\x1b\xb5\xe7\x20\xa2\xff\x26\x1a\x1f\xeb\x37\ \x63\xe9\xaa\x0d\x18\xde\xb7\x1b\xbc\x5e\x8f\xa5\xe7\xc5\xf8\xb0\ \x46\xf7\x8e\xad\x71\x34\x14\xc2\xcc\xf9\x8c\x8f\x22\xf8\xd6\xf0\ \x05\x02\xda\x43\x14\x94\xe3\x7e\x07\x0c\x5f\x60\x2b\x80\xe5\xda\ \x73\x10\xd1\xff\x92\xbc\xec\xf2\xdd\x6f\x33\x71\xc5\x6d\x8f\x22\ \x14\xca\xb5\xfc\xbc\x78\xd9\xc5\x1a\x53\xae\xbc\x00\x13\x53\x46\ \x8b\xad\xef\xe2\xcb\x2e\xb7\x69\x0f\x50\x18\x8e\xdb\xf1\x00\x80\ \xd4\x94\xc4\x0d\x00\xe4\x9e\x42\x43\x44\x45\xd6\xb0\xaa\x17\x2d\ \x6b\x1a\xf8\x42\x60\xe7\x63\xe5\xba\x4d\x58\xb1\x66\x23\x86\xf9\ \xba\x72\xe7\x43\x98\xd6\xce\x47\x8f\x4e\x6d\x70\x24\x27\x07\x99\ \x59\x4b\x45\xd6\x77\xe1\xce\xc7\x1e\xc3\x17\x98\xac\x3d\x44\x61\ \x38\xf5\x95\xff\x12\x40\x9e\xf6\x10\x44\x74\x62\x83\x5a\xc4\xe0\ \x35\xa1\x9d\x8f\xaf\x83\x33\x70\xd5\x1d\x8f\x21\x94\xcb\x9d\x0f\ \x69\x5a\x3b\x1f\xb7\x5e\x7d\x21\x26\xf8\xe5\x9e\x17\xe9\xb2\x9d\ \x8f\xbb\xb4\x07\x28\x2c\x47\xee\x78\x1c\x73\x93\x69\x17\xed\x59\ \x88\xe8\xc4\x1a\x09\xee\x7c\xac\x58\xbb\x09\xab\xd6\x6d\xc2\x50\ \x5f\x17\x78\x3d\xdc\xf9\x90\xa4\xb5\xf3\xd1\x33\x29\x11\x87\x0e\ \x1f\xc1\xac\x05\xcb\x44\xd6\x77\xd1\xce\xc7\x28\xa7\xdc\x54\x1a\ \xe1\xc8\xf0\x00\x80\xd4\x94\xc4\xd9\x00\x6e\xd6\x9e\x83\x88\x4e\ \x4e\x36\x3e\x36\x62\xf5\x86\xcd\x18\xda\xa7\x0b\x3c\x8c\x0f\x51\ \x5a\xf1\xd1\x2b\x29\x11\x07\x0e\x1d\xc6\x6c\xc6\xc7\xc9\x7c\x66\ \xf8\x02\xef\x68\x0f\x51\x58\x8e\x7d\xb5\x0d\x5f\x60\x3b\x80\x4c\ \xed\x39\x88\xe8\xd4\x24\x2f\xbb\x7c\xf1\xe3\x34\x4c\x48\x7d\x12\ \xb9\xbc\xec\x22\x4e\xeb\xb2\xcb\x9d\xd7\xfa\x71\xe5\xd8\x91\x62\ \xeb\x3b\xfc\xb2\x8b\x23\x3f\xb5\xdd\xb1\x3b\x1e\x00\x90\x9a\x92\ \xb8\x18\xc0\x78\xed\x39\x88\xe8\xd4\x24\x77\x3e\x96\xad\xde\x80\ \xb5\x9b\xb2\x31\xa4\x77\x67\xee\x7c\x08\xd3\xda\xf9\xe8\xdd\xb9\ \x2d\xf6\x1d\x38\x88\x39\x0b\x65\xde\xd0\xe8\xd0\x9d\x8f\xf5\x86\ \x2f\x70\xa7\xf6\x10\x45\xe1\xa8\x57\xf9\x78\x86\x2f\x30\x03\xc0\ \x6e\xed\x39\x88\xe8\xf4\x06\xb5\x88\xc1\x6b\x7e\x99\x9d\x8f\x8c\ \xef\xff\xc0\xc4\x7b\x9e\xe6\xce\x87\x05\xb4\x76\x3e\x52\x27\xa5\ \xe0\xf2\xf3\x47\x88\xad\xef\xc0\x9d\x8f\x49\xda\x03\x14\x95\xa3\ \x77\x3c\x00\x20\x35\x25\x71\x3b\x80\x33\xb5\xe7\x20\xa2\xd3\x6b\ \x54\xcd\x8b\x96\x35\x64\x76\x3e\x96\xae\x5a\x8f\xf5\x5b\xb6\x62\ \x70\x2f\xee\x7c\x48\xd3\xda\xf9\xe8\xd3\xa5\x1d\xf6\xec\xdb\x8f\ \xb9\x8b\x56\x88\xac\xef\xa0\x9d\x8f\x1c\x00\x17\xa6\xa5\x67\x69\ \xcf\x51\x24\x6e\x08\x8f\xf9\x70\xd0\x33\xea\x89\xa2\x9d\x74\x7c\ \x6c\xc8\xde\x86\x41\xbd\x92\x18\x1f\xc2\xb4\xe2\xc3\xd7\xb5\x1d\ \x76\xef\xdd\x8f\xb9\x8b\xa3\x3a\x3e\xee\x34\x7c\x81\x3f\xb5\x87\ \x28\x2a\xc7\x87\x47\x5a\x7a\x56\x5e\x6a\x4a\x62\x59\x00\xdd\xb4\ \x67\x21\xa2\x82\x91\x8c\x8f\x25\x2b\xd7\x61\xd3\xdf\xff\x60\x20\ \xe3\x43\x9c\x66\x7c\xec\xda\xb3\x0f\xf3\x16\xaf\x14\x59\xdf\x01\ \xf1\x31\xcc\x69\x6f\xa1\x3d\x96\xe3\xc3\x03\x00\x52\x53\x12\x67\ \x00\xb8\x55\x7b\x0e\x22\x2a\x38\xc9\xf8\x58\xbc\x72\x1d\x36\xff\ \xbd\x1d\x83\x7a\x75\x62\x7c\x08\x53\x8b\x8f\x6e\xed\xb1\x6b\xf7\ \x5e\xcc\x5b\x12\x75\xf1\xf1\xba\xe1\x0b\x7c\xaa\x3d\x44\x71\xb8\ \x22\x3c\xd2\xd2\xb3\x8e\xa4\xa6\x24\xb6\x06\xd0\x42\x7b\x16\x22\ \x2a\x38\xd1\xf8\x58\xb1\x16\x5b\xb6\x6e\xc7\xc0\x9e\x8c\x0f\x69\ \x1a\xf1\xe1\x01\xe0\xeb\xda\x1e\x3b\x77\xed\xc1\xfc\x25\xab\x44\ \x8e\x61\xd3\xf8\x18\x94\x96\x9e\x65\xfd\xdd\xbd\x26\x72\x45\x78\ \x00\x40\x6a\x4a\xe2\x74\x00\xd7\x6b\xcf\x41\x44\x85\x23\x19\x1f\ \x8b\x56\xac\x45\xf6\xb6\x1d\x8c\x0f\x0b\xa8\xc4\x87\x07\xe8\xdb\ \xad\x3d\x76\xec\xdc\x83\xac\xa5\x51\x11\x1f\x3f\x18\xbe\xc0\x4b\ \xda\x43\x14\x97\x6b\xc2\x23\x2d\x3d\x6b\x4f\x6a\x4a\x62\x7f\x00\ \x75\xb4\x67\x21\xa2\xc2\x11\x8d\x8f\xe5\x6b\xf1\xf7\x3f\xff\x62\ \x40\x8f\x8e\x8c\x0f\x61\x3a\xf1\xe1\x41\xbf\x6e\xed\xb1\xfd\xdf\ \xdd\xc8\x5a\xba\x5a\xe4\x18\x36\x8a\x8f\x41\x69\xe9\x59\x3b\xb5\ \x87\x28\x2e\xd7\x84\x07\x00\xa4\xa6\x24\xfe\x05\xe0\x1a\xed\x39\ \x88\xa8\xf0\x24\xe3\x63\xe1\xf2\x35\xd8\xba\x7d\x27\xe3\xc3\x02\ \x6a\xf1\xd1\xbd\x03\xfe\xd9\xb1\x1b\x0b\x96\xb9\x36\x3e\xe6\x18\ \xbe\xc0\x43\x5a\x07\x37\x93\x7a\xbe\x99\xc9\xf0\x05\x96\x02\x58\ \xa8\x3d\x07\x11\x15\xcd\xa0\x96\x72\x0f\x19\x7b\xe7\xb3\x1f\x31\ \xe5\xa1\x97\x90\x97\x67\xfd\x07\x5b\xf3\x21\x63\xf2\x3c\x1e\x0f\ \x1e\x9c\x72\x39\x2e\x1c\x35\x50\xec\x18\xca\x0f\x19\x73\xcd\x53\ \xba\x5d\xb5\xe3\x01\x00\xa9\x29\x89\x99\x00\x2e\xd7\x9e\x83\x88\ \x8a\x46\x72\xe7\x63\xc1\xb2\xd5\xd8\xfe\xef\x6e\xf4\xeb\xde\x81\ \x3b\x1f\xc2\xb4\x76\x3e\xfa\xf7\xe8\x80\xad\xff\xec\xc4\xc2\xe5\ \x6b\x44\x8e\xa1\xb4\xf3\xb1\xd4\xf0\x05\xee\xb2\xf2\x80\x92\x5c\ \xb5\xe3\x01\x00\x86\x2f\x30\x07\x80\xcc\x93\x65\x88\xc8\x12\x92\ \x3b\x1f\x81\x4f\xbf\xc7\x6d\x8f\xbc\xc2\x9d\x0f\x0b\x68\xed\x7c\ \x3c\x7c\xeb\x95\xb8\xe0\xcc\xfe\x62\xc7\x50\xd8\xf9\x48\xb1\xf2\ \x60\xd2\x5c\xb7\xe3\x01\x00\xa9\x29\x89\xb3\x00\x5c\xaa\x3d\x07\ \x11\x15\x9d\xe4\xce\x47\xd6\xd2\x55\xf8\x77\xd7\x5e\xf4\xed\xd6\ \x9e\x3b\x1f\xc2\xb4\x76\x3e\x06\xf4\xec\x88\xec\xad\x3b\xb0\x68\ \xc5\x5a\x91\x63\x58\xb8\xf3\xb1\xd2\xf0\x05\x6e\x91\x3e\x88\x95\ \x5c\xb7\xe3\x01\x00\x86\x2f\x30\x13\xdc\xf5\x20\x72\x3c\xc9\x9d\ \x8f\x37\x3f\xfe\x16\x77\x3c\xf6\x2a\x14\x36\x3e\xb8\xf3\x61\x01\ \x8f\xc7\x83\x47\x6f\xbf\x1a\xe7\x0e\xef\x2b\x76\x0c\x8b\x76\x3e\ \xc6\x49\x1f\xc0\x6a\xae\xdc\xf1\x00\x80\xd4\x94\xc4\x99\x00\x2e\ \xd3\x9e\x83\x88\x8a\x47\x72\xe7\x63\xfe\x92\x55\xd8\xb5\x67\x2f\ \x7c\xdd\xda\xc3\xda\x7d\x0f\xee\x7c\x58\xc1\xe3\xf1\x60\x60\xaf\ \x4e\xd8\x94\xfd\x0f\x16\xaf\x5c\x27\x72\x0c\xe1\x9d\x8f\x65\x86\ \x2f\xe0\xba\xa7\x72\xbb\x72\xc7\x03\x00\x0c\x5f\x60\x16\x80\x45\ \xda\x73\x10\x51\xf1\x49\xee\x7c\xbc\xfe\xe1\x37\xb8\xeb\xf1\xd7\ \x54\xce\x8b\x3b\x1f\xf2\xbc\x1e\x0f\x1e\xbf\x73\x02\xce\x1e\xda\ \x47\xec\x18\x82\x3b\x1f\x63\xc5\x86\x56\xe4\xda\x1d\x0f\x00\x48\ \x4d\x49\xfc\x13\xc0\x55\xda\x73\x10\x51\xf1\x49\xee\x7c\xcc\x5b\ \xbc\x12\xbb\xf7\xed\x87\xaf\x6b\x3b\xcb\xcf\x8b\x3b\x1f\xf2\x3c\ \x1e\x0f\x06\xf5\x4a\xc2\x86\x2d\xdb\xb0\x64\xd5\x3a\x91\x63\x08\ \xec\x7c\xcc\x35\x7c\x81\x7b\xac\x7a\x8d\xac\xe4\xda\x1d\x0f\x00\ \x30\x7c\x81\x85\x00\xa6\x6b\xcf\x41\x44\xe6\x90\xdc\xf9\x78\xf5\ \xfd\xaf\x90\xfa\xe4\x1b\x2a\xe7\xc5\x9d\x0f\x79\x5e\xaf\x07\x4f\ \xde\x75\x2d\x46\x0f\xee\x2d\x76\x0c\x93\x77\x3e\x2e\xb0\xe4\x85\ \x51\xe0\xea\x1d\x0f\x00\x48\x4d\x49\xfc\x05\xc0\x64\xed\x39\x88\ \xc8\x1c\x92\x3b\x1f\x73\x17\xad\xc0\xbe\x03\x07\xd1\xa7\x4b\x5b\ \xcb\xcf\x8b\x3b\x1f\xf2\x3c\x1e\x0f\x06\xf7\x4e\xc2\xba\x4d\x7f\ \x63\xe9\xea\xf5\x22\xc7\x30\x69\xe7\xe3\x67\xc3\x17\x78\xc2\xb2\ \x17\xc6\x62\xae\x0f\x8f\xb4\xf4\xac\x5d\xa9\x29\x89\x6d\x01\x34\ \xd3\x9e\x85\x88\xcc\xd1\xa8\x9a\x17\x2d\x84\xe2\x63\xce\xc2\xe5\ \xd8\x7f\xf0\x20\x7a\x77\x6e\x6b\xf9\x79\x31\x3e\xe4\x45\xe2\x63\ \xcd\xc6\x6c\x2c\x5b\xbd\x41\xe4\x18\x26\xc4\x47\x8f\xb4\xf4\xac\ \x7d\x96\xbd\x28\x16\x73\x7d\x78\x00\x40\x6a\x4a\xe2\x0f\x00\xa6\ \x68\xcf\x41\x44\xe6\x91\x8c\x8f\xd9\x0b\x97\xe3\xc0\xc1\x43\x8c\ \x0f\x0b\x68\xc5\xc7\x90\x3e\x9d\xb1\x7a\xc3\x16\x2c\x5f\x63\xbb\ \xf8\x08\x18\xbe\xc0\x5b\x96\xbd\x18\x0a\xa2\x22\x3c\xd2\xd2\xb3\ \x0e\xa5\xa6\x24\x56\x04\xd0\x45\x7b\x16\x22\x32\x8f\x74\x7c\x1c\ \x3c\x74\x18\xbd\x3a\x27\x5a\x7e\x5e\x8c\x0f\x79\x1e\x8f\x07\x43\ \xfb\x74\xc6\xaa\xf5\x9b\xb1\x7c\xcd\x46\x91\x63\x14\x31\x3e\xba\ \xa7\xa5\x67\xe5\x58\xf6\x42\x28\x88\x8a\xf0\x00\x80\xd4\x94\xc4\ \x9f\x01\xdc\x01\x58\xfe\x76\x7d\x22\x12\x24\x19\x1f\xb3\x16\x2c\ \xc3\xa1\xc3\x47\xd0\x2b\x89\xf1\x21\x4d\x6d\xe7\xc3\xd7\x05\xab\ \xd6\x6d\xc2\x8a\xb5\xb6\x88\x8f\xbb\x0c\x5f\xe0\x27\xcb\x5e\x00\ \x25\x51\x13\x1e\x69\xe9\x59\xb9\xa9\x29\x89\x5b\x01\x0c\xd7\x9e\ \x85\x88\xcc\x25\x1d\x1f\x87\x8f\xe4\xa0\x67\x52\x1b\xcb\xcf\x8b\ \xf1\x21\xcf\xeb\xf1\x60\xa8\xaf\x0b\x56\xae\xdd\x88\x15\x6b\x37\ \x89\x1c\xa3\x80\xf1\x71\x18\xc0\xa0\xb4\xf4\x2c\xcb\xce\x5d\x4b\ \xd4\x84\x07\x00\xa4\xa5\x67\xcd\x4e\x4d\x49\x9c\x08\x40\xe6\xfd\ \x78\x44\xa4\x46\x32\x3e\x32\xb3\x96\xe2\x48\x4e\x0e\x7a\x76\x62\ \x7c\x48\xd3\x8b\x8f\xae\x58\xbe\x66\x03\x56\xae\x53\x8b\x8f\xf3\ \x0c\x5f\x60\x89\x65\x27\xad\x28\xaa\xc2\x03\x00\x52\x53\x12\x67\ \x00\xb8\x58\x7b\x0e\x22\x32\x9f\x74\x7c\xe4\x1c\x3d\x8a\x1e\x8c\ \x0f\x71\x2a\xf1\xe1\xf5\x60\x98\xaf\x2b\x96\xad\x5e\x8f\x55\xeb\ \x36\x8b\x1c\xe3\x14\xf1\xb1\xda\xf0\x05\xa2\xe6\x61\x97\xae\x7e\ \x80\xd8\x89\x18\xbe\xc0\x1f\x00\xa6\x69\xcf\x41\x44\x32\x06\xb7\ \x8c\xc1\xab\x42\x0f\x19\x7b\xfa\xcd\x4f\xf0\xd0\x8b\xef\xaa\x9c\ \x17\x1f\x32\x26\xcf\x30\xbc\x78\xf9\xfe\x1b\x31\xb8\x77\x92\xd8\ \x31\x4e\xf2\x90\xb1\x11\x96\x9e\xa8\xb2\xa8\xdb\xf1\x00\x80\xd4\ \x94\xc4\xaf\x01\xdc\xa8\x3d\x07\x11\xc9\x90\xdc\xf9\x98\x39\x7f\ \x09\x42\xb9\xb9\xe8\xde\xb1\xb5\xe5\xe7\xc5\x9d\x0f\x79\x5e\xaf\ \x17\xc3\xfa\x76\xc5\x92\x95\xeb\xb1\x7a\xbd\x25\x3b\x1f\x1f\x1a\ \xbe\xc0\x0b\x96\x9d\xa0\x0d\x44\x65\x78\xa4\xa5\x67\xed\x4f\x4d\ \x49\x8c\x07\xd0\x5d\x7b\x16\x22\x92\x21\x19\x1f\x7f\xcd\x5b\x82\ \xdc\xbc\x3c\x74\xef\xd0\xca\xf2\xf3\x62\x7c\xc8\xf3\x7a\xbd\x18\ \xde\xaf\x2b\x16\xad\x58\x87\x35\x1b\xb6\x88\x1c\xe3\x98\xf8\x48\ \x72\xfb\xdb\x67\x8f\x17\x95\xe1\x01\xfc\xe7\xed\xb5\x53\x00\xc4\ \x68\xcf\x42\x44\x32\x64\xe3\x63\x31\xf2\x90\x87\x6e\x8c\x0f\x71\ \x5a\xf1\x31\xa2\x5f\x37\x2c\x5c\xbe\x56\x34\x3e\x1e\xff\xe9\x48\ \xfc\xbe\xcd\xcb\xbe\xb7\xec\xc4\x6c\x20\x6a\xc3\x23\x2d\x3d\x0b\ \xa9\x29\x89\x73\x00\x5c\xa8\x3d\x0b\x11\xc9\x91\x8c\x8f\x19\x73\ \x17\x03\x1e\xa0\x5b\x7b\xc6\x87\x34\xcd\xf8\x58\xb0\x7c\x0d\xd6\ \x6e\xcc\x96\x3a\x4c\xd7\xb2\x35\x9b\x97\x8f\xa6\xf8\x88\xda\xf0\ \x00\x80\xb4\xf4\xac\x55\xa9\x29\x89\x03\x00\xd4\xd1\x9e\x85\x88\ \xe4\x48\xc7\x87\xc7\xeb\x41\xd7\xf6\x2d\x2d\x3f\x2f\xc6\x87\x3c\ \xaf\xd7\x8b\x33\xfb\x75\x47\xd6\xd2\xd5\x58\xbb\x89\xf1\x61\x86\ \xa8\x0e\x0f\x00\x48\x4d\x49\xfc\x1c\xc0\xcd\xda\x73\x10\x91\x2c\ \xc9\xf8\x98\x3e\x67\x11\xbc\x86\x17\x5d\xdb\x31\x3e\xa4\xa9\xc5\ \x47\xff\xee\x98\xbf\x64\x15\xd6\x6d\xfa\x5b\xea\x30\x51\x13\x1f\ \x51\x1f\x1e\x69\xe9\x59\x07\x53\x53\x12\x0f\x00\x18\xa0\x3d\x0b\ \x11\xc9\x92\x8e\x0f\x23\xc6\x40\x97\x76\x2d\x2c\x3f\x2f\xc6\x87\ \x3c\xaf\xd7\x8b\x33\x07\x74\xc7\xbc\xc5\x2b\xb1\x7e\x33\xe3\xa3\ \x38\xa2\x3e\x3c\x00\x20\x2d\x3d\x6b\x7a\x6a\x4a\xe2\xe5\x00\xca\ \x6a\xcf\x42\x44\xb2\x24\xe3\x63\xda\xec\x85\x88\x61\x7c\x58\x42\ \x23\x3e\x0c\xaf\x17\x23\x07\x74\xc7\xdc\x45\x2b\xb0\x7e\xf3\x56\ \xa9\xc3\xb8\x3e\x3e\x18\x1e\xf9\x52\x53\x12\xbf\x01\x30\x41\x7b\ \x0e\x22\x92\x27\x1d\x1f\xb1\xb1\x31\xe8\xdc\x96\xf1\x21\x4d\x2d\ \x3e\x06\xf6\xc0\x9c\x85\xcb\xb1\x61\x0b\xe3\xa3\x28\x18\x1e\xf9\ \xd2\xd2\xb3\xb6\xa7\xa6\x24\x56\x04\xd0\x45\x7b\x16\x22\x92\x27\ \x19\x1f\x7f\xce\x5e\x88\x12\x71\xb1\x48\x6a\xdb\xdc\xf2\xf3\x62\ \x7c\xc8\x33\xbc\x5e\x8c\x1a\xd0\x03\xb3\x16\x2c\xc3\xc6\x2d\xdb\ \xa4\x0e\xe3\xda\xf8\x60\x78\x1c\x23\x35\x25\xf1\x7b\x00\x93\x01\ \x94\xd4\x9e\x85\x88\xe4\x49\xc6\xc7\x1f\xb3\x16\xa0\x64\x89\x38\ \x24\x25\x32\x3e\xa4\xa9\xc4\x87\xe1\xc5\xa8\x81\x3d\x91\x99\xb5\ \x14\x1b\xb3\x19\x1f\x85\xe1\xd1\x1e\xc0\x6e\x42\x41\x7f\x7b\x00\ \x73\xb4\xe7\x20\x22\xeb\x7c\xb7\xf8\x28\x2e\x0d\x1c\x14\x59\xfb\ \x8e\x09\xe3\x70\xf5\xb8\x64\x95\xf3\xda\x7f\xe0\x00\xd6\x6e\x90\ \x79\xec\xb7\x1d\xd5\xaf\x53\x13\xa5\xe3\xe3\x2d\x3d\xe6\x91\x9c\ \xa3\x38\x7f\xe2\x3d\xe1\x67\xba\xc8\x89\xcf\xce\xcc\x90\xf9\x02\ \x55\xc0\x1d\x8f\xe3\xa4\xa5\x67\x65\xa7\xa6\x24\x56\x07\xd0\x49\ \x7b\x16\x22\xb2\x86\xe4\xce\xc7\xef\x99\x0b\x10\x5f\xaa\x04\x3a\ \xb5\x69\x66\xf9\x79\x71\xe7\x43\x9e\x61\x78\x91\x3c\xa8\x27\xfe\ \x9a\xb7\x04\x9b\xfe\xfe\x47\xea\x30\xc1\x7d\x9b\x97\xad\xb5\xec\ \xa4\x84\x31\x3c\x4e\x20\xff\x46\xd3\x49\xe0\x25\x17\xa2\xa8\x21\ \x1b\x1f\x59\x28\x1d\x5f\x12\x1d\x19\x1f\xe2\x74\xe2\xc3\x40\xf2\ \xa0\x9e\x98\x3e\x77\x31\x36\xff\xbd\x5d\xe2\x10\x79\xfb\x36\x2f\ \xfb\xcc\xb2\x13\x12\xe6\xd5\x1e\xc0\x8e\x0c\x5f\x20\x0f\x40\x2f\ \xed\x39\x88\xc8\x5a\x83\x5b\xc6\xe0\xd5\x71\xa5\x44\xd6\x4e\x7b\ \x3a\x1d\x2f\xbd\xfb\x85\xca\x79\x95\x8e\x8f\x47\xfd\x3a\x35\x55\ \x8e\xad\x61\xed\x86\xcd\xd8\x7f\xe0\x80\xa5\xc7\x8c\x8b\x8d\xc5\ \x07\xcf\xdc\x2d\xb5\xb3\x35\xca\xd2\x93\x11\xc6\x1d\x8f\x93\x48\ \x4b\xcf\xda\x96\x9a\x92\x58\x12\x40\x0f\xed\x59\x88\xc8\x3a\x8d\ \xaa\x79\xd1\x22\xc1\xc0\x17\x0b\xcc\xdf\xf9\xf8\x6d\xe6\x7c\x94\ \x2d\x5d\x0a\x1d\x5a\x37\xb5\xfc\xbc\xb8\xf3\x21\x2f\xc6\x30\x70\ \xd6\xe0\x5e\x98\x36\x7b\x21\xb6\x6c\xdb\x61\xe6\xd2\x25\xcb\xd6\ \x6c\xfe\xe8\xbe\xcd\xcb\x5c\xf1\x29\xb6\xdc\xf1\x38\x05\xc3\x17\ \xb8\x15\xc0\x7a\xed\x39\x88\xc8\x5a\x83\x5b\xc5\xe0\x15\xa1\x9d\ \x8f\xbb\x9f\x7a\x13\x2f\xbf\xf7\xa5\xca\x79\x71\xe7\x43\x5e\x89\ \xb8\x58\x7c\xf4\x7c\x1a\xda\xb7\x6a\x62\xf6\xd2\xae\xd9\x85\x67\ \x78\x9c\x5e\x77\xed\x01\x88\xc8\x7a\x43\x24\xe3\xe3\xc9\x37\xf0\ \xca\xfb\x5f\xa9\x9c\x17\xe3\x43\x5e\x89\xb8\x58\x7c\xf2\x42\x1a\ \xda\xb5\x6c\x6c\xe6\xb2\x7e\x4b\x4f\x42\x10\xc3\xe3\x34\x0c\x5f\ \x60\x33\x80\x4b\xb5\xe7\x20\x22\xeb\x49\xc6\x47\xea\x13\xaf\xe3\ \xd5\x0f\xbe\x56\x39\x2f\xc6\x87\xbc\x12\x71\x71\xf8\xe4\x85\xa9\ \x68\xdb\xa2\x91\x59\x4b\x8e\xb0\xf4\x04\x04\xf1\x39\x1e\x05\x14\ \x0a\xfa\x7f\x04\xd0\x5f\x7b\x0e\x22\xb2\xde\xb7\x8b\x8e\xe2\xb2\ \xb7\x64\x1e\xa3\x30\xf5\x86\xf1\x18\x7f\xce\x30\x95\xf3\xe2\x73\ \x3e\xe4\x1d\x3a\x7c\x04\xc9\x57\xdc\x8e\xac\xa5\xab\xcd\x58\xae\ \x7c\x76\x66\xc6\x1e\x4b\x4f\x40\x00\x77\x3c\x0a\x6e\x18\x80\xc3\ \xda\x43\x10\x91\xf5\x24\x77\x3e\xee\x7c\xec\x35\xbc\xfe\xd1\x37\ \x2a\xe7\xc5\x9d\x0f\x79\x25\x4b\xc4\xe1\xee\xc9\x17\x9b\xb5\x5c\ \x5f\x4b\x87\x17\xc2\xf0\x28\x20\xc3\x17\x38\x02\xde\xef\x41\x14\ \xb5\x24\xe3\xe3\x8e\x47\x5f\xc5\x1b\x1f\x7f\xab\x72\x5e\x8c\x0f\ \x79\x2d\x1a\xd7\x33\x6b\x29\x57\xdc\xe7\xc1\xf0\x28\x04\xc3\x17\ \x98\x03\xe0\x0e\xed\x39\x88\x48\x87\x64\x7c\xdc\xfe\xc8\x2b\x78\ \xf3\xe3\xef\x54\xce\x8b\xf1\x21\xab\x6c\xe9\x78\x54\xab\x5c\xd1\ \x8c\xa5\x86\x58\x36\xb4\x20\x86\x47\x21\x19\xbe\xc0\x7d\x00\xfe\ \xd2\x9e\x83\x88\x74\x48\xc6\xc7\x6d\x8f\xbc\x8c\xf4\x4f\x18\x1f\ \x56\xb0\x3a\x3e\x52\xc6\x0c\x36\x63\x99\x92\x09\x49\xc9\xa6\x14\ \x8c\x26\x86\x47\xd1\xf8\x00\x1c\xd1\x1e\x82\x88\x74\x48\xc6\xc7\ \xad\x0f\xbf\x8c\xc0\xa7\x3a\x1f\x46\xca\xf8\x90\xd3\xaf\x5b\x07\ \xb3\x96\x1a\x60\xc9\xc0\x82\x18\x1e\x45\x60\xf8\x02\x87\x00\x24\ \x69\xcf\x41\x44\x7a\x24\xe3\xe3\x96\x87\x5e\xc2\x5b\x19\x3f\xa8\ \x9c\x17\xe3\x43\x46\xe3\xfa\xb5\xcc\x5a\xea\x22\xf1\x61\x85\x31\ \x3c\x8a\xc8\xf0\x05\xb2\x00\x5c\xab\x3d\x07\x11\xe9\x91\x8c\x8f\ \x29\x0f\xbe\x88\xb7\x3f\x63\x7c\x58\xc1\x8a\xf8\x28\x59\x22\xce\ \xac\x9b\x4c\xb9\xe3\x11\xcd\x0c\x5f\xe0\x59\x00\x19\xda\x73\x10\ \x91\x1e\xc9\xf8\xb8\xf9\x81\x17\xf1\xce\x67\x3f\xaa\x9c\x17\xe3\ \xc3\x7c\x63\x47\x9a\xf2\x28\xa8\xd8\x84\xa4\xe4\xaa\x96\xbc\x28\ \x42\x18\x1e\xc5\x37\x1a\xc0\x16\xed\x21\x88\x48\x8f\x64\x7c\xdc\ \xf4\xc0\x0b\x78\xf7\xf3\x9f\x54\xce\x8b\xf1\x61\xae\x9e\x9d\x12\ \xcd\x5a\xca\x94\x3b\x55\xb5\x30\x3c\x8a\xc9\xf0\x05\xf2\x00\x98\ \xf6\xd5\x44\x44\xce\x24\x19\x1f\x37\xde\xff\x3c\xde\xfb\xe2\x67\ \x95\xf3\x62\x7c\x98\xa7\x6e\xad\xea\x66\x2d\xe5\xe8\xe7\x79\x30\ \x3c\x4c\x60\xf8\x02\xdb\xc1\x87\x8b\x11\x45\x3d\xc9\xf8\xb8\xe1\ \xbe\xe7\xf0\xfe\x97\x8c\x0f\x2b\xac\xdd\xb0\x19\xa1\x50\xae\xe9\ \xeb\xc6\xc6\xc4\xa0\x67\xa7\x36\x66\x2c\xe5\xb3\xfc\x45\x31\x11\ \xc3\xc3\x24\x86\x2f\x30\x1d\xbc\xd9\x94\x28\xea\x49\xc6\xc7\xf5\ \xf7\x3e\x87\x0f\xbe\xfa\x45\xe5\xbc\xa2\x2d\x3e\x0e\x1d\x96\xf9\ \x84\x8c\xb3\x87\xf5\x31\x63\x19\x23\x21\x29\xf9\x0c\x2b\x5f\x0f\ \x33\x31\x3c\x4c\x94\x7f\xb3\x69\xba\xf6\x1c\x44\xa4\x4b\x32\x3e\ \xae\x9b\xfa\x2c\x3e\xfc\x2a\xa8\x72\x5e\xd1\x14\x1f\x7b\xf6\xed\ \x13\x59\xb7\x4b\xdb\x96\x66\x2d\xa5\xf3\xc9\x82\x26\x60\x78\x98\ \xcc\xf0\x05\x52\x00\xcc\xd3\x9e\x83\x88\x74\x49\xc6\xc7\xe4\xa9\ \xcf\xe0\xc3\xaf\x19\x1f\x92\x76\xfc\xbb\x4b\x64\xdd\x1a\xd5\x2b\ \x9b\xb5\x94\x63\x9f\xe7\xc1\xf0\x90\xd1\x19\xc0\x2e\xed\x21\x88\ \x48\x97\x68\x7c\xa4\x3d\x83\x8f\xbe\xf9\x55\xe5\xbc\xa2\x25\x3e\ \x42\xa1\x90\xe9\x6b\x7a\xbd\x5e\x8c\x1c\x60\xca\x2d\x81\x3d\x2c\ \x7f\x41\xcc\x7a\x0d\xb4\x07\x70\x23\xc3\x17\xc8\x01\xd0\x0c\x40\ \x9e\xf6\x2c\x44\xa4\x4b\x32\x3e\x26\xdd\xf3\x34\x3e\xfe\xf6\x37\ \x95\xf3\x8a\x86\xf8\x38\x78\x48\xe6\x3e\x8f\x91\x03\x7a\x9a\xb1\ \x8c\x27\x21\x29\xd9\xb4\xc7\xa1\x5a\x89\xe1\x21\xc4\xf0\x05\xb6\ \x02\xe8\xa8\x3d\x07\x11\xe9\x93\x8c\x8f\x89\x77\x3f\x85\x4f\xbe\ \x63\x7c\x48\xd8\xb3\x57\xe6\x3e\x8f\x0e\xad\x9a\x98\xb5\xd4\x99\ \x96\xbd\x18\x26\x62\x78\x08\x32\x7c\x81\xb9\x00\xce\xd2\x9e\x83\ \x88\xf4\x49\xc6\xc7\xb5\xa9\x4f\xe1\xd3\xef\x7e\x57\x39\x2f\x37\ \xc7\xc7\xbf\xbb\x76\x8b\xac\x5b\xa5\x52\x05\xb3\x96\x72\xe4\xf3\ \x3c\x18\x1e\xc2\x0c\x5f\x20\x03\xc0\x0d\xda\x73\x10\x91\x3e\xc9\ \xf8\x98\x90\xfa\x24\x32\xbe\xff\x43\xe5\xbc\xdc\x1c\x1f\x47\x8f\ \x9a\x7f\x9f\x87\xc7\x03\x5c\x34\xda\x94\x87\x8f\x76\x4e\x48\x4a\ \xb6\xfc\x35\x29\x2e\x86\x87\x05\x0c\x5f\xe0\x71\x00\x4f\x6b\xcf\ \x41\x44\xfa\x24\xe3\xe3\x9a\xbb\x9e\xc0\x67\x3f\x30\x3e\xcc\x74\ \xf0\xd0\x21\x91\x75\x87\xf9\xba\x98\xb5\x54\x7d\xcb\x5e\x0c\x93\ \x30\x3c\x2c\x62\xf8\x02\x93\x00\x7c\xaa\x3d\x07\x11\xe9\x1b\xd2\ \x2a\x06\x2f\x0b\xc5\xc7\xd5\x77\x3e\x81\xcf\x7f\xfc\x53\xe5\xbc\ \xdc\x18\x1f\xbb\xf7\xee\x15\x59\xb7\x75\xb3\x06\x66\x2d\x35\xca\ \xaa\xd7\xc2\x2c\x0c\x0f\x0b\x19\xbe\xc0\x68\x00\xd3\xb4\xe7\x20\ \x22\x7d\x43\x05\xe3\xe3\xaa\x3b\x1e\xc7\x17\x3f\xea\x7c\xab\x71\ \x5b\x7c\xec\xda\x2d\x13\x1e\xe5\xcb\x96\x41\xd9\xd2\xf1\x66\x2c\ \xe5\xb8\xfb\x3c\x18\x1e\xd6\xeb\x09\x60\x99\xf6\x10\x44\xa4\x4f\ \x32\x3e\xae\xbc\xe3\x31\x7c\xf1\x13\xe3\xc3\x0c\x39\x47\x8f\x8a\ \xac\x7b\xc9\x39\x43\xcd\x58\xa6\xad\xd3\xee\xf3\x60\x78\x58\x2c\ \xff\xd3\x6c\x5b\x03\xd8\xa2\x3d\x0b\x11\xe9\x13\x8d\x8f\xdb\x1f\ \xc3\x97\x3f\x4f\x57\x39\x2f\x37\xc5\xc7\xc1\x83\x32\xf7\x79\x0c\ \xe8\x61\xda\x13\x17\x1a\x5b\xf6\x62\x98\x80\xe1\xa1\xc0\xf0\x05\ \x8e\x02\x68\x04\x60\xa7\xf6\x2c\x44\xa4\x4f\x32\x3e\xae\xb8\xed\ \x51\x7c\xf5\xcb\x0c\x95\xf3\x72\x4b\x7c\xec\xda\x23\x73\xb9\xa5\ \x59\xc3\x3a\x66\x2d\x35\xda\xb2\x17\xc3\x04\x0c\x0f\x25\x86\x2f\ \x70\x10\xe1\xbb\x91\x0f\x68\xcf\x42\x44\xfa\x24\xe3\xe3\xf2\x5b\ \x1f\xc1\xd7\x8c\x8f\x22\x93\x7a\x90\x58\x7c\xa9\x92\xa8\x5f\x3b\ \xc1\x8c\xa5\xc6\x59\xfa\x82\x14\x13\xc3\x43\x91\xe1\x0b\xec\x06\ \x50\x17\x80\xcc\x73\x79\x89\xc8\x51\x24\xe3\xe3\xb2\x5b\x1f\xc1\ \x37\xc1\xbf\x54\xce\xcb\x0d\xf1\x91\x93\x23\x73\x9f\xc7\xb8\xe4\ \x81\x66\x2c\xd3\x22\x21\x29\xd9\x63\xe9\x0b\x52\x0c\x0c\x0f\x65\ \x86\x2f\xb0\x1d\xe1\xf8\xc8\xd1\x9e\x85\x88\xf4\x49\xc6\xc7\xa5\ \xb7\x3c\x8c\x6f\x7f\x65\x7c\x14\xc5\xfe\x83\x07\x45\xd6\xed\xd3\ \xa5\xad\x59\x4b\x35\xb7\xea\xb5\x28\x2e\x86\x87\x0d\xe4\x7f\xae\ \x4b\x3d\x00\x32\x49\x4d\x44\x8e\x22\x19\x1f\xe3\xa7\x3c\x8c\x6f\ \x7f\x9b\xa9\x72\x5e\x4e\x8e\x8f\xdd\x42\x6f\xab\x6d\x50\xbb\x86\ \x59\x4b\x9d\x6d\xd9\x8b\x51\x4c\x0c\x0f\x9b\x30\x7c\x81\x2d\x08\ \xef\x7c\x30\x3e\x88\x48\x36\x3e\x6e\x7e\x08\xdf\xfd\x96\xa9\x72\ \x5e\x4e\x8d\x8f\xbd\xfb\xf7\x23\x2f\xcf\xfc\x0f\x1c\x8f\x8b\x8b\ \x45\xc7\x36\x4d\xcd\x58\x6a\xac\xe5\x2f\x4a\x11\x31\x3c\x6c\x24\ \x3f\x3e\xea\x80\x97\x5d\x88\x08\xb2\xf1\x71\xc9\xcd\x0f\xe2\xfb\ \xdf\x19\x1f\x85\x21\x75\x9f\xc7\x79\xc3\xfb\x99\xb1\x4c\xe3\x84\ \xa4\x64\x47\xfc\x4c\x77\xc4\x90\xd1\xc4\xf0\x05\xb2\x01\xd4\x02\ \x20\xf3\xc6\x71\x22\x72\x14\xc9\xf8\xb8\xf8\xa6\x07\xf1\xc3\x1f\ \xb3\x54\xce\xcb\x89\xf1\x21\x75\x9f\x47\xb7\x0e\xad\xcc\x5a\xaa\ \xb5\x65\x2f\x46\x31\x30\x3c\x6c\xc8\xf0\x05\xb6\x01\xa8\x01\x40\ \xe6\xa2\x22\x11\x39\x8a\x64\x7c\xa4\xdc\xf8\x00\x7e\xfc\x63\xb6\ \xca\x79\x39\x2d\x3e\x76\xed\xde\x23\xb2\x6e\xed\x84\x6a\x66\x2d\ \x75\xae\x65\x2f\x46\x31\x30\x3c\x6c\xca\xf0\x05\x76\x22\x1c\x1f\ \xff\x68\xcf\x42\x44\xfa\x24\xe3\xe3\xa2\x1b\xef\xc7\x4f\x7f\x32\ \x3e\x4e\x67\xff\x81\x83\x22\xf7\x79\x18\x86\x17\x03\x7b\x76\x32\ \x63\xa9\x0b\x2c\x7f\x51\x8a\x80\xe1\x61\x63\x86\x2f\xb0\x0f\x40\ \x6d\x00\x6b\xb5\x67\x21\x22\x7d\x43\x5b\xc5\xe0\xe5\x0b\x65\xe2\ \xc3\x7f\xc3\xfd\xf8\x69\xda\x1c\x95\xf3\x72\x52\x7c\x1c\xc9\x91\ \xb9\x05\x6f\xf4\xe0\xde\x66\x2c\x53\x37\x21\x29\x39\xc6\xd2\x17\ \xa4\x08\x18\x1e\x36\x67\xf8\x02\x87\x11\x7e\xbc\xfa\x3c\xed\x59\ \x88\x48\xdf\xd0\xd6\x82\xf1\x71\xfd\x7d\xf8\x79\x3a\xe3\xe3\x54\ \xf6\xef\x97\xb9\xcf\xa3\x63\xa2\x29\xef\x6c\x01\x80\x76\x96\xbd\ \x18\x45\xc4\xf0\x70\x00\xc3\x17\xc8\x05\xd0\x1e\xc0\x0f\xda\xb3\ \x10\x91\x3e\xc9\xf8\x18\x77\xdd\x7d\xf8\x65\xfa\x5c\x95\xf3\x72\ \x42\x7c\xec\x14\xba\xcf\xe3\x8c\x2a\x95\xcc\x5a\xea\x7c\xcb\x5e\ \x8c\x22\x62\x78\x38\x84\xe1\x0b\xc0\xf0\x05\x06\x01\x78\x53\x7b\ \x16\x22\xd2\x27\x19\x1f\x17\x5e\x77\x2f\x82\x33\x74\x36\x59\xed\ \x1e\x1f\x07\x0f\x1d\x12\xb9\xcf\xc3\xe3\xf1\xe0\xbc\x11\x7d\xcd\ \x58\xca\xf6\x37\x98\x32\x3c\x1c\xc6\xf0\x05\x2e\x06\x90\xa6\x3d\ \x07\x11\xe9\x93\x8c\x8f\xb1\x93\xa7\x22\xf8\x17\xe3\xe3\x44\x0e\ \x1f\x39\x22\xb2\xee\x88\x7e\xdd\xcc\x58\xa6\x46\x42\x52\x72\xac\ \xa5\x2f\x48\x21\x31\x3c\x1c\xc8\xf0\x05\x52\x01\x5c\xa2\x3d\x07\ \x11\xe9\x13\x8d\x8f\x49\x53\xf1\xeb\x5f\xf3\x55\xce\xcb\xce\xf1\ \xb1\x6f\xbf\xcc\x87\x8a\x27\x36\x6f\x64\xd6\x52\xa6\xbc\x45\x46\ \x0a\xc3\xc3\xa1\x0c\x5f\xe0\x0d\x00\xa6\xec\xcb\x11\x91\xb3\x49\ \xc6\xc7\x05\x93\xd2\xf0\xdb\xcc\xf9\x2a\xe7\x55\x3a\x3e\x1e\xcd\ \x1b\x37\x44\xfd\x3a\xb5\x50\xb9\x52\x05\x95\x19\x4e\x64\xe7\x2e\ \x99\xfb\x3c\x2a\x55\x28\x07\xc3\x6b\xca\x8f\x65\x5b\x3f\x3e\x9d\ \xe1\xe1\x60\x86\x2f\x10\x04\xd0\x18\x80\xcc\xbe\x1f\x11\x39\x86\ \x64\x7c\x9c\x3f\x31\x0d\xbf\x67\x66\xa9\x9c\x97\x61\x78\x51\x3a\ \xbe\x14\x12\xaa\x55\x45\xab\x66\x8d\xd1\xbc\x71\x03\xd4\xab\x5d\ \x13\x95\x2a\x94\x57\x99\x07\x08\x5f\x6a\xc9\xcd\x35\xff\x3e\x0f\ \x00\xb8\xec\xfc\x11\x66\x2c\x33\xc6\xd2\x17\xa4\x90\x18\x1e\x0e\ \x67\xf8\x02\xab\x00\x54\x01\xb0\x5e\x7b\x16\x22\xd2\x25\x19\x1f\ \xe7\x5d\x7b\x0f\xfe\xc8\x5c\xa0\x7d\x8a\x30\x0c\x03\x65\x4a\xc7\ \xa3\xc6\x19\xd5\xd0\xaa\x59\x63\x34\x6b\xd4\x00\x75\x6b\xd5\x40\ \x85\xf2\x65\x2d\x9d\x43\xea\x3e\x8f\x41\xbd\x92\xcc\x58\xa6\x5a\ \x42\x52\x72\x09\x4b\x5f\x90\x42\x60\x78\xb8\x80\xe1\x0b\xec\x05\ \x50\x1f\xc0\xf7\xda\xb3\x10\x91\x2e\xc9\xf8\x38\xf7\xda\xbb\xf1\ \xc7\x2c\xfd\xf8\x38\x56\x4c\x8c\x81\xb2\x65\x4a\xa3\x56\xc2\x19\ \x68\xd5\xac\x31\x9a\x36\xaa\x8f\x3a\x35\x13\x50\xae\x6c\x19\xd1\ \xe3\xee\xdb\xbf\x5f\x64\xdd\x16\x8d\xeb\x9a\xb5\x54\x57\xd1\x17\ \xa0\x18\x18\x1e\x2e\x61\xf8\x02\x79\x86\x2f\x30\x18\xc0\x03\xda\ \xb3\x10\x91\xae\xa1\xad\x63\xf0\x92\x54\x7c\x4c\xb8\x1b\x7f\xce\ \x5e\xa8\x7d\x8a\x27\x15\x1b\x13\x83\x72\x65\xcb\xa0\x4e\xcd\x84\ \x70\x88\x34\xac\x8f\x5a\x35\xce\x40\xd9\xd2\xa5\x4d\x3d\xce\xbf\ \xbb\x76\x8b\xcc\x5f\xb6\x74\x3c\xaa\x9b\xf3\x4c\x8f\x0b\x45\x06\ \x34\x01\xc3\xc3\x65\x0c\x5f\xe0\x36\x00\xa3\xb5\xe7\x20\x22\x5d\ \xc3\x04\xe3\xe3\x9c\x6b\x52\x31\xcd\xc6\xf1\x71\xac\xd8\xd8\x18\ \x54\x28\x57\x16\x75\x6b\xd7\x40\xcb\xa6\x8d\xd0\xa4\x41\x3d\xd4\ \x4c\xa8\x8e\xd2\xf1\xc5\x7b\x6d\x72\x72\x8e\x22\x37\x37\x57\x64\ \xe6\x94\x31\x83\xcd\x58\xe6\x2c\x91\xe1\x4c\xe0\xd1\x1e\x80\x64\ \x84\x82\xfe\xc6\x00\xb2\x00\xc8\x7c\xe7\x21\x22\x47\xf8\x7a\xe1\ \x51\x5c\xf1\xb6\xcc\x63\xbe\x3f\x7e\x3e\xcd\xcc\x8f\x74\xb7\x5c\ \x5e\x5e\x1e\x8e\xe4\xe4\x60\xff\xfe\x83\xd8\xb9\x7b\x0f\x0e\x1e\ \x3a\x54\xa8\x5f\xdf\xa0\x6e\x6d\xc4\x97\x2a\x69\xfa\x5c\x0b\x97\ \xaf\xc1\x20\xff\x8d\x66\x2c\x55\x3a\x3b\x33\x43\xe6\xbd\xbf\xc5\ \xc0\x1d\x0f\x97\x32\x7c\x81\x95\x00\x2a\x02\xd0\xf9\xe0\x05\x22\ \xb2\x05\xc9\x9d\x8f\x31\x57\xdf\x85\xe9\x73\x17\x69\x9f\x62\x91\ \x79\x3c\x1e\x94\x88\x8b\x43\xa5\x8a\xe5\xd1\xb0\x5e\x6d\xb4\x6c\ \xda\x08\x8d\xea\xd7\xc1\x19\xd5\xaa\xa0\x44\x5c\xdc\x69\x7f\xfd\ \x5e\xa1\xfb\x3c\x1a\xd7\xab\x65\xd6\x52\x3d\x44\x06\x2c\x26\x86\ \x87\x8b\x19\xbe\xc0\x61\xc3\x17\xe8\x08\xe0\x09\xed\x59\x88\x48\ \x8f\x68\x7c\x5c\x75\x17\x66\xcc\x5d\xac\x7d\x8a\xa6\xf0\x78\x3c\ \x28\x59\xa2\x04\xaa\x54\xaa\x88\xc6\x0d\xea\xa2\x45\x93\x46\x68\ \x58\xaf\x0e\xaa\x57\xad\x8c\xd8\xd8\xff\xfd\xd0\xd7\x7f\x77\xca\ \xdc\xe7\x51\xb2\x44\x1c\x5a\x36\xa9\x6f\xc6\x52\xe3\x64\x5f\xb1\ \xa2\x61\x78\x44\x01\xc3\x17\xb8\x1e\x80\x29\x6f\x0e\x27\x22\x67\ \x92\x8c\x8f\xd1\x57\xdd\x89\xbf\xe6\xb9\x23\x3e\x8e\xe5\xf5\x7a\ \x50\xaa\x64\x09\x54\xad\x5c\x09\x4d\x1b\xd6\x47\x8b\x26\x0d\xd1\ \xa0\x6e\x6d\x54\xad\x52\x09\x86\x61\x20\x14\x0a\x21\x24\x74\x9f\ \xc7\x05\x23\xfb\x9b\xb1\xcc\x48\x4b\x5f\xb0\x02\xe2\x3d\x1e\x51\ \x24\x14\xf4\x9f\x81\xf0\xa5\x97\x1a\xda\xb3\x10\x91\x0e\xc9\x7b\ \x3e\x32\x5e\xba\x17\x9d\xdb\xb6\xd0\x3e\x45\xcb\x84\x72\x73\xcd\ \x7a\xd2\xe8\xff\x58\xb5\x7e\x33\x7a\x9d\x73\xad\x19\x4b\x95\xcd\ \xce\xcc\xd8\x67\xe9\x0b\x73\x1a\xdc\xf1\x88\x22\x86\x2f\xf0\x37\ \x80\x9a\x00\xde\xd6\x9e\x85\x88\x74\x48\xee\x7c\x24\x5f\x71\x07\ \x66\xce\x5f\xaa\x7d\x8a\x96\x91\x8a\x0e\x00\xa8\x5b\xf3\x0c\xb3\ \x96\xea\x63\xc5\x6b\x51\x18\x0c\x8f\x28\x63\xf8\x02\x30\x7c\x81\ \x71\x00\xce\xd1\x9e\x85\x88\x74\xc8\xc6\xc7\xed\xc8\xcc\x8a\x9e\ \xf8\x90\x12\x1b\x63\xa0\x57\x52\xa2\x19\x4b\xf9\xb5\xcf\xe5\x78\ \x0c\x8f\x28\x65\xf8\x02\x1f\x01\x38\x03\x7c\xd4\x3a\x51\x54\x92\ \x8c\x8f\x51\x97\xdf\x8e\x59\x59\xcb\xb4\x4f\xd1\xf1\xce\x1e\xda\ \xc7\x8c\x65\x86\x69\x9f\xc7\xf1\x18\x1e\x51\xcc\xf0\x05\xb6\x1a\ \xbe\x40\x3d\x00\x4f\x69\xcf\x42\x44\xd6\x93\x8c\x8f\x91\x97\xdf\ \x86\x59\x0b\x18\x1f\xc5\xd1\xb9\x9d\x29\xf7\xcb\xc4\x27\x24\x25\ \xeb\x7d\xa2\xde\x09\x30\x3c\x08\x86\x2f\x30\x19\xe1\xf7\x7b\xe7\ \x68\xcf\x42\x44\xd6\x12\x8d\x8f\xcb\x6e\xc3\xec\x85\xcb\xb5\x4f\ \xd1\xb1\x6a\x54\xab\x6c\xd6\x52\xa6\xbc\x45\xc6\x2c\x0c\x0f\x02\ \x00\x18\xbe\xc0\x34\x00\x65\x00\x7c\xa7\x3d\x0b\x11\x59\x4b\x32\ \x3e\xce\xbc\xf4\x56\xcc\x61\x7c\x14\x89\xd7\xeb\xc5\xa8\x81\xa6\ \x3c\x03\xcc\x56\xf7\x79\x30\x3c\xe8\x3f\x0c\x5f\xe0\x88\xe1\x0b\ \x0c\x01\x70\xae\xf6\x2c\x44\x64\x2d\xc9\xf8\x18\x71\xe9\xad\x98\ \xb3\x68\x85\xf6\x29\x3a\xd2\xc8\x01\xa6\x84\xc7\x20\xed\xf3\x38\ \x16\xc3\x83\xfe\x87\xe1\x0b\x7c\x08\xa0\x02\x80\x4c\xed\x59\x88\ \xc8\x3a\xa2\xf1\x31\xfe\x16\xcc\x65\x7c\x14\x5a\xfb\x56\x4d\xcc\ \x58\xa6\x44\x42\x52\xb2\x69\xd7\x6d\x8a\x8b\xe1\x41\x27\x64\xf8\ \x02\xbb\x0d\x5f\xa0\x33\x80\x4b\xb4\x67\x21\x22\xeb\x48\xc6\xc7\ \xf0\xf1\xb7\x60\xde\xe2\x95\xda\xa7\xe8\x28\x55\x2a\x55\x30\x6b\ \xa9\x81\xda\xe7\x12\x61\x68\x0f\x40\xf6\x96\x96\x9e\x35\x3f\x35\ \x25\xf1\x29\x84\x1f\x42\x63\xda\x27\x17\x11\x91\x7d\x35\xa9\xee\ \x45\xd3\x33\x0c\x7c\xb5\xe0\xa8\xe9\x6b\xbf\xfb\xf9\x4f\x38\x92\ \x93\x83\xf8\x92\x25\x50\xbe\x6c\x19\xc4\x9d\xe0\x33\x50\xe8\xff\ \x79\x00\xec\xd8\xb5\x07\xf3\x97\xac\x2a\xee\x52\x65\xf6\x6d\x5e\ \x66\x8b\x87\x47\xf2\x91\xe9\x54\x60\xa1\xa0\xff\x5c\x00\xef\x81\ \x5f\x37\x44\x51\x41\xf2\xf1\xea\x11\x75\x6a\x54\x87\xff\xac\x41\ \xe8\xd3\xb5\x2d\x1a\xd6\xa9\x89\x12\x71\xb1\xda\xa7\x6d\x3b\x7f\ \xce\x5e\x88\x73\xae\x49\x2d\xee\x32\x47\xb3\x33\x33\x6c\xf1\xe2\ \xf2\x07\x08\x15\x4a\x28\xe8\x2f\x05\xe0\x7d\x00\x67\x6a\xcf\x42\ \x44\xf2\xac\x88\x8f\x63\xb5\x6b\xd9\x18\xe7\x8f\xe8\x87\xee\x1d\ \x5b\xa3\x76\x8d\x6a\x88\x31\xb8\x31\xbf\x7b\xef\x7e\x34\xef\x6f\ \xca\x07\xcd\x56\xcf\xce\xcc\xd8\xa6\x7d\x3e\x0c\x0f\x2a\x92\x50\ \xd0\xdf\x13\xc0\x37\x08\xbf\x05\x97\x88\x5c\xcc\xea\xf8\x38\x56\ \xff\xee\x1d\x30\x7a\x48\x6f\x74\x4a\x6c\x8e\x84\xaa\x95\xe0\xf1\ \x44\xe7\x8f\xad\x66\xfd\x2e\xc4\x9e\x7d\x07\x8a\xbb\xcc\xc5\xd9\ \x99\x19\x6f\x6a\x9f\x4b\x74\xfe\x0e\x92\x29\x42\x41\xbf\x07\xc0\ \x7d\x00\x6e\xd5\x9e\x85\x88\x64\x69\xc6\xc7\xb1\xce\x1e\xda\x07\ \x67\xf6\xef\x8e\xb6\x2d\x1a\xa3\x72\xc5\x72\xda\xe3\x58\xe6\xe1\ \x97\xde\xc3\x93\xaf\x7f\x54\xdc\x65\x82\xd9\x99\x19\x7d\xb5\xcf\ \x85\xe1\x41\xc5\x16\x0a\xfa\x13\x00\x7c\x01\xa0\xa3\xf6\x2c\x44\ \x24\xe7\xab\x05\x47\x71\xe5\x3b\xfa\xf1\x71\xac\xcb\xce\x1f\x81\ \x21\xbd\x3b\xa3\x65\xe3\x7a\x28\x5b\x26\x5e\x7b\x1c\x31\xf3\x16\ \xaf\xc4\xb0\x4b\xa6\x14\x77\x99\xdc\xec\xcc\x0c\xf5\x6b\x57\x0c\ \x0f\x32\x4d\x28\xe8\x1f\x0c\xe0\x53\x00\x32\xef\xc5\x23\x22\x4d\ \x1f\x02\xb8\xb8\xd6\x94\xbd\x53\x01\x5c\xaf\x3d\xcc\x89\x54\xa9\ \x54\x1e\x17\x8f\x19\x82\x7e\xdd\x3b\xa0\x71\xbd\x5a\x28\x55\xb2\ \x84\xf6\x48\xa6\x39\x70\xf0\x10\x1a\xf5\xb9\xc0\x8c\xa5\x6a\x66\ \x67\x66\x6c\xd1\x3c\x17\x86\x07\x99\x2a\xff\xf2\xcb\x5d\x00\xee\ \xd6\x9e\x85\x88\x4c\xb1\x1a\xc0\x08\xc3\x17\xf8\xcf\x67\xdd\x27\ \x24\x25\x3f\x06\x9b\xc6\xc7\xb1\x9a\x35\xac\x83\xb1\xa3\x06\xa0\ \x57\x52\x22\xea\xd5\x3a\x03\xb1\x31\xce\x7e\xeb\x6e\x8f\xb3\x27\ \x60\xcd\x86\x62\x37\xc3\x95\xd9\x99\x19\x2f\x69\x9e\x07\xc3\x83\ \x44\x84\x82\xfe\xf2\x00\x02\xe0\xbb\x5f\x88\x9c\xea\x30\x80\xb1\ \x86\x2f\xf0\xc9\x89\xfe\x47\xa7\xc4\xc7\xb1\xba\x77\x6c\x8d\x73\ \x86\xf9\xd0\xa5\x5d\x0b\xd4\xac\x5e\x05\x5e\xaf\xb3\x9e\xa1\xf9\ \xd2\xbb\x5f\xe0\x9e\xa7\xde\x2c\xee\x32\xd3\xb3\x33\x33\xba\x6b\ \x9e\x07\xc3\x83\x44\x85\x82\xfe\xe6\x08\x5f\x7e\x69\xa6\x3d\x0b\ \x11\x15\xd8\x5d\x00\xee\x35\x7c\x81\xbc\x53\xfd\x47\x4e\x8c\x8f\ \x63\x8d\xe8\xd7\x0d\xa3\x06\xf6\x44\x87\xd6\x4d\x50\xb5\x52\x05\ \xdb\xbf\x63\x66\xd9\xea\x0d\xe8\x7b\xc1\xe4\xe2\x2e\x93\x07\xc0\ \x9b\x9d\x99\xa1\x76\x1e\xf6\x7e\x95\xc9\x35\x42\x41\xff\x40\x00\ \x1f\x20\xfc\x19\x30\x44\x64\x4f\x01\x00\x57\x1b\xbe\xc0\xfe\x82\ \xfe\x02\xa7\xc7\xc7\xb1\xfc\x67\x0d\xc2\xb0\xbe\x5d\xd1\xba\x69\ \x03\x54\x28\x67\xbf\x27\x05\x1c\xc9\xc9\x41\xbd\x1e\xa6\x7c\x86\ \x67\xdd\xec\xcc\x8c\x0d\x5a\xe7\xc1\xf0\x20\x4b\x85\x82\xfe\x8b\ \x01\xbc\x0c\xc0\xd9\x17\x5b\x89\xdc\xe5\x67\x00\xe3\x0c\x5f\x20\ \xbb\x28\xbf\xd8\x4d\xf1\x11\x51\xba\x54\x49\x8c\x3f\x77\x18\x06\ \xf4\xec\x84\x66\x0d\xeb\xa0\x74\xa9\x92\xda\x23\x01\x00\x46\x5e\ \x76\x1b\x66\x2d\x58\x56\xdc\x65\x26\x66\x67\x66\x3c\xa3\x75\x0e\ \x0c\x0f\xb2\x5c\xfe\x0d\xa8\x37\x02\x78\x08\xfc\x1a\x24\xd2\x34\ \x17\xc0\x05\x86\x2f\xb0\xbc\xb8\x0b\xb9\x31\x3e\x8e\x55\xb7\x66\ \xfe\xa3\xdd\xbb\xb4\x43\x83\x3a\x35\xd4\x1e\xed\xfe\xde\x17\x3f\ \xe1\x86\xfb\x9e\x2f\xee\x32\xb3\xb3\x33\x33\x3a\xa9\x9c\x00\xf8\ \x4d\x9f\x14\x85\x82\xfe\x18\x84\xaf\x25\xdf\xa9\x3d\x0b\x51\x94\ \x59\x86\xf0\x8d\xa3\x73\xcd\x5c\xd4\xed\xf1\x71\xac\xf6\xad\x9a\ \xe0\xfc\x11\xfd\xd0\xad\x43\x2b\x4b\x1f\xed\xbe\x7e\xd3\xdf\xe8\ \x3a\xfa\x6a\x33\x96\xf2\x68\xdd\xe7\xc1\xf0\x20\x75\xa1\xa0\x3f\ \x0e\x40\x1a\x80\x62\x3f\x1d\x87\x88\x4e\x69\x25\xc2\x97\x54\x66\ \x4a\x1d\x20\x9a\xe2\xe3\x58\x03\x7a\x74\xc4\xe8\xc1\xbd\xd1\x29\ \xb1\x19\xce\x10\x7c\xb4\x7b\x28\x94\x8b\xda\xdd\xc6\x98\xb1\x54\ \xa3\xec\xcc\x8c\xd5\x96\xbe\x48\xf9\x18\x1e\x64\x1b\xf9\x01\x92\ \x0a\xe0\x36\xed\x59\x88\x5c\x66\x29\x80\x14\xc3\x17\xc8\xb4\xe2\ \x60\x09\x49\xc9\xa5\x00\x74\x03\x30\x0e\xc0\x28\x00\xe5\xb5\x5f\ \x00\xab\x9d\x33\xcc\x87\x33\xfb\x77\x47\x62\x8b\x46\xa8\x5c\xc1\ \xdc\x47\xbb\x5f\x7c\xd3\x83\xf8\xfe\xf7\x62\xff\x56\xde\x94\x9d\ \x99\xf1\xa8\xc6\x6b\xc3\xf0\x20\xdb\xc9\xbf\x04\x73\x33\x80\xa9\ \x00\x9c\xf5\x46\x7b\x22\x7b\x99\x03\x60\xbc\xe1\x0b\x64\x69\x0e\ \x91\x90\x94\x5c\x1a\x40\x2f\x00\x7e\x00\x23\x00\x94\xd6\x7e\x61\ \xac\xe4\xf1\x78\x70\xd9\x79\xc3\x31\xb8\x77\x67\xb4\x6c\x52\x0f\ \x65\x4b\x17\xef\xd1\xee\x5f\xfe\x3c\x1d\x57\xdc\x56\xec\x66\x58\ \x90\x9d\x99\x91\xa8\xf2\x7a\x68\x1c\x94\xa8\x20\xf2\x6f\x42\xbd\ \x1c\xc0\x13\xe0\x63\xd8\x89\x0a\xe3\x07\x84\xdf\x16\xab\xb2\x95\ \x7e\x3a\x09\x49\xc9\xe5\x00\xf4\x45\x38\x44\x86\x00\xb0\xc7\x5b\ \x46\x2c\x52\xad\x72\x05\xa4\x8c\x19\x82\xbe\xdd\x3a\xa0\x49\xfd\ \x5a\x28\x59\x22\xae\x50\xbf\xfe\xef\x7f\xfe\x45\xfb\xe1\x97\x9a\ \x31\x8a\x37\x3b\x33\x23\xaf\xf8\xcb\x14\x0e\xc3\x83\x1c\x21\x14\ \xf4\x9f\x09\xe0\x05\x00\x35\xb4\x67\x21\xb2\xb1\xd7\x01\x4c\x31\ \x7c\x81\xed\xda\x83\x14\x46\x42\x52\x72\x45\x00\x03\x00\x5c\x94\ \xff\x6f\x9d\xb7\x8c\x28\x69\xde\xa8\x2e\xc6\x8e\x1a\x80\x9e\x9d\ \xda\x14\xe8\xd1\xee\x79\x79\x79\xa8\xd9\x65\xb4\x19\x87\x6e\x96\ \x9d\x99\x51\xec\x77\x34\x15\x16\xc3\x83\x1c\x25\x14\xf4\xb7\x07\ \xf0\x2c\x80\xae\xda\xb3\x10\xd9\x44\x0e\xc2\xf7\x46\x3d\x6e\xf8\ \x02\x87\xb5\x87\x31\x43\x42\x52\x72\x15\x84\x77\x42\xfc\x00\x7c\ \x00\xd4\x3f\x51\xd5\x4a\x3d\x3a\xb5\xc1\x39\x43\xfb\xa0\xf3\x29\ \x1e\xed\x7e\xc3\xbd\xcf\xe1\xbd\x2f\x7f\x2e\xee\xa1\xee\xc8\xce\ \xcc\xb8\xcf\xea\xf3\x63\x78\x90\x23\x85\x82\xfe\x6a\x00\xee\x05\ \x70\x99\xf6\x2c\x44\x4a\xd6\x03\x98\x04\xe0\x73\xc3\x17\xd0\x9e\ \x45\x54\x42\x52\xf2\x19\x00\x86\x21\xbc\x23\xd2\x03\x51\xf6\xb3\ \xeb\xcc\xfe\xdd\x31\x6a\x60\x4f\xb4\x6f\x15\x79\xb4\x3b\x10\x9c\ \x31\x0f\x63\x27\x4f\x2d\xee\xd2\xcb\xb2\x33\x33\x9a\x5b\x7d\x3e\ \x51\xf5\x9b\x47\xee\x13\x0a\xfa\x0d\x00\x17\x03\x78\x10\x40\x65\ \xed\x79\x88\x2c\xf0\x19\xc2\x97\x53\x56\x68\x0f\xa2\x25\x21\x29\ \xb9\x16\xc2\x1f\x40\xe9\x07\xd0\x59\x7b\x1e\xab\x5d\x34\x7a\x30\ \x86\xfa\xba\xe0\xdc\x09\x77\x9b\xb1\x9c\x91\x9d\x99\x91\x6b\xe5\ \xfc\x0c\x0f\x72\x8d\x50\xd0\x9f\x88\xf0\xd3\x50\x07\x69\xcf\x42\ \x64\xb2\x3d\x08\x3f\x6c\xef\x45\xb7\x5c\x4e\x31\x4b\x42\x52\x32\ \x00\xd4\x47\xf8\x6d\xbb\xe3\x00\xb4\xd3\x9e\xc9\x61\x5a\x67\x67\ \x66\x2c\xb2\xf2\x80\x0c\x0f\x72\x9d\x50\xd0\x5f\x0a\xe1\x77\xc3\ \xdc\x0d\x7e\x28\x1d\x39\xdb\xb7\x00\x6e\x33\x7c\x81\xf9\xda\x83\ \x38\x45\x7e\x88\x34\x06\x30\x1a\xc0\x85\x00\x5a\x6a\xcf\x64\x73\ \xf7\x66\x67\x66\x58\xfa\xf4\x68\x86\x07\xb9\x5a\x28\xe8\x6f\x8e\ \x70\x80\x9c\xa3\x3d\x0b\x51\x01\x6d\x41\xf8\x66\xd1\x80\xe1\x0b\ \x1c\xd1\x1e\xc6\xe9\x12\x92\x92\x3d\x00\x9a\x03\x38\x1b\xc0\x58\ \x84\xa3\x84\xfe\xdf\x9a\xec\xcc\x8c\x86\x56\x1e\x90\xe1\x41\x51\ \x21\x14\xf4\x7b\x11\x7e\x70\xd1\x3d\x00\x54\x1e\x9a\x43\x74\x0a\ \x39\x00\x9e\x07\xf0\xa8\xe1\x0b\x6c\xd2\x1e\xc6\xcd\x12\x92\x92\ \xbd\x00\x5a\x03\x38\x17\xc0\xf9\x00\xea\x69\xcf\x64\x03\x31\xd9\ \x99\x19\x21\xab\x0e\xc6\xf0\xa0\xa8\x13\x0a\xfa\xcb\x20\x7c\x77\ \xfc\x2d\x00\x6a\x69\xcf\x43\x51\xed\x13\x00\xf7\x9b\xfd\x61\x6d\ \x54\x70\x09\x49\xc9\x06\xc2\xf7\x85\x9c\x0f\xe0\x3c\x44\xe7\xb3\ \x82\x3a\x64\x67\x66\x58\xf6\x35\xc8\xf0\xa0\xa8\x16\x0a\xfa\xab\ \x20\xfc\x96\xdc\xeb\x00\x54\xd5\x9e\x87\xa2\xc2\x77\x08\xbf\x0b\ \xeb\x77\xc3\x17\xb0\xfc\xa9\x91\x74\x6a\x09\x49\xc9\xb1\x00\x3a\ \x01\xb8\x00\xe1\xcb\x33\xd5\xb4\x67\xb2\xc0\x23\xd9\x99\x19\x37\ \x5b\x75\x30\x86\x07\x51\xbe\xfc\x67\x83\x5c\x02\x60\x22\x80\x04\ \xed\x79\xc8\x55\xbe\x06\xf0\x28\x80\xdf\x18\x1b\xce\x92\x90\x94\ \x5c\x02\xe1\x07\x16\x5e\x08\xe0\x2c\x00\x15\xb5\x67\x12\xb0\x31\ \x3b\x33\xa3\x8e\x55\x07\x63\x78\x10\x9d\x40\x28\xe8\xaf\x80\xf0\ \x0d\xa9\x93\x00\xb4\xd0\x9e\x87\x1c\xe7\x30\x80\xf7\x11\x7e\xca\ \xee\x6c\xb7\x3f\xe0\x2b\x9a\x24\x24\x25\xc7\x23\xfc\x10\xb3\x71\ \x00\x46\x02\x28\xab\x3d\x93\x49\x62\xb3\x33\x33\x8e\x5a\x71\x20\ \x86\x07\xd1\x69\x84\x82\xfe\x58\x00\xfd\x00\x5c\x8d\xf0\xd3\x13\ \xf9\x89\xb9\x74\x22\x1b\x00\xbc\x82\xf0\xbb\x51\x36\x68\x0f\x43\ \xd6\x48\x48\x4a\x2e\x03\xa0\x0f\xc2\x0f\x33\x1b\x06\xa0\x78\x1f\ \x3d\xab\xa7\x4b\x76\x66\xc6\x4c\x2b\x0e\xc4\xf0\x20\x2a\xa4\x50\ \xd0\xdf\x00\xe1\xeb\xbf\x97\x20\xfc\xe0\x22\x8a\x4e\x39\x00\xbe\ \x01\xf0\x32\x80\x5f\x0c\x5f\xe0\x90\xf6\x40\xa4\x2f\x21\x29\xb9\ \x3c\xc2\x7f\x51\xb9\x08\xe1\x87\x19\x96\xd0\x9e\xa9\x80\x9e\xce\ \xce\xcc\x98\x64\xc5\x81\x18\x1e\x44\xc5\x90\xbf\x1b\x92\x84\xf0\ \xb6\xeb\x18\xf0\xb1\xed\x6e\x37\x13\xc0\x9b\x08\x7f\x3e\x4a\xb6\ \xf6\x30\x64\x7f\x09\x49\xc9\x95\x10\x0e\x10\x3f\x80\xfe\x00\x62\ \x8a\xb7\xa2\x98\xbf\xb3\x33\x33\x2c\xb9\xb7\x8d\xe1\x41\x64\xa2\ \xfc\xa7\xa6\x76\x45\xf8\x6d\x79\x23\x11\x1d\x77\xc4\xbb\x55\x2e\ \xc2\xa1\xf1\x2e\x80\x2f\x01\xac\xe7\xbd\x1a\x54\x5c\x09\x49\xc9\ \xd5\x10\xfe\xe4\xdd\x8b\x00\xf4\x86\xbd\x2e\xdd\x96\xc8\xce\xcc\ \x10\x7f\x68\x1d\xc3\x83\x48\x50\xfe\x8e\x48\x6b\x84\x3f\xd0\x2a\ \x39\xff\xff\xcd\x3f\x77\xf6\xb4\x0b\xc0\x8f\x00\x3e\x06\xf0\xab\ \xe1\x0b\x6c\xd3\x1e\x88\xdc\x2f\x21\x29\xb9\x06\x80\xe1\x08\xef\ \x88\x74\x83\xee\xf7\x87\x5e\xd9\x99\x19\x7f\x48\x1f\x84\xdf\x00\ \x89\x2c\x96\xff\xec\x90\xae\x08\x7f\xb3\x19\x00\xde\x27\xa2\xe1\ \x20\x80\xbf\x00\x7c\x85\x70\x6c\x2c\x33\x7c\x81\x1c\xed\xa1\x88\ \x12\x92\x92\xeb\x20\xbc\x5b\xea\x07\xd0\xd1\xe2\xc3\xbf\x94\x9d\ \x99\x71\xa5\xf4\x41\x18\x1e\x44\xca\x42\x41\x3f\x00\x54\x41\xf8\ \xe9\x89\xfd\x00\xf4\x45\x78\x67\xa4\xa4\xf6\x6c\x2e\xb1\x05\xc0\ \x34\x84\x03\x63\x1a\x80\x55\xfc\x0c\x14\x72\x82\xfc\x0f\xbc\x6b\ \x80\xf0\xf3\x43\xc6\x01\x68\x23\x7c\xc8\xed\xd9\x99\x19\xe2\x0f\ \x52\x64\x78\x10\xd9\x54\x28\xe8\x8f\x41\xf8\x91\xee\x89\x00\xba\ \x23\xbc\x4b\xd2\x0a\xfc\xc4\xdd\x13\x39\x0a\x60\x3d\x80\x59\x08\ \xc7\x45\x26\x80\xe5\x00\x76\xf3\xbe\x0c\x72\x8b\xfc\x0f\xbc\x6b\ \x82\xf0\x8d\xec\x17\x02\x68\x66\xf6\x31\xb2\x33\x33\xc4\xbb\x80\ \xe1\x41\xe4\x30\xf9\x3b\x24\x65\x00\xd4\x46\xf8\x53\x37\xdb\x22\ \x1c\x27\xcd\x11\x0e\x95\x52\xda\x33\x0a\xc8\x05\xb0\x03\xc0\x6a\ \x00\x0b\x01\xcc\xcf\xff\xf7\x2a\x00\xff\x18\xbe\x80\x25\x0f\x3e\ \x22\xb2\x93\xfc\x10\x69\x89\xf0\xc3\x0e\x2f\x00\x50\xec\x4f\x99\ \x65\x78\x10\x51\xa1\xe5\x87\x49\x49\x84\x1f\xed\x9c\x00\xa0\x0e\ \xc2\xf7\x91\xd4\x07\x50\x17\xe1\x38\xa9\x8e\xf0\xce\x49\x29\xe8\ \xdd\x55\x7f\x04\xc0\x5e\x84\x83\x22\x1b\xe1\x07\x70\xad\x03\xb0\ \x26\xff\xdf\x9b\x01\x6c\x03\xb0\xcf\xf0\x05\x2c\xfb\xe4\x4c\x22\ \xa7\xca\xff\xc0\xbb\x36\x08\xbf\xab\xee\x7c\x84\xff\x72\x52\x28\ \x0c\x0f\x22\x12\x97\x1f\x2a\x06\x80\x58\x84\x1f\x76\x54\x12\xe1\ \x20\x89\xcf\xff\x77\xc9\xfc\x7f\xe2\xf2\xff\x89\x41\x38\x56\x22\ \xdf\x3f\x72\x01\x84\x10\x7e\xa0\xd6\x11\x84\x1f\x17\x7e\x08\xe1\ \x1b\x38\x8f\xfd\xe7\x50\xfe\xff\x7e\x94\x9f\x57\x42\x24\x2f\x21\ \x29\x39\x06\x40\x07\x84\x23\xe4\x5c\x00\x67\x9c\xee\xd7\x30\x3c\ \x88\x88\x88\xc8\x14\x09\x49\xc9\x71\x08\x3f\xf0\x70\x2c\xc2\xf7\ \x89\x54\x39\xfe\xbf\xb1\x22\x3c\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\x88\ \x88\x0a\xe5\xff\x00\x8a\xce\x3f\x75\x3e\x88\x2f\x2f\x00\x00\x00\ \x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\ \x00\x32\x30\x31\x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\x32\ \x38\x3a\x31\x37\x2b\x30\x38\x3a\x30\x30\x6a\xb8\xe3\x88\x00\x00\ \x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\ \x79\x00\x32\x30\x31\x37\x2d\x30\x34\x2d\x32\x31\x54\x30\x30\x3a\ \x33\x33\x3a\x30\x38\x2b\x30\x38\x3a\x30\x30\x79\x4f\x6e\x0d\x00\ \x00\x00\x4d\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\ \x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\x2e\ \x31\x2d\x36\x20\x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\x32\ \x30\x31\x36\x2d\x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\x2f\ \x2f\x77\x77\x77\x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\ \x2e\x6f\x72\x67\xdd\xd9\xa5\x4e\x00\x00\x00\x63\x74\x45\x58\x74\ \x73\x76\x67\x3a\x63\x6f\x6d\x6d\x65\x6e\x74\x00\x20\x47\x65\x6e\ \x65\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\ \x6c\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x31\x39\x2e\x30\x2e\x30\ \x2c\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\ \x67\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\ \x6f\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\ \x29\x20\x20\xce\x48\x90\x0b\x00\x00\x00\x18\x74\x45\x58\x74\x54\ \x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\ \x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\ \x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\ \x3a\x48\x65\x69\x67\x68\x74\x00\x35\x34\x32\xf2\xfa\xa7\xc4\x00\ \x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\ \x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x34\x32\x61\x0b\ \xf7\x99\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\ \x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\ \x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\ \x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x39\x32\ \x37\x30\x35\x39\x38\x38\x47\x21\xa4\xd8\x00\x00\x00\x10\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x35\x31\ \x4b\x42\x53\x53\x5e\x2e\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\ \x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\ \x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\ \x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\ \x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\ \x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x32\x30\x38\ \x31\x2f\x31\x32\x30\x38\x31\x35\x36\x2e\x70\x6e\x67\x4c\xc7\x8f\ \x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x42\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x1c\ \x50\x4c\x54\x45\xff\xff\xff\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\ \xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\ \xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\ \xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\ \xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\ \xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\ \xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\ \xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\ \xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\ \xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\ \xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\ \xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\ \xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\xff\xb2\xbe\ \xff\xb2\xbe\xff\xb5\xc0\xff\xb2\xbe\xff\xb2\xbe\xff\xba\xc5\xff\ \xb2\xbe\xff\xc0\xc9\xff\xb2\xbe\xff\xb4\xc0\xff\xc1\xcb\xff\xc0\ \xca\xff\xba\xc5\xff\xbf\xc9\xff\xb2\xbe\xff\xc0\xca\xff\xc0\xca\ \xff\xb8\xc3\xff\xbf\xc9\xff\xc0\xca\xff\xbf\xc9\xff\xbd\xc7\xff\ \xc1\xca\xff\xc1\xca\xff\xc0\xca\xff\xc1\xcb\xff\xc1\xcb\xff\xb2\ \xbe\xff\xc0\xca\xff\xc0\xca\xff\xc0\xca\xff\xb2\xbe\xff\xbf\xc9\ \xff\xc1\xcb\xff\xc0\xca\xff\xb2\xbe\xff\xc0\xca\xff\xc1\xca\xff\ \xb2\xbe\xff\xc1\xcb\xff\xc0\xca\xff\xc0\xca\xff\xc1\xcb\xff\xc0\ \xc9\xff\xc1\xcb\xff\xbe\xc8\xff\xc1\xca\xff\xb4\xc0\xff\xc0\xca\ \xff\xc0\xca\xff\xc1\xcb\xff\xc0\xca\xff\xbf\xc9\xff\xc0\xc9\xff\ \xbf\xc9\xff\xc1\xca\xff\xc0\xca\xff\xbf\xc9\xff\xc1\xcb\xff\xbf\ \xc9\xff\xc5\xce\xff\xc0\xca\xff\xc1\xcb\xff\xbf\xc9\xff\xc0\xc9\ \xff\xc0\xca\xff\xc0\xc9\xff\xc0\xca\xff\xbe\xc8\xff\xc0\xca\xff\ \xc0\xca\xff\xc0\xc9\xff\xc0\xca\xff\xc1\xcb\xff\xc0\xca\xff\xc0\ \xca\xff\xc0\xca\xff\xbf\xc9\xff\xc1\xca\xff\xbd\xc7\xff\xbf\xc9\ \xff\xc1\xca\xff\xc1\xca\xff\xc0\xc9\xff\xc0\xca\xff\xc0\xca\xff\ \xc0\xca\xff\xc0\xca\xff\xbf\xc9\xff\xc0\xca\xff\xb2\xbe\xff\xb7\ \xc2\xff\xbd\xc7\xff\xc1\xcb\xff\xb9\xc4\xff\xc0\xca\xff\xb3\xbf\ \xff\xba\xc5\xff\xb5\xc1\xff\xbc\xc6\xff\xb7\xc3\xff\xbe\xc8\xff\ \xb4\xc0\xff\xb8\xc3\xff\xb6\xc2\xff\xb6\xc1\xff\xbb\xc6\xff\xb4\ \xbf\xff\xbb\xc5\xff\xbf\xc9\xff\xb5\xc0\xff\xba\xc4\xff\xff\xff\ \x50\x22\x31\xef\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\ \x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\ \xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\ \x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\ \x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\ \xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\ \x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\ \xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\ \x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\ \xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\ \xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\ \x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\ \x4d\x45\x07\xdd\x09\x09\x15\x2b\x1d\x1d\xf7\x78\x81\x00\x00\x03\ \xf2\x49\x44\x41\x54\x58\xc3\xed\x96\x67\x57\x13\x41\x14\x86\x2f\ \x31\x09\x08\x86\x22\x4a\x2c\x28\x49\x50\x11\x8c\x20\xf6\x82\x62\ \xef\x89\x58\xd0\x48\x88\x01\x01\x4b\x14\x01\x05\x89\x25\x09\x6a\ \xb0\x60\xc3\x82\x7d\xe0\x42\x40\x01\xb1\xfe\x42\x67\x76\xb3\x61\ \x37\x65\x8b\xdf\x3c\xc7\xf7\x9c\xec\x6e\x66\xf7\x79\xf7\xce\xdc\ \x3b\x33\x0b\xf0\x5f\x09\x4a\x13\xa4\x9b\xa1\x37\x18\xd3\x33\x48\ \x46\xba\xd1\xa0\x9f\xa1\x13\x9a\x55\x1a\xcc\xcc\xcc\x22\x52\x65\ \x65\xce\x54\x6d\x30\x4b\x6f\x8a\x52\xd9\x39\xec\x98\x1b\xfd\x67\ \xd2\xcf\x52\x63\x90\x37\x3b\x9f\x3d\x9d\x3f\x67\x6e\x81\x39\x6d\ \x1e\xbb\x9c\xbf\x60\x61\xe1\xa2\xc5\x5c\xe3\xec\x3c\x25\xde\x5c\ \xc4\x5e\x6a\x31\x5a\x6d\x5c\xc0\xbc\x01\xbb\x2a\xb6\x1a\xb9\x98\ \x8a\xcc\xb2\xfc\x92\xa5\x5c\xb0\xcb\x18\x52\xb2\xdc\x50\x9a\xcd\ \xfe\xa5\x97\x2d\x5f\x61\x67\x0d\xdc\xbd\xa5\x4b\x64\xf8\x95\xd9\ \xd1\xee\x96\x57\x94\x99\x24\x63\x98\x63\x28\x4f\x33\x46\x07\x66\ \x65\x4a\xbe\xc8\x42\xc8\xaa\x52\x92\x42\x19\xec\x60\xa9\xa4\xbf\ \xa2\x14\xfc\x6a\x16\xe0\x1a\x5d\x2e\x91\x51\x59\x1e\xeb\xe4\xea\ \xa4\xfc\x5a\x7a\xc7\x60\x4f\xb3\xad\x93\x33\xd0\x81\x7d\x19\x3d\ \xad\x4d\xc2\x17\xd0\x37\x17\x02\xe8\x64\x79\xb2\x5e\x07\x50\x48\ \xf3\x59\x90\xc0\xeb\xe8\xa0\x95\x01\x6c\xc8\x21\xf2\xca\xd9\x08\ \xa0\xa7\x45\xa5\x8b\xe3\x59\xe0\x9b\xcc\x50\x91\x4b\x94\x94\x5b\ \x01\x40\x7b\xb1\xce\x26\x35\xd8\x4c\xab\x7d\x0b\x54\x65\x2b\xf2\ \x34\x8d\x5b\xa1\x78\x1b\x21\x9b\x25\x7c\x35\x4d\x20\xd9\xbe\x30\ \x43\x05\x4f\xc7\x61\xc1\x0e\x5a\xd8\x96\x6a\xb1\xc1\x4e\x55\xa4\ \x54\x3b\x45\x7c\xc9\x5f\xf0\x84\x94\x4c\x1b\xd0\x22\x55\x1a\xfd\ \x24\x32\x4e\x4f\x21\x0b\x31\xd9\x76\xa9\x19\xc0\x98\x76\x57\x9b\ \x88\x65\x8f\x60\xb0\x97\x90\x7d\x60\x56\x37\x82\xbc\x4c\x76\xd8\ \x47\xc8\x7e\xc1\x20\x9d\x90\x2a\xd8\xa0\x29\xfc\x03\x50\x45\x06\ \x0f\x46\xf9\x3c\x0b\xa9\x04\xc8\xd4\x64\x70\x08\xe0\xf0\x90\xc3\ \xc9\x1b\x58\xe9\x24\x82\xe2\x7c\x4d\x06\xf9\xc5\x70\x04\xb1\x86\ \x37\xa0\xa5\x7d\x14\xca\xb5\x65\x80\xe6\xf0\x18\xe2\x71\xde\x60\ \x0e\x21\xd5\xb0\x4b\xa3\xc1\x09\xa8\x45\x3c\xc9\x1b\xd0\x79\xb4\ \x05\x0c\xda\xf8\xe1\x53\xe0\x42\x3c\xcd\x1b\xd0\x8c\x1a\x0c\x95\ \xda\xf8\x91\x3a\xb7\xdb\x81\xf5\xbc\x81\xf2\x14\x8e\x53\x64\x14\ \x79\x79\x78\x03\xb5\x9c\x25\x7a\x1e\xfb\x8c\x82\xfe\x2a\x82\x2f\ \xe3\x31\xde\x23\x8c\x81\x06\x4d\x8c\x8e\xc4\x78\x61\x0c\x68\x16\ \x6c\x6a\xb3\x30\x29\xbc\xde\x2d\xca\xc2\x19\x56\x07\x73\xd5\xe0\ \x5f\xa7\x7b\xef\x85\x06\xc4\xc6\x58\x25\x9e\x55\x53\x89\x53\xdf\ \x44\xd1\x37\x89\x2a\xd1\xca\x16\x74\xc5\xb9\x30\x28\xc6\xb1\xb9\ \x05\xdc\xb1\xb9\x40\x67\xe3\x39\x80\x43\x72\xf4\xf7\xc9\x21\x94\ \xe8\x3c\x40\x1d\x0a\xb3\x11\xb6\xb1\x2d\xcb\x9a\x92\x8e\x0c\xfe\ \xf8\x89\x71\xaa\x81\x26\xc4\x0b\xc2\x82\x42\xf7\xaa\x8b\x60\xcf\ \x4a\x41\x8f\x8e\x63\x82\x7c\x2d\x70\x09\xf1\xb2\x68\x4d\xcc\xb2\ \xdb\x12\x97\xf6\xc8\xd4\xf0\xe7\x9f\x98\x4c\xad\x57\x5c\x6d\xe8\ \x68\x8f\xad\xaa\xbb\x09\xc9\x94\x2e\xcb\x91\xb1\xc9\xd1\xa1\xe4\ \x30\xaf\xd3\x88\x1d\xd3\xcb\xfa\xd5\x89\x48\x84\x51\x91\x89\x5f\ \x53\x83\x93\xbf\xbf\x0d\x8d\x8f\xa0\xb2\x9a\x44\x3b\xcb\x35\x15\ \xcf\xc7\xeb\x9a\x78\x6b\x6b\x70\xb0\xa6\xc6\x7a\x55\x64\x7d\x67\ \x17\x3d\x3a\x1a\x24\xbb\xeb\x75\xda\xd4\x0d\xb5\x1e\x15\x7c\xb3\ \x1f\x6e\xb4\x21\x5e\x97\x6e\xef\xae\x9b\x88\xb7\x00\x6e\x37\x2b\ \xf2\x81\x20\x84\x7a\x10\xef\xb8\xe2\xbe\x30\xee\xfa\xb8\xbc\xde\ \x53\x72\x68\x0e\x02\x84\x69\x21\xdc\x4d\xf8\xc6\xf1\x07\x10\x3b\ \xe9\x49\x7e\x1c\x5a\xfd\x00\x97\x69\x18\x7e\x48\x54\x2f\xbd\x7f\ \x1f\xe0\xc1\x43\x19\xde\xe7\x84\xd0\x23\x7a\xee\x85\x64\xea\x63\ \x89\x70\x85\x2e\xc8\x45\xd0\xeb\x64\xfe\x7d\x90\x5c\x5e\x9a\xcc\ \xba\xc7\xa9\x58\x2e\xd3\x4f\x5a\xe9\xc5\x53\x48\xa5\xa0\x90\xc6\ \x67\xdd\x97\xba\x24\x74\x5b\xe3\xf3\xfe\xe8\x4d\x4f\x10\x52\xab\ \xff\x05\xf7\xcc\x9d\x97\xf4\xfa\x95\xd7\xfd\x9a\x63\x06\xdc\x6f\ \xfc\xac\xa1\x93\xbb\xf7\xa2\x1f\xe4\x14\xf2\x32\x26\xd0\x53\xc3\ \xa7\xf9\x2d\x43\x38\xa2\xe5\x5d\x0f\xeb\x83\xc7\x1b\x02\x05\x39\ \xc3\x01\x2e\xdf\x8d\x5e\xbf\x60\xd0\xde\xdd\xf7\x96\x8b\x25\x10\ \x76\x2a\xe1\x4c\xed\xef\x7d\x42\xd6\xb8\x81\x10\x6a\xcb\xf7\xbe\ \x5d\x0d\xce\x75\x24\xf8\xc1\x27\x4d\x01\xfa\x3e\x04\x15\x83\x97\ \xea\xe3\xa7\x70\xc7\x00\x8b\xa0\x6b\xa0\x23\xfc\xe6\xa3\x36\xf8\ \x9f\xd2\x1f\xf1\x22\xab\xf9\x01\xb9\x69\xf9\x00\x00\x00\x25\x74\ \x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\ \x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\x3a\ \x30\x35\x2b\x30\x38\x3a\x30\x30\xab\x22\x39\xeb\x00\x00\x00\x25\ \x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\ \x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\x33\ \x3a\x32\x39\x2b\x30\x38\x3a\x30\x30\x44\x7b\x66\xd8\x00\x00\x00\ \x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\x75\ \x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\ \x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\ \x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\ \x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\ \x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\ \x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\ \x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\xbc\ \xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\x62\ \x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x36\ \x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\ \x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\ \x33\x37\x38\x37\x33\x34\x32\x30\x39\xde\x2d\xcc\xa7\x00\x00\x00\ \x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\ \x00\x32\x32\x32\x38\x42\xb8\x30\x20\xfd\x00\x00\x00\x5f\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\ \x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\ \x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\ \x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\ \x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\ \x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\x33\x39\x2e\x70\x6e\ \x67\xf9\xb1\xf8\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x22\xab\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x03\x00\x00\x00\xc3\xa6\x24\xc8\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x00\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x0b\x23\xb7\xe1\x00\x00\x00\xff\x74\x52\x4e\x53\x00\x01\x02\ \x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\ \x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\ \x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\ \x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40\x41\x42\ \x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\ \x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60\x61\x62\ \x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\ \x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x81\x82\ \x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\ \x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\ \xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\ \xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\ \xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\ \xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\ \xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\ \xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xeb\x08\xd9\x35\ \x00\x00\x1e\x12\x49\x44\x41\x54\x18\x19\xed\xc1\x07\x80\x54\xd5\ \xdd\xf0\xe1\xdf\x9c\x9d\xa5\xf7\x3a\xcb\x2e\x36\x44\xec\x58\x51\ \x51\xb1\x12\x35\xa0\x18\x8c\xe5\xc3\x68\x30\xb1\x25\xd6\xa8\x49\ \x30\xc6\x86\xc6\xf2\x2d\xc6\x1a\x7b\x50\xd3\x6c\xb1\x80\x05\xc4\ \x9e\x04\x14\x1b\x8a\x0a\x58\x40\xc0\x65\x29\x2a\xbd\xec\x2e\xbb\ \xfb\xff\xde\x37\x9f\x26\x20\xbb\x67\xee\xb9\xe7\xde\x99\x3b\xe3\ \xff\x79\x40\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\ \x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\ \x4a\x29\xa5\x94\x52\x4a\x29\xa5\x54\x01\x48\x91\x17\x5b\x6f\xdb\ \xfb\xb3\x49\x8d\xa8\xef\xa6\xb6\x37\x36\x88\xc8\xbc\x1f\xa3\xbe\ \x93\x7a\xce\x92\x7f\x6b\x38\x1a\xf5\x1d\xd4\xe9\x5d\xf9\xda\xda\ \x6d\x50\x79\x96\x22\xd7\xda\x3c\x3f\x90\x6f\x3c\x7c\x02\xb9\xb4\ \xc5\xa0\x5e\xbd\xba\x19\x6c\x64\x79\x75\xf5\xd4\x0f\x70\xd7\xe6\ \x90\x3e\x65\x99\x96\x04\xd4\xf8\x65\xf5\x82\x57\xe7\xe3\xae\xfb\ \x21\xbd\xcb\x7a\xa4\xb1\x91\x55\x0b\xab\xa7\xbf\x2e\x24\x54\x8b\ \xe7\xe4\xbf\x1a\x77\x26\x67\x3a\xff\xe6\x1d\x09\xe8\xe3\xeb\x7a\ \xe3\x66\xf8\x13\x6b\xc5\xd9\x9b\xbf\xee\x80\x93\x96\x3f\x7f\xb5\ \x41\x82\xa9\xbe\x63\x57\x12\xa9\xe4\x51\xd9\xd0\x93\xe4\x48\xeb\ \x51\xcb\xc4\xc1\xba\xeb\x3b\x11\xdc\xa0\xa9\x12\xce\x17\xe7\x96\ \x12\x58\x6a\xc4\x5c\x71\xd0\xf8\x60\x1f\x12\xe8\x5e\xd9\xd8\x9e\ \xe4\x44\xdf\x8f\xc4\xd1\xc2\xbd\x09\x28\x7d\xab\x84\xf7\xee\x66\ \x04\xd4\x71\x82\x38\xaa\x39\x99\xc4\x19\x23\xdf\xf2\x1c\xb9\x70\ \xf0\x52\x71\x56\xf3\x23\x02\xe9\xfc\xbc\xf8\x58\xbc\x2f\x81\xf4\ \x9d\x29\xee\xae\x4d\x91\x2c\x97\xc8\x26\xf6\x27\x7e\xfb\xd4\x48\ \x18\x23\x08\xa0\xd5\x54\xf1\xb3\x76\x57\x02\x28\xaf\x96\x30\xae\ \x27\x51\x4e\x91\x4d\xbd\x4a\xec\x36\x5f\x2c\xa1\xac\x1b\x40\x76\ \x7f\x11\x5f\xf3\x7a\x90\x55\xeb\x37\x25\x9c\x91\x24\xc8\xfe\xb5\ \xd2\x84\xc1\xc4\x2c\x35\x55\x42\xaa\x6a\x47\x36\x3f\x13\x7f\x93\ \xc8\xea\x2e\x09\xa9\x76\x3b\x12\x63\xab\x2f\xa4\x29\x53\x89\xd9\ \x71\x12\xda\x15\x64\xd1\x7e\x89\x44\x60\x08\x59\xec\xdc\x20\x61\ \x3d\x4e\x52\x74\xf8\x50\x9a\x76\x24\xb1\x4a\x7f\x22\xa1\xad\xea\ \x89\xdd\x68\x89\xc2\x87\x25\xd8\x3d\x27\xe1\xed\x4d\x32\x94\x3c\ \x2b\xcd\x78\x37\x45\x9c\x8e\x10\x0f\xa3\xb0\x4a\x7f\x29\x91\x38\ \x1c\xab\x7e\xe2\xe1\x01\xac\x0c\x39\x72\xd5\x11\x34\xa3\xff\xb1\ \xc4\x69\x18\x1e\x86\x63\x35\xa8\x2b\x91\x18\x8e\xd5\x30\x3c\x0c\ \x2d\x21\x09\xf6\xaa\x97\x66\xcd\x2c\x21\x3e\xa9\x6a\xf1\xd1\x1b\ \x9b\xdb\x24\x1a\x8b\x0d\x36\x93\xc5\xc7\x01\xd8\x18\x72\xa2\xd5\ \x7d\x25\x34\x6b\xdb\x13\x89\x4f\xcf\x32\x7c\xec\x86\xcd\xee\x44\ \xa3\x47\x05\x36\xbb\xe1\xa3\x3f\x36\x86\x9c\x18\xbd\x1d\x16\x97\ \x97\x12\x9b\x0a\xbc\x54\x60\x53\x41\x44\xca\xb0\xe8\xda\x0a\x1f\ \xbd\xb0\x31\xe4\xc2\x3e\x17\x62\xb3\xd5\x29\xc4\xa6\x1c\x2f\x15\ \x58\x94\x94\x11\x91\x32\x2c\x2a\xf0\x52\x86\x8d\x21\x07\x5a\xdd\ \x67\xb0\xba\xb4\x25\x71\xe9\x84\x97\x52\x2c\x8c\x21\x22\xa5\x58\ \x94\xe2\xa5\x03\x36\x86\x1c\xb8\xba\x1f\x76\x15\x67\x12\x97\x14\ \x5e\xaa\xb0\x58\xbf\x84\x88\x2c\xc4\xa2\x0a\x2f\x29\x6c\x0c\xf1\ \xdb\xfa\x5c\xb2\xb9\xb8\x0d\xc9\x54\x85\x4d\x15\x11\xa9\xc6\x62\ \xf1\x7a\xe2\x63\x88\xdf\xd5\xa5\x64\xd3\xf3\x1c\x92\xe9\x7d\x6c\ \xde\x27\x1a\x2b\x3f\xc7\x42\x66\x10\x1f\x43\xec\x76\x3f\x8e\xec\ \x7e\xd5\x81\x24\x9a\xf5\x11\x36\x4f\x12\x8d\x67\xd7\x63\x33\x9e\ \xf8\x18\x62\x77\x7d\x8a\xec\xba\xfc\x82\x24\x7a\x1c\xab\x49\x6b\ \x88\xc4\xe3\x58\x8d\x23\x3e\x86\xb8\x0d\x3e\x84\x20\x2e\xe8\x42\ \xf2\xd4\xdf\x87\xd5\xba\xbf\x10\x85\xea\xa7\xb1\x7a\x7b\x1a\xb1\ \x31\xc4\x2c\x75\x1d\x81\x74\xf8\x15\xc9\x73\xef\xa7\xd8\x8d\x5e\ \x4b\x04\x2e\x5f\x87\xdd\xaf\x28\x5c\x27\x48\x40\x6b\x7a\x12\x87\ \x91\x12\xde\xea\x32\xb2\xb9\x46\xfc\xbd\x5f\x42\x36\x13\x24\xbc\ \x27\xb1\x31\xc4\xab\xf4\x6a\x02\x6a\x73\x31\x09\x23\x23\x17\x92\ \xcd\x15\x93\xf1\xb5\xf2\xf8\x06\xb2\x39\xe5\x73\x62\x62\x88\xd7\ \x31\x7d\x08\xea\xcc\x0a\x92\xe5\xb2\xbf\x93\x55\xdd\x0f\xe6\xe2\ \xa7\xe1\xf8\x19\x64\xb5\xe8\xa8\x35\xc4\xc3\x10\xaf\x93\x09\xac\ \xe5\x6f\x49\x94\xdf\x5d\x4d\x00\x5f\x0c\xfe\x08\x1f\x35\x23\x26\ \x12\xc0\xbb\x43\xbe\xa2\x10\x65\xea\x25\xb8\xba\xad\x88\xde\x48\ \x09\x67\xed\x09\x04\xd4\x71\xa2\x84\xb7\x70\x00\x01\x6d\xf5\xa1\ \x84\xf3\x24\x36\x86\x58\x8d\x28\x21\xb8\xd2\xcb\x48\x8c\xf1\xbb\ \x3d\x44\x40\x2b\x86\x9c\xb1\x88\x70\xea\xef\xe8\xff\x06\x01\xcd\ \x19\x70\xd5\x5a\x0a\xce\x34\x71\x51\xbf\x2d\x91\x1b\x29\xee\xd6\ \x3d\xb9\x3f\x4e\xda\xfe\x66\xa6\xb8\x5b\x7a\x5f\x3f\x9c\xf4\xba\ \x65\xa1\xb8\x7b\x12\x9b\x14\x71\xda\x69\x3a\x4e\x1e\x39\x9e\xa8\ \x8d\xbc\x0f\xab\x0f\xeb\xd9\x90\x2c\xaf\xae\x9e\x3a\x61\x0d\xce\ \xb6\x1b\xda\xa7\x2c\xd3\x92\x80\x1a\xbf\xac\x5e\xf0\xca\xcb\xf5\ \xb8\x32\xfb\x0c\xee\x5d\xd6\x23\xcd\x46\xfa\xb6\xc1\x66\xdc\xd1\ \xe4\x4d\xa5\xb8\x69\xec\x4f\xd4\x46\x8a\x5d\x86\x82\xf7\xba\x58\ \x3d\x89\x8d\x21\x46\x66\x04\x6e\x52\xa3\x51\xb9\x65\x88\xd1\xa1\ \xbd\x70\x74\xd4\x00\x54\x4e\x19\x62\x74\x32\xce\xae\x42\xe5\x94\ \x21\x46\x87\xe3\xec\x7b\x83\x50\xb9\x64\x88\x4f\x9f\xae\xb8\xbb\ \x1a\x95\x4b\x86\xf8\xec\x45\x08\xfb\x7f\x0f\x95\x43\x86\xf8\xec\ \x45\x18\x57\xa1\x72\xc8\x10\x9f\xbd\x08\x63\xc0\x51\xa8\xdc\x31\ \xc4\x26\xd5\x9f\x50\xae\x4a\xa1\x72\xc6\x10\x9b\xae\xad\x08\x65\ \xe7\x63\x51\x39\x63\x88\x4d\x2f\x42\xba\xb2\x04\x95\x2b\x86\xd8\ \x94\x11\xd2\xb6\x3f\x42\xe5\x8a\x21\x36\xbd\x08\xeb\xf2\x52\x54\ \x8e\x18\x62\x53\x46\x58\x5b\xfe\x04\x95\x23\x86\xd8\xb4\x21\xb4\ \xdf\xb6\x24\x2a\x0d\xd8\x35\x50\xf0\x1a\xb0\x6a\xc0\xc6\x10\x9b\ \x5a\x42\xab\x38\x93\xa8\x2c\xc2\xaa\x61\x29\x05\x6f\x11\x56\x5f\ \x60\x63\x88\x4d\x1d\xe1\x5d\xdc\x96\x88\x54\x61\xb5\xa4\x81\x82\ \x57\x85\x55\x35\x36\x86\xd8\xd4\x12\x5e\xcf\x73\x88\xc8\xe7\x82\ \x4d\x15\x85\x6f\x1e\x56\x55\xd8\x18\x62\x53\x8b\x87\x5f\x76\x20\ \x1a\xab\xa7\x62\xf3\x3c\x85\xef\x45\xac\x5e\xc0\xc6\x10\x9b\x1a\ \x3c\x74\xb9\x80\x88\x8c\xc3\xe6\x71\x0a\xdf\x7b\xf3\xb0\x78\x6b\ \x3e\x36\x86\xd8\xcc\xc7\xc7\x2f\xba\x10\x8d\x27\x84\xe6\xcd\x79\ \x9b\x22\xf0\x18\x16\x8f\x92\x2f\x19\xf1\x72\x1d\x11\xf9\xab\x34\ \xef\x24\x8a\x41\x66\xb5\x34\x6b\x49\x7b\xf2\xe6\x2b\xf1\xb1\xa6\ \x27\xd1\xd8\xa2\x46\x9a\x33\x2d\x45\x51\xb8\x52\x9a\x75\x1e\xf9\ \xf3\x0f\xf1\x72\x33\x11\xf9\xad\x34\xa3\x6e\x20\xc5\xa1\xdd\x4c\ \x69\xc6\xdb\x2d\xc8\x9f\x3b\xc4\x4b\x4d\x05\x11\x79\x48\x9a\x76\ \x1a\xc5\x62\xeb\xaf\xa4\x49\x0b\xca\xc9\xa3\xb3\xc4\xcf\x5d\x44\ \xa4\xd5\x3f\xa5\x29\x95\x14\x8f\x03\x56\x4b\x13\x96\xed\x41\x3e\ \x6d\x25\x7e\xea\xb6\x22\x22\x2d\x1f\x90\x4d\xac\x3f\x87\x62\xd2\ \x7f\x9e\x6c\xe2\xa3\x7e\xe4\xd7\x9b\xe2\xe7\x01\x22\x73\xfe\x2a\ \xd9\xd8\xdc\x43\x29\x2e\x3d\x9e\x95\x6f\x79\xb4\x13\x79\x76\x91\ \xf8\xa9\xdf\x96\xc8\x64\xee\xaa\x97\xff\x5a\x7a\x61\x4b\x8a\xce\ \xe0\x77\x65\x03\x93\x07\x92\x77\x9b\x35\x8a\x9f\x87\x89\x50\xf9\ \x59\x2f\xae\x97\xff\xb5\xfc\x6f\x3f\x6c\x4b\x31\x4a\x0d\xac\xfc\ \x44\xfe\x6d\xc6\xef\x76\x27\x98\x14\x71\x7a\x6d\x6f\xbc\xc8\xae\ \xef\x11\x25\xd3\xa3\xac\xd3\x92\xea\x65\x14\xb1\xd6\x65\x65\x52\ \xbd\xb0\x96\x64\x38\x5f\x3c\x8d\x47\x15\xb2\xce\xab\xc4\xd3\x00\ \x54\xac\x4a\x88\x53\x4d\x97\x81\xf8\xd9\xe2\xcf\xa8\x02\xd6\xab\ \x46\x3c\x0d\x42\xc5\xa9\x84\x58\xad\xda\x6c\x77\xfc\x6c\x7d\x1f\ \xaa\x80\x6d\x5d\x2f\x9e\x0e\x43\x15\xb2\x87\xc4\xd3\x1b\xa8\x42\ \xb6\x73\xa3\x78\x1a\x86\x2a\x64\x4f\x89\xa7\xf7\x52\xa8\x02\x36\ \x48\x7c\x1d\x8f\x2a\x64\x53\xc5\xd3\xac\x12\x54\x5c\x4a\x88\xdd\ \xf2\xe3\xf0\xd3\x6d\xce\x7b\xa8\xc2\x65\x3e\x15\x4f\x73\x4a\x51\ \x31\x29\x21\x76\x52\x3f\x04\x3f\x9d\xab\xdf\x42\x15\xae\xd6\x5f\ \x88\xa7\xaa\x56\xa8\x78\x94\x10\xbf\xfa\xb6\x07\xe2\xa7\xc3\x57\ \xaf\xa3\x62\x91\x22\x07\xba\xcf\x6b\x8d\x9f\x25\x5b\xad\x41\xc5\ \xa1\x84\x1c\x58\x5b\xbe\x27\x7e\xda\xae\xfa\x17\xaa\x70\x6d\xdd\ \x20\x9e\xbe\xea\x88\x8a\x43\x09\xb9\xb0\xb4\xff\x76\xf8\x69\x5d\ \xf7\x0a\xaa\x70\xed\x2d\xbe\x56\x76\x45\xc5\xa0\x84\x9c\xa8\x3a\ \x74\x33\xfc\xb4\xe4\x05\x54\xe1\x3a\x4a\x7c\xad\xc9\xa0\x0a\x57\ \x6a\xa6\xf8\xba\x19\x55\xc0\x4e\x15\x5f\x35\xbd\x51\x85\xab\xe5\ \x42\xf1\x75\x37\xaa\x80\xfd\x46\x7c\xad\xef\x83\x2a\x5c\x9d\x57\ \x89\xaf\x3f\xa1\x0a\xd8\x4d\xe2\xab\x61\x3b\x54\xe1\xda\x7c\xbd\ \xf8\x7a\x04\x55\xc0\xfe\x26\xbe\x1a\x77\x41\x15\xae\x5d\xc5\xdb\ \x53\xa8\x02\xf6\x82\x78\xdb\x0b\x55\xb8\x0e\x13\x6f\xcf\xa3\x0a\ \xd8\x74\xf1\x76\x00\xaa\x70\x9d\x24\xde\xfe\x89\x2a\x5c\xa5\x9f\ \x8b\xb7\xc3\x50\x11\x4a\x91\x53\x17\x8e\xc1\xd7\x5b\x7b\x12\x52\ \xd7\xa1\x07\xf4\xae\xe8\xbc\xa8\x6a\xf6\xc4\x97\x6a\x29\x4e\xbb\ \x1d\xb5\x43\x45\x45\x63\x55\xd5\x7b\xe3\x3f\x20\x91\x3a\x2c\x17\ \x6f\x47\x13\xca\x41\x2f\xd5\xcb\x37\x56\x3e\xb0\x25\xc5\xa7\xfd\ \x15\x9f\xcb\x7f\xcc\x19\xd5\x9a\x24\xfa\xbf\xe2\x6d\x7a\x0a\x77\ \xdb\x3c\x25\x1b\xa9\xbd\xb1\x23\xc5\xc5\x9c\xbb\x44\x36\xb2\xe0\ \x54\x12\xa8\xbc\x4e\xbc\x9d\x80\xb3\xa1\x2b\xe5\xdb\x66\x6d\x43\ \x31\x69\x37\x4e\x36\xf1\xd7\x56\x24\xcf\xfd\xe2\xed\xa3\x12\x1c\ \x5d\xd0\x20\x9b\x5a\x76\x10\xc5\xa3\xec\x5d\x69\xc2\x6b\x5d\x48\ \x9c\x1d\x1b\xc5\xdb\x48\xdc\x9c\x24\x4d\x5a\xb1\x1d\xc5\xa2\xcd\ \x5b\xd2\xa4\x57\x4a\x49\x9c\x67\xc5\xdb\x67\xa5\xb8\xd8\xbb\x46\ \x9a\xf6\x71\x27\x8a\x43\xea\x51\x69\xc6\xbd\x24\xce\x41\xe2\xef\ \x67\x38\x68\x31\x47\x9a\xf3\x47\x8a\xc3\x8f\xa4\x59\x43\x49\x9c\ \xb7\xc4\x5b\x55\x2b\x82\xfb\x85\x34\xab\x61\x47\x8a\x41\x8b\x39\ \xd2\xac\xe9\x86\xa4\x39\x5e\xfc\xfd\x82\xc0\x3a\x7c\x29\xcd\x7b\ \x8a\x62\x70\x96\x58\x9c\x48\xd2\x94\xcc\x11\x6f\x8b\xdb\x12\xd4\ \x89\x62\xd1\xd0\x93\x22\xf0\xba\x58\x4c\xc4\xca\x90\x73\x0d\x37\ \xe2\xad\xc7\xb9\x04\x35\x0c\x0b\x33\x8c\xc2\x97\x19\x80\xc5\x41\ \xed\x49\x9a\xb6\x5f\x89\xb7\xa5\x1d\x09\x26\xbd\x52\x6c\x9e\xa1\ \xf0\xfd\x44\xac\x86\x63\x63\xc8\xbd\x35\xb7\xe3\xad\xf3\x05\x04\ \xd3\xab\x3d\x36\xfd\x28\x7c\xdb\x60\xb5\x0d\x36\x86\x3c\xb8\xb5\ \x06\x6f\xbf\xe8\x4a\x20\xbd\xb1\xea\x45\xe1\x2b\xc7\xaa\x1c\x1b\ \x43\x1e\x2c\xf9\x13\xde\xda\xff\x9a\x40\xca\xb1\x6a\xdd\x91\x82\ \x57\x8e\x55\x39\x36\x86\x7c\xb8\xa1\x11\x6f\x67\x65\x08\xa2\x0d\ \x76\xad\x29\x78\x6d\xb0\x6a\x83\x8d\x21\x1f\x3e\x1e\x8f\xb7\x36\ \xbf\x41\xf9\x33\xe4\x45\x25\xfe\x4e\xef\x8d\xf2\x66\xc8\x8b\x29\ \x53\xf0\xd6\xf2\x52\x94\x37\x43\x7e\x54\xe2\xef\x94\x3e\x28\x5f\ \x86\xfc\x18\xff\x31\xde\xd2\x57\xa0\x7c\x19\xf2\xa3\xf1\xf7\xf8\ \x1b\xb1\x3d\xca\x93\x21\x4f\x1e\x58\x82\x37\x73\x25\xca\x93\x21\ \x4f\x6a\x6e\xc3\xdf\x31\xbb\xa0\xfc\x18\xf2\xe5\x0f\x6b\xf1\x96\ \xba\x0a\xe5\xc7\x90\x2f\x4b\xc7\xe2\x6f\xe8\xde\x28\x2f\x86\xbc\ \xf9\x7d\x03\xfe\xae\x46\x79\x31\xe4\xcd\x67\x8f\xe1\xef\x90\x03\ \x51\x3e\x0c\xf9\x53\x49\x04\xae\x46\xf9\x30\xe4\xcf\x5b\xaf\xe0\ \x6f\xdf\xc3\x51\x1e\x0c\x79\x54\x49\x04\xae\x42\x79\x30\xe4\xd1\ \x84\x0f\xf1\xb7\xc7\xd1\xa8\xf0\x0c\x79\x24\x63\x88\xc0\x68\x83\ \x0a\xcd\x90\x4f\x7f\xab\xc6\xdf\x4e\xc7\xa3\x42\x33\xe4\x53\xdd\ \xcd\x44\xe0\x8a\x12\x54\x58\x86\xbc\xba\x6b\x15\xfe\xb6\x39\x19\ \x15\x96\x21\xaf\x56\xdc\x4d\x04\x2e\x2b\x45\x85\x64\xc8\xaf\x9b\ \xd6\xe3\x6f\x8b\x53\x51\x21\x19\xf2\xab\xea\x21\x22\xf0\xdb\x56\ \xa8\x70\x0c\x79\x36\x86\x08\xf4\xfa\x39\x2a\x1c\x43\x9e\x4d\x7f\ \x8e\x08\x8c\x6a\x8b\x0a\xc5\x90\x6f\x63\x88\x40\xf7\xf3\x50\xa1\ \x18\xf2\xed\x85\x69\x44\xe0\xa2\x8e\xa8\x30\x0c\x79\x37\x86\x08\ \x74\xbe\x10\x15\x86\x21\xef\x1e\x99\x47\x04\xce\xef\x86\x0a\xc1\ \x90\x77\xf5\x37\x11\x81\xf6\xbf\x42\x85\x60\xc8\xbf\x7b\x97\x11\ \x81\xb3\x33\x28\x77\x86\xfc\x5b\x7d\x27\x11\x68\x7d\x09\xca\x9d\ \x21\x01\x6e\xa9\x25\x02\xa7\x6f\x86\x72\x66\x48\x80\x45\x7f\x21\ \x02\x2d\x2e\x45\x39\x33\x24\xc1\x0d\x42\x04\x46\x6e\x8d\x72\x65\ \x48\x82\x99\x4f\x13\x81\xf4\xe5\x28\x57\x86\x44\xa8\x24\x0a\x23\ \xb6\x47\x39\x32\x24\xc2\x3f\xa7\x12\x01\x33\x1a\xe5\xc8\x90\x0c\ \x95\x44\x61\xf8\xae\x28\x37\x86\x64\x78\x62\x36\x11\x48\x5d\x85\ \x72\x63\x48\x86\xc6\x1b\x88\xc2\x90\xbd\x51\x4e\x0c\x09\x71\xff\ \x97\x44\xe1\x6a\x94\x13\x43\x42\xac\xbb\x8d\x28\x1c\x72\x20\xca\ \x85\x21\x29\xfe\xb0\x8e\x28\x5c\x8d\x72\x61\x48\x8a\x2f\xef\x23\ \x0a\xfb\x1e\x81\x72\x60\x48\x8c\xdf\x37\x12\x85\xab\x50\x0e\x0c\ \x89\x31\xfb\x09\xa2\xb0\xfb\x0f\x50\xc1\x19\x92\xa3\x92\x48\x8c\ \x36\xa8\xc0\x0c\xc9\x31\xf5\x9f\x44\x61\xc7\xe3\x51\x81\x19\x12\ \xa4\x92\x48\x5c\x59\x82\x0a\xca\x90\x20\x4f\xcf\x24\x0a\x7d\x7f\ \x8c\x0a\xca\x90\x20\x72\x03\x91\xb8\xac\x05\x2a\x20\x43\x92\xfc\ \x65\x11\x51\xd8\xfc\x54\x54\x40\x86\x24\xa9\xbd\x85\x48\x5c\xd2\ \x0a\x15\x8c\x21\x51\xee\x58\x4d\x14\x7a\xfd\x1c\x15\x8c\x21\x51\ \x96\xdf\x4b\x24\x46\xb5\x43\x05\x62\x48\x96\x1b\xeb\x89\x42\xf7\ \xf3\x50\x81\x18\x92\x65\xfe\x23\x44\xe2\xa2\xd6\xa8\x20\x0c\x09\ \x33\x86\x48\x74\xea\x88\x0a\xc2\x90\x30\xd3\x5e\x40\xe5\x90\x21\ \x69\x2a\x51\x39\x64\x48\x9a\x49\xd3\x51\xb9\x63\x48\x9c\x4a\x54\ \xee\x18\x12\xe7\xe1\xcf\x51\x39\x63\x48\x9c\xf5\x37\xa1\x72\xc6\ \x90\x3c\xf7\xac\x40\xe5\x8a\x21\x79\x56\xdd\x85\xca\x15\x43\x02\ \xdd\x5c\x87\xca\x11\x43\x02\x55\xff\x8d\xc8\xac\xc2\x6e\x35\x05\ \x6f\x15\x56\xab\xb0\x31\x24\xd1\x18\x21\x2a\x0b\xb0\x5a\xbd\x9a\ \x82\x57\x85\x55\x15\x36\x86\x24\xfa\x70\x02\x51\xa9\xc2\x6a\x21\ \x85\x6f\x01\x56\x0b\xb0\x31\x24\x52\x25\x51\x59\xb8\x1c\x9b\x59\ \x14\xbe\xf7\xb1\x7a\x1f\x1b\x43\x22\xbd\xf2\x16\x11\x69\x78\x16\ \x9b\xa7\x28\x7c\x13\xea\xb0\x58\xf1\x32\x36\x86\x64\xaa\x24\x2a\ \xe3\xb0\x90\xa7\x28\x7c\x2b\x5f\xc0\xe2\x99\x3a\x0a\x51\xc9\x1c\ \xf1\x93\xe1\x6b\x6d\x17\x4b\xf3\x9e\xa2\x18\x0c\x13\x8b\x03\x28\ \x4c\x67\x8b\x9f\x0c\xdf\x38\x5b\x9a\x55\xbf\x03\x45\x61\xb2\x34\ \xeb\x19\x0a\x54\x9b\x2f\xc5\x4b\x86\x6f\x94\x7e\x2a\xcd\xb9\x87\ \xe2\xb0\x6f\xa3\x34\xa3\x7e\x27\x0a\xd5\x68\xf1\x92\xe1\x3f\x76\ \x5f\x2b\x4d\xfb\xb0\x03\x45\xe2\x32\x69\xc6\xb9\x14\xac\x1e\xeb\ \xc4\x47\x86\xff\xfa\x61\xa3\x34\xe5\xab\x3e\x14\x8b\xd4\xc3\xd2\ \xa4\xbb\x29\x60\x77\x8a\x8f\x0c\x1b\x38\xb5\x4e\x36\xb5\x70\x00\ \xc5\xa3\xf5\xa3\xd2\x84\xb1\xa5\x14\xb0\xbe\x0d\xe2\x21\xc3\x86\ \x0e\xfa\x4a\xbe\xed\xed\x0a\x8a\x49\xea\xf2\x46\xf9\x96\x86\x0b\ \x28\x6c\x8f\x8b\x87\x0c\x1b\xe9\x7d\x7f\x83\x6c\x68\xc5\x6f\x5a\ \x53\x64\x06\xbd\x21\x1b\xf9\xc7\x00\x0a\xdc\x3e\xe2\x21\xc3\xb7\ \xec\xf0\xc0\x52\xf9\xc6\xec\xeb\xba\x51\x7c\x52\xc7\xbd\xb4\x5e\ \xbe\x56\xf7\xdc\x51\x04\x92\x22\xc1\xfe\xb5\x2f\xa1\x95\x2d\xe2\ \xdb\xd2\xfb\x0f\xea\x5d\xde\x79\x51\xd5\x67\xcf\x7d\x40\x91\xea\ \xf2\xfd\x9d\x2b\x2a\xe4\xf3\xaa\x69\x13\x56\x52\x04\x86\x49\x78\ \x19\x54\x10\x86\x04\x1b\xff\x31\x2a\x66\x86\x04\x93\x1b\x50\x31\ \x4b\x91\x64\xad\xe6\xf6\x24\xa4\xb2\x45\xa8\x00\x0c\x49\x56\x73\ \x1b\x2a\x5e\x29\x12\xad\xcb\xfc\xb6\x84\x53\xb6\x08\x15\x80\x21\ \xd1\x96\x8e\x45\x7d\xa7\x6d\x51\x2f\xe1\x64\x50\x41\x18\x92\x6d\ \xee\xdf\x51\x71\x32\x24\x5c\x25\x2a\x4e\x86\x84\x7b\xfb\x65\x54\ \x8c\x0c\x49\x57\x89\x8a\x91\x21\xe9\x26\x7c\x80\x8a\x8f\x21\xf1\ \xc6\xa0\xbe\xd3\x4a\xab\x24\x84\x0c\x2a\x08\x43\xe2\xad\xbf\x19\ \xf5\x9d\xd6\x71\x85\xb8\xcb\xa0\x82\x30\x24\xdf\x8a\xbb\x51\xdf\ \x69\x15\x75\xe2\x2c\x83\x0a\xc2\x50\x00\xaa\x1e\x44\xc5\xc4\x50\ \x08\xc6\xa0\x62\x62\x28\x04\xef\x3f\x87\x8a\x87\xa1\x20\x54\xa2\ \xe2\x61\x28\x08\x2f\xbe\x83\x8a\x85\xa1\x30\x8c\x41\x7d\xa7\xa5\ \xe7\x8a\x9b\x0c\x2a\x08\x43\x61\xa8\xbf\x11\xf5\x9d\xd6\x76\xa9\ \x38\xc9\xa0\x82\x30\x14\x88\x35\x77\xa0\xbe\xd3\x7a\xd6\x88\x8b\ \x0c\x2a\x08\x43\xa1\x58\xfc\x67\xd4\x77\xda\xb6\x8d\xe2\x20\x83\ \x0a\xc2\x50\x30\x66\xbd\x84\x8a\x9c\xa1\x60\x6c\xb1\x0f\x2a\x72\ \x86\x82\xf1\x87\x36\xa8\xef\xb0\xe3\xc4\x49\x06\x55\x54\x3a\x2e\ \x14\x27\x19\x54\x10\x69\x0a\xc4\x75\x19\xfc\xf5\x2e\x2f\xeb\xb4\ \xa4\x7a\xde\x52\x8a\x56\xeb\x2d\xcb\xca\x1a\x17\x56\x7f\x56\x47\ \x91\x19\xd8\x28\x6e\x32\x7c\xdb\x5e\x95\xb3\xe5\xdf\x1a\xa7\x5c\ \xb4\x39\xc5\xa8\xd3\x4f\xc7\xaf\x93\x7f\x5b\xf5\xf7\x93\xdb\x53\ \x4c\x4a\xdf\x17\x47\x19\x36\xb6\xf3\x73\xb2\x81\xba\x5b\xbb\x53\ \x6c\x5a\x5e\xb4\x54\x36\xb0\xf8\xac\x34\xc5\xe3\x62\x71\x95\x61\ \x43\xe9\x9b\x1a\x64\x63\x2b\x47\x52\x5c\x06\x7c\x26\xdf\x32\x6b\ \x27\x8a\x45\x9f\xb5\xe2\x2a\xc3\x06\xba\xbc\x28\x9b\xba\xc1\x50\ \x44\x4e\x5c\x27\x9b\x58\x35\x8c\x22\x31\x49\x9c\x65\xf8\xaf\x2e\ \xb3\xa4\x29\x0f\xa5\x28\x1a\x67\x4a\x53\x1a\x47\x50\x14\x4e\x14\ \x77\x19\xfe\xa3\xf4\x25\x69\xda\xe5\x14\x8b\x83\xd7\x4b\x93\xd6\ \x0d\xa0\x08\x74\x59\x2c\xee\x32\xfc\xc7\xad\xd2\x8c\xc6\x23\x29\ \x0e\xe5\x5f\x49\x33\xaa\xbb\x52\xf8\xee\x95\x10\x32\x7c\x63\xa7\ \x06\x69\xce\xec\x16\x14\x85\xb1\xd2\xac\xdf\x53\xf0\x06\x35\x4a\ \x08\x19\xbe\x31\x41\x9a\x77\x1e\xc5\x60\x87\x06\x69\x56\xcd\xe6\ \x14\xb8\x16\x33\x25\x8c\x0c\x5f\xdb\x55\x2c\x16\x1a\x8a\xc0\x7d\ \x62\x71\x23\x56\x86\xa4\x1b\xb5\x2d\x5e\x7e\x80\x45\x66\x3f\x0a\ \x9f\x19\x8a\xc5\x30\x0a\xdb\x36\x35\x12\x4a\x86\xaf\xbd\x27\x36\ \x37\x52\xf8\xf6\x13\xab\x1d\xb1\x31\x24\xdc\x9d\x2d\xf1\xd2\x69\ \x67\x6c\x0e\xa4\xf0\xed\x87\xd5\x7e\xd8\x18\x92\x6d\xe4\x41\xf8\ \xa9\xc0\xaa\x17\x85\xaf\x37\x56\xbd\xb1\x31\x24\x5a\xb7\x31\x78\ \xea\x8d\x55\xf7\x34\x05\xaf\x02\xab\x0a\x6c\x0c\x89\x76\x43\x57\ \x3c\x75\xc7\x2a\xd5\x85\x82\xd7\x1d\xab\xee\xd8\x18\x92\xec\xe0\ \x93\xf1\x65\xb0\x33\x14\x3c\x83\x95\xc1\xc6\x90\x60\xad\xee\x44\ \xc5\xcc\x90\x60\x97\xf4\x45\xc5\xcc\x90\x5c\xdb\xff\x0a\x15\x37\ \x43\x62\xa5\xee\x6a\x81\x8a\x9b\x21\xb1\x4e\xdd\x0f\x15\x3b\x43\ \x52\xf5\xbc\x1e\x15\x3f\x43\x52\xdd\xd8\x19\x15\x3f\x43\x42\x1d\ \xf6\x7f\x50\x39\x60\x48\xa6\xd6\xb7\xa3\x72\xc1\x90\x4c\x97\x6f\ \x85\xca\x05\x43\x22\xed\x74\x21\x2a\x27\x0c\x49\x64\xee\x4e\xa3\ \x72\xc2\x90\x44\x67\xee\x8d\xca\x0d\x43\x02\x95\x5d\x83\xca\x11\ \x43\x02\xdd\xd2\x11\x95\x23\x86\xe4\x19\xf2\x43\x54\xae\x18\x12\ \xa7\xed\x1f\x50\x39\x63\x48\x9c\xd1\x9b\xa3\x72\xc6\x90\x34\xbb\ \x9e\x87\xca\x1d\x43\xc2\x98\xbb\x4b\x50\xb9\x63\x48\x98\xb3\xf7\ \x40\xe5\x90\x21\x59\x2a\xae\x46\xe5\x92\x21\x59\x6e\x6b\x8f\xca\ \xa5\x34\xb9\xd3\x7b\xa7\x1d\x3a\xb7\xfa\x5a\xcb\xe5\x8b\x16\x2f\ \x5a\xb4\x68\xc1\x47\xf5\x6c\xe8\xe8\x61\xa8\x9c\x4a\x93\x0b\x9d\ \x76\xdc\xe9\x7f\x74\x64\x53\xb5\xef\x4f\x9b\x36\x6d\xfa\x5a\xfe\ \xbf\xf6\xb7\xa2\x72\x2b\x4d\xdc\xba\x0e\x3d\x6a\x40\x05\xcd\x69\ \xb9\xc7\x1e\xd0\xf0\xce\xf8\xf1\xd3\xf9\x1f\x57\x57\x10\x91\x95\ \xab\x51\x09\xd0\xe7\x82\x57\xeb\x25\x90\xb9\xb7\x0e\x2e\xdd\xb3\ \x41\xa2\x72\x06\x5f\x1b\x29\x76\x19\x0a\xde\xeb\x62\x35\x11\x9b\ \x34\xb1\x49\xed\x39\x6c\xd8\x0e\x04\xb5\xf9\xd9\x67\xaf\x5c\x63\ \x88\xc8\x2b\x77\xa3\x02\x49\x13\x93\xf2\x73\x4e\xea\x85\x9b\x0e\ \x1d\x88\xc8\xba\xd3\x04\x15\x48\x9a\x58\xf4\xbf\xf0\x84\x52\xf2\ \xe7\xd2\x4f\x51\xc1\xa4\x89\xc1\x61\x17\x1d\x4a\x3e\xbd\x79\x13\ \x2a\xa0\x34\x51\x6b\x31\xe2\xc2\x1d\xc9\xab\xf5\x3f\x69\x40\x05\ \x94\x26\x5a\xad\xce\x3b\xaf\x8c\x3c\xbb\xe6\x03\x54\x50\x69\x22\ \x75\xf8\x6d\x7d\xc8\xb7\x0f\xae\x41\x05\x66\x88\x50\xef\xc7\x26\ \xf4\x21\xdf\x1a\x7f\x5a\x87\x0a\xcc\x10\x99\xd2\x5f\xce\x1c\x4e\ \xfe\xdd\xf4\x06\x2a\xb8\x34\x51\x39\xe0\x0f\x3b\x90\x00\xb3\x2f\ \x45\x39\x30\x44\xa3\xe7\x9f\x5e\xd9\x81\x04\x90\xd3\xd6\xa2\x1c\ \xa4\x89\xc4\x91\x0f\x74\x26\x11\xc6\xbe\x8c\x72\x61\x88\x40\xc9\ \xb5\xe3\x3a\x93\x08\xeb\x2e\x43\x39\x49\xe3\xaf\xe7\x83\x07\x91\ \x10\x77\x54\xa3\x9c\xa4\xf1\xb6\xdf\xc3\xbd\x48\x88\x35\xd7\xa1\ \xdc\x18\x7c\x5d\xf0\x72\x2f\x92\xe2\x96\x2f\x50\x6e\xd2\xf8\xe9\ \x30\xf6\x18\x12\x63\x45\x25\xca\x51\x1a\x2f\xdb\x3f\xd9\x97\xe4\ \xb8\x71\x19\xca\x51\x1a\x1f\xbb\x3e\xdf\x95\xe4\x58\x7a\x23\xca\ \x95\xc1\xc3\x80\x17\xbb\x92\x20\x95\x2b\x51\xae\x0c\xe1\x0d\x7c\ \xbe\x33\x09\xb2\xe4\x56\x94\x33\x43\x68\x07\x3c\xd7\x81\x24\xb9\ \x76\x0d\xca\x99\x21\xac\xc1\xcf\xb6\x23\x49\x16\xdc\x89\x72\x67\ \x08\xe9\xfb\xe3\xdb\x90\x28\xbf\xab\x41\xb9\x33\x84\x73\xf4\x13\ \xad\x48\x94\xaf\xc6\xa2\x42\x48\x13\xca\x90\x47\xd3\x24\xcb\x03\ \xb5\xa8\x10\x0c\x61\x6c\xff\x60\x9a\x84\xb9\x1b\x15\x86\x21\x84\ \x2e\xe3\xdb\x93\x30\xaf\x7c\x84\x0a\xc3\xe0\x2e\xfd\x68\x1f\x92\ \xe6\x2e\x54\x28\x06\x77\x37\x1e\x4c\xd2\x7c\xf1\x38\x2a\x14\x83\ \xb3\xd3\xcf\x26\x71\xee\xab\x43\x85\x62\x70\x35\xe8\x36\x12\x47\ \xee\x41\x85\x63\x70\xb4\xc5\xdf\x4b\x49\x9c\x17\x3f\x45\x85\x63\ \x70\xd3\x76\x5c\x77\x92\xe7\x2e\x54\x48\x06\x37\x95\x3b\x93\x3c\ \x8b\xc7\xa1\x42\x32\x38\xd9\xf7\x4c\x12\x68\xec\x7a\x54\x48\x06\ \x17\x2d\xee\x49\x91\x3c\x72\x0f\x2a\x2c\x83\x8b\x4b\xb6\x23\x81\ \x26\x7d\x86\x0a\xcb\xe0\x60\xfb\x51\x24\xd1\x5d\xa8\xd0\xd2\x04\ \x97\xba\xa7\x05\xfe\x96\xae\x5c\xbb\x6e\x5d\xa7\x2d\xda\x11\x95\ \xea\xa7\x50\xa1\xa5\x09\xee\xe7\x03\xf1\xb3\x76\xd2\xdb\xd3\xa6\ \x55\xf3\x6f\x5d\xb7\x18\x38\xf4\xc0\x16\x44\xe0\xa1\x7a\x2c\x1a\ \xb0\x6b\xa0\xe0\x35\x60\xd5\x40\x44\x2a\x56\x8a\x97\xd7\x4f\xef\ \xc0\xc6\xda\x1d\xf3\x9a\xf8\xdb\x1f\x9b\xc1\x62\x55\x5f\x42\xc1\ \x7b\x4c\xac\xfe\x48\x44\xc6\x89\x87\x45\x95\xdb\xd3\x94\xa3\xa6\ \x8b\xa7\x25\x06\x9b\xed\xc4\xaa\x9a\xc2\x77\xb3\x58\x5d\x49\x34\ \x0e\x90\xd0\x1a\xc7\x0f\x4b\xd3\x0c\x73\xd2\x0a\xf1\x32\x16\xab\ \xf6\x8d\x62\xf3\x26\x85\xef\x42\xb1\xfa\x29\xd1\xf8\x97\x84\x35\ \x73\x10\x36\xdb\x7f\x2a\x3e\x8e\xc2\xee\x0d\xb1\xb9\x8e\xc2\xb7\ \x8b\x58\x6d\x41\x24\x8e\x90\x90\x6a\x2e\x6d\x81\x5d\x97\x17\x24\ \xbc\x35\xad\xb1\xbb\x44\x6c\x06\x50\x04\xe6\x88\xc5\x3b\x44\x22\ \xf5\xb6\x84\xf3\x42\x5f\xb2\x4a\x3f\x2d\xa1\x3d\x41\x16\xdb\x89\ \xc5\xdc\x14\x45\xe0\x7a\xb1\xb8\x98\x48\x1c\x23\xa1\x2c\x39\x89\ \x20\x3a\xcc\x90\xb0\x7e\x4c\x36\x0f\x49\xf3\x46\x52\x0c\x7a\xae\ \x92\x66\x7d\xd9\x81\x28\x98\x19\x12\xc6\xa4\x2e\x04\xd3\x77\xa9\ \x84\x53\xdf\x95\x6c\xb6\xac\x95\xe6\xbc\x6b\x28\x0a\x57\x48\xb3\ \xce\x27\x12\xc7\x4a\x18\xf7\x97\x12\xd4\x50\x09\xe7\x15\xb2\xfb\ \xad\x34\xa3\x6e\x5f\x8a\x43\xbb\x59\xd2\x8c\xb7\x5b\x10\x89\xd7\ \x24\x84\xab\x70\xf0\x8c\x84\x72\x3e\xd9\xa5\x1e\x95\xa6\x9d\x49\ \xb1\xe8\xbb\x54\x9a\xb4\xb0\x82\x48\xec\x2d\xee\xea\x4f\xc3\xc5\ \xb6\xeb\x25\x8c\x2d\x09\xa0\xcd\xeb\xd2\x94\x5b\x28\x1e\x87\xae\ \x93\x26\xac\xdc\x9b\x68\x3c\x22\xce\x56\x7f\x1f\x37\x37\x4b\x08\ \xef\x11\x48\xeb\x87\x64\x13\x0d\xbf\xa4\x98\xec\xb9\x40\x36\x31\ \x67\x47\xa2\xb1\x79\xbd\xb8\x5a\x33\x00\x47\x99\xf5\xe2\xee\x4a\ \x02\x1a\xb5\x56\x36\xb6\xe0\xfb\x14\x97\x5e\x2f\xca\xb7\x3c\xd5\ \x8d\x88\x8c\x11\x67\xc7\xe2\xec\x31\x71\xb7\x1b\x41\xf5\x7e\xa0\ \x41\xfe\x6b\xc5\x25\x6d\x28\x3a\x43\x3e\x90\x0d\xbc\x75\x30\x51\ \x69\xbf\x5c\x5c\xfd\x0e\x77\x87\x89\xb3\x79\x38\xd8\xf2\xc2\xc9\ \x8d\xf2\xbf\xd6\x3c\xfe\xa3\x8e\x14\x23\x73\xe0\x2d\xf3\xe5\xdf\ \xe6\xdc\xb0\x6f\x8a\xc8\x9c\x27\xae\x9e\x32\xb8\x33\x9f\x89\xab\ \x5b\x70\xd3\x72\x8b\x7d\x8e\xd8\xbd\xac\x84\x22\xd6\x69\xfb\x43\ \x0e\xde\xb6\x23\x91\x7a\x47\x1c\xcd\xec\x40\x18\x37\x89\xab\x43\ \x50\xf1\x2b\x17\x47\xcb\xb6\x21\x94\xa3\xc4\xd1\xd2\x34\xca\x93\ \x21\xab\xa1\xb8\x69\x1c\xf1\x31\xa1\xbc\xda\x80\x9b\x67\xea\x51\ \x9e\x0c\x59\x1d\x89\x9b\x8b\x27\x10\xce\x8a\x69\xb8\x99\x80\x8a\ \x5f\x9b\x75\xe2\xe4\x05\x42\xfb\x93\xb8\xd9\x0c\xe5\xcb\x90\xcd\ \xa1\xad\x70\xd1\x78\x11\xa1\x2d\xc6\xc9\x82\xf9\x28\x5f\x86\x6c\ \x86\xe2\xe4\xcf\xef\x12\xda\x62\x9c\x4c\x41\x79\x33\x64\x91\x1a\ \x8a\x8b\x75\xbf\x25\xbc\x25\x38\x99\x8c\xf2\x66\xc8\x62\xf7\x32\ \x5c\xdc\x58\x45\x78\x8b\x71\x32\x05\xe5\xcd\x90\xc5\x91\xb8\xf8\ \xe2\x7a\x3c\x2c\xc6\xc5\xda\x77\x51\xde\x0c\x59\x0c\xc5\xc5\x15\ \x2b\xf1\xb0\x18\x17\x6f\xae\x47\xc5\xae\x5c\x5c\xcc\x4a\xe3\xa3\ \x54\x5c\x5c\x83\xf2\x67\xb0\xfb\x3e\x2e\x2e\xae\xc7\x47\x3b\x5c\ \x4c\x46\xf9\x33\xd8\xed\x8a\x83\x45\xe3\xf0\xd2\x0d\x07\xf2\x1a\ \xca\x9f\xc1\xae\x1f\x0e\x1e\x6d\xc4\x4b\x37\x1c\xcc\x5a\x8a\xf2\ \x67\xb0\xeb\x87\x83\x47\xf0\xd3\x1d\x07\x53\x50\x11\x30\x58\xb5\ \x2b\x27\xb8\xaa\xc9\xf8\xe9\x86\x83\x29\xa8\x08\x18\xac\xb6\xc1\ \xc1\xa3\x82\x9f\x7e\x38\x98\x8c\x8a\x80\xc1\xaa\x1f\x0e\x1e\xc6\ \x53\x7f\x82\xfb\xea\x23\x54\x04\x0c\x56\xfd\x08\x6e\xee\x54\x3c\ \xed\x4c\x70\x53\x50\x51\x30\x58\xf5\x23\xb8\x47\xf1\xd4\xbd\x8c\ \xe0\xa6\xa0\xa2\x60\xb0\xea\x47\x70\x0f\xe3\x69\x67\x1c\x4c\x41\ \x45\xc1\x60\xb5\x0d\x81\xd5\x4e\xc3\xd3\x81\x04\xb7\xfe\x4d\x54\ \x14\x0c\x36\xe5\x6d\x09\x6c\x6e\x23\x9e\x8e\x24\xb8\x69\xeb\x50\ \x51\x30\xd8\xf4\x23\xb8\xd9\x78\xea\xdd\x9f\xe0\x26\xa3\x22\x61\ \xb0\xe9\x4b\x70\xb3\xf1\x74\x24\x0e\xa6\xa0\x22\x61\xb0\x69\x47\ \x70\xb3\xf1\x74\x24\x0e\xa6\xa0\x22\x61\xb0\x29\x21\xb8\xd9\xf8\ \xe9\x79\x08\xc1\xcd\xad\x46\x45\xc2\x60\x93\x26\xb8\xd9\xf8\xf9\ \x69\x29\xc1\xbd\x8e\x8a\x86\xc1\xa6\x84\xc0\xe4\x33\xbc\x98\x33\ \x70\x30\x15\x15\x0d\x83\x4d\x9a\xc0\x16\xd4\xe0\x65\xc8\x66\x38\ \x98\x8a\x8a\x86\xc1\xa6\x84\xc0\x96\xe0\xe7\x67\x38\x58\x3f\x0d\ \x15\x0d\x83\x4d\x9a\xc0\x3a\xe1\x65\xd7\xc3\x71\xf0\x5e\x0d\x2a\ \x1a\x06\x9b\x34\x81\x75\xc6\xcb\xb5\x29\x1c\xbc\x8e\x8a\x88\xc1\ \xa6\x84\xc0\x3a\x1a\x3c\x1c\x74\x18\x2e\x26\xa2\x22\x62\xb0\x49\ \x13\x98\xe9\x88\x87\xeb\x70\xb1\xe6\x45\x54\x44\x0c\x36\x25\x04\ \xd7\x99\xf0\x8e\x19\x80\x8b\xe7\x6b\x50\x11\x49\x63\xb3\x94\xe0\ \xba\xcc\x21\xac\x8e\x37\xe3\x64\x3c\xa1\x74\x3a\xf2\xc0\xf2\xb2\ \x4e\x4b\xaa\x3f\x7b\xf6\xe5\xf5\x14\xa7\xfe\x47\xef\x50\x56\xd6\ \xb8\xb0\x7a\xfa\x13\xb3\x88\xc2\x19\x12\xdc\x60\x42\xfb\xa3\x38\ \x69\xe8\x41\x08\x03\x27\xd4\xc9\x37\x96\xdd\x55\x41\xf1\x69\x33\ \x6a\xb6\xfc\xc7\xcc\xf3\x5b\xe2\xef\x08\x09\xee\x47\x84\x75\x98\ \xb8\x99\x8c\xbb\x2d\x1f\x95\x8d\xac\xbd\xb6\x1d\xc5\x25\x75\xfa\ \x02\xd9\xc8\xdc\x1f\xe1\x6d\x47\x09\xee\x01\x42\xea\x30\x5f\xdc\ \xfc\x1a\x67\x83\x97\xc9\xb7\xbd\xbf\x25\xc5\xa4\xf5\x23\xb2\x89\ \x3f\x96\xe2\xa9\x83\x04\xf7\x65\x09\xe1\xfc\x45\x1c\x6d\x8f\xab\ \xb3\xea\x65\x53\x5f\xec\x4b\xf1\xe8\xf1\xa6\x34\xe1\xd5\x4e\x78\ \x5a\x21\xc1\x0d\x22\x94\x0b\xc4\xd1\xdb\xb8\x3a\x5e\x9a\xb4\xac\ \x2f\xc5\xa2\xd5\x6b\xd2\xa4\xe7\xd3\xf8\x79\x5f\x82\x1b\x43\x18\ \x83\xeb\xc5\xd1\xe9\x38\xda\x7d\xad\x34\x6d\x46\x07\x8a\xc4\x5f\ \xa5\x19\xb7\xe3\xe7\x59\x09\xee\x13\x42\xe8\xf3\x95\x38\x5a\xd9\ \x0e\x37\xa5\x9f\x48\x73\xee\xa2\x38\x9c\x20\xcd\x3a\x1c\x2f\x77\ \x8a\x83\xed\x70\xd6\xf9\x03\x71\x75\x3b\x8e\xce\x93\x66\xd5\x6f\ \x4f\x31\x28\xfd\x44\x9a\x35\x2d\x85\x8f\x4b\xc4\xc1\x28\x5c\x75\ \x7e\x4b\x9c\xf5\xc7\x4d\x87\x2f\xa5\x79\xe3\x29\x06\x67\x88\xc5\ \xf1\xf8\x38\x51\x1c\x54\x77\xc4\x4d\xa7\x37\xc5\xd9\x6b\x38\x3a\ \x51\x2c\x1a\x7a\x52\x04\x26\x8b\xc5\x33\xf8\xd8\x4a\x5c\xdc\x86\ \x93\x8e\x6f\x88\xbb\x91\x38\x7a\x44\x6c\x4e\xa7\xf0\xf5\x68\x10\ \x8b\x9a\x76\xf8\x98\x27\x0e\x1a\xf6\xc4\x41\xf9\x1b\xe2\x6e\x59\ \x6b\xdc\xa4\x57\x8a\xcd\x33\x14\xbe\x91\x62\x75\x34\x36\x06\xbb\ \x97\x70\x60\xee\x2c\x21\xb0\x43\xde\xd9\x13\x77\xb7\xac\xc3\x4d\ \xaf\xf6\xd8\xf4\xa3\xf0\xf5\xc3\xaa\x1f\x36\x06\xbb\x97\x71\xb1\ \xdb\xd9\x04\x94\xba\x74\x52\x0f\xdc\x2d\xfb\x3d\x8e\x2a\xb0\x2a\ \xa3\xf0\x95\x63\x55\x8e\x8d\xc1\xee\x25\x9c\x5c\x55\x4e\x20\x5d\ \x9f\x1d\x6d\x08\xa1\x72\x05\x8e\x2a\xb0\x6a\xd3\x81\x82\x57\x81\ \x55\x05\x36\x06\xbb\xaa\x4f\x71\xd1\xfe\xc9\x8e\x04\xb0\xd7\x3b\ \x87\x13\xc6\x92\x5b\x70\xd5\x06\xbb\x36\x14\xbc\x36\x58\xb5\xc1\ \xc6\x90\xc5\x4b\x38\xd9\xe3\xd9\xb6\x64\xd3\xf6\xd2\x7f\x6c\x46\ \x28\xd7\xad\x41\x45\xcb\x90\xc5\x4b\xb8\x19\xf8\x6c\x37\xac\x5a\ \x9c\x3b\x7b\x74\x0b\x42\x59\x70\x07\x2a\x62\x86\x2c\x5e\xc1\xd1\ \xa0\xf7\x0e\xa4\x79\x25\xa7\x7c\x7c\x73\x4f\x42\xfa\x5d\x0d\x2a\ \x62\x86\x2c\x16\x7f\x88\xa3\x5e\x2f\x5e\xd3\x85\xa6\xa5\x8e\xfd\ \x60\xec\xe6\x84\xf5\xd9\xbd\xa8\xa8\x19\xb2\x79\x0c\x57\xe6\xe2\ \xf9\xb7\x6c\xc9\x26\xcc\xc0\xeb\x3f\x7a\x64\x5b\xc2\x3b\x7b\x3d\ \x2a\xf7\xca\xeb\x25\x84\xfa\x87\xf7\x64\x43\xad\x86\xde\xb3\x48\ \xfc\x3c\x44\x18\x23\xc5\x2e\x43\xc1\x7b\x5d\xac\x26\x62\x93\x26\ \x9b\x05\xe3\x86\xe3\xae\xe4\xb8\xe3\x56\xcd\xf8\x70\xc6\x8c\x8f\ \x5a\xf5\xe8\xd1\xa3\x67\x8f\x8a\x03\xda\xe2\x69\xf9\xf9\xa8\xe8\ \xa5\xc9\xea\x8e\xe1\x84\xd2\x7e\xaf\xbd\x88\xd0\xaf\x17\xa1\xa2\ \x67\xc8\xea\xc5\x8f\x49\x80\x7f\xdd\x83\x8a\x81\x21\x2b\xb9\x83\ \xfc\xab\x3b\x43\x50\x31\x30\x64\x77\xff\x5a\xf2\xee\xfa\x19\xa8\ \x38\x18\xb2\x5b\xfe\x20\xf9\xf6\xee\xef\x50\xb1\x30\x04\x70\x3b\ \x79\xb6\xe6\x84\x5a\x54\x2c\x0c\x01\xbc\x33\x95\xfc\x3a\xe7\x23\ \x54\x3c\xd2\x04\xf1\xcb\x7f\x90\x4f\x0f\xde\x47\x6c\x4e\x5b\xc5\ \x86\x64\x69\x55\xd5\xec\x46\x42\xe8\xb4\x55\x45\x79\x4b\x02\x6a\ \x5c\x52\x35\x7f\x3e\x61\x94\x6d\x5e\x91\x49\xb3\x91\x0c\xf1\xbb\ \x5f\xf2\xe8\xcd\x36\x84\x37\x52\x9c\x7d\x71\xff\xf0\x52\xdc\x6c\ \xfe\xcb\x7f\x35\x88\xa3\x39\x37\x0d\xc2\xd1\x6e\xd7\x7c\x28\xce\ \x26\x12\x81\xee\x4b\x25\x6f\xe6\x66\xf0\x30\x52\xc2\xf8\x78\x38\ \x0e\xba\xdd\x52\x27\xa1\xfc\x63\x2f\x1c\x6c\xf3\x84\x84\x31\x91\ \x28\x9c\x21\xf9\xb2\x7c\x07\x7c\x8c\x94\x70\x5e\xea\x41\x50\x27\ \xae\x90\xd0\xfe\xd8\x92\x80\x52\x57\xac\x97\x50\x26\x12\x05\x33\ \x55\xf2\x63\xfd\xa1\x78\x19\x29\x21\xcd\xeb\x4f\x20\xe6\x5a\xf1\ \x31\xb9\x07\x81\xb4\x7d\x4c\x42\x9a\x48\x24\x76\xab\x97\xbc\xf8\ \x09\x7e\x46\x4a\x58\xab\xf7\x20\x88\xfb\xc5\xcf\xa7\xdd\x08\xa0\ \xd5\xeb\x12\xd6\x44\x6c\x0c\x01\xbd\x73\x07\xf9\x70\xcd\x58\xf2\ \xa5\xed\xb8\x5e\x64\xf7\xeb\x1f\xe3\xa7\xcf\x63\xa5\x64\x37\x76\ \x2f\xf2\xad\xe3\x42\xc9\xbd\x07\x53\x78\x1a\x29\xe1\xbd\x5e\x42\ \x36\xdf\x6b\x10\x6f\xb7\x91\xd5\x45\x12\xde\x44\x22\x32\x42\x72\ \xee\x5f\x2d\xf1\x35\x52\x3c\x9c\x4a\x16\x25\x33\xc4\x5f\x43\x7f\ \xb2\xc8\xac\x96\xf0\x26\x62\x63\x08\xec\x6f\x4f\x93\x63\x53\x86\ \xd6\x92\x57\xa3\xdb\x62\x77\xca\x76\xf8\x33\x95\x64\x31\xba\x2d\ \x71\x31\x04\xf7\x7f\xde\x25\xa7\x26\x0e\x5e\x4e\x7e\x95\x9d\x82\ \xdd\xc5\x44\x61\xf0\x9e\x58\x65\x7e\x42\x6c\x0c\xc1\xad\x1e\x52\ \x45\x0e\x3d\x74\xd4\x5a\xf2\xed\x07\x58\xed\xb2\x15\x91\x38\x06\ \xab\x23\x4b\x88\x8d\xc1\x41\xf5\x90\x95\xe4\xcc\xed\x27\xae\x27\ \xef\x06\x75\xc2\x66\x38\xd1\x18\x8e\xd5\x30\xe2\x63\x70\x31\xfd\ \xd8\x7a\x72\xe4\xaa\xb3\x1a\xc9\xbf\xf4\xde\xd8\x0c\x22\x1a\x7d\ \x33\xd8\xec\x47\x7c\x0c\x4e\x26\xfd\x8c\x9c\x90\xf3\x2f\x23\x11\ \x7a\x63\xd3\x9b\x88\xf4\xc2\xa2\x7d\x47\xe2\x63\x70\x73\xef\xb5\ \xe4\x40\xfd\xc9\x37\x93\x0c\x15\xd8\x94\x13\x91\x32\x2c\x2a\x88\ \x91\xc1\xd1\x25\x0f\x12\xbb\x2f\x87\xfc\x85\xa8\xd4\xe2\xa5\x03\ \x16\xad\x5a\x12\x91\xf6\x58\x74\xc0\x4b\x2d\x36\x06\x47\x72\xca\ \x3f\x89\xd9\xab\xfd\x27\x11\x99\x05\x78\x59\x88\x45\xcd\x32\x22\ \xb2\x18\x8b\x85\x78\x59\x80\x8d\xc1\x55\xed\x11\x8f\x11\xa7\xc6\ \x2b\x0f\xa9\x26\x3a\x0b\xf0\x52\x85\x4d\x15\x11\x59\x88\x45\x75\ \x23\x3e\x16\x60\x63\x70\xb6\xe6\xd8\x2b\x84\xd8\x2c\x3c\xf4\x8a\ \x06\x22\x54\x55\x8b\x8f\x4f\xb1\xf9\x84\x68\xac\xff\x1c\x8b\xfa\ \x79\xf8\x98\x8d\x8d\xc1\x9d\x5c\x79\xec\x1a\x62\xf2\x5c\xff\x97\ \x89\x54\xed\xcb\x78\x58\xf2\x16\x36\x4f\x13\x8d\x97\xd7\x60\xf3\ \x2c\x1e\x1a\x26\x61\x63\x08\xe3\xb1\x7d\xe7\x11\x87\xfa\x51\x47\ \x7c\x41\xc4\xc6\xe3\xe1\xe9\x46\x6c\xc6\x37\x10\x89\xc7\xb1\x1a\ \x87\x87\xc9\x4b\x89\x43\xf7\x7f\x4a\xf4\x66\xec\x43\xf4\xca\x6a\ \x24\xbc\x83\xb1\x7b\x4a\xa2\xb0\xa6\x3b\x56\xa5\x55\x12\xde\xcf\ \x88\x47\x8b\x7b\x24\x62\x4b\xcf\x4d\x13\x87\x31\x12\xda\x24\xb2\ \xe8\xdf\x28\x11\x18\x4d\x16\x3f\x91\xd0\xe6\xb4\x20\x2e\xe7\xac\ \x97\x08\xd5\xdf\xde\x95\x78\x74\x59\x26\x21\x35\xee\x42\x36\x7f\ \x15\x7f\x8b\xdb\x93\x85\x79\x5f\xc2\x1a\x41\x7c\x76\x7a\x41\x22\ \xf3\xe2\x4e\xc4\x66\x84\x84\x34\x9a\xac\x7a\xce\x17\x5f\x0d\x43\ \xc9\x6a\xf7\xb5\x12\xce\x93\x29\xe2\x34\xec\x13\x89\xc4\xec\x1f\ \x10\xa7\x6b\x24\x94\x47\x52\x64\xd7\x7f\xb5\x78\xba\x90\x00\x7e\ \xd8\x28\x61\x4c\x6f\x47\xbc\x5a\x5c\xb4\x42\xbc\x7d\x39\xaa\x25\ \xb1\x4a\x3d\x20\x21\x4c\x6c\x4d\x10\x87\xad\x12\x2f\x95\x04\x72\ \x4e\x83\xb8\xfb\x64\x73\x62\xd7\xe3\xee\x06\xf1\xf2\xde\x4f\x5b\ \x11\xbb\x5f\x37\x88\xab\x9b\x4a\x08\x66\xc7\x39\x12\x5e\xdd\x69\ \x04\xf4\xfd\x15\xe2\xea\x85\xce\xe4\x42\xff\x97\x25\xb4\xfa\xc7\ \x0f\x24\x27\xbe\x37\x53\x9c\xcc\x3f\x9e\xc0\xba\x8d\x6d\x90\x90\ \xde\x1e\x48\x60\xfd\x26\x89\x93\x55\x97\xa6\xc9\x91\x1f\x4c\x91\ \x50\x96\x55\x6e\x41\xae\x94\x9c\x31\x4f\x02\x5b\x3c\xaa\x15\x2e\ \x76\x1a\x5f\x2f\x21\xcc\x1c\x91\xc2\xc5\x61\x6f\x48\x60\x6b\x6e\ \xef\x49\x10\x29\x22\xb1\xe3\x69\x27\x75\xc6\xd1\xdb\xf7\xfe\x79\ \x0d\xb9\xb4\xdb\xb0\xfd\x7b\xf5\x6a\x8f\x5d\xcd\xc2\xea\x37\x1f\ \x9f\xdc\x88\xa3\xae\x47\x0d\xed\x53\xd6\x3d\x45\x50\xab\xaa\x17\ \xbc\xf2\xf8\x87\xb8\xda\x72\xf8\xe0\xde\x65\x9d\xb1\xab\x5b\x54\ \xfd\xfe\xf8\x17\x6a\x08\x24\x45\x44\x5a\x1d\x7b\xda\x7e\x29\x82\ \x5a\xf7\xe2\xd3\x4f\x2f\x20\x1f\x5a\x18\x6c\xa4\x96\xf0\x4a\x4a\ \x09\xa8\xb1\x8e\xf0\x4a\x4b\xb0\x91\x3a\x21\x3f\x7a\x9e\xf2\xf7\ \x95\x12\xc0\x82\xbb\x8e\x6c\x8d\x4a\x86\x14\x91\x2a\x1d\x34\x64\ \xff\x1d\x5b\xd1\x2c\x99\x3b\xe3\xcd\xa7\xdf\x11\x54\x52\xa4\x88\ \x5c\x7a\xdb\x5d\x76\xd9\x75\xdb\x1e\x69\x36\xd2\x30\x7b\xc6\x8c\ \x99\x33\x66\xad\x45\x25\x4a\x8a\x98\xa4\x3a\xf7\xec\xd1\xa3\x3b\ \x75\xb5\xb5\x75\xb5\x75\xb5\x75\xab\x67\xd7\xa2\x94\x52\x4a\x29\ \xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\ \x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\ \x52\x4a\xa9\x70\xfe\x1f\xfe\x43\x8a\x30\x46\x60\x94\x4b\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x63\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x2e\ \x50\x4c\x54\x45\xff\xff\xff\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\ \xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\ \x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\ \xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\ \xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\ \x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\ \xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\ \xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\ \x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\ \xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\ \xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\ \x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\ \xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\xba\x94\xdd\ \xba\x94\xdd\xbc\x98\xde\xba\x94\xdd\xba\x94\xdd\xc1\x9f\xe0\xba\ \x94\xdd\xc6\xa7\xe3\xba\x94\xdd\xbc\x97\xde\xc8\xa9\xe4\xc6\xa7\ \xe3\xc2\xa0\xe1\xc6\xa6\xe3\xba\x94\xdd\xc6\xa7\xe3\xc6\xa7\xe3\ \xc0\x9d\xe0\xc6\xa6\xe3\xc7\xa8\xe3\xc6\xa6\xe3\xc4\xa3\xe2\xc7\ \xa9\xe4\xc7\xa9\xe4\xc7\xa8\xe3\xc8\xa9\xe4\xc8\xa9\xe4\xba\x94\ \xdd\xc6\xa7\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xba\x94\xdd\xc6\xa6\xe3\ \xc8\xa9\xe4\xc6\xa7\xe3\xba\x94\xdd\xc7\xa8\xe3\xc7\xa9\xe4\xba\ \x94\xdd\xc8\xa9\xe4\xc7\xa8\xe3\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa7\ \xe3\xc8\xa9\xe4\xc5\xa5\xe2\xc7\xa9\xe4\xbc\x97\xde\xc7\xa8\xe3\ \xc6\xa7\xe3\xc8\xa9\xe4\xc6\xa7\xe3\xc6\xa6\xe3\xc6\xa7\xe3\xc6\ \xa6\xe3\xc7\xa9\xe4\xc7\xa8\xe3\xc6\xa6\xe3\xc8\xa9\xe4\xc6\xa6\ \xe3\xcb\xaf\xe6\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa6\xe3\xc6\xa7\xe3\ \xc7\xa8\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xc5\xa5\xe2\xc7\xa8\xe3\xc7\ \xa8\xe3\xc6\xa7\xe3\xc7\xa8\xe3\xc8\xa9\xe4\xc6\xa7\xe3\xc6\xa7\ \xe3\xc6\xa7\xe3\xc6\xa6\xe3\xc7\xa9\xe4\xc4\xa3\xe2\xc6\xa6\xe3\ \xc7\xa9\xe4\xc7\xa9\xe4\xc6\xa7\xe3\xc7\xa8\xe3\xc6\xa7\xe3\xc7\ \xa8\xe3\xc7\xa8\xe3\xc6\xa6\xe3\xc6\xa7\xe3\xba\x94\xdd\xbe\x9b\ \xdf\xc4\xa4\xe2\xc8\xa9\xe4\xc0\x9e\xe0\xc7\xa8\xe3\xbb\x96\xde\ \xc1\x9f\xe1\xbd\x98\xde\xc3\xa2\xe1\xbf\x9c\xdf\xc5\xa5\xe2\xbc\ \x97\xde\xc2\xa0\xe1\xbf\x9c\xe0\xc5\xa4\xe2\xbe\x9a\xdf\xbe\x99\ \xdf\xc2\xa1\xe1\xc3\xa3\xe2\xbb\x95\xdd\xc5\xa6\xe3\xc6\xa6\xe3\ \xbd\x99\xde\xc4\xa3\xe2\xbc\x98\xde\xbd\x99\xdf\xc1\x9e\xe0\xff\ \xff\xff\x5d\x0a\x5e\xab\x00\x00\x00\x9d\x74\x52\x4e\x53\x00\x00\ \x24\x63\x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\xf9\x12\ \x93\xf6\xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\xfc\x57\ \x0c\x09\x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\xe1\xde\ \x75\x18\x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\ \xba\x72\xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\x62\x60\ \x69\x91\x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\x38\xb9\ \x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\x1f\xc1\ \x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\xbc\xe1\ \x2a\x4f\xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\x23\xcc\ \x07\x4c\xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\xc0\x00\ \x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x07\ \x74\x49\x4d\x45\x07\xdd\x09\x09\x15\x2b\x20\x45\x9f\x34\x90\x00\ \x00\x04\x01\x49\x44\x41\x54\x58\xc3\xed\x96\xf9\x57\x13\x57\x14\ \xc7\x2f\x31\x09\x08\x86\x45\x94\xb8\x50\x49\x02\x8a\x62\x04\xb1\ \x5a\xab\xa2\x28\xa0\xb8\x25\x62\xdd\x22\x21\x06\x04\xac\x46\x29\ \x50\x41\x62\x35\x09\x6a\xb0\x15\x6d\xc5\x05\x71\x7b\x78\x05\xab\ \x2c\xa2\xc6\xfd\xcf\xf3\xbd\x99\x4c\x98\xc9\x32\x8b\xbf\xf5\x9c\ \x7e\xcf\xc9\xcc\xe4\xcd\x7c\xbe\x73\xdf\xbb\xf7\xbd\x37\x00\xff\ \x2b\x41\x69\x82\x74\x73\xf4\x06\x63\x7a\x06\xc9\x48\x37\x1a\xf4\ \x73\x74\x42\xb3\x4a\x83\xb9\x99\x59\x44\xaa\xac\xcc\xb9\xaa\x0d\ \xe6\xe9\x4d\x51\x2a\x3b\x87\x1d\x73\xa3\xff\x4c\xfa\x79\x6a\x0c\ \xf2\xe6\xe7\xb3\xa7\xf3\x17\x2c\x2c\x30\xa7\x2d\x62\x97\x8b\x97\ \x2c\x2d\xfc\x61\x19\xd7\x38\x3f\x4f\x89\x37\x17\xb1\x97\x5a\x8c\ \x56\x1b\x17\x30\x6f\xc0\xae\x8a\xad\x46\x2e\xa6\x22\xb3\x2c\x5f\ \xb2\x9c\x0b\x76\x05\x43\x4a\x57\x1a\x56\x65\xb3\x7f\xe9\x65\x2b\ \x57\xdb\x59\x03\x77\x6f\x79\x89\x0c\xbf\x26\x3b\xda\xdd\xf2\x8a\ \x32\x93\x64\x0c\x73\x0c\xe5\x69\xc6\xe8\xc0\xac\x49\xc9\x17\x59\ \x08\x59\xbb\x8a\xa4\x50\x06\x3b\x58\x2a\xe9\xaf\x28\x05\xbf\x8e\ \x05\xf8\xa3\x2e\x97\xc8\xa8\x2c\x8f\x75\x72\x5d\x52\x7e\x3d\xbd\ \x63\xb0\xa7\xd9\x36\xc8\x19\xe8\xc0\xbe\x82\x9e\xd6\x27\xe1\x0b\ \xe8\x9b\x0b\x01\x74\xb2\x3c\xf9\x49\x07\x50\x48\xf3\x59\x90\xc0\ \xeb\xe8\xa0\x95\x01\x6c\xcc\x21\xf2\xca\xf9\x19\x40\x4f\x8b\x4a\ \x17\xc7\xb3\xc0\x37\x99\xa1\x22\x97\x28\x29\xb7\x02\x80\xf6\x62\ \x83\x4d\x6a\xb0\x99\x56\xfb\x16\xa8\xca\x56\xe4\x69\x1a\xb7\x42\ \xf1\x36\x42\x36\x4b\xf8\x6a\x9a\x40\xb2\x7d\x69\x86\x0a\x9e\x8e\ \xc3\x92\x1d\xb4\xb0\x2d\xd5\x62\x83\x1a\x55\xa4\x54\x35\x22\xbe\ \xf4\x3b\x78\x42\x4a\x67\x0d\x68\x91\x2a\x8d\x7e\x12\x19\x67\xa7\ \x90\x85\x98\x6c\xb5\x6a\x06\x30\xa6\xba\x6a\x13\xb1\xec\x14\x0c\ \x76\x11\x52\x0f\x66\x75\x23\xc8\xcb\x64\x87\x7a\x42\x76\x0b\x06\ \xe9\x84\x54\xc1\x46\x4d\xe1\xef\x81\x2a\x32\xba\x37\xca\xe7\x59\ \x48\x25\x40\xa6\x26\x83\x7d\x00\xfb\x9f\x39\x9c\xbc\x81\x95\x4e\ \x22\x28\xce\xd7\x64\x90\x5f\x0c\x07\x10\x1b\x78\x03\x5a\xda\x07\ \xa1\x5c\x5b\x06\x68\x0e\x7f\x41\x3c\xc4\x1b\x2c\x20\xa4\x1a\x6a\ \x35\x1a\x1c\x86\x23\x88\x47\x79\x03\x3a\x8f\xb6\x80\x41\x1b\xff\ \xfc\x18\xb8\x10\x8f\xf3\x06\x34\xa3\x06\x43\xa5\x36\x7e\xac\xd1\ \xed\x76\x60\x13\x6f\xa0\x3c\x85\xe3\x34\xfe\x02\x79\x79\x78\x03\ \xb5\x9c\x25\x7a\xfe\xf7\x25\x0a\xfa\xae\x08\x5e\x4d\xc4\x78\x8f\ \x30\x06\x1a\x34\x39\x35\x16\xe3\x85\x31\xa0\x59\xb0\xa9\xcd\xc2\ \xf4\xeb\x28\xeb\x16\x65\xe1\x04\xab\x83\x85\x6a\xf0\x99\xd9\xde\ \x7b\xa1\x19\xb1\x25\x56\x89\x27\xd5\x54\xe2\x9b\xb7\xa2\xe8\x5b\ \x45\x95\x68\x65\x0b\xba\xe2\x5c\x98\x11\xe3\xd8\xd6\x0e\xee\xd8\ \x5c\xa0\xb3\xf1\x14\xc0\x3e\x39\x7a\x7c\xfa\x1d\x4a\xf4\x2b\x40\ \x23\x0a\xb3\x11\xb6\xb1\x2d\xcb\x9a\x92\x8e\xcc\x4c\xbd\xc7\x38\ \x35\x40\x2b\xe2\x69\x61\x41\xa1\x7b\xd5\x19\xb0\x67\x25\x7f\xf7\ \xe8\xd4\x04\x26\xc8\xd7\x0e\x67\x11\xcf\x89\xd6\xc4\x2c\xbb\x2d\ \x71\x69\x8f\xbc\x79\xfe\xf2\x03\x26\x53\xc7\x6f\xae\x4e\x74\x74\ \xc5\x56\xd5\x3a\x42\x32\xa5\xcb\xf2\xf8\xc7\xe9\x17\x9f\x92\xc3\ \xbc\x8e\x23\x76\xcf\x2e\xeb\xbf\x4f\x46\x22\xec\x8d\x91\xc9\xcf\ \x5f\x46\xa7\xbf\xbe\x7d\x37\x31\x86\xca\x6a\x15\xed\x2c\xe7\x55\ \x3c\x1f\xaf\xf3\xe2\xad\xad\xd9\xc1\x9a\x5a\x9a\x54\x91\x4d\x3d\ \xbd\xf4\xe8\x68\x96\xec\xae\x17\x68\x53\x1f\x1c\xf1\xa8\xe0\xdb\ \xfc\x70\xb1\x13\xf1\x82\x74\x7b\x77\xfd\x81\x78\x09\xe0\x72\x9b\ \x22\x1f\x08\x42\xa8\x1f\xf1\x8a\x2b\xee\x0b\xe3\xaa\x8f\xcb\xeb\ \x35\x25\x87\xb6\x20\x40\x98\x16\xc2\xd5\x84\x6f\x1c\x7f\x00\xb1\ \x87\x9e\xe4\xc7\xa1\xc3\x0f\x70\x8e\x86\xe1\x87\x44\x0d\xd0\xfb\ \xd7\x01\xfe\xfc\x4b\x86\xf7\x39\x21\x74\x83\x9e\x07\x20\x99\x06\ \x59\x22\x5c\xa1\xd3\x72\x11\x0c\x38\x99\xff\x20\x24\x97\x97\x26\ \xb3\xf1\x66\x2a\x96\xcb\xf4\xad\x0e\x7a\xf1\x37\xa4\x52\x50\x48\ \xe3\x3f\x7d\x67\x7b\x25\x74\x67\xcb\xed\xa1\xe8\x4d\x4f\x10\x52\ \x6b\xe8\x0e\xf7\xcc\x95\xbb\xf4\xfa\x9e\xd7\x7d\x9f\x63\x86\xdd\ \x0f\xfc\xac\xa1\x87\xbb\x77\x67\x08\xe4\x14\xf2\x32\x26\xd0\xdf\ \xc0\xa7\x79\x84\x21\x1c\xd1\xfe\xb0\x9f\xf5\xc1\xe3\x0d\x81\x82\ \x9c\xe1\x00\x97\xef\x16\xaf\x5f\x30\xe8\xea\x1b\x1c\xe1\x62\x09\ \x84\x9d\x4a\x38\x53\xd7\x23\x9f\x90\x35\x6e\x20\x84\xda\xf2\x3d\ \xea\x52\x83\x73\x1d\x09\x3e\xf6\x49\x53\x80\xbe\xc7\x41\xc5\xe0\ \xa5\x7a\xf2\x34\xdc\x3d\xcc\x22\xe8\x1d\xee\x0e\x3f\x78\xa2\x0d\ \xfe\x4f\xe9\x1b\xea\x4a\xac\xe0\x7b\x4b\x6b\xdf\x00\x00\x00\x25\ \x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\ \x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\ \x3a\x30\x36\x2b\x30\x38\x3a\x30\x30\x9a\xca\x23\x76\x00\x00\x00\ \x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\ \x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\ \x33\x3a\x33\x32\x2b\x30\x38\x3a\x30\x30\x8a\xd6\x32\xbc\x00\x00\ \x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\ \x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\ \x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\ \x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\ \x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\ \x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\ \x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\ \x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\ \x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\ \xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\ \x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\ \x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\ \x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\ \x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\ \x31\x33\x37\x38\x37\x33\x34\x32\x31\x32\x50\xe4\x24\x6e\x00\x00\ \x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\ \x65\x00\x32\x33\x30\x36\x42\x9d\x8b\xbe\x78\x00\x00\x00\x5f\x74\ \x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\ \x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\ \x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\ \x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\ \x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\ \x2f\x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\x35\x33\x2e\x70\ \x6e\x67\x65\x58\x03\x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x04\xb3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x0a\x00\x00\x00\xb0\x08\x04\x00\x00\x00\x5d\xe4\xe8\xe5\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x01\x2c\x00\x00\x01\x2c\x00\x73\x88\xe9\x52\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xde\x0c\x13\x12\x38\x1f\xe6\x89\ \x04\x9f\x00\x00\x01\xae\x49\x44\x41\x54\x78\xda\xed\xd4\xc1\x0d\ \xc2\x40\x10\x04\xc1\x35\x22\x3f\x62\x21\x34\x9c\xe0\xf1\xb6\x9a\ \xff\x59\xa2\x6a\x13\x98\x47\x6b\x8f\x59\x03\x17\x8f\xdd\x03\xb8\ \x1f\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\xfc\ \xb0\x72\xfc\x9b\xf7\xb5\x00\x9f\x82\x10\x05\x21\x0a\x42\x14\x84\ \x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\ \x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\ \x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\ \x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\ \x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\ \x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\ \x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\ \x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\ \x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\ \x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\x44\ \x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\x20\ \x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xa2\ \x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\ \xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\x51\ \x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\x08\ \x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\x28\ \x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\x84\ \x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\x14\ \x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\x42\ \x14\x84\x28\x08\x51\x10\xa2\x20\x44\x41\x88\x82\x10\x05\x21\x0a\ \x42\x14\x84\x28\x88\x63\xd6\xee\x09\xdc\x8d\x4f\x41\x88\x82\x10\ \x05\x21\x0a\x42\x14\x84\x28\x08\x51\x10\xcf\x39\xe7\x35\x9f\xdd\ \x33\xb8\x93\x2f\x8d\x3d\x15\x70\x17\xd8\xd5\x99\x00\x00\x00\x25\ \x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\ \x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x33\x3a\x35\x37\ \x3a\x30\x38\x2b\x30\x38\x3a\x30\x30\x75\xee\x02\x13\x00\x00\x00\ \x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\ \x00\x32\x30\x31\x34\x2d\x31\x32\x2d\x31\x39\x54\x31\x38\x3a\x35\ \x36\x3a\x33\x31\x2b\x30\x38\x3a\x30\x30\x4a\x82\x46\xff\x00\x00\ \x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\ \x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\ \x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\ \x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\ \x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\ \x63\x74\x45\x58\x74\x73\x76\x67\x3a\x63\x6f\x6d\x6d\x65\x6e\x74\ \x00\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\ \x62\x65\x20\x49\x6c\x6c\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x31\ \x36\x2e\x30\x2e\x30\x2c\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\ \x74\x20\x50\x6c\x75\x67\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\ \x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\ \x69\x6c\x64\x20\x30\x29\x20\x20\x72\x0b\x75\x96\x00\x00\x00\x18\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\ \x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\ \x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\ \x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x31\x37\x36\ \xd9\xb3\x98\xc2\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\ \x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\ \x32\x36\x36\x51\x1f\x47\x87\x00\x00\x00\x19\x74\x45\x58\x74\x54\ \x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\ \x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\ \x00\x31\x34\x31\x38\x39\x38\x36\x35\x39\x31\x41\xa6\x15\xfd\x00\ \x00\x00\x10\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\ \x7a\x65\x00\x38\x33\x33\x42\x45\x5b\xa1\x63\x00\x00\x00\x5f\x74\ \x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\ \x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\ \x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\ \x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\ \x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\ \x2f\x31\x31\x38\x33\x30\x2f\x31\x31\x38\x33\x30\x37\x35\x2e\x70\ \x6e\x67\x99\xb2\xc0\x4e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x40\x5e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x04\x69\x00\x00\x04\x69\x08\x04\x00\x00\x00\xd7\x1d\x92\x20\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x00\xc8\x00\x00\x00\xc8\x00\x63\xfa\xe7\xad\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xdf\x0c\x0a\x16\x04\x2e\x25\xe0\ \x1e\x36\x00\x00\x3d\x4b\x49\x44\x41\x54\x78\xda\xed\xdd\x67\xa0\ \x65\x65\x7d\x3e\xec\x7b\x98\x19\x60\xe8\x0c\xe0\x00\x82\x48\x53\ \xc4\x02\x2a\x62\x07\x11\xdb\x2b\x11\x05\x83\x60\x23\xd6\xc4\x68\ \x2c\x51\x63\x62\x8c\x46\x4d\xf0\xaf\xd1\x68\x8c\xb1\xa1\x89\x0d\ \x15\x7b\x89\x11\x45\x41\x05\x15\xc1\xd8\x05\x51\x41\x45\x2c\xa8\ \x58\x11\x69\x0a\xef\x07\x24\x0a\x0c\x33\xe7\xcc\xde\x7b\xfd\x9e\ \xf5\xec\xeb\x3a\x5f\x28\x33\xfb\xb9\xd7\x99\x73\xf6\xb9\xe7\x29\ \x6b\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\xd0\x90\x25\xd5\x01\x9a\xb3\x5e\x56\x64\xcb\x6c\x9f\x55\xb9\ \x5e\xb6\xcf\x8e\xd9\x29\x5b\x66\x93\x6c\x92\x4d\xb2\x69\x96\x55\ \x87\x03\x60\x0e\x5d\x92\x5f\xe7\x82\xfc\x3a\x17\xe6\xc7\x39\x27\ \xdf\xcb\x0f\xf3\xe3\x9c\x97\xf3\xf2\x8b\x5c\x92\x2b\xaa\xc3\xb5\ \x43\xa5\x49\x92\xf5\xb2\x65\x76\xce\xde\x39\x20\x77\xc9\xf6\xd5\ \x61\x00\x60\xc1\xce\xcc\x89\x39\x39\x5f\xc9\xb9\xb9\x60\xde\xeb\ \xcd\x7c\x57\x9a\x8d\xb3\x5b\xf6\xcf\x11\xb9\x7d\x75\x10\x00\x98\ \xd8\xfb\xf2\xee\x9c\x92\x73\x72\x69\x75\x90\x1a\xf3\x59\x69\x96\ \x67\x8f\xdc\x27\x4f\xc8\xaa\xea\x20\x00\x30\x75\x5f\xca\x2b\xf2\ \x91\x9c\x93\xcb\xab\x83\x0c\x6b\xde\x2a\xcd\xe6\x39\x20\x0f\xcf\ \xc1\xd5\x31\x00\x60\xe6\x5e\x9d\x37\xe7\xb4\x5c\x52\x1d\x63\x28\ \xf3\x53\x69\x36\xcd\x7e\x79\x6a\xee\x52\x1d\x03\x00\x06\xf5\xc6\ \xbc\x2a\x9f\x9b\x87\xc5\xa8\x79\xa8\x34\xeb\xe5\xd6\xf9\xbb\x1c\ \x5a\x1d\x03\x00\xca\xfc\x6b\x5e\x95\xb3\xaa\x43\xcc\x56\xef\x95\ \x66\xeb\x1c\x91\x97\x55\x87\x00\x80\x06\x9c\x93\xa7\xe4\xb8\xfc\ \xa6\x3a\xc6\xac\xf4\x5c\x69\x76\xcf\x33\xf2\x67\xd5\x21\x00\xa0\ \x29\xcf\xca\xab\xf2\x93\xea\x10\xb3\xd0\x6b\xa5\xb9\x6d\x5e\x9c\ \x3b\x54\x87\x00\x80\x26\xbd\x2e\xcf\xeb\x6f\x19\xaa\xc7\x4a\x73\ \xbb\xbc\x29\xbb\x55\x87\x00\x80\xa6\xbd\x27\x7f\x93\xb3\xab\x43\ \x4c\xd3\x7a\xd5\x01\xa6\xec\xd6\xf9\x62\x4e\x51\x68\x00\x60\x2d\ \x0e\xc9\x59\x39\x26\x3b\x55\xc7\x98\x9e\x9e\x2a\xcd\xce\xf9\x48\ \xfe\x37\x7b\x55\xc7\x00\x80\x91\x78\x70\xbe\x93\x17\x67\x8b\xea\ \x18\xd3\xd1\xcb\xc2\xd3\xa6\x79\x7a\x9e\x5e\x1d\x02\x00\x46\xe9\ \x11\x79\x63\x7e\x57\x1d\x62\x52\x3d\x54\x9a\x25\x79\x40\x8e\xad\ \x0e\x01\x00\x23\x76\x51\x0e\xc8\xa9\xd5\x21\x26\x33\xfe\x85\xa7\ \x9d\xf2\x19\x85\x06\x00\x26\xb2\x22\x9f\xc9\x2b\xb2\x69\x75\x8c\ \x49\x8c\x7b\x96\x66\x69\x1e\x93\xff\xa8\x0e\x01\x00\xdd\xb8\x57\ \x3e\x5c\x1d\x61\x5d\x8d\xb9\xd2\xec\x94\x13\xb2\x6b\x75\x08\x00\ \xe8\xca\x9b\xf3\x97\xb9\xa0\x3a\xc4\xba\x18\x6f\xa5\x39\xdc\x72\ \x13\x00\xcc\xc4\xbe\xf9\x6c\x75\x84\xc5\x1b\xe7\x5e\x9a\xcd\xf2\ \x0e\x85\x06\x00\x66\xe4\xb4\xfc\xfd\xf8\x1a\xc2\x18\x67\x69\xf6\ \xcc\xe9\xd5\x11\x00\xa0\x73\xa7\xe6\xde\xf9\x59\x75\x88\xc5\x18\ \x5d\x07\xcb\xfd\x15\x1a\x00\x98\xb9\xdb\xe6\xa7\xd9\xbb\x3a\xc4\ \x62\x8c\xab\xd2\x2c\xcd\x8b\xf2\xce\xea\x10\x00\x30\x27\xbe\x90\ \x87\x56\x47\x58\xb8\xa5\xd5\x01\x16\x61\xe3\x1c\x97\x07\x55\x87\ \x00\x80\x39\x72\x48\x96\xe5\xe3\xd5\x21\x16\x66\x3c\x7b\x69\xb6\ \xcd\xe9\x59\x59\x1d\x02\x00\xe6\xce\x3b\xf3\x90\x5c\x52\x1d\x62\ \xed\xc6\x52\x69\x6e\x9a\xaf\x56\x47\x00\x80\x39\x75\x66\xee\xd8\ \xfe\x56\xe1\x71\x54\x9a\x7d\xc6\x78\x3e\x1e\x00\xba\x71\x59\x76\ \xcc\x8f\xaa\x43\xac\xd9\x18\xb6\x07\xdf\x49\xa1\x01\x80\x52\xcb\ \x73\x5e\x76\xa8\x0e\xb1\x66\xed\x57\x9a\xbb\xe7\xe4\xea\x08\x00\ \x40\xce\xcd\x2e\xd5\x11\xd6\xa4\xf5\x85\xa7\xbb\xe7\xf8\xea\x08\ \x00\xc0\xef\xed\x92\x6f\x57\x47\xb8\x2e\x6d\x57\x9a\x3b\x99\xa1\ \x01\x80\xa6\xec\x90\xef\x57\x47\x58\xbd\x96\x2b\x8d\x4d\xc1\x00\ \xd0\x9e\x55\xf9\x71\x75\x84\xd5\x69\xb7\xd2\x38\xb6\x0d\x00\x2d\ \xba\x28\xdb\xe5\x97\xd5\x21\xae\xad\xd5\xed\xc1\xdb\x2a\x34\x00\ \xd0\xa4\x15\x39\x31\xcb\xab\x43\x5c\x5b\x9b\x0f\x44\xd8\x38\x67\ \x65\x45\x75\x08\x00\x60\xb5\xb6\xcb\x4e\x79\x6f\x75\x88\x6b\x6a\ \xb1\xd2\x2c\xcd\x71\xd9\xb3\x3a\x04\x00\x70\x9d\xf6\xca\x6f\x5b\ \x3b\xc2\xd3\x62\xa5\x79\xa1\x87\x53\x02\x40\xe3\xee\x9a\xaf\xe4\ \x6b\xd5\x21\xfe\x58\x7b\xdb\x83\xef\x9f\x77\x56\x47\x00\x00\x16\ \xe0\x26\x39\xb3\x3a\xc2\x1f\xb4\x56\x69\xf6\xcc\xe9\xd5\x11\x00\ \x80\x05\xda\x2c\x17\x54\x47\xb8\x4a\x5b\x27\x9e\x36\x53\x68\x00\ \x60\x44\xde\xde\xce\xe4\x48\x5b\x7b\x69\x8e\xb1\x2d\x18\x00\x46\ \x64\xb7\x9c\x97\xff\xad\x0e\x71\xa5\x66\xba\x55\x92\xc3\x73\x6c\ \x75\x04\x00\x60\x91\x6e\x9a\x33\xaa\x23\x24\x2d\x55\x9a\x9d\xf2\ \x9d\xea\x08\x00\xc0\xa2\x5d\x9c\x2d\x72\x49\x75\x88\x76\x16\x9e\ \x96\xe6\xb3\x59\x59\x1d\x02\x00\x58\xb4\x65\xd9\x24\x1f\xae\x0e\ \xd1\xce\xf6\xe0\xc7\x64\xd7\xea\x08\x00\xc0\x3a\x79\x52\xf6\xad\ \x8e\xd0\xca\xc2\x93\x45\x27\x00\x18\xb7\x0d\xab\x17\x9f\x5a\x58\ \x78\x5a\x92\x0f\xe7\xfa\xd5\x21\x00\x80\x09\x5c\x9a\x93\x6a\x03\ \xb4\x30\x4b\xe3\xa4\x13\x00\x8c\xdf\x9e\xb5\x0f\x48\xa8\xaf\x34\ \x9b\xe6\x57\xd5\x11\x00\x80\x89\x7d\x31\xb7\xac\x1c\xbe\x7e\x7b\ \xf0\xd3\xab\x03\x00\x00\x53\xb0\x77\xee\x55\x39\x7c\xf5\x2c\xcd\ \xce\xf9\x56\x71\x02\x00\x60\x5a\x0a\x37\x09\x57\x6f\x0f\x7e\x47\ \x76\x29\x4e\x00\x00\x4c\xcb\xcf\xf2\x99\xaa\xa1\x6b\x67\x69\x6e\ \xdd\xca\x73\x21\x00\x80\xa9\xd8\x32\xbf\xa8\x19\xb8\x76\x96\xe6\ \xb8\x6c\x5b\x3a\x3e\x00\x30\x5d\x17\xe7\x13\x35\x03\x57\xce\xd2\ \xdc\x2e\xa7\x14\x8e\x0e\x00\xcc\xc2\xd6\xf9\x69\xc5\xb0\x95\xb3\ \x34\x1f\xf3\x54\x27\x00\xe8\xce\xe5\x39\xa1\x62\xd8\xba\x59\x9a\ \xdb\xd6\x6d\x20\x02\x00\x66\x68\xab\xfc\x6c\xf8\x41\xeb\x66\x69\ \xde\x9e\x1d\xcb\xc6\x06\x00\x66\xe7\xfc\x7c\x7a\xf8\x41\xab\x66\ \x69\x76\xcf\x37\x8a\x46\x06\x00\x66\x6d\x45\x2e\x1e\x7a\xc8\xaa\ \xbb\x07\x3f\xa3\x68\x5c\x00\x60\xf6\x0e\x19\x7e\xc8\x9a\x59\x9a\ \xad\xf3\x93\x92\x71\x01\x80\x61\x2c\xcd\xe5\xc3\x0e\x58\x33\x4b\ \x73\x44\xc9\xa8\x00\xc0\x50\xf6\x1e\x7a\xc0\x8a\xed\xc1\xeb\x39\ \xeb\x04\x00\x9d\xdb\x22\xef\x1c\x76\xc0\x8a\x85\xa7\xdb\xe4\xb4\ \x82\x51\x01\x80\x21\x0d\xfc\x68\x84\x8a\x85\xa7\xbf\x2b\x18\x13\ \x00\x18\xd6\xc0\x5b\x84\x87\x9f\xa5\xd9\x34\xbf\x1a\x7c\x4c\x00\ \x60\x68\xe7\x67\x9b\x21\x87\x1b\x7e\x96\x66\xbf\xc1\x47\x04\x00\ \x86\xb7\x75\x76\x18\x72\xb8\xe1\x2b\xcd\x53\x07\x1f\x11\x00\xa8\ \x30\xe8\xd2\xd3\xd0\x0b\x4f\x9b\x0f\xbb\x55\x08\x00\x28\xf3\xeb\ \x6c\x3a\xdc\x60\x43\xcf\xd2\x1c\x30\xf0\x78\x00\x40\x95\x4d\x72\ \x83\xe1\x06\x1b\xba\xd2\x3c\x7c\xe0\xf1\x00\x80\x3a\x77\x1b\x6e\ \xa8\x61\x17\x9e\x96\xe7\xd2\x41\xc7\x03\x00\x2a\xfd\x6f\x6e\x33\ \xd4\x50\xc3\xce\xd2\xec\x31\xe8\x68\x00\x40\xad\x7d\xb2\xf1\x50\ \x43\x0d\x5b\x69\xee\x33\xe8\x68\x00\x40\xb5\xbd\x86\x1a\x68\xd8\ \x67\x3c\xbd\x23\x9b\x0c\x3a\x1e\x00\x50\xeb\x67\xf9\xc8\x30\x03\ \x0d\xb9\x97\x66\xe3\xfc\x7a\xc0\xd1\x00\x80\x7a\x3f\xcd\xd6\xc3\ \x0c\x34\xe4\xc2\xd3\x6e\x03\x8e\x05\x00\xb4\x60\xab\xa1\x56\x68\ \x86\xac\x34\xfb\x0f\x38\x16\x00\xd0\x86\xdd\x87\x19\x66\xc8\x4a\ \x73\xc4\x80\x63\x01\x00\x6d\xb8\xcb\x30\xc3\x0c\xb7\x97\x66\xbd\ \xfc\x6e\xb0\xb1\x00\x80\x56\x7c\x2c\x77\x1d\x62\x98\xe1\x2a\xcd\ \x56\x39\x7f\xb0\xb1\x00\x80\x76\x0c\xd2\x36\x86\x5b\x78\xda\x79\ \xb0\x91\x00\x80\xb9\x33\x5c\xa5\xd9\xbb\xfa\x52\x01\x80\x7e\x0d\ \x57\x69\x3c\x83\x1b\x00\x98\x99\xe1\xf6\xd2\x7c\x3f\xdb\x57\x5f\ \x2c\x00\x50\x60\x90\xb6\x31\x54\xa5\x71\xde\x09\x00\xe6\x55\x57\ \xdb\x83\x57\x0c\x34\x0e\x00\x30\x97\x86\xaa\x34\x5b\x56\x5f\x28\ \x00\xd0\xb3\xa1\x2a\x8d\x7d\x34\x00\xc0\x0c\x0d\x55\x69\x56\x55\ \x5f\x28\x00\xd0\xb3\xa1\x2a\xcd\xf5\xaa\x2f\x14\x00\xe8\x99\x85\ \x27\x00\xa0\x03\x43\x55\x9a\x1d\xab\x2f\x14\x00\xe8\xd9\x50\x95\ \x66\xa7\xea\x0b\x05\x00\x7a\xe6\x10\x37\x00\xd0\x81\xa1\x2a\xcd\ \x26\xd5\x17\x0a\x00\xf4\x4c\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\ \x18\xea\xb1\x95\x97\x65\x59\xf5\xa5\x02\x00\x25\xba\x7a\x12\xf7\ \x15\x03\x8d\x03\x00\xb4\xa6\xab\x27\x71\x03\x00\xcc\x90\x4a\x03\ \x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\ \x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\ \x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\ \x00\x00\x1d\xf0\x7c\xec\xe9\xf0\x79\x04\x60\x12\xdb\xe5\xdc\xea\ \x08\x63\xe7\x47\xf1\xb4\xfc\xae\x3a\x00\x00\xcc\x33\x0b\x4f\x00\ \x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\ \x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\ \x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\ \x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\ \x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\ \x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\ \x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\ \x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\ \x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\ \xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\ \x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\ \x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\ \xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\ \x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\ \x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\ \x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\ \xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\ \x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\ \xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\ \x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\ \x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\ \x00\x3a\xa0\xd2\x00\x00\x1d\x58\x56\x1d\x00\x80\xa6\xac\x97\x15\ \x59\x99\xad\x72\xbd\x6c\x97\x2d\xb3\x55\x36\xcf\x06\xd9\x20\xbf\ \xcb\xc5\xb9\x38\xe7\xe7\xa7\xf9\x69\x7e\x98\x9f\xe4\x67\xf9\x55\ \x2e\xab\x8e\x0a\x7f\x4c\xa5\x01\x20\xd9\x38\x37\xcc\x2d\x73\xfb\ \xdc\x33\xbb\x2e\xe2\x77\x7d\x30\x1f\xcf\xe7\x72\x46\x7e\x92\xdf\ \x55\x5f\x00\x2c\x19\x68\x9c\x2b\xaa\x2f\x74\xc6\x96\xf9\x76\x06\ \x46\x69\xcb\xdc\x2a\x07\xe5\x31\x59\x31\xe1\xeb\x9c\x90\xb7\xe4\ \xe4\x7c\x3b\xbf\xad\xbe\xa0\xd1\xda\x21\xe7\x56\x47\x98\xa1\x41\ \xda\x86\x4a\x33\x1d\x2a\x0d\x30\x2e\x4b\xb2\x5b\x0e\xcd\x5f\x67\ \xd5\x94\x5f\xf7\xad\x79\x43\x3e\x95\x5f\x57\x5f\xde\x08\xa9\x34\ \xe3\x18\x24\x2a\x0d\x40\x3b\x76\xc9\x91\xf9\xc7\x99\x8e\x70\x42\ \x5e\x98\x93\x72\x51\xf5\x85\x8e\x8a\x4a\x33\x8e\x41\xa2\xd2\x00\ \xb4\x60\xd3\x1c\x9c\x97\x65\xcb\x81\x46\x7b\x4d\x5e\x9c\x33\xab\ \x2f\x79\x34\x54\x9a\x89\x39\xc4\x0d\x30\x1f\x6e\x98\x97\xe7\x57\ \x39\x66\xb0\x42\x93\x3c\x3a\x5f\xcb\xf7\x72\x9f\x2c\xaf\xbe\x74\ \xe6\x83\x4a\x03\xd0\xbf\x5b\xe4\xa3\xf9\x76\x1e\x5b\x30\xf2\xf5\ \xf3\xfe\x5c\x9a\xbf\x98\x78\xfb\x31\xac\x95\x4a\x03\xd0\xb7\xbd\ \xf2\xc9\x7c\x29\x07\x96\x66\x78\x55\x7e\x93\xc7\x64\xc3\xea\x4f\ \x05\x7d\x53\x69\x00\xfa\xb5\x73\xde\x97\x2f\xe6\x8e\xd5\x31\x92\ \x24\xaf\xcc\x45\x39\xcc\x4f\x1d\x66\xc7\x17\x17\x40\x9f\x36\xc9\ \x51\xf9\x56\x0e\xae\x8e\x71\x35\x6f\xcf\x4f\xb2\x4f\x75\x08\x7a\ \xa5\xd2\x00\xf4\xe8\x3e\xb9\x20\x7f\x5f\x1d\x62\x35\x56\xe6\xb3\ \x39\x26\x2b\xab\x63\xd0\x23\x95\x06\xa0\x37\xdb\xe5\xf8\xbc\xbf\ \x3a\xc4\x1a\x3c\x38\x3f\xcd\x21\xd5\x21\xe8\x8f\x4a\x03\xd0\x97\ \x43\xf3\x83\xdc\xbd\x3a\xc4\x5a\xbd\x3b\xef\x1b\xf0\x38\x39\x73\ \x41\xa5\x01\xe8\xc7\x26\x79\x7b\xde\x55\x1d\x62\x81\x0e\xce\xcf\ \x72\x97\xea\x10\xf4\x44\xa5\x01\xe8\xc5\xcd\x72\x41\x0e\xab\x0e\ \xb1\x28\x1f\xcb\x33\xfc\x1c\x62\x5a\x7c\x29\x01\xf4\xe1\xf0\x7c\ \xa5\x3a\xc2\x3a\xf8\xe7\x9c\x9c\x2d\xaa\x43\xd0\x07\x95\x06\x60\ \xfc\xd6\xcb\x0b\x72\x6c\x75\x88\x75\x74\x87\xfc\x3c\x37\xae\x0e\ \x41\x0f\x54\x1a\x80\xb1\x5b\x91\xff\xce\xd3\xaa\x43\x4c\xe4\xcc\ \xec\x57\x1d\x81\xf1\x53\x69\x00\xc6\x6d\x65\xce\xcc\xbd\xab\x43\ \x4c\xec\x13\x39\xbc\x3a\x02\x63\xb7\xac\x3a\x00\x00\x13\xd8\x2e\ \xe7\x66\x69\x75\x88\xa9\x38\x36\x9b\xe5\x35\xd5\x21\x18\x33\xb3\ \x34\x00\xe3\xb5\x63\x7e\xd0\x49\xa1\x49\x92\xa3\xf3\x94\xea\x08\ \x8c\x99\x4a\x03\x30\x56\xd7\xcf\x77\xab\x23\x4c\xd9\x8b\xf2\xc4\ \xea\x08\x8c\x97\x4a\x03\x30\x4e\xd7\xcb\xf7\xaa\x23\xcc\xc0\xbf\ \xe5\xb1\xd5\x11\x18\x2b\x95\x06\x60\x8c\x36\xcb\x59\xd5\x11\x66\ \xe4\xe5\x79\x40\x75\x04\xc6\x49\xa5\x01\x18\x9f\xf5\xf3\xe9\x6c\ \x5a\x1d\x62\x66\xde\x96\xbb\x56\x47\x60\x8c\x54\x1a\x80\xf1\xf9\ \xaf\xdc\xb4\x3a\xc2\x4c\x9d\x90\x3d\xaa\x23\x30\x3e\x2a\x0d\xc0\ \xd8\xfc\x6d\x1e\x5c\x1d\x61\xe6\xbe\x96\x95\xd5\x11\x18\x1b\x95\ \x06\x60\x5c\xee\x9e\xe7\x57\x47\x18\xc4\x71\x1d\x1d\x4f\x67\x10\ \x2a\x0d\xc0\x98\xec\x94\xe3\xab\x23\x0c\x64\xdf\x3c\xa7\x3a\x02\ \xe3\xa2\xd2\x00\x8c\xc7\xf2\x9c\x5c\x1d\x61\x40\xcf\xc8\x81\xd5\ \x11\x18\x13\x95\x06\x60\x3c\x9e\x9b\x1d\xab\x23\x0c\xea\xa3\xb9\ \x5e\x75\x04\xc6\x43\xa5\x01\x18\x8b\xdb\xe5\xef\xaa\x23\x0c\xee\ \x2d\xd5\x01\x18\x0f\x95\x06\x60\x1c\x36\xce\x29\xd5\x11\x0a\x1c\ \x98\x23\xaa\x23\x30\x16\x2a\x0d\xc0\x38\x3c\xb7\x3a\x40\x91\xb7\ \x5a\x7c\x62\x61\x54\x1a\x80\x31\xd8\x2b\x4f\xae\x8e\x50\xe6\x15\ \xd5\x01\x18\x07\x95\x06\xa0\x7d\xeb\xe5\xc3\xd5\x11\x0a\xdd\x3f\ \xfb\x55\x47\x60\x0c\x54\x1a\x80\xf6\x3d\x20\xab\xaa\x23\x94\xfa\ \x68\x96\x55\x47\xa0\x7d\x2a\x0d\x40\xeb\x36\xc9\x5b\xab\x23\x14\ \x5b\x9e\x23\xab\x23\xd0\x3e\x95\x06\xa0\x75\x8f\xad\x0e\xd0\x80\ \xff\xcc\xc6\xd5\x11\x68\x9d\x4a\x03\xd0\xb6\x95\x79\x41\x75\x84\ \x26\xfc\x65\x75\x00\x5a\xa7\xd2\x00\xb4\xed\x89\xd5\x01\x1a\xf1\ \xc2\x6c\x56\x1d\x81\xb6\xa9\x34\x00\x2d\xdb\x3c\xcf\xaa\x8e\xd0\ \x8c\x47\x56\x07\xa0\x6d\x2a\x0d\x40\xcb\xfe\xbc\x3a\x40\x43\x5e\ \x9c\x8d\xaa\x23\xd0\x32\x95\x06\xa0\x5d\x1b\xe4\x5f\xaa\x23\x34\ \xe5\xbe\xd5\x01\x68\x99\x4a\x03\xd0\xae\x7b\x57\x07\x68\xcc\xeb\ \xb3\xa4\x3a\x02\xed\x52\x69\x00\xda\xf5\x1f\xd5\x01\x1a\xb3\x7e\ \xf6\xa9\x8e\x40\xbb\x54\x1a\x80\x56\xdd\x28\xdb\x57\x47\x68\xce\ \xdf\x54\x07\xa0\x5d\x2a\x0d\x40\xab\xdc\x62\xef\xda\x0e\xcb\x16\ \xd5\x11\x68\x95\x4a\x03\xd0\xa6\xe5\xee\x48\xb3\x5a\xf7\xa8\x0e\ \x40\xab\x54\x1a\x80\x36\xd9\x35\xb2\x7a\xee\xd3\xc3\x75\x50\x69\ \x00\xda\xe4\x8e\x34\xab\x77\xd3\x6c\x5d\x1d\x81\x36\xa9\x34\x00\ \x2d\x5a\x96\x87\x55\x47\x68\xd6\x01\xd5\x01\x68\x93\x4a\x03\xd0\ \xa2\x9b\x56\x07\x68\xd8\xe3\xab\x03\xd0\x26\x95\x06\xa0\x45\x7f\ \x52\x1d\xa0\x61\x77\xce\x86\xd5\x11\x68\x91\x4a\x03\xd0\x22\xa7\ \x9d\xd6\x64\xcf\xea\x00\xb4\x48\xa5\x01\x68\xcf\xe6\xd9\xa6\x3a\ \x42\xd3\x0e\xaa\x0e\x40\x8b\x54\x1a\x80\xf6\xdc\xa4\x3a\x40\xe3\ \x1e\x5a\x1d\x80\x16\xa9\x34\x00\xed\x39\xb0\x3a\x40\xe3\x76\xb7\ \x9b\x86\x6b\x53\x69\x00\xda\x73\x58\x75\x80\xe6\xed\x58\x1d\x80\ \xf6\xa8\x34\x00\xad\x59\x9a\xbd\xaa\x23\x34\xef\xe6\xd5\x01\x68\ \x8f\x4a\x03\xd0\x1a\x77\xc7\x5d\xbb\xbb\x54\x07\xa0\x3d\x2a\x0d\ \x40\x6b\x6e\x50\x1d\x60\x04\x3c\xbc\x92\x6b\x51\x69\x00\x5a\xe3\ \xae\x2b\x6b\x77\x63\x3f\xbf\xb8\x26\x5f\x12\x00\xad\xf1\x0c\xee\ \x85\xd8\xa4\x3a\x00\xad\x51\x69\x00\x5a\x73\xcb\xea\x00\xa3\xb0\ \x65\x75\x00\x5a\xa3\xd2\x00\xb4\xe6\x76\xd5\x01\x46\x61\x55\x75\ \x00\x5a\xa3\xd2\x00\xb4\x65\xbd\x2c\xad\x8e\x30\x0a\x3b\x54\x07\ \xa0\x35\x2a\x0d\x40\x5b\xd6\xaf\x0e\x30\x12\xdb\x56\x07\xa0\x35\ \x2a\x0d\x40\x5b\x56\x54\x07\x18\x89\xeb\x57\x07\xa0\x35\x2a\x0d\ \x40\x5b\x3c\xbd\x68\x61\xae\x57\x1d\x80\xd6\xa8\x34\x00\x6d\xd9\ \xa0\x3a\xc0\x48\x38\xf1\xc4\x35\xa8\x34\x00\x6d\x31\x4b\xb3\x30\ \x2a\x0d\xd7\xa0\xd2\x00\xb4\xc5\xfb\xf2\xc2\xa8\x7e\x5c\x83\x6f\ \x1d\x80\xb6\x2c\xa9\x0e\x30\x12\x8e\xba\x73\x0d\x2a\x0d\x00\x63\ \x74\x71\x75\x00\x5a\xa3\xd2\x00\xb4\xe5\xd2\xea\x00\x23\xa1\xd2\ \x70\x0d\x2a\x0d\x40\x5b\x54\x9a\x85\xf9\x55\x75\x00\x5a\xa3\xd2\ \x00\xb4\xc5\xec\xc3\xc2\xfc\xa8\x3a\x00\xad\x51\x69\x00\xda\x72\ \x51\x75\x80\x91\x38\xbf\x3a\x00\xad\x51\x69\x00\xda\x72\x49\x75\ \x80\x91\xf8\x5e\x75\x00\x5a\xa3\xd2\x00\xb4\xc5\x5e\x9a\x85\xf9\ \x7e\x75\x00\x5a\xa3\xd2\x00\xb4\xe5\x0a\x4b\x2a\x0b\x62\x2f\x0d\ \xd7\xa0\xd2\x00\xb4\xe6\xf3\xd5\x01\x46\xe1\xbc\xea\x00\xb4\x46\ \xa5\x01\x68\xcd\x67\xaa\x03\x8c\xc2\x2f\xaa\x03\xd0\x1a\x95\x06\ \xa0\x35\x5f\xae\x0e\x30\x0a\x0e\xbb\x73\x0d\x2a\x0d\x40\x6b\xbe\ \x5e\x1d\x60\x04\x4e\xca\x15\xd5\x11\x68\x8d\x4a\x03\xd0\x9a\x73\ \xab\x03\x8c\xc0\x89\xd5\x01\x68\x8f\x4a\x03\xd0\x1a\xb7\xfa\x5f\ \xbb\x4f\x57\x07\xa0\x3d\x2a\x0d\x40\x6b\xae\xc8\x07\xab\x23\x34\ \xef\xf4\xea\x00\xb4\x47\xa5\x01\x68\xcf\x7b\xab\x03\x34\xcf\x5d\ \x69\xb8\x16\x95\x06\xa0\x3d\xa7\x54\x07\x68\xdc\x09\xf9\x5d\x75\ \x04\xda\xa3\xd2\x00\xb4\xe7\x9b\xd5\x01\x1a\xf7\x96\xea\x00\xb4\ \x48\xa5\x01\x68\xcf\x25\x39\xad\x3a\x42\xd3\x4e\xaa\x0e\x40\x8b\ \x54\x1a\x80\x16\x1d\x5d\x1d\xa0\x69\xdf\xae\x0e\x40\x8b\x54\x1a\ \x80\x16\x1d\x5f\x1d\xa0\x61\x6f\xb0\x93\x86\xd5\x51\x69\x00\x5a\ \xf4\xbd\xea\x00\x0d\x7b\x5d\x75\x00\xda\xa4\xd2\x00\xb4\xe8\x8a\ \x3c\xb3\x3a\x42\xb3\xec\x33\x62\xb5\x54\x1a\x80\x36\x1d\x5b\x1d\ \xa0\x51\xef\xcd\x45\xd5\x11\x68\x93\x4a\x03\xd0\xa6\xb3\xf3\xdb\ \xea\x08\x4d\xfa\xd7\xea\x00\xb4\x4a\xa5\x01\x68\xd3\x15\x79\x7c\ \x75\x84\x26\x9d\x5a\x1d\x80\x56\xa9\x34\x00\xad\x7a\x57\x75\x80\ \x06\x1d\x95\xcb\xaa\x23\xd0\x2a\x95\x06\xa0\x55\x3f\xc9\x7f\x57\ \x47\x68\x8e\xfb\xf5\x70\x9d\x54\x1a\x80\x76\x3d\xa7\x3a\x40\x63\ \x4e\xcb\x77\xab\x23\xd0\x2e\x95\x06\xa0\x5d\x9f\xcf\x2f\xaa\x23\ \x34\xe5\xaf\xab\x03\xd0\x32\x95\x06\xa0\x5d\x57\xe4\xc8\xea\x08\ \x0d\xf9\xb5\x27\x94\xb3\x26\x2a\x0d\x40\xcb\x8e\xab\x0e\xd0\x90\ \x07\xe6\x8a\xea\x08\xb4\x4c\xa5\x01\x68\xd9\x6f\x73\x44\x75\x84\ \x66\xa8\x77\xac\x91\x4a\x03\xd0\x36\x47\xb9\xaf\x74\x3f\x0f\xab\ \x64\xcd\x54\x1a\x80\xb6\xfd\x36\xf7\xad\x8e\xd0\x80\x1f\x3b\xd0\ \xce\xda\xa8\x34\x00\xad\xfb\xef\x9c\x5b\x1d\xa1\xdc\xa1\xb9\xbc\ \x3a\x02\xad\x53\x69\x00\x5a\x77\x45\xee\x5f\x1d\xa1\xd8\x87\xf3\ \xa9\xea\x08\xb4\x4f\xa5\x01\x68\xdf\x67\xf3\xa6\xea\x08\xa5\xfe\ \xbc\x3a\x00\x63\xa0\xd2\x00\x8c\xc1\x93\xab\x03\x14\x7a\x9a\x7b\ \x06\xb3\x10\x2a\x0d\xc0\x18\x9c\x9f\x07\x55\x47\x28\xf2\x9b\xfc\ \x5b\x75\x04\xc6\x41\xa5\x01\x18\x87\xb7\xe6\x93\xd5\x11\x4a\xdc\ \xc9\xb3\xb7\x59\x18\x95\x06\x60\x2c\x0e\xaf\x0e\x50\xe0\x1f\xf2\ \x85\xea\x08\x8c\x85\x4a\x03\x30\x16\x3f\x98\xbb\x3b\xd4\x7c\x2f\ \x2f\xa8\x8e\xc0\x78\xa8\x34\x00\xe3\xf1\xfe\xbc\xb6\x3a\xc2\xa0\ \xee\x98\xdf\x56\x47\x60\x3c\x54\x1a\x80\x31\xf9\xab\xfc\xb4\x3a\ \xc2\x60\xfe\xc4\x49\x27\x16\x43\xa5\x01\x18\x93\x4b\xb2\x4f\x75\ \x84\x81\x3c\x37\xff\x53\x1d\x81\x71\x59\x32\xd0\x38\xbd\x3f\x10\ \x7e\x99\xc7\xa9\x75\x66\x49\xd6\xcf\x86\xd9\x30\x1b\x64\x59\x92\ \xdf\xe5\xd2\x5c\x9c\x8b\x73\x89\x5b\xb2\xd3\x84\xfd\xf2\x89\xea\ \x08\x33\x77\x42\xee\x31\x67\xdf\x6f\x3b\x74\xfd\xd8\x8b\x41\xda\ \x86\x4a\x33\x1d\x2a\x4d\x1f\x36\xcb\x6e\xd9\x27\x77\xca\xfe\xb9\ \xc1\x75\xfc\x8a\x9f\xe7\xe4\x7c\x2a\x9f\xcd\xd7\xf3\x23\x7f\xe6\ \x14\x7a\x54\x5e\x53\x1d\x61\xa6\x7e\x95\xeb\xe7\xd7\xd5\x21\x06\ \xa6\xd2\x8c\x63\x90\xa8\x34\xb4\x6d\x79\x6e\x96\x43\xf3\x84\x6c\ \xb6\xa8\xdf\x75\x42\x8e\xc9\xc7\xf3\xdd\x39\xfb\x9b\x24\xad\x78\ \x6e\x9e\x59\x1d\x61\x86\xb6\xcf\x0f\xab\x23\x0c\x4e\xa5\x19\x8d\ \x2b\x3a\xff\x58\x5a\xfd\x09\x66\x1d\x2d\xc9\x4d\xf3\xb2\x09\xff\ \xf4\x5f\x94\x5b\xfa\x0a\x60\x70\x4b\xf2\xfa\xf2\x77\xbe\x59\x7d\ \xec\x51\xfd\xc9\x2d\xb1\x43\xf9\xe7\x7d\x96\x1f\x83\x30\x4b\x33\ \x1d\x66\x69\xc6\x68\x45\xee\x9b\xa3\xb3\xe9\x94\x5e\xed\xa8\xfc\ \x57\xbe\x55\x7d\x49\xcc\x95\xa5\x79\x7b\x0e\xad\x0e\x31\x03\xb7\ \x9a\xd3\x9b\xeb\x99\xa5\x19\x8d\xea\x7e\x38\xeb\x0f\x7f\x47\x1f\ \x9b\x4d\xf3\xd7\x33\xf8\x3a\x38\x2b\xf7\xc9\x06\xd5\x97\xc6\x1c\ \x59\x96\x0f\x97\xbf\xfb\x4d\xfb\xe3\xb6\xd5\x9f\xd4\x32\x66\x69\ \x26\xe6\x10\x37\xf3\x67\x45\x9e\x90\x5f\xe5\xc5\x33\x78\xe5\x5d\ \xf3\xfe\x5c\x9c\xa7\x64\xcb\xea\x4b\x64\x4e\xfc\x36\x07\xe5\x3d\ \xd5\x21\xa6\x6a\xdf\x9c\x5a\x1d\x81\xf1\x52\x69\x98\x2f\x4b\x72\ \x48\x7e\x93\x97\xce\x74\x8c\x17\xe5\x67\x79\x41\xae\x57\x7d\xa9\ \xcc\x85\xdf\xe6\xb0\xbc\xa9\x3a\xc4\xd4\xec\x9d\xcf\x56\x47\x60\ \xcc\x54\x1a\xe6\xc9\x4d\x72\x46\xde\x3d\xc8\x48\x4f\xcb\x8f\xf2\ \xc2\x6c\x5d\x7d\xc1\xcc\x81\xdf\xe5\xcf\x72\x54\x75\x88\xa9\xd8\ \x35\x5f\xaa\x8e\xc0\xb8\xa9\x34\xcc\x8b\x0d\xf2\xdc\x9c\x31\xe8\ \x49\x8a\xa7\xe6\x27\xf9\xfb\x6c\x52\x7d\xe1\x74\xef\x8a\xfc\x43\ \x1e\x53\x1d\x62\x42\xdf\xca\x36\xb6\xd7\x33\x29\x27\x9e\xa6\xc3\ \x89\xa7\xd6\xdd\x2a\x9f\x2b\x1b\xfb\x21\x39\xd6\xd7\x07\x33\x77\ \xd7\x9c\x50\x1d\x61\x9d\xbd\x3d\x47\xe6\x92\xea\x10\xe5\x9c\x78\ \x9a\x98\x59\x1a\xfa\xb7\x34\xcf\x28\x2c\x34\xc9\x31\x39\x3f\xb7\ \xa9\xfe\x24\xd0\xbd\x13\xb3\x6b\x2e\xac\x0e\xb1\x4e\x1e\x9f\xc3\ \x15\x1a\xa6\x41\xa5\xa1\x77\x3b\xe4\x8c\xfc\x73\x71\x86\x2d\x72\ \x5a\xde\x62\x67\x0d\x33\xf6\xad\x6c\x33\xc2\xad\xc2\x77\xcc\x7f\ \x54\x47\xa0\x17\x2a\x0d\x7d\xbb\x57\xce\xcd\x8d\xaa\x43\x24\x49\ \x1e\x98\x9f\xe4\xc1\x7d\xdd\x6e\x8a\xe6\x5c\x94\x23\x73\x58\x75\ \x88\x45\x38\x3e\x5b\xe5\xd3\xd5\x21\xe8\x87\x4a\x43\xbf\xd6\xcb\ \xb3\x73\x5c\x75\x88\xab\x39\x26\x9f\xcb\x0d\xab\x43\xd0\xb9\x77\ \x66\xa7\x7c\xb1\x3a\xc4\x82\x3c\x24\xf7\xcc\xcf\xaa\x43\xd0\x13\ \x95\x86\x5e\x6d\x9e\x8f\xe7\x1f\xab\x43\x5c\xcb\x2d\xf3\xed\x3c\ \xc6\x5c\x0d\x33\xf5\xdd\xdc\x2a\x8f\xa8\x0e\xb1\x16\x27\x67\xc7\ \xbc\xb9\x3a\x04\xbd\x71\xe2\x69\x3a\x9c\x78\x6a\xcd\xee\xf9\x46\ \x75\x84\x35\xf8\x52\x0e\xce\x77\xab\x43\xd0\xb9\x6d\xf3\xca\xdc\ \xaf\x3a\xc4\x75\xb8\x6f\xde\x5f\x1d\xa1\x41\x4e\x3c\x4d\xcc\x2c\ \x0d\x3d\xba\x4b\xd3\x85\x26\xd9\x2b\xe7\xe4\x88\xea\x10\x74\xee\ \xbc\x1c\x92\xfd\xf2\xeb\xea\x18\xd7\xf2\xdc\x6c\xaa\xd0\x30\x1b\ \x2a\x0d\xfd\x79\x68\x3e\x56\x1d\x61\x01\xde\x9a\x77\x67\xf3\xea\ \x10\x74\xee\xe4\x6c\x91\x07\x55\x87\xf8\x23\x6f\xcd\x0d\xf2\x8f\ \x0d\xd6\x2c\x58\x94\xea\x67\x80\xce\xfa\xc3\x93\xb8\xdb\xf1\xcc\ \xf2\xaf\x86\xc5\x7c\xec\x5b\xfd\xe9\x62\x0e\x6c\x90\x47\x96\x7f\ \xa5\x5f\x91\xf7\x37\x72\xf6\xb0\x5d\x9e\xc4\x3d\x1a\xd5\x9f\xcc\ \x59\x7f\xa8\x34\x6d\x58\x9a\x57\x97\x7f\x2d\x2c\xf6\xe3\x29\x36\ \x0b\x33\x80\x0d\xf2\xc0\xc2\xaf\xf2\x37\x65\x97\xea\x4f\xc0\x08\ \xa8\x34\xa3\x51\xfd\xc9\x9c\xf5\x87\x4a\xd3\x82\x0d\xf2\x81\xf2\ \xaf\x84\x75\xf9\xf8\x58\xb6\xac\xfe\xd4\x31\x17\x96\x66\xff\x7c\ \x66\xf0\xaf\xef\xbf\xcd\x36\xd5\x17\x3e\x12\x2a\xcd\xc4\x9c\x78\ \x9a\x0e\x27\x9e\xea\x6d\x9c\x93\x72\xab\xea\x10\xeb\x6c\x9f\xd2\ \x47\x36\x30\x4f\x76\xcc\x43\x07\x7a\x72\xf7\x27\xf2\xec\x7c\x2a\ \x97\x55\x5f\xf0\x68\x38\xf1\x34\x1a\xd5\xfd\x70\xd6\x1f\x66\x69\ \xaa\x6d\x9e\x6f\x97\x7f\x15\x4c\xf6\xf1\xb0\xea\x4f\x21\x73\x64\ \x69\xf6\xce\x4b\x67\xf8\xd5\xfc\xa5\x1c\x61\xee\x71\xd1\xcc\xd2\ \x4c\xcc\x2c\xcd\x74\x98\xa5\xa9\xb5\x55\xce\xee\xe0\xf4\xd0\x6b\ \xf3\xb8\x5c\x5a\x1d\x82\x39\xb2\x34\x37\xca\x7d\xf3\xc4\x6c\x3b\ \xc5\xd7\x3c\x36\xc7\xe4\x93\xf9\x65\xf5\xa5\x8d\x92\x59\x9a\x71\ \x0c\x12\x95\x86\x59\xda\x26\xe7\x66\x83\xea\x10\x53\xf1\xad\xdc\ \x21\x3f\xaa\x0e\xc1\xdc\xd9\x2c\xb7\xc8\x01\x39\x3c\x37\x9d\xe0\ \x35\xde\x92\xf7\xe6\xb3\x39\xd7\x3b\xe1\x04\x54\x9a\x71\x0c\x12\ \x95\x86\xd9\xd9\x26\x3f\xea\x6a\x95\xd6\xae\x1a\xaa\x2c\xcf\xd6\ \xd9\x3d\x37\xcf\x3e\xd9\x6f\x01\x27\x94\x2e\xcc\x69\xf9\x64\xbe\ \x90\xaf\xe7\xbb\xee\x34\x33\x15\x2a\xcd\x38\x06\x89\x4a\xc3\xac\ \x6c\x93\xf3\xba\xbb\x61\xe4\x61\x79\x67\x75\x04\xe6\xde\x92\x2c\ \xcf\x46\xd9\x28\x9b\x64\xe3\x6c\x90\x0d\xb3\x24\x97\xe7\x8a\xfc\ \x26\x17\xe5\xc2\xfc\x3a\xbf\xc9\x25\xde\xf3\xa6\x4e\xa5\x19\xc7\ \x20\x51\x69\x98\x8d\xad\xf2\x83\xac\x5f\x1d\x62\x06\x9e\x99\xa3\ \xba\xff\x9e\x01\xae\x4e\xa5\x99\x58\x6f\x7f\xbf\x65\x9e\x6c\x91\ \xb3\xba\x2c\x34\xc9\x3f\xe5\xed\x9d\xec\x0e\x02\x18\x8c\x4a\xc3\ \x58\x6d\x92\xaf\x64\x8b\xea\x10\x33\xf3\xa7\xf9\x4a\xb6\xaa\x0e\ \x01\x30\x26\x2a\x0d\xe3\xb4\x61\x3e\x95\x1d\xaa\x43\xcc\xd4\xee\ \x39\x3f\xbb\x55\x87\x00\x18\x0f\x95\x86\x31\x5a\x96\xe3\x72\x8b\ \xea\x10\x03\xf8\xa6\xc7\x5a\x02\x2c\x94\x4a\xc3\xf8\xac\x97\x63\ \x72\x97\xea\x10\x03\x39\x35\x07\x55\x47\x00\x18\x07\x95\x86\xf1\ \xf9\xb7\x1c\x5e\x1d\x61\x40\x1f\xc8\xa3\xaa\x23\x00\x8c\x81\x4a\ \xc3\xd8\x3c\x3d\x8f\xaf\x8e\x30\xb0\xd7\xe4\xef\xab\x23\x00\xb4\ \x4f\xa5\x61\x5c\x1e\x91\xe7\x55\x47\x28\x70\x54\x5e\xe6\x7b\x15\ \x60\xcd\xbc\x4d\x32\x26\xf7\xce\x7f\x56\x47\x28\xf2\x57\x79\x5b\ \x96\x57\x87\x00\x68\x99\x4a\xc3\x78\xec\x93\xff\xa9\x8e\x50\xe8\ \x4f\xf3\x91\xac\xa8\x0e\x01\xd0\x2e\x95\x86\xb1\xd8\x39\x9f\xad\ \x8e\x50\x6c\xff\x7c\x2e\x9b\x55\x87\x00\x68\x95\x4a\xc3\x38\xac\ \xcc\xb7\xaa\x23\x34\xe0\x26\x39\x3b\x2b\xab\x43\x00\xb4\x49\xa5\ \x61\x0c\x36\xc8\xa7\xab\x23\x34\x62\xeb\xfc\x28\xab\xaa\x43\x00\ \xb4\x48\xa5\xa1\x7d\x4b\xf2\x86\xdc\xb8\x3a\x44\x33\x96\xe5\xbc\ \xce\x1f\x05\x01\xb0\x4e\x54\x1a\xda\xf7\x0f\x73\x75\x6b\xbd\x85\ \x38\x37\x37\xac\x8e\x00\xd0\x1a\x95\x86\xd6\x1d\x91\xe7\x56\x47\ \x68\xd0\xb7\xb3\x6b\x75\x04\x80\xb6\xa8\x34\xb4\x6d\xdf\xbc\xb5\ \x3a\x42\xa3\xce\xca\x8d\xaa\x23\x00\xb4\x44\xa5\xa1\x65\x3b\xe6\ \xd4\xea\x08\x0d\xfb\x7a\xf6\xa8\x8e\x00\xd0\x0e\x95\x86\x76\x6d\ \x9c\x33\xaa\x23\x34\xee\x6b\x4a\x0d\xc0\x55\x54\x1a\x5a\xb5\x24\ \x6f\xcb\x26\xd5\x21\x9a\xa7\xd4\x00\xfc\x9e\x4a\x43\xab\x9e\x99\ \x83\xaa\x23\x8c\xc2\xd7\x1c\x70\x07\x48\x54\x1a\x5a\x75\xbf\x3c\ \xa7\x3a\xc2\x68\x9c\x99\xdd\xab\x23\x00\xd4\x53\x69\x68\xd1\x4d\ \xf3\x9e\xea\x08\xa3\xf2\x8d\xec\x52\x1d\x01\xa0\x9a\x4a\x43\x7b\ \x56\xe6\xab\xd5\x11\x46\xe7\x6c\x37\xdf\x03\xe6\x9d\x4a\x43\x6b\ \x96\xe6\x83\xd5\x11\x46\xe9\xdb\xb9\x7e\x75\x04\x80\x4a\x2a\x0d\ \xad\xf9\xe7\xdc\xb6\x3a\xc2\x48\x7d\xcf\x03\x2d\x81\x79\xa6\xd2\ \xd0\x96\x43\xf3\x77\xd5\x11\x46\xec\xfb\xd9\xaa\x3a\x02\x40\x15\ \x95\x86\x96\xdc\x24\xef\xaa\x8e\x30\x6a\x4b\xf3\xcd\x6c\x5e\x1d\ \x02\xa0\x86\x4a\x43\x3b\x36\x75\xb7\xe0\x89\x6d\x99\xcf\x65\xa3\ \xea\x10\x00\x15\x54\x1a\x5a\xb1\x24\x6f\xaf\x8e\xd0\x85\x5d\xf3\ \xb1\x6c\x50\x1d\x02\x60\x78\x2a\x0d\xad\x78\x72\xee\x55\x1d\xa1\ \x13\xfb\xe6\xbd\x59\x56\x1d\x02\x60\x68\x2a\x0d\x6d\xd8\x2f\x2f\ \xaa\x8e\xd0\x91\x7b\xe5\x0d\x59\x52\x1d\x02\x60\x58\x2a\x0d\x2d\ \xd8\x2e\x9f\xa8\x8e\xd0\x99\x07\xe5\x25\xd5\x11\x00\x86\xa5\xd2\ \x50\x6f\x59\x3e\x5e\x1d\xa1\x43\x4f\xcc\x3f\x54\x47\x00\x18\x92\ \x4a\x43\xbd\xa3\x72\xa3\xea\x08\x5d\xfa\xa7\x3c\xb6\x3a\x02\xc0\ \x70\x54\x1a\xaa\x1d\x94\xa7\x55\x47\xe8\xd6\xcb\x73\x78\x75\x04\ \x80\xa1\xa8\x34\xd4\xda\x29\x1f\xa8\x8e\xd0\xb5\x63\x73\xf7\xea\ \x08\x00\xc3\x50\x69\xa8\xb4\x7e\x3e\x53\x1d\xa1\x7b\xc7\xe7\x36\ \xd5\x11\x00\x86\xa0\xd2\x50\xe9\x5f\xb2\x6d\x75\x84\x39\x70\x9a\ \xbd\x4a\xc0\x3c\x50\x69\xa8\x73\x70\x9e\x58\x1d\x61\x4e\x7c\x3d\ \xdb\x57\x47\x00\x98\x35\x95\x86\x2a\x3b\xe5\x7d\xd5\x11\xe6\xc8\ \xd9\x1e\x67\x09\xf4\x4e\xa5\xa1\xc6\xf2\x7c\xaa\x3a\xc2\x5c\xd9\ \x30\x27\x7b\xf2\x13\xd0\x37\x95\x86\x1a\x47\xe5\xfa\xd5\x11\xe6\ \xcc\xcd\x73\xac\xef\x77\xa0\x67\xde\xe2\xa8\x70\xcf\xfc\x4d\x75\ \x84\x39\x74\xbf\xbc\xb8\x3a\x02\xc0\xec\xa8\x34\x0c\x6f\xbb\x7c\ \xa8\x3a\xc2\x9c\x7a\x62\x9e\x54\x1d\x01\x60\x56\x54\x1a\x86\xb6\ \x5e\x8e\xab\x8e\x30\xc7\x5e\x92\x3f\xad\x8e\x00\x30\x1b\x2a\x0d\ \x43\x7b\x5a\xf6\xaa\x8e\x30\xd7\xde\x91\x3b\x55\x47\x00\x98\x85\ \x25\x03\x8d\x73\x45\xf5\x85\xce\xd8\xb2\xfc\xae\x3a\xc2\x48\xdc\ \x2e\xa7\x54\x47\x20\x37\xc9\x99\xd5\x11\x80\x6b\xd8\x21\xe7\x56\ \x47\x98\xa1\x41\xda\x86\x59\x1a\x86\xb4\xb9\x42\xd3\x84\xaf\x65\ \x55\x75\x04\x80\x69\x53\x69\x18\xd2\xeb\xab\x03\xf0\x7b\x5f\xce\ \x46\xd5\x11\x00\xa6\x4b\xa5\x61\x38\x0f\xcd\xfd\xaa\x23\xf0\x7b\ \xd7\xcb\xfb\xb2\xb4\x3a\x04\xc0\x34\xa9\x34\x0c\x65\xb7\xbc\xb1\ \x3a\x02\x7f\xe4\x6e\x79\x49\x75\x04\x80\x69\x52\x69\x18\xc6\xf2\ \x7c\xba\x3a\x02\xd7\xf0\xf8\x3c\xa1\x3a\x02\xc0\xf4\xa8\x34\x0c\ \xe3\x39\xd9\xa6\x3a\x02\xd7\xf2\xd2\xdc\xa7\x3a\x02\xc0\xb4\x38\ \xc4\x3d\x1d\x0e\x71\xaf\xd9\x9d\x73\x52\x75\x04\xae\xc3\xad\xf2\ \x85\xea\x08\x40\x1c\xe2\x9e\x02\xb3\x34\xcc\xde\x96\x0a\x4d\xc3\ \x3e\x9f\x1d\xaa\x23\x00\x4c\x83\x4a\xc3\xec\xbd\xbe\x3a\x00\x6b\ \x74\x66\x36\xa9\x8e\x00\x30\x39\x95\x86\x59\x7b\x60\x0e\xae\x8e\ \xc0\x1a\x6d\x9c\x0f\x38\xd0\x0d\x8c\x9f\x4a\xc3\x6c\xed\x94\xb7\ \x54\x47\x60\xad\xf6\xcf\x8b\xaa\x23\x00\x4c\x4a\xa5\x61\x96\x96\ \xe6\x23\xd5\x11\x58\x90\x27\xe5\xd1\xd5\x11\x00\x26\xa3\xd2\x30\ \x4b\x4f\xcd\xee\xd5\x11\x58\xa0\xa3\x73\xd7\xea\x08\x00\x93\x70\ \x88\x7b\x3a\x1c\xe2\x5e\x9d\xbd\x1d\x0f\x1e\x99\x3d\xf2\xf5\xea\ \x08\x30\xb7\x1c\xe2\x9e\x98\x59\x1a\x66\x65\x85\x42\x33\x3a\x67\ \x66\x65\x75\x04\x80\x75\xa5\xd2\x30\x2b\xcf\xaf\x0e\xc0\x3a\xf8\ \x58\x96\x57\x47\x00\x58\x37\x2a\x0d\xb3\x71\x80\xe7\x07\x8d\xd2\ \x2d\xf2\x1f\xd5\x11\x00\xd6\x8d\x4a\xc3\x2c\x6c\x91\x13\xab\x23\ \xb0\x8e\xfe\x3c\x8f\xad\x8e\x00\xb0\x2e\x54\x1a\x66\xe1\xe8\xea\ \x00\x4c\xe0\xe5\xb9\x5b\x75\x04\x80\xc5\x53\x69\x98\xbe\xfb\xe5\ \xb0\xea\x08\x4c\xe4\x23\xb9\x51\x75\x04\x80\xc5\x72\x88\x7b\x3a\ \x1c\xe2\xfe\x83\x6d\xf3\xc3\xea\x08\x4c\xc1\x16\xf9\x65\x75\x04\ \x98\x2b\x0e\x71\x4f\xcc\x2c\x0d\xd3\xf6\xb6\xea\x00\x4c\xc5\x71\ \x9e\xfb\x04\x8c\x8b\x4a\xc3\x74\x1d\x99\xfd\xaa\x23\x30\x15\xb7\ \xcf\xbf\x54\x47\x00\x58\x0c\x0b\x4f\xd3\x61\xe1\xe9\x4a\x37\xc8\ \x39\xd5\x11\x98\xa2\x23\xf3\xa6\xea\x08\x30\x37\x2c\x3c\x4d\xcc\ \x2c\x0d\xd3\xb3\x5e\xfe\xbb\x3a\x02\x53\xf5\xc6\xdc\xb6\x3a\x02\ \xc0\x42\xa9\x34\x4c\xcf\x5f\xe4\x16\xd5\x11\x98\xb2\xcf\x64\xfb\ \xea\x08\x00\x0b\xa3\xd2\x30\x2d\xbb\xe5\x15\xd5\x11\x98\x81\xff\ \xcd\x86\xd5\x11\x00\x16\x42\xa5\x61\x3a\x96\xe6\x23\xd5\x11\x98\ \x89\xed\xf2\xda\xea\x08\x00\x0b\xa1\xd2\x30\x1d\x4f\xc8\x0d\xab\ \x23\x30\x23\x0f\xce\xe3\xab\x23\x00\xac\x9d\x13\x4f\xd3\x31\xef\ \x27\x9e\xf6\xc8\xd7\xaa\x23\x30\x53\x07\x7a\x6a\x17\xcc\x98\x13\ \x4f\x13\x33\x4b\xc3\xe4\x96\xe5\xe3\xd5\x11\x98\xb1\x13\xcc\xc2\ \x01\xad\x53\x69\x98\xdc\x93\xb3\xaa\x3a\x02\x33\x77\x46\x36\xaa\ \x8e\x00\xb0\x26\x2a\x0d\x93\xba\x49\x5e\x50\x1d\x81\x01\xac\xc8\ \x31\x83\x2d\x54\x03\xac\x03\x95\x86\xc9\x2c\xcb\x27\xaa\x23\x30\ \x90\x43\xf2\xe4\xea\x08\x00\xd7\x4d\xa5\x61\x32\x4f\xc9\x36\xd5\ \x11\x18\xcc\x8b\x72\xb7\xea\x08\x00\xd7\xc5\x89\xa7\xe9\x98\xd7\ \x13\x4f\x7b\xe6\xf4\xea\x08\x0c\x6c\x97\x7c\xbb\x3a\x02\x74\xc9\ \x89\xa7\x89\x99\xa5\x61\xdd\x39\xe9\x34\x8f\xbe\x6a\x9b\x30\xd0\ \x26\x95\x86\x75\xf7\x24\x8b\x4e\x73\x68\xa3\xbc\xbe\x3a\x02\xc0\ \xea\xa8\x34\xac\xab\x1b\xe7\x85\xd5\x11\x28\x71\x98\xbb\x09\x03\ \x2d\x52\x69\x58\x37\x4b\x73\x42\x75\x04\xca\xfc\x7b\xee\x5c\x1d\ \x01\xe0\x9a\x54\x1a\xd6\xcd\xe3\x73\xfd\xea\x08\x14\x3a\xc9\x9f\ \x3f\xd0\x1a\x27\x9e\xa6\x63\xde\x4e\x3c\xed\x96\x6f\x56\x47\xa0\ \xd8\x0f\xb2\x4b\x2e\xa9\x0e\x01\x1d\x71\xe2\x69\x62\x66\x69\x58\ \xbc\xf5\xf2\xc1\xea\x08\x94\xdb\x3e\xff\x51\x1d\x01\xe0\x8f\xa9\ \x34\x2c\xde\xa3\xb3\x7b\x75\x04\x1a\xf0\xa8\x1c\x59\x1d\x01\xe0\ \x0f\x2c\x3c\x4d\xc7\x3c\x2d\x3c\xed\x94\xef\x54\x47\xa0\x19\xb7\ \xcc\x17\xab\x23\x40\x27\x2c\x3c\x4d\xcc\x2c\x0d\x8b\xb3\x24\xef\ \xae\x8e\x40\x43\xbe\x90\x95\xd5\x11\x00\xae\xa4\xd2\xb0\x38\x0f\ \xcd\xad\xaa\x23\xd0\x94\x0f\x78\x17\x01\xda\xe0\xcd\x88\xc5\xd8\ \x2e\x6f\xa8\x8e\x40\x63\x6e\x9f\x67\x55\x47\x00\x48\x54\x1a\x16\ \xe7\x8d\xd5\x01\x68\xd0\x3f\xe6\x5e\xd5\x11\x00\x54\x1a\x16\xe3\ \x90\xdc\xad\x3a\x02\x4d\x3a\x2e\x37\xac\x8e\x00\xe0\xc4\xd3\x74\ \xcc\xc3\x89\xa7\x95\xf9\x69\x75\x04\x9a\xf5\xf3\x6c\x9f\x8b\xab\ \x43\xc0\xa8\x39\xf1\x34\x31\xb3\x34\x2c\xd4\x2b\xab\x03\xd0\xb0\ \x2d\xf3\x8a\xea\x08\xc0\xbc\x53\x69\x58\x98\x03\xf3\x80\xea\x08\ \x34\xed\xe1\x6e\xbc\x07\xd4\xb2\xf0\x34\x1d\xbd\x2f\x3c\x6d\x92\ \x0b\xaa\x23\x30\x02\x7b\xe7\x4b\xd5\x11\x60\xb4\x2c\x3c\x4d\xcc\ \x2c\x0d\x0b\xf1\xbc\xea\x00\x8c\xc2\x17\xb3\x79\x75\x04\x60\x7e\ \xa9\x34\xac\xdd\x6d\xf2\xf8\xea\x08\x8c\xc4\x3b\x06\x9b\xf9\x05\ \xb8\x06\x95\x86\xb5\x59\x3f\xa7\x56\x47\x60\x34\xee\x9e\x27\x55\ \x47\x00\xe6\x95\x4a\xc3\xda\x3c\xcd\xdf\xbb\x59\x84\x17\xe7\x8e\ \xd5\x11\x80\xf9\x64\x7b\xf0\x74\xf4\xbb\x3d\xf8\xc6\x39\xb3\x3a\ \x02\xa3\xb3\x2a\x3f\xae\x8e\x00\xa3\x63\x7b\xf0\xc4\x96\x55\x5f\ \x25\x4d\x5b\x2f\x1f\xac\x8e\xc0\x08\x1d\x9f\x5b\x77\x5b\xf2\xc7\ \x6d\xfd\x6c\x91\x95\xd9\x36\x3b\x66\x55\x36\xcd\xa6\xd9\x2c\x17\ \xe7\x17\xf9\x65\xbe\x99\x73\xf2\xc3\x9c\x9f\xdf\x56\x07\x84\x49\ \xa8\x34\xac\xc9\x23\xb2\x4b\x75\x04\x46\x68\xaf\x3c\x3b\xcf\xac\ \x0e\xc1\xff\xd9\x38\xbb\xe5\x8e\xb9\x73\xee\x9d\xcd\xd6\xf2\x2b\ \x4f\xcf\xb1\x39\x2e\x5f\xcb\x6f\xaa\x23\xc3\xba\xb0\xf0\x34\x1d\ \x7d\x2e\x3c\x6d\x9f\xef\x57\x47\x60\xb4\xee\x99\xe3\xab\x23\xcc\ \xbd\x8d\xb2\x57\xfe\x34\x0f\xcf\x96\x8b\xfe\x9d\xa7\xe5\xc5\x39\ \x21\xe7\x57\x5f\xc0\x9c\xb1\xf0\x34\x8e\x41\xa2\xd2\x8c\xd3\x09\ \xb9\x6b\x75\x04\x46\x6c\xc7\x7c\xaf\x3a\xc2\xdc\x5a\x95\x83\xf2\ \xd8\xdc\x7a\xc2\x57\xf9\x72\x9e\x95\x8f\xe6\xc2\xea\x8b\x99\x1b\ \x2a\xcd\x38\x06\x89\x4a\x33\x46\x07\xe7\x7d\xd5\x11\x18\xb5\xef\ \x66\xb7\x5c\x56\x1d\x62\xee\xac\xca\xbd\xf3\xac\xa9\x3e\x19\xfd\ \xe8\xbc\x28\xdf\xac\xbe\xac\xb9\xa0\xd2\x4c\xcc\x21\x6e\x56\x6f\ \x73\x85\x86\x09\xdd\x20\x2f\xa8\x8e\x30\x57\x36\xc8\xdd\xf3\xc9\ \x9c\x97\xff\x9a\x6a\xa1\x49\xfe\x3c\xdf\xc8\x57\x72\xa0\x9f\x16\ \xb4\xcf\x17\x29\xab\xf7\xc2\xea\x00\x74\xe0\xaf\x73\x9f\xea\x08\ \x73\x62\x87\xfc\xbf\x5c\x9c\xe3\x67\x76\x4f\xa0\x9b\xe5\xa3\xb9\ \x38\x87\x64\x79\xf5\x85\xc2\x9a\x58\x78\x9a\x8e\xde\x16\x9e\x6e\ \x97\x53\xaa\x23\xd0\x89\x9d\xf3\x9d\xea\x08\x5d\x5b\x92\xdb\xe4\ \xa8\xdc\x6d\xb0\xf1\x0e\xcb\x7b\x3a\x7b\xb7\x6b\x87\x85\xa7\x71\ \x0c\x12\x95\x66\x5c\xd6\xcf\x25\xd5\x11\xe8\xc6\x4f\xb2\x43\x2e\ \xad\x0e\xd1\xa9\xa5\xb9\x57\xde\xb2\xd6\x83\xd9\xd3\xf7\x27\xf9\ \x60\xf7\xef\xe9\x15\x54\x9a\x89\x59\x78\xe2\xda\xfe\xa6\x3a\x00\ \x1d\xd9\x26\x2f\xae\x8e\xd0\xa5\x0d\xf2\xc0\xfc\x36\x1f\x28\x28\ \x34\xc9\x07\x72\x4e\xf6\xa9\xfe\x04\xc0\xb5\x99\xa5\x99\x8e\x9e\ \x66\x69\x76\xcf\x37\xaa\x23\xd0\x99\x43\xf3\x9e\xea\x08\x5d\x59\ \x9e\xc3\xf2\xe6\xea\x10\xf9\x40\x1e\x97\xef\x56\x87\xe8\x8a\x59\ \x9a\x89\x99\xa5\xe1\xea\x96\xf8\xe1\xc3\xd4\xbd\xdb\x5d\xa8\xa7\ \x66\x69\x0e\xc9\xa5\x0d\x14\x9a\xe4\x4f\x72\x4e\x9e\x9e\x0d\xab\ \x63\xc0\x1f\xa8\x34\x5c\xdd\x83\x72\xd3\xea\x08\x74\xe8\xb4\x6c\ \x50\x1d\xa1\x0b\xfb\xe7\x82\xbc\xbb\x3a\xc4\x1f\x79\x5e\x2e\xca\ \xdd\xab\x43\xc0\x55\x54\x1a\xfe\xd8\xd6\x39\xa6\x3a\x02\x5d\xda\ \x2a\xff\x5a\x1d\x61\xf4\x6e\x92\xcf\xe4\xe3\x59\x51\x1d\xe3\x5a\ \x8e\xcf\xfb\xb2\xaa\x3a\x04\x24\x2a\x0d\x57\xf7\xf2\xea\x00\x74\ \xeb\x71\xb9\x5f\x75\x84\x11\x5b\x99\xd7\xe4\x8c\xdc\xb6\x3a\xc6\ \x75\x38\x38\xe7\xe5\xc8\xc1\x76\x66\xc2\x75\xb2\x3d\x78\x3a\xfa\ \xd8\x1e\x7c\x97\x7c\xac\x3a\x02\x5d\x73\x8f\x9a\x75\xb1\x34\x7f\ \x96\xff\xac\x0e\xb1\x00\x9f\xcf\x21\xb6\x0b\x4f\xc4\xf6\xe0\x71\ \x0c\x12\x95\x66\x0c\x36\xcc\x45\xd5\x11\xe8\xdc\x8f\x72\x03\xf7\ \xa8\x59\xa4\xdb\xe4\xf8\x6c\x51\x1d\x62\xc1\x1e\x91\xd7\x77\xff\ \x6e\x3f\x3b\x2a\xcd\xc4\x2c\x3c\x71\x95\xa7\x57\x07\xa0\x7b\xab\ \x3c\xf5\x69\x51\x36\xcb\x2b\x73\xda\x88\x0a\x4d\xf2\x5f\x39\x35\ \xdb\x55\x87\x60\x7e\x99\xa5\x99\x8e\xf1\xcf\xd2\xdc\x38\x67\x56\ \x47\x60\x2e\xfc\x49\xfe\xa7\x3a\xc2\x48\xdc\x27\xef\xaf\x8e\xb0\ \x8e\x0e\xc9\x7b\xab\x23\x8c\x92\x59\x9a\x89\x99\xa5\x21\x49\x96\ \x8c\xf6\xcd\x93\xb1\xf9\x40\x76\xac\x8e\x30\x02\xab\x72\xfc\x88\ \xbf\x27\xdf\x93\xb7\x64\xd3\xea\x10\xcc\x23\x95\x86\x24\x79\x70\ \x6e\x54\x1d\x81\xb9\xf1\xf1\x2c\xab\x8e\xd0\xb8\x07\xe4\xbc\x91\ \xdf\xed\xe5\x81\xf9\x55\x6e\x55\x1d\x82\xf9\xa3\xd2\x90\x6c\x9d\ \x37\x55\x47\x60\x8e\xec\x92\xe7\x54\x47\x68\xd8\xb6\x39\x31\x6f\ \xab\x0e\x31\x15\x9f\xcb\x93\x1c\xec\x66\x58\x2a\x0d\xc9\x7f\x54\ \x07\x60\xce\xfc\x7d\x0e\xac\x8e\xd0\xa8\xfb\xe6\x87\x39\xa0\x3a\ \xc4\xd4\xbc\x24\x9f\xcc\x56\xd5\x21\x98\x27\xb6\x07\x4f\xc7\x98\ \xb7\x07\xdf\x39\x27\x55\x47\x60\x0e\x6d\x9b\x1f\x55\x47\x68\xcc\ \x66\x79\x55\x1e\x58\x1d\x62\x06\x6e\x97\x53\xab\x23\x8c\x84\xed\ \xc1\x13\x33\x4b\x33\xef\x36\x50\x68\x28\xf1\x41\xef\x3e\x57\x73\ \x87\xfc\xb2\xcb\x42\x93\x7c\x26\x4f\xb0\x00\xc5\x30\xbc\xa9\xcc\ \xbb\x27\x57\x07\x60\x4e\xdd\x2a\x7f\x53\x1d\xa1\x19\x4b\xf3\xcc\ \x7c\xaa\x3a\xc4\x0c\xbd\x34\xff\xed\x04\x14\x43\xb0\xf0\x34\x1d\ \x63\x5d\x78\xda\x25\x67\x57\x47\x60\x8e\xdd\x21\xa7\x54\x47\x68\ \xc0\x0e\xf9\x68\x6e\x5c\x1d\x62\x00\x7b\xe4\xeb\xd5\x11\x1a\x67\ \xe1\x69\x62\x66\x69\xe6\x5b\x1f\x27\x2b\x18\xab\x4f\x67\xcb\xea\ \x08\xe5\x0e\xca\xb9\x73\x51\x68\x92\x33\x73\xdf\xea\x08\xf4\x4e\ \xa5\x99\x67\x87\x66\x9f\xea\x08\xcc\xb9\xb7\x54\x07\x28\xb5\x3c\ \x2f\xcc\x07\xaa\x43\x0c\xe8\xbd\x79\x8e\x9f\x39\xcc\x92\x85\xa7\ \xe9\x18\xe3\xc2\xd3\xe6\xf9\x45\x75\x04\xc8\x5f\xe4\xe8\xea\x08\ \x45\x76\xc8\x49\xd9\xb9\x3a\xc4\xe0\x4e\xc8\x21\xb9\xa0\x3a\x44\ \xa3\x2c\x3c\x4d\x4c\x63\x9e\x5f\xcf\xab\x0e\x00\x49\x5e\x9d\x9b\ \x55\x47\x28\x71\x60\xce\x9d\xc3\x42\x93\x1c\x98\x5f\x65\xb7\xea\ \x10\xf4\x4a\xa5\x99\x57\x7b\xe7\xb1\xd5\x11\x20\x49\xf2\x95\x6c\ \x54\x1d\x61\x60\x4b\xf2\xb7\xf9\x68\x75\x88\x42\xdf\xec\xe8\x76\ \x82\x34\x45\xa5\x99\x4f\x4b\xf3\x91\xea\x08\xf0\x7f\xe6\xeb\xfe\ \xd5\x9b\xe5\x43\x79\x7e\x75\x88\x62\x27\xe6\xd1\xd5\x11\xe8\x91\ \x4a\x33\x9f\x1e\x91\xad\xab\x23\xc0\xff\x79\x78\xee\x5f\x1d\x61\ \x30\x37\xce\x2f\x73\x8f\xea\x10\x0d\x38\x3a\xff\x9e\xa5\xd5\x21\ \xe8\x8d\xed\xc1\xd3\x31\xae\xed\xc1\xab\x72\x5e\x75\x04\xb8\x86\ \x1b\xe6\x9c\xea\x08\x03\xb8\x77\xfe\xa7\x3a\x42\x43\x3e\x99\x7b\ \xdb\x2a\xfc\x47\x6c\x0f\x9e\x98\x59\x9a\x79\xf4\xca\xea\x00\x70\ \x2d\x1f\xcf\xb2\xea\x08\x33\xb6\x24\x7f\xab\xd0\x5c\xcd\x9d\xf2\ \xa3\xec\x50\x1d\x82\x9e\xa8\x34\xf3\x67\xbf\x1c\x52\x1d\x01\xae\ \xe5\x86\x79\x56\x75\x84\x99\x5a\x91\x77\xcd\xfd\x0e\x9a\x6b\x5b\ \x91\x73\x73\xcb\xea\x10\xf4\xc3\xc2\xd3\x74\x8c\x67\xe1\x69\x83\ \x5c\x5c\x1d\x01\xae\xc3\xfe\xdd\x3e\x44\x75\xbb\x7c\x3e\xdb\x56\ \x87\x68\xd6\xbd\x73\x5c\x75\x84\x26\x58\x78\x9a\x98\x59\x9a\x79\ \xf3\xc4\xea\x00\x70\x9d\x3e\x91\x95\xd5\x11\x66\x62\xef\xfc\x40\ \xa1\x59\x83\x0f\xe6\x51\xd5\x11\xe8\x83\x4a\x33\x5f\x76\xca\x0b\ \xaa\x23\xc0\x1a\x1c\x3b\xd8\xcc\xf1\x70\x0e\xce\x17\xaa\x23\x34\ \xef\x35\x79\x6e\x87\x7f\xf2\x0c\x4e\xa5\x99\x2f\x6f\xac\x0e\x00\ \x6b\x74\xf7\xee\xfe\xbe\xfe\xc4\xbc\xaf\x3a\xc2\x28\x3c\x33\xc7\ \x64\x79\x75\x08\xc6\xce\x5e\x9a\xe9\x18\xc7\x5e\x1a\x07\x48\x19\ \x83\x9b\xe6\x8c\xea\x08\x53\xb2\x34\xff\xee\x2e\xdd\x8b\xf0\xe9\ \xdc\x23\x17\x56\x87\x28\x64\x2f\xcd\x38\x06\x89\x4a\xd3\x82\x8d\ \xe6\xfa\xcd\x82\xf1\xb8\x2c\x9b\x75\xb1\x89\x7d\xe3\xfc\x4f\xf6\ \xaf\x0e\x31\x32\xe7\xe5\xe6\x39\xbf\x3a\x44\x19\x95\x66\x62\x16\ \x9e\xe6\xc7\xdf\x57\x07\x80\x05\x59\x9e\x17\x55\x47\x98\x82\xeb\ \xe5\x5b\x0a\xcd\xa2\x6d\x9b\x9f\xe4\x86\xd5\x21\x18\x2f\xb3\x34\ \xd3\xd1\xfe\x2c\xcd\xee\xf9\x46\x75\x04\x58\xb0\xb1\x1f\xeb\xf5\ \xfd\x36\x89\x9b\xe7\xab\xd5\x11\x4a\x98\xa5\x99\x98\x59\x9a\xf9\ \xb0\x24\x6f\xaf\x8e\x00\x8b\xf0\xc1\x51\x1f\x7a\xbe\xad\x42\x33\ \x91\xaf\xe4\xf6\xd5\x11\x18\x27\x95\x66\x3e\xdc\x2f\x7b\x57\x47\ \x80\x45\x79\xdf\x68\x0f\xf5\xde\x2b\x9f\xa9\x8e\x30\x7a\x9f\xce\ \x3d\xab\x23\x30\x46\x2a\xcd\x3c\xd8\x34\xef\xae\x8e\x00\x8b\xb4\ \x6f\x1e\x5f\x1d\x61\x9d\x3c\x64\xe4\x4b\x66\xad\xf8\x50\x0e\xaf\ \x8e\xc0\xf8\xa8\x34\xf3\xe0\x39\xd5\x01\x60\x1d\xbc\x34\xb7\xa8\ \x8e\xb0\x68\x4f\xce\x9b\xaa\x23\x74\xe3\xd8\xee\xee\x51\xc4\xcc\ \xd9\x1e\x3c\x1d\x2d\x6f\x0f\xde\x33\xa7\x57\x47\x80\x75\xb4\x71\ \x7e\x53\x1d\x61\xc1\x96\xe4\xa8\x3c\xbd\x3a\x44\x67\x9e\x9a\x7f\ \xad\x8e\x30\x20\xdb\x83\x27\x66\x96\xa6\x77\x4b\xf2\xde\xea\x08\ \xb0\xce\x5e\x52\x1d\x60\xc1\xd6\xcb\xab\x15\x9a\xa9\x7b\x51\x9e\ \x5b\x1d\x81\x31\x51\x69\x7a\xf7\x80\xec\x5e\x1d\x01\xd6\xd9\x9f\ \xe7\xa0\xea\x08\x0b\xb2\x3c\xef\xca\xa3\xab\x43\x74\xe9\x99\x79\ \xc9\x68\x37\x8a\x33\x38\x0b\x4f\xd3\xd1\xea\xc2\xd3\xe6\xf9\x45\ \x75\x04\x98\xd0\x76\x39\xaf\x3a\xc2\x5a\xac\xc8\xf1\xb9\x53\x75\ \x88\x8e\xbd\x36\x7f\x91\xcb\xab\x43\x0c\xc0\xc2\xd3\xc4\xcc\xd2\ \xf4\xed\x9f\xab\x03\xc0\xc4\x5a\x3f\xce\xbd\x49\x4e\x53\x68\x66\ \xea\x51\x79\x73\x96\x55\x87\x60\x0c\x54\x9a\x9e\xdd\x3c\x7f\x55\ \x1d\x01\x26\xb6\x6f\x1e\x57\x1d\x61\x0d\xb6\xcc\xd7\x72\xb3\xea\ \x10\xdd\x3b\x22\xef\xf5\x9c\x6e\xd6\xce\xc2\xd3\x74\xb4\xb8\xf0\ \xb4\x5e\xce\xca\xce\xd5\x21\x60\x2a\x5a\xbd\x45\xfe\xd6\xf9\x4e\ \x36\xae\x0e\x31\x27\x4e\xc8\x41\xb9\xa4\x3a\xc4\x4c\x59\x78\x9a\ \x98\x59\x9a\x7e\x1d\xae\xd0\xd0\x8d\x2f\x66\xc3\xea\x08\xab\xb1\ \x2a\x3f\x51\x68\x06\x73\x60\x4e\x68\xf2\xab\x80\x86\xa8\x34\xbd\ \xda\x22\x6f\xa9\x8e\x00\x53\xb3\x34\xff\x52\x1d\xe1\x5a\xae\xdf\ \xfc\xb6\xe5\xde\xdc\x31\x27\x67\xa3\xea\x10\xb4\x4c\xa5\xe9\xd5\ \x3f\x55\x07\x80\xa9\x7a\x7c\xee\x56\x1d\xe1\x6a\x6e\x90\xef\x55\ \x47\x98\x43\xfb\xe4\x54\xf3\x62\x5c\x37\x7b\x69\xa6\xa3\xb5\xbd\ \x34\x37\xcb\x57\xaa\x23\xc0\xd4\x6d\x93\xf3\xab\x23\xfc\xde\x4e\ \xf9\x4e\x75\x84\xb9\x75\x46\xf6\xcd\x85\xd5\x21\x66\xc2\x5e\x9a\ \x89\x99\xa5\xe9\x91\x3b\x06\xd3\xa7\x56\x16\x53\x15\x9a\x4a\x7b\ \xe6\x7f\xb3\x49\x75\x08\xda\xa4\xd2\xf4\xe8\x01\xd9\xb5\x3a\x02\ \xcc\xc0\xdd\xf3\xb0\xea\x08\x49\x76\x56\x68\x8a\xed\x91\xcf\x2b\ \x35\xac\x8e\x85\xa7\xe9\x68\x69\xe1\xc9\x1d\x83\xe9\xd9\x6e\x39\ \xbb\x74\x7c\x33\x34\x6d\x38\x2b\xb7\xcc\xaf\xab\x43\x4c\x99\x85\ \xa7\x89\x99\xa5\xe9\x8f\xc7\xbc\xd1\xb3\x93\x4a\xef\x23\x7b\x03\ \x85\xa6\x11\xbb\xe5\x7f\x6d\x14\xe6\x9a\x54\x9a\xde\xec\x99\x27\ \x54\x47\x80\x19\xda\x3e\xcf\x28\x1b\x7b\xc7\x9c\x53\x7d\xf9\xfc\ \x9f\x1b\xe7\x34\xa5\x86\xab\xb3\xf0\x34\x1d\xad\x2c\x3c\x2d\xc9\ \xe9\xb9\x49\x75\x08\x98\xb1\xdb\xe6\xb4\x82\x51\xb7\xcf\xf7\xab\ \x2f\x9c\x6b\xf8\x4a\x6e\x97\xdf\x54\x87\x98\x1a\x0b\x4f\x13\x33\ \x4b\xd3\x97\x43\x14\x1a\xe6\xc0\xa9\x05\x9b\x43\xaf\xa7\xd0\x34\ \xe8\xe6\x39\xd9\x1d\x85\xf9\x03\x95\xa6\x27\x9b\xe4\x5d\xd5\x11\ \x60\x10\x2f\x1b\x78\xbc\xad\x14\x9a\x46\xdd\x2a\x27\x64\x83\xea\ \x10\xb4\x42\xa5\xe9\xc9\x3f\x54\x07\x80\x81\x3c\x2c\x07\x0d\x38\ \xda\xe6\x39\xbb\x74\x53\x32\x6b\x72\x87\x1c\x97\xf5\xab\x43\xd0\ \x06\x7b\x69\xa6\xa3\x85\xbd\x34\xbb\xe7\x1b\xd5\x11\x60\x40\xdb\ \xe6\x47\x83\x8c\xb3\x49\xbe\x9a\x9d\xaa\x2f\x96\x35\xfa\x50\xee\ \x93\xdf\x56\x87\x98\x98\xbd\x34\x13\x33\x4b\xd3\x8f\xb7\x56\x07\ \x80\x41\xbd\x7d\x90\x37\xc9\x0d\xf3\x29\x85\xa6\x79\xf7\xca\xdb\ \xb2\xb4\x3a\x04\xf5\x54\x9a\x5e\x1c\x94\x5b\x57\x47\x80\x41\xed\ \x97\x47\xcc\x7c\x8c\xe5\xf9\x70\x6e\x51\x7d\xa1\x2c\xc0\xa1\x79\ \xdd\x60\xab\x0e\x34\xcb\xc2\xd3\x74\x54\x2f\x3c\xad\xe8\xe8\x20\ \x23\x2c\xdc\xee\x39\x6b\x86\xaf\xbe\x5e\xde\x99\x43\xaa\x2f\x91\ \x05\x7b\x55\x1e\x3b\xea\x9f\x35\x16\x9e\x26\x66\x96\xa6\x0f\x4f\ \xad\x0e\x00\x25\x3e\x36\xc3\x6d\xbb\x4b\x72\xb4\x42\x33\x2a\x8f\ \xc9\x8b\xaa\x23\x50\x4b\xa5\xe9\xc1\x4e\x1e\x82\xc0\x9c\xda\x21\ \x7f\x3b\xb3\xd7\x7e\x7e\x1e\x59\x7d\x79\x2c\xd2\x93\xf3\xec\xea\ \x08\x54\x52\x69\x7a\xf0\x9f\xd5\x01\xa0\xcc\x3f\xe7\x56\x33\x79\ \xdd\xa7\xe5\x69\xd5\x97\xc6\x3a\xf8\xc7\x3c\xa5\x3a\x02\x75\xec\ \xa5\x99\x8e\xca\xbd\x34\x07\xe4\xc4\xea\xcb\x87\x52\x1b\xe5\xa2\ \x29\xbf\xe2\x23\xf3\xda\xea\x8b\x62\x9d\x3d\x26\xaf\xae\x8e\xb0\ \x4e\xec\xa5\x99\x98\x59\x9a\xb1\x5b\x5f\xa1\x61\xee\xbd\x70\xca\ \xaf\x77\x88\x42\x33\x6a\xaf\xca\x43\xaa\x23\x50\x43\xa5\x19\xbb\ \xc7\x56\x07\x80\x72\x8f\xcb\x5d\xa7\xf8\x6a\xfb\xe7\xdd\xd5\x17\ \xc4\x84\xde\x94\x83\xab\x23\x50\xc1\xc2\xd3\x74\x54\x2d\x3c\x6d\ \x9b\x1f\x56\x5f\x3a\x34\x61\x65\x7e\x3e\x95\xd7\xd9\x3b\x5f\xa8\ \xbe\x14\xa6\xe2\xc0\xd1\xcd\x60\x5b\x78\x9a\x98\x59\x9a\x71\x7b\ \x69\x75\x00\x68\xc4\x74\x96\x8a\x76\x56\x68\xba\x71\x42\x6e\x5b\ \x1d\x81\xa1\xa9\x34\x63\xb6\x6f\x1e\x50\x1d\x01\x1a\x71\x68\x0e\ \x9d\xf8\x35\xb6\xc9\xb7\xaa\x2f\x83\x29\xfa\x4c\x6e\x56\x1d\x81\ \x61\x59\x78\x9a\x8e\x8a\x85\xa7\xa5\xf9\x49\xb6\xac\xbe\x70\x68\ \xc8\xf6\x13\x2d\xc4\x6e\x9c\xb3\xb3\xaa\xfa\x12\x98\xb2\x5d\x47\ \x54\x53\x2d\x3c\x4d\xcc\x2c\xcd\x78\x3d\x44\xa1\x81\xab\x79\xe7\ \x04\x6f\x9b\xcb\x72\x9c\x42\xd3\xa1\xb3\xb3\x5d\x75\x04\x86\xa3\ \xd2\x8c\xd5\x96\x79\x7d\x75\x04\x68\xcc\x1d\x26\x78\x90\xe5\xd1\ \xb9\x73\x75\x7c\x66\xe2\x1c\x7f\xf9\x9b\x1f\x2a\xcd\x58\xfd\x53\ \x75\x00\x68\xd0\x6b\xb3\xcb\x3a\xfd\xbe\x67\xe6\xe1\xd5\xd1\x99\ \x91\xe5\xf9\x42\x36\xaa\x0e\xc1\x30\xec\xa5\x99\x8e\xa1\xf7\xd2\ \xec\x99\xd3\xab\x2f\x19\x9a\xf4\xad\xdc\x68\xd1\xdf\x8d\x47\xe6\ \x0d\xd5\xb1\x99\xa9\x4f\xe5\x80\x5c\x56\x1d\x62\xad\xec\xa5\x99\ \x98\x59\x9a\x31\x5a\x92\xb7\x57\x47\x80\x46\xed\x92\x27\x2d\xf2\ \x77\xdc\x4d\xa1\xe9\xde\x1d\x73\x8c\x9f\x76\xf3\xc0\x1f\xf2\x18\ \xdd\x27\x37\xad\x8e\x00\xcd\x7a\xd1\xa2\xbe\x3f\x6e\x96\x8f\x54\ \x07\x66\x00\x0f\xc8\x4b\xaa\x23\x30\x7b\x16\x9e\xa6\x63\xc8\x85\ \xa7\x8d\x72\x61\xf5\xe5\x42\xd3\x2e\xcc\xca\x5c\xba\xa0\x5f\xb9\ \x5d\x7e\x50\x1d\x96\xc1\x3c\x23\xcf\xab\x8e\xb0\x46\x16\x9e\x26\ \x66\x96\x66\x7c\x9e\x52\x1d\x00\x1a\xb7\x71\x9e\xb9\xc0\x5f\xf7\ \xd5\xea\xa8\x0c\xe8\xa8\x09\x4e\xc4\x31\x0a\x66\x69\xa6\x63\xb8\ \x59\x9a\x1b\xe4\x9c\xea\x8b\x85\x11\xd8\x37\x9f\x5d\xcb\xaf\x58\ \x2f\x1f\xca\xdd\xab\x63\x32\xb0\xfb\xe6\xfd\xd5\x11\xae\x93\x59\ \x9a\x89\x99\xa5\x19\x9b\x57\x55\x07\x80\x51\x38\x2d\x2b\xd6\xf2\ \x2b\x5e\xa8\xd0\xcc\xa1\xf7\xe5\x8e\xd5\x11\x98\x1d\x95\x66\x5c\ \xee\x94\xff\xaf\x3a\x02\x8c\xc4\xf3\xd7\xf8\x7f\x1f\x99\x27\x57\ \x07\xa4\xc4\x27\x1d\xaf\xe8\x97\x85\xa7\xe9\x18\x66\xe1\x69\x59\ \x2e\xcc\xfa\xd5\x97\x0a\xa3\xb1\x7f\x4e\xba\x8e\xff\x73\x40\x4e\ \xac\x0e\x47\xa1\x1b\x34\xb9\xc4\x63\xe1\x69\x62\x66\x69\xc6\xe4\ \xe1\x0a\x0d\x2c\xc2\x27\xb2\xe9\x6a\xff\xfb\xee\x0a\xcd\x9c\xfb\ \xae\x87\x24\xf4\x49\xa5\x19\x8f\x95\x39\xba\x3a\x02\x8c\xcc\x4b\ \x57\xf3\xdf\xb6\xc8\x37\xaa\x63\x51\xee\xb4\x6c\x58\x1d\x81\xe9\ \x53\x69\xc6\xe3\xa8\xea\x00\x30\x3a\x0f\xcf\x3d\xae\xf1\x5f\x96\ \xe5\xc3\xd5\xa1\x68\xc0\x6e\x79\x6f\x96\x56\x87\x60\xda\x54\x9a\ \xb1\xd8\x33\x8f\xa9\x8e\x00\x23\xf4\xe1\x6b\x2c\x31\xbc\x28\xfb\ \x56\x47\xa2\x09\xf7\xcc\xcb\xaa\x23\x30\x6d\x2a\xcd\x38\x2c\xc9\ \xdb\xaa\x23\xc0\x48\xbd\xfa\x8f\xfe\xf9\xcf\xf2\xc4\xea\x38\x34\ \xe3\x2f\xf3\xb7\xd5\x11\x98\x2e\x95\x66\x1c\x0e\xca\xcd\xaa\x23\ \xc0\x48\x1d\x96\xfb\xfc\xfe\x9f\x6e\x9b\xd7\x57\x87\xa1\x29\xcf\ \xcf\x43\xaa\x23\x30\x4d\x0e\x71\x4f\xc7\x6c\x0f\x71\xaf\xc8\x6f\ \xaa\x2f\x10\x46\x6d\x9b\x9c\xef\x79\x4e\xac\xd6\xdd\x72\x42\x75\ \x84\xdf\x73\x88\x7b\x62\x66\x69\xc6\xe0\x09\xd5\x01\x60\xe4\x5e\ \x97\xf5\x73\x4a\x75\x08\x9a\xf4\xd1\xdc\xa2\x3a\x02\xd3\x62\x96\ \x66\x3a\x66\x39\x4b\xb3\x7d\xbe\x5f\x7d\x79\x30\x7a\x47\xe7\xcf\ \xab\x23\xd0\xac\x1d\xf3\xbd\xea\x08\x31\x4b\x33\x05\x66\x69\xda\ \xf7\xef\xd5\x01\xa0\x03\x0a\x0d\xd7\xed\x3b\xd9\xbc\x3a\x02\xd3\ \xa0\xd2\xb4\xee\x36\xb9\x7f\x75\x04\x80\xae\x2d\xcd\x49\xee\xcd\ \xde\x03\x95\xa6\x6d\xeb\xe5\x03\xd5\x11\x00\xba\x77\x8b\xbc\x7e\ \xb0\x8d\x18\xcc\x8c\x4a\xd3\xb6\xc3\x73\xbd\xea\x08\x00\x73\xe0\ \x81\x79\x76\x75\x04\x26\x65\x7b\xf0\x74\xcc\x66\x7b\xf0\xa6\xf9\ \x55\xf5\x85\x01\xcc\x8d\x87\x97\xde\xb9\xc8\xf6\xe0\x89\x99\xa5\ \x69\xd9\xd3\xab\x03\x00\xcc\x91\xd7\xe5\x6e\xd5\x11\x98\x84\x59\ \x9a\xe9\x98\xc5\x2c\xcd\x0d\xf3\xed\xea\xcb\x02\x98\x33\x37\xcf\ \x57\x8b\x46\x36\x4b\x33\x31\xb3\x34\xed\x7a\x4d\x75\x00\x80\xb9\ \xf3\x95\x6c\x57\x1d\x81\x75\xa5\xd2\xb4\xea\xce\x26\x40\x01\x0a\ \x9c\x9e\x8d\xab\x23\xb0\x6e\x54\x9a\x36\x2d\xcb\x47\xaa\x23\x00\ \xcc\xa5\x2d\xf3\xdf\x59\x5a\x1d\x82\x75\xa1\xd2\xb4\xe9\xa1\xd9\ \xa0\x3a\x02\xc0\x9c\x3a\x20\x2f\xae\x8e\xc0\xba\xb0\x3d\x78\x3a\ \xa6\xbb\x3d\x78\x8b\xfc\xbc\xfa\x82\x00\xe6\xda\xe3\xf2\x8a\x81\ \x47\xb4\x3d\x78\x62\x66\x69\x5a\xf4\xac\xea\x00\x00\x73\xee\xe5\ \xb9\x77\x75\x04\x16\xcb\x2c\xcd\x74\x4c\x73\x96\x66\xb7\x7c\xb3\ \xfa\x72\x00\xc8\x5e\xf9\xf2\x80\xa3\x99\xa5\x99\x98\x59\x9a\xf6\ \xbc\xae\x3a\x00\x00\x49\xbe\xe4\x40\xf7\xb8\xa8\x34\xad\x39\x20\ \x77\xaa\x8e\x00\x40\x92\xe4\xcb\xd9\xa8\x3a\x02\x0b\xa7\xd2\xb4\ \x65\x79\x4e\xac\x8e\x00\xc0\xef\x6d\x9d\x77\xf9\x39\x39\x1e\xfe\ \xa8\xda\xf2\xb0\xea\x00\x00\xfc\x91\x7b\xe5\x79\xd5\x11\x58\x28\ \xdb\x83\xa7\x63\x3a\xdb\x83\xb7\xcc\xcf\xaa\x2f\x04\x80\x6b\x78\ \x58\xde\x30\xc0\x28\xb6\x07\x4f\xcc\x2c\x4d\x4b\x9e\x5d\x1d\x00\ \x80\x6b\x79\x7d\xf6\xab\x8e\xc0\x42\x98\xa5\x99\x8e\x69\xcc\xd2\ \xec\x9e\x6f\x54\x5f\x06\x00\xab\xb5\x5b\xce\x9e\xf1\x08\x66\x69\ \x26\x66\x96\xa6\x1d\x0e\x6f\x03\xb4\xea\xac\x6c\x51\x1d\x81\xb5\ \x51\x69\x5a\x71\x40\xee\x58\x1d\x01\x80\xeb\x74\x7c\x96\x55\x47\ \x60\xcd\x54\x9a\x36\x2c\x73\x78\x1b\xa0\x69\xb7\xc9\xbf\x57\x47\ \x60\xcd\x54\x9a\x36\x3c\xac\x3a\x00\x00\x6b\xf1\x97\xf9\xcb\xea\ \x08\xac\x89\xed\xc1\xd3\x31\xd9\xf6\x60\x4f\xde\x06\x18\x87\xbb\ \xe5\x84\x19\xbd\xb2\xed\xc1\x13\x33\x4b\xd3\x02\x4f\xde\x06\x18\ \x87\x8f\xe6\x46\xd5\x11\xb8\x2e\x66\x69\xa6\x63\x92\x59\x9a\x5d\ \x73\x56\x75\x7c\x00\x16\x6c\xe5\x4c\x66\xd6\xcd\xd2\x4c\xcc\x2c\ \x4d\xbd\xd7\x56\x07\x00\x60\x11\x3e\xe2\xec\x53\x9b\x54\x9a\x6a\ \x77\xce\x5d\xaa\x23\x00\xb0\x08\xb7\xce\xbf\x55\x47\x60\x75\x54\ \x9a\x5a\x4b\x73\x7c\x75\x04\x00\x16\xe9\x71\x79\x54\x75\x04\xae\ \x4d\xa5\xa9\xf5\xe0\x6c\x58\x1d\x01\x80\x45\x7b\x8d\xe7\x3e\xb5\ \xc7\xf6\xe0\xe9\x58\xb7\xed\xc1\x9b\xe5\x97\xd5\xc1\x01\x58\x47\ \x3b\xe7\x3b\x53\x7c\x35\xdb\x83\x27\x66\x96\xa6\xd2\xdf\x55\x07\ \x00\x60\x9d\x7d\x23\x9b\x54\x47\xe0\x8f\xa9\x34\x75\x76\xca\xd3\ \xab\x23\x00\xb0\xce\x96\xe7\x5d\x7e\x8a\xb6\xc4\x1f\x46\x9d\x97\ \x57\x07\x00\x60\x22\xf7\xc8\xb3\xab\x23\xf0\x07\x2a\x4d\x95\x7d\ \x73\x50\x75\x04\x00\x26\xf4\xcc\xdc\xbf\x3a\x02\x57\x51\x69\x6a\ \xac\x97\xf7\x57\x47\x00\x60\x0a\xde\x99\xbd\xaa\x23\x70\x25\x95\ \xa6\xc6\xa1\x59\x55\x1d\x01\x80\xa9\xf8\x62\xb6\xa9\x8e\x40\xa2\ \xd2\xd4\xd8\x28\xef\xa8\x8e\x00\xc0\xd4\x9c\x94\xe5\xd5\x11\x50\ \x69\x6a\x3c\xb1\x3a\x00\x00\x53\xb4\x47\x5e\x56\x1d\x01\xb7\xda\ \x9b\x96\xc5\xdc\x6a\x6f\xdb\xfc\xb0\x3a\x2e\x00\x53\xf6\xa8\xfc\ \xe7\x44\xbf\xdf\xad\xf6\x26\x66\x96\x66\x78\x2f\xac\x0e\x00\xc0\ \xd4\xbd\x36\x77\xa8\x8e\x30\xef\xcc\xd2\x4c\xc7\xc2\x67\x69\x6e\ \x9e\x2f\x57\x87\x05\x60\x26\x76\xc8\xf7\x27\xf8\xbd\x66\x69\x26\ \x64\x96\x66\x68\x6f\xa9\x0e\x00\xc0\x8c\x7c\xce\xa3\x88\x2b\xa9\ \x34\xc3\xba\x67\x6e\x56\x1d\x01\x80\x19\x59\x35\xe1\x7e\x1a\x26\ \xa2\xd2\x0c\x69\xfd\x7c\xa8\x3a\x02\x00\x33\xf4\xa0\xfc\x55\x75\ \x84\xf9\xa5\xd2\x0c\xe9\x11\xd5\x01\x00\x98\xb1\x97\x65\xff\xea\ \x08\xf3\xca\xf6\xe0\xe9\x58\xc8\xf6\xe0\x2d\xf3\xb3\xea\x98\x00\ \x0c\x60\xa7\x7c\x77\xd1\xbf\xc7\xf6\xe0\x89\x99\xa5\x19\xce\x3f\ \x54\x07\x00\x60\x10\x5f\xcc\x8a\xea\x08\xf3\x48\xa5\x19\xca\xce\ \x79\x72\x75\x04\x00\x06\xb1\xa5\x6d\xc2\x15\x54\x9a\xa1\xbc\xaa\ \x3a\x00\x00\x83\x79\xa0\x6d\xc2\xc3\x53\x69\x86\x71\xbb\xdc\xa3\ \x3a\x02\x00\x03\x7a\x59\xee\x5c\x1d\x61\xde\xd8\x1e\x3c\x1d\x6b\ \xde\x1e\xbc\x5e\xce\xf3\xe8\x79\x80\xb9\xb3\x98\xbb\x09\xdb\x1e\ \x3c\x31\xb3\x34\x43\x38\x54\xa1\x01\x98\x43\x9f\xcd\x06\xd5\x11\ \xe6\x89\x4a\x33\x7b\x2b\xf2\x8e\xea\x08\x00\x14\xd8\x2e\xaf\xac\ \x8e\x30\x4f\x54\x9a\xd9\xb3\x45\x0c\x60\x5e\x3d\x3c\x8f\xac\x8e\ \x30\x3f\xec\xa5\x99\x8e\xeb\xde\x4b\x73\xbd\xfc\xa8\x3a\x1c\x00\ \x85\xf6\xcd\x67\x17\xf0\xab\xec\xa5\x99\x98\x59\x9a\x59\x3b\xaa\ \x3a\x00\x00\xa5\x4e\xcb\xf5\xaa\x23\xcc\x07\x95\x66\xb6\xf6\xc8\ \xa3\xaa\x23\x00\x50\xec\x84\x2c\xab\x8e\x30\x0f\x54\x9a\xd9\x7a\ \x5d\x75\x00\x00\xca\xdd\x2c\xcf\xaf\x8e\x30\x0f\x54\x9a\x59\xda\ \x3f\xb7\xab\x8e\x00\x40\x03\x9e\x92\xfb\x57\x47\xe8\x9f\xed\xc1\ \xd3\xb1\xba\xed\xc1\x4b\xf3\xeb\x6c\x58\x1d\x0c\x80\x46\xec\x99\ \xaf\xad\xe1\xff\xda\x1e\x3c\x31\xb3\x34\xb3\x73\x84\x42\x03\xc0\ \xff\x39\x23\x9b\x56\x47\xe8\x9b\x4a\x33\x2b\x1b\xe7\x98\xea\x08\ \x00\x34\xe5\xd8\xc1\xd6\x46\xe6\x92\x4a\x33\x2b\x7f\x5d\x1d\x00\ \x80\xc6\xdc\xdb\xcf\x86\x59\xb2\x97\x66\x3a\xae\xb9\x97\x66\xdb\ \xfc\xb0\x3a\x12\x00\x0d\xda\x3f\x27\xad\xf6\xbf\xdb\x4b\x33\x31\ \xb3\x34\xb3\xf1\x82\xea\x00\x00\x34\xe9\x13\xd9\xae\x3a\x42\xaf\ \x54\x9a\x59\xd8\x33\x47\x56\x47\x00\xa0\x51\x27\x67\x79\x75\x84\ \x3e\xa9\x34\xb3\xf0\x86\xea\x00\x00\x34\x6b\xd7\xfc\x4b\x75\x84\ \x3e\xa9\x34\xd3\x77\x40\xf6\xa9\x8e\x00\x40\xc3\x9e\xe4\xc6\x7b\ \xb3\x60\x7b\xf0\x74\xfc\x61\x7b\xf0\xd2\x5c\x64\x4a\x11\x80\xb5\ \xb8\x71\xbe\x71\xb5\x7f\xb7\x3d\x78\x62\x66\x69\xa6\xed\x81\x0a\ \x0d\x00\x6b\x75\x66\x36\xae\x8e\xd0\x1b\x95\x66\xba\x36\xce\x9b\ \xaa\x23\x00\x30\x02\x4b\xf2\x5f\xd5\x11\x7a\xa3\xd2\x4c\xd7\x93\ \xaa\x03\x00\x30\x12\x0f\xc8\xa3\xab\x23\xf4\xc5\x5e\x9a\xe9\xb8\ \x72\x2f\x8d\x1b\xec\x01\xb0\x18\xb7\xce\xe7\x7f\xff\x4f\xf6\xd2\ \x4c\xcc\x2c\xcd\x34\xfd\xbf\xea\x00\x00\x8c\xca\xe7\xb2\x65\x75\ \x84\x7e\xa8\x34\xd3\x73\x93\x3c\xac\x3a\x02\x00\x23\xf3\x2e\x8f\ \xb2\x9c\x16\x95\x66\x7a\x6c\xf4\x02\x60\xb1\x0e\xc8\x53\xaa\x23\ \xf4\x42\xa5\x99\x96\xfd\x72\xbb\xea\x08\x00\x8c\xd0\x0b\x73\xa7\ \xea\x08\x7d\xb0\x3d\x78\x3a\x96\xe5\x17\xd9\xa4\x3a\x04\x00\x23\ \xb5\x2a\xeb\xdb\x1e\x3c\x29\xb3\x34\xd3\xf1\xa7\x0a\x0d\x00\xeb\ \xec\x43\xd5\x01\x7a\xa0\xd2\x4c\xc7\xb1\xd5\x01\x00\x18\xb1\x5b\ \xe6\x91\xd5\x11\xc6\xcf\xc2\x13\x00\x30\x5b\x16\x9e\x00\x00\x16\ \x46\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\ \x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\ \x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\ \x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\ \x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\ \x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\ \x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\ \x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\ \x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\ \x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\ \x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\ \x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\ \x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\ \x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\ \x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\ \xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\ \x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\ \x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\ \xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\ \x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\ \x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\ \x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\ \xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\ \x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\ \xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\ \x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\ \x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\ \x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\ \x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\ \x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\ \x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\ \xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\ \xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\ \x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\ \x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\ \x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\ \x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\ \x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\ \xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\ \x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\ \x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\ \x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\ \x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\ \x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\ \x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\ \x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\ \x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\ \x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\ \x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\ \x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\ \x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\ \x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\ \x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\ \x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\ \xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\ \x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\ \x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\ \xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\ \x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\ \x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\ \x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\ \xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\ \x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\ \xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\ \x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\ \x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\ \x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\ \x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\ \x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\ \x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\ \xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\ \xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\ \x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\ \x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\ \x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\ \x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\ \x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\ \xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\ \x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\ \x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\ \x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\ \x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\ \x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\ \x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\ \x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\ \x80\x4a\x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\ \x69\x00\x80\x0e\xa8\x34\x00\x40\x07\x54\x1a\x00\xa0\x03\x2a\x0d\ \x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\x03\x00\x74\x40\xa5\x01\x00\ \x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\x80\x0e\xa8\x34\x00\x40\x07\ \x54\x1a\x00\xa0\x03\x2a\x0d\x00\xd0\x01\x95\x06\x00\xe8\x80\x4a\ \x03\x00\x74\x40\xa5\x01\x00\x3a\xa0\xd2\x00\x00\x1d\x50\x69\x00\ \x80\x0e\x0c\x55\x69\x2e\xa9\xbe\x50\x00\xa0\x67\x43\x55\x9a\x5f\ \x57\x5f\x28\x00\xd0\xb3\xa1\x2a\xcd\x05\xd5\x17\x0a\x00\xf4\xcc\ \x2c\x0d\x00\xd0\x81\xa1\x2a\xcd\x85\xd5\x17\x0a\x00\xf4\x6c\xa8\ \x4a\xf3\xe3\xea\x0b\x05\x00\x7a\x36\x54\xa5\x39\xa7\xfa\x42\x01\ \x80\x9e\x0d\x55\x69\xbe\x57\x7d\xa1\x00\x40\xcf\x86\xaa\x34\x3f\ \xac\xbe\x50\x00\xa0\x67\xf6\xd2\x00\x00\x1d\x18\xaa\xd2\x9c\x57\ \x7d\xa1\x00\x40\xcf\x54\x1a\x00\xa0\x03\x43\x55\x9a\x5f\x54\x5f\ \x28\x00\xd0\xb3\x25\x83\x8d\x73\x79\xf5\xa5\x02\x00\x25\x06\x69\ \x1b\x43\xcd\xd2\x5c\x91\x33\x07\x1a\x09\x00\x98\x43\x43\x55\x9a\ \xe4\xc4\xea\x4b\x05\x00\xfa\x35\x5c\xa5\x39\xb9\xfa\x52\x01\x80\ \x7e\x0d\x57\x69\xbe\x52\x7d\xa9\x00\x40\xbf\x86\xab\x34\xe7\x56\ \x5f\x2a\x00\xd0\xaf\xe1\x2a\xcd\x05\xd5\x97\x0a\x00\x14\x78\xcf\ \x30\xc3\x0c\x57\x69\xae\xc8\xfb\x06\x1b\x0b\x00\x68\xc5\xfb\x87\ \x19\x66\xb8\x4a\x93\xbc\x7b\xc0\xb1\x00\x80\x36\x9c\x32\xcc\x30\ \x43\x56\x9a\x81\x2e\x09\x00\x68\xc8\x77\x86\x19\x66\xc8\x4a\x73\ \xce\x80\x63\x01\x00\x2d\x38\x3d\x97\x0c\x33\xd0\x90\x95\xe6\xd2\ \x7c\x69\xc0\xd1\x00\x80\x7a\xc7\x0c\x35\xd0\x90\x95\x26\x79\xc5\ \xa0\xa3\x01\x00\xd5\x3e\x30\xd4\x40\x43\x3d\xb6\xf2\x4a\x3b\xe7\ \x5b\x83\x8e\x07\x00\xd4\x5a\x3f\x97\x0d\x33\xd0\xb0\xb3\x34\x76\ \xd3\x00\xc0\x3c\x79\xdf\x50\x85\x66\xe8\x4a\x73\x79\x5e\x3d\xe8\ \x78\x00\x40\xa5\xd7\x0d\x37\xd4\xb0\x95\x26\x79\xf3\xc0\xe3\x01\ \x00\x75\x3e\x35\xdc\x50\xc3\xee\xa5\x49\x36\xc8\xc5\x03\x8f\x08\ \x00\xd4\xf8\x52\xf6\x1e\x6e\xb0\xa1\x67\x69\x2e\xc9\x1b\x07\x1e\ \x11\x00\xa8\xf1\xff\x86\x1c\x6c\xe8\x59\x9a\xe4\xf6\xf9\xf4\xe0\ \x63\x02\x00\xc3\x5b\x99\x9f\x0f\x37\xd8\xf0\x95\x66\xfd\xa1\xee\ \x22\x08\x00\x14\x3a\x2d\xb7\x1d\x72\xb8\xa5\x83\x5f\xe0\xef\xb2\ \x69\xee\x30\xf8\xa8\x00\xc0\xb0\x1e\x9d\xb3\x86\x1c\x6e\xf8\x59\ \x9a\x64\xb7\x7c\xb3\x60\x54\x00\x60\x48\x1b\x0e\xbb\x2e\x33\xf4\ \xf6\xe0\x24\x39\xcb\x2d\xf7\x00\xa0\x73\x2f\x18\x7a\xa3\x49\x45\ \xa5\x49\x9e\x52\x32\x2a\x00\x30\x94\xa3\x87\x1e\xb0\x62\xe1\x29\ \xd9\x28\x17\x96\x8c\x0b\x00\x0c\xe1\xab\xb9\xf9\xd0\x43\x0e\xbf\ \x3d\x38\x49\x2e\xcb\xe5\x39\xa0\x64\x64\x00\x60\xf6\x1e\x30\xfc\ \x26\x93\x9a\x59\x9a\x64\x9b\xfc\xb8\x68\x64\x00\x60\xb6\x2e\xcf\ \xf2\x5c\x3e\xf4\xa0\x35\x7b\x69\x92\x9f\x0c\xf9\x20\x2b\x00\x60\ \x40\x0f\x1a\xbe\xd0\xd4\xcd\xd2\x38\xca\x0d\x00\xbd\x5a\x51\xf1\ \x44\xc7\xaa\x59\x9a\xe4\xac\xbc\xa7\x6c\x6c\x00\x60\x56\x1e\x5d\ \xf3\x88\xea\xba\x59\x9a\x64\xd7\x61\xef\x2a\x08\x00\x0c\x60\xe0\ \x5b\xec\x5d\xa5\x6e\x96\x26\x39\x3b\x6f\x2e\x1c\x1d\x00\x98\xbe\ \x23\xab\x9e\xe5\x58\x39\x4b\x93\xec\x94\xef\x94\x8e\x0f\x00\x4c\ \xd7\x06\xb9\xb4\x66\xe0\x9a\xfb\xd2\x5c\xe5\x97\xd9\x3c\xb7\x2f\ \x4d\x00\x00\x4c\xcf\x7d\x73\x46\xd5\xd0\xb5\xb3\x34\xc9\x16\xf9\ \x79\x71\x02\x00\x60\x3a\xbe\x9e\x9b\xe4\x8a\xaa\xc1\x2b\xf7\xd2\ \x24\xc9\x2f\xf2\x88\xe2\x04\x00\xc0\x74\x1c\x56\x57\x68\xea\x67\ \x69\x92\xa5\xb9\x20\x2b\xaa\x43\x00\x00\x13\x7a\x7d\x1e\x5e\x39\ \x7c\x7d\xa5\x49\x6e\x9b\xcf\x54\x47\x00\x00\x26\xb4\x4d\xce\xaf\ \x1c\xbe\x76\x7b\xf0\x95\xbe\x9f\x55\xb9\x4d\x75\x08\x00\x60\x02\ \x87\xe7\xb3\xb5\x01\x5a\x98\xa5\x49\x36\xcd\xaf\xaa\x23\x00\x00\ \xeb\xec\x94\xdc\xa1\x3a\x42\xf5\xf6\xe0\x2b\x5d\x90\x7b\x55\x47\ \x00\x00\xd6\xd9\x11\xd5\x01\xda\x58\x78\x4a\x92\xb3\xb3\x7b\x6e\ \x51\x1d\x02\x00\x58\x07\x8f\xcc\xc7\xab\x23\xb4\xb2\xf0\x94\x58\ \x7c\x02\x80\x71\xfa\x48\xee\x51\x1d\x21\x69\xa9\xd2\x24\xb7\xc9\ \x69\xd5\x11\x00\x80\x45\xda\x3a\x3f\xad\x8e\x90\xb4\xb3\xf0\x94\ \x24\x3f\xc8\x65\x39\xb0\x3a\x04\x00\xb0\x08\x07\xd6\x3d\x02\xe1\ \xea\xda\xd8\x1e\x7c\x95\xe7\xe7\xd4\xea\x08\x00\xc0\x82\x3d\x37\ \x27\x56\x47\xb8\x4a\x4b\x0b\x4f\x49\xb2\xb2\x8d\xc9\x2b\x00\x60\ \xad\x3e\x9d\x3b\xe7\xf2\xea\x10\x57\x69\xad\xd2\x24\x7b\xe7\x0b\ \xd5\x11\x00\x80\x05\x58\xd9\xd2\xc3\xa7\xdb\x5a\x78\x4a\x92\x2f\ \xe6\xc8\xea\x08\x00\xc0\x5a\xed\xdd\x52\xa1\x69\x6b\x7b\xf0\x55\ \xbe\x9c\x65\xd9\xaf\x3a\x04\x00\xb0\x06\x07\xe7\xa4\xea\x08\x57\ \xd7\x62\xa5\x49\x3e\x9e\x9b\x66\xcf\xea\x10\x00\xc0\x75\x78\x7c\ \x8e\xa9\x8e\x70\x4d\xed\xed\xa5\xb9\xd2\x06\xf9\x62\xf6\xa8\x0e\ \x01\x00\xac\xc6\x4b\xf3\xa4\xea\x08\xd7\xd6\x6a\xa5\x49\x56\xe6\ \xbc\x2c\xaf\x0e\x01\x00\x5c\xc3\x7b\x73\xff\x76\xce\x39\xfd\x41\ \xbb\x95\x26\x59\x95\xf3\xaa\x23\x00\x00\x57\xf3\xb1\xdc\x33\x97\ \x55\x87\x58\x9d\x96\x2b\x4d\xb2\x43\xce\xad\x8e\x00\x00\xfc\x9f\ \xcf\xe7\x8e\xb9\xb8\x3a\xc4\xea\xb5\x5d\x69\x92\x5d\x72\x76\x75\ \x04\x00\x20\x49\x72\x76\xf6\xca\x85\xd5\x21\xae\x4b\x7b\xf7\xa5\ \xb9\xba\x6f\x65\x97\xea\x08\x00\x40\x92\xcf\xb7\x5c\x68\xda\xaf\ \x34\xc9\xb7\xb3\x43\x75\x04\x00\x98\x7b\x1f\xcb\x1d\x5b\x2e\x34\ \x63\xa8\x34\xc9\xf7\xb3\x2a\x17\x55\x87\x00\x80\x39\xf6\xde\xdc\ \xb3\xd5\x3d\x34\x57\x19\x43\xa5\x49\x7e\x9c\xed\xf2\xf9\xea\x10\ \x00\x30\xa7\x5e\x9a\xfb\xb7\x79\xca\xe9\x8f\x8d\xa3\xd2\x24\xbf\ \xcc\xed\xf2\xc6\xea\x10\x00\x30\x87\x1e\x9f\x27\xb5\x78\x1f\x9a\ \x6b\x6a\xf3\x81\x08\xab\x73\x79\xde\x9b\xdf\xe6\xae\xd5\x31\x00\ \x60\xae\x1c\xdc\xde\xa3\x0f\x56\xaf\xf5\x43\xdc\xd7\x74\x68\xde\ \x55\x1d\x01\x00\xe6\xc6\xde\xf9\x52\x75\x84\x85\x1a\x5b\xa5\x49\ \xf6\xc8\xd7\xaa\x23\x00\xc0\x1c\xf8\x74\xfe\x24\x3f\xaf\x0e\xb1\ \x70\x63\xd9\x4b\xf3\x07\x67\x66\xb3\x7c\xa8\x3a\x04\x00\x74\xee\ \xb9\xb9\xf3\x98\x0a\xcd\x18\x67\x69\xae\x4c\xfd\x17\x79\x65\x75\ \x08\x00\xe8\xd6\x81\x39\xb1\x3a\xc2\x62\x8d\xb3\xd2\x24\xc9\x9e\ \xf9\x5c\x36\xac\x0e\x01\x00\xdd\xf9\x68\x8e\xc8\x4f\xab\x43\x2c\ \xde\xf8\x16\x9e\xae\x72\x46\xb6\xc8\xbf\x55\x87\x00\x80\xce\x3c\ \x32\x77\x1f\x63\xa1\x19\xf3\x2c\xcd\x95\xf6\xcd\xa9\xd5\x11\x00\ \xa0\x13\xa7\xe4\x88\x7c\xb7\x3a\xc4\xba\x1a\xef\x2c\xcd\x95\x4e\ \xcb\x86\x79\x56\x75\x08\x00\xe8\xc0\xe1\xb9\xc3\x78\x0b\xcd\xf8\ \x67\x69\xae\x74\x93\xbc\x25\x7b\x57\x87\x00\x80\xd1\x7a\x7d\xfe\ \x26\xe7\x57\x87\x98\x4c\x1f\x95\x26\x49\xee\x95\xe3\xaa\x23\x00\ \xc0\x08\x7d\x23\x87\xe5\xcb\xd5\x21\x26\x37\xf6\x85\xa7\x3f\xf8\ \x50\x36\xcc\x93\xab\x43\x00\xc0\xc8\xdc\x37\x7b\xf4\x50\x68\x7a\ \x9a\xa5\xb9\xd2\x16\x79\x62\x9e\x5d\x1d\x02\x00\x46\xe1\xc8\xbc\ \x2d\x97\x56\x87\x98\x96\xde\x2a\x4d\x92\x6c\x95\xa7\xe6\xef\xaa\ \x43\x00\x40\xd3\x1e\x9d\x37\xe5\x92\xea\x10\xd3\xd4\x63\xa5\x49\ \x92\x95\x79\x44\x5e\x58\x1d\x02\x00\x1a\x74\x45\x1e\x98\xf7\xe5\ \xe2\xea\x18\xd3\xd6\x6b\xa5\x49\x92\x0d\x73\x48\xde\x52\x1d\x02\ \x00\x1a\x72\x7a\x1e\x97\x93\x73\x79\x75\x8c\x59\xe8\x67\x7b\xf0\ \xb5\x5d\x9c\xb7\x66\x69\x6e\x9d\xb7\x55\x07\x01\x80\x06\xbc\x20\ \xbb\xe6\x66\xf9\x44\x9f\x85\xa6\xef\x59\x9a\x3f\xd8\x22\x87\xe4\ \x5f\xb2\x75\x75\x0c\x00\x28\x71\x5a\x9e\x9d\x13\xfb\xda\x39\x73\ \x6d\xf3\x51\x69\xae\xb4\x43\x0e\xc9\xf3\xb2\x49\x75\x0c\x00\x18\ \xcc\x97\xf3\xbc\x7c\x24\x3f\xab\x8e\x31\x84\x79\xaa\x34\x57\xba\ \x41\xee\x96\xbf\xcc\x3e\xd5\x31\x00\x60\xa6\xde\x9f\xff\xca\xa7\ \xc6\x7e\x47\xe0\xc5\x98\xbf\x4a\x73\xa5\x8d\xb3\x57\xee\x97\x47\ \x64\xab\xea\x20\x00\x30\x55\xa7\xe7\x98\xfc\x4f\xce\xcc\x65\xd5\ \x41\x86\x36\xaf\x95\xe6\x2a\x9b\x64\xf7\xdc\x25\xf7\xc9\x01\xd5\ \x41\x00\x60\x22\xef\xc9\xfb\x73\x4a\xbe\xd3\xfb\x8e\x19\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x89\xff\ \x1f\x61\x2a\x9d\xa4\x57\x56\x34\x3d\x00\x00\x00\x25\x74\x45\x58\ \x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\ \x37\x2d\x31\x31\x2d\x31\x32\x54\x31\x31\x3a\x31\x36\x3a\x32\x39\ \x2b\x30\x38\x3a\x30\x30\x33\x23\xc9\x84\x00\x00\x00\x25\x74\x45\ \x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\ \x31\x35\x2d\x31\x32\x2d\x31\x30\x54\x32\x32\x3a\x30\x34\x3a\x34\ \x36\x2b\x30\x38\x3a\x30\x30\x7c\x2f\x24\xf4\x00\x00\x00\x4d\x74\ \x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x49\x6d\x61\x67\ \x65\x4d\x61\x67\x69\x63\x6b\x20\x37\x2e\x30\x2e\x31\x2d\x36\x20\ \x51\x31\x36\x20\x78\x38\x36\x5f\x36\x34\x20\x32\x30\x31\x36\x2d\ \x30\x39\x2d\x31\x37\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ \x2e\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2e\x6f\x72\x67\ \xdd\xd9\xa5\x4e\x00\x00\x00\x63\x74\x45\x58\x74\x73\x76\x67\x3a\ \x63\x6f\x6d\x6d\x65\x6e\x74\x00\x20\x47\x65\x6e\x65\x72\x61\x74\ \x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\x75\x73\x74\ \x72\x61\x74\x6f\x72\x20\x31\x38\x2e\x30\x2e\x30\x2c\x20\x53\x56\ \x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\x2d\x49\x6e\ \x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\ \x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\x20\x20\xd3\ \xdd\x83\xdc\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\ \x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\ \x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x19\x74\x45\x58\x74\x54\ \x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\ \x67\x68\x74\x00\x31\x31\x32\x39\x98\x55\xce\x37\x00\x00\x00\x18\ \x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\ \x3a\x3a\x57\x69\x64\x74\x68\x00\x31\x31\x32\x39\x8d\x1c\x12\x2e\ \x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\ \x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\ \x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x34\x34\x39\x37\x35\ \x36\x32\x38\x36\xef\x9b\x07\x8b\x00\x00\x00\x12\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x31\x36\x2e\x31\ \x4b\x42\x3e\xac\xcd\x3f\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\ \x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\ \x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\ \x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\ \x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\ \x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x39\x37\ \x33\x2f\x31\x31\x39\x37\x33\x37\x31\x2e\x70\x6e\x67\xd3\x76\x5e\ \x97\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x80\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x40\ \x50\x4c\x54\x45\xff\xff\xff\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\ \xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\ \x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\ \x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\ \xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\ \x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\ \x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\ \xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\ \x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\ \x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\ \xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\ \x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\ \x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\xa5\x9f\x97\ \xa5\x9f\x97\xa8\xa2\x9b\xa5\x9f\x97\xa5\x9f\x97\xae\xa9\xa2\xa5\ \x9f\x97\xb5\xb0\xa9\xa5\x9f\x97\xa8\xa2\x9a\xb7\xb2\xab\xb5\xb0\ \xaa\xaf\xaa\xa2\xb5\xb0\xa9\xa5\x9f\x97\xb5\xb0\xaa\xb5\xb0\xaa\ \xac\xa7\xa0\xb5\xb0\xa9\xb6\xb1\xab\xb5\xb0\xa9\xb2\xad\xa6\xb6\ \xb1\xab\xb6\xb1\xab\xb6\xb1\xab\xb7\xb2\xab\xb7\xb2\xab\xa5\x9f\ \x97\xb5\xb0\xaa\xb5\xb0\xaa\xb6\xb1\xab\xa5\x9f\x97\xb5\xb0\xa9\ \xb7\xb2\xab\xb5\xb0\xaa\xa5\x9f\x97\xb6\xb1\xab\xb6\xb1\xab\xa5\ \x9f\x97\xb7\xb2\xab\xb6\xb1\xaa\xb6\xb1\xaa\xb7\xb2\xab\xb5\xb0\ \xa9\xb7\xb2\xac\xb3\xae\xa8\xb6\xb1\xab\xa8\xa2\x9a\xb6\xb1\xab\ \xb5\xb0\xaa\xb7\xb2\xab\xb5\xb0\xaa\xb5\xb0\xa9\xb5\xb0\xa9\xb5\ \xb0\xa9\xb6\xb1\xab\xb6\xb1\xaa\xb4\xaf\xa9\xb7\xb2\xac\xb5\xb0\ \xa9\xbc\xb7\xb1\xb6\xb1\xaa\xb7\xb2\xab\xb4\xaf\xa9\xb5\xb0\xa9\ \xb6\xb1\xaa\xb5\xb0\xa9\xb6\xb1\xaa\xb3\xae\xa8\xb6\xb1\xab\xb6\ \xb1\xaa\xb5\xb0\xa9\xb6\xb1\xaa\xb7\xb2\xab\xb5\xb0\xaa\xb5\xb0\ \xaa\xb5\xb0\xaa\xb5\xb0\xa9\xb6\xb1\xab\xb2\xad\xa6\xb5\xb0\xa9\ \xb6\xb1\xab\xb6\xb1\xab\xb5\xb0\xa9\xb6\xb1\xab\xb5\xb0\xaa\xb6\ \xb1\xaa\xb6\xb1\xab\xb5\xb0\xa9\xb5\xb0\xaa\xa5\x9f\x97\xab\xa5\ \x9e\xb2\xad\xa6\xb7\xb2\xac\xad\xa8\xa0\xad\xa8\xa1\xb6\xb1\xab\ \xa6\xa1\x99\xaf\xa9\xa2\xa9\xa3\x9b\xb1\xab\xa4\xab\xa6\x9e\xb3\ \xae\xa7\xa7\xa2\x9a\xaf\xaa\xa2\xac\xa6\x9f\xaa\xa4\x9d\xaa\xa4\ \x9c\xb0\xaa\xa3\xb6\xb1\xaa\xaa\xa5\x9d\xb0\xab\xa4\xa7\xa1\x99\ \xac\xa7\x9f\xb1\xac\xa5\xb7\xb2\xab\xa6\xa0\x98\xaf\xaa\xa3\xb4\ \xaf\xa8\xb5\xb0\xa9\xa8\xa2\x9b\xa9\xa4\x9c\xae\xa8\xa1\xb3\xae\ \xa8\xff\xff\xff\xc9\x58\x90\x5e\x00\x00\x00\x9d\x74\x52\x4e\x53\ \x00\x00\x24\x63\x84\x99\xb4\xcc\xe4\x4b\xa2\xe7\x15\xea\xf0\xed\ \xf9\x12\x93\xf6\xab\x6c\x36\x03\xa5\x1e\x21\x4e\x7b\xa8\xf3\x69\ \xfc\x57\x0c\x09\x1b\xc0\x9f\x39\x66\xc3\x96\x33\x06\x48\x3c\x42\ \xe1\xde\x75\x18\x5a\xd5\xdb\x45\x3f\xbd\x8a\x0f\x2d\x27\xcf\x30\ \xc9\x7e\xba\x72\xb7\x1c\x78\x87\x7f\x54\xd3\xb1\xd9\xfd\x16\x9a\ \x62\x60\x69\x91\x78\x34\xb6\xa2\x0e\xd9\xe4\xa5\xe9\xf3\xae\x79\ \x38\xb9\x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\xee\xa8\x88\xe6\x49\xf5\ \x1f\xc1\x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\xdf\xae\x42\xfa\x56\x04\ \xbc\xe1\x2a\x4f\xa2\x66\x94\x19\xc9\x9f\x81\x9d\xeb\x75\x8b\x59\ \x23\xcc\x07\x4c\xcf\xd4\x72\xb1\x5f\x97\xb4\x2e\x6f\x03\x96\xf9\ \xc0\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\ \x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x09\x15\x2b\x1b\xf4\x94\xdd\ \xb4\x00\x00\x04\x0c\x49\x44\x41\x54\x58\xc3\xed\x96\xf9\x57\x13\ \x57\x14\xc7\x2f\x31\x09\x08\x86\x45\x84\x58\x45\x49\x82\x8a\xd2\ \x08\xc5\x6a\x6d\x15\xc5\x2a\x4a\x5b\x9a\x14\xd7\x46\x42\x0c\x14\ \xb0\x1a\xa1\x40\x05\x89\x4b\x12\xb4\xc1\x05\x97\x42\x5b\xb0\x68\ \x1f\x5e\x0b\xae\xb8\xd4\x22\x4d\x5b\x97\xbf\xcd\xf7\x66\x32\xc9\ \x4c\x96\x59\xfc\xcd\x73\xfc\x9e\x93\x99\xc9\x9b\xf9\x7c\xe7\xbe\ \x77\xef\x7b\x6f\x00\xde\x2b\x49\x19\x82\x74\xf3\xf4\x06\x63\x66\ \x16\xc9\xca\x34\x1a\xf4\xf3\x74\x42\xb3\x4a\x83\xf9\xd9\x39\x44\ \xaa\x9c\xec\xf9\xaa\x0d\x16\xe8\x4d\x51\x2a\x37\x8f\x1d\xf3\xa3\ \xff\x4c\xfa\x05\x6a\x0c\x0a\x16\x16\xb2\xa7\x0b\x17\x15\x15\x9b\ \x33\x16\xb3\xcb\x0f\x96\x2c\x2d\x59\xb6\x9c\x6b\x5c\x58\xa0\xc4\ \x9b\x4b\xd9\x4b\x2d\x46\xab\x8d\x0b\x98\x37\x60\x57\x65\x56\x23\ \x17\x53\xa9\x59\x96\x5f\xb1\x92\x0b\x76\x15\x43\xca\x57\x1b\xd6\ \xe4\xb2\x7f\x99\x15\xab\x3f\xb4\xb3\x06\xee\xde\xca\x15\x32\xfc\ \xda\xdc\x68\x77\x2b\xab\x2a\x4c\x92\x31\xcc\x33\x54\x66\x18\xa3\ \x03\xb3\x36\x2d\x5f\x6a\x21\xe4\xa3\x35\x24\x8d\xb2\xd8\xc1\x52\ \x4d\x7f\xa5\x69\xf8\x75\x2c\xc0\x8f\x75\xf9\x44\x46\x15\x05\xac\ \x93\xeb\x52\xf2\xeb\xe9\x1d\x83\x3d\xc3\xb6\x41\xce\x40\x07\xf6\ \x55\xf4\xb4\x3e\x05\x5f\x4c\xdf\x5c\x02\xa0\x93\xe5\xc9\x27\x3a\ \x80\x12\x9a\xcf\xe2\x24\x5e\x47\x07\xad\x02\x60\x63\x1e\x91\x57\ \xde\xa7\x00\x7a\x5a\x54\xba\x04\x9e\x05\xfe\x99\x19\xaa\xf2\x89\ \x92\xf2\xab\x00\x68\x2f\x36\xd8\xa4\x06\x9b\x68\xb5\x6f\x86\x9a\ \x5c\x45\x9e\xa6\x71\x0b\x94\x6d\x25\x64\x93\x84\xaf\xa5\x09\x24\ \xdb\x96\x66\xa9\xe0\xe9\x38\x2c\xf9\x9c\x16\xb6\xa5\x56\x6c\xb0\ \x5d\x15\x29\xd5\x76\x11\x5f\xfe\x16\x3c\x21\xe5\x71\x03\x5a\xa4\ \x4a\xa3\x9f\x42\xc6\xf8\x14\xb2\x10\x93\x6d\x87\x9a\x01\x8c\xa9\ \xae\xd6\x44\x2c\x3b\x05\x83\x5d\x84\xd4\x83\x59\xdd\x08\xf2\x32\ \xd9\xa1\x9e\x90\x2f\x04\x83\x4c\x42\x6a\x60\xa3\xa6\xf0\xbf\x84\ \x1a\x32\xf9\x55\x94\x2f\xb0\x90\x6a\x80\x6c\x4d\x06\x0d\x00\x5f\ \xdf\x72\x38\x79\x03\x2b\x9d\x44\x50\x56\xa8\xc9\xa0\xb0\x0c\xbe\ \x41\x6c\xe4\x0d\x68\x69\xef\x86\x4a\x6d\x19\xa0\x39\xdc\x83\xb8\ \x97\x37\x58\x44\x48\x2d\xec\xd0\x68\xb0\x0f\xf6\x23\x1e\xe0\x0d\ \xe8\x3c\xda\x0c\x06\x6d\xfc\xed\x6f\xc1\x85\x78\x90\x37\xa0\x19\ \x35\x18\xaa\x35\xf1\x7f\x4e\x35\xb9\xdd\x0e\x6c\xe6\x0d\x94\xa7\ \x70\x82\xa6\xef\x20\x2f\x0f\x6f\xa0\x96\xb3\x44\xcf\x77\xef\xa1\ \xa0\xb7\x8a\xe0\xfe\x83\x18\xef\x11\xc6\x40\x83\x1e\xce\x4c\xc5\ \x78\x61\x0c\x68\x16\x6c\x6a\xb3\xf0\x48\x78\xbd\x5b\x94\x85\x43\ \xac\x0e\x8a\xd4\xe0\x8f\xe3\xbd\xf7\x42\x0b\x62\x6b\xac\x12\xbf\ \x53\x53\x89\x4f\x9e\xfe\x15\x8f\xbe\x4d\x54\x89\x56\xb6\xa0\x2b\ \xce\x85\x67\x7f\x8b\x70\x6c\xef\x00\x77\x6c\x2e\xd0\xd9\x78\x18\ \xa0\x41\x8e\x9e\x7d\x3e\xf7\x0f\x8a\xf5\x3d\x40\x13\x0a\xb3\x11\ \xb6\xb2\x2d\xcb\x9a\x96\x8e\x3c\xfb\xf7\x3f\x4c\x50\x23\xb4\x21\ \x1e\x11\x16\x14\xba\x57\x1d\x05\x7b\x4e\x4a\x7a\x7a\x72\xe6\x01\ \x26\xc9\xd7\x01\xc7\x10\x3b\x45\x6b\x62\x8e\xdd\x96\xbc\xb4\x47\ \x9e\xdc\xbe\xf7\x3f\xa6\x52\xd7\x0f\xae\x6e\x74\xf4\xc4\x56\xd5\ \x3a\x42\xb2\xa5\xcb\xf2\xf4\xdd\x47\x77\x6e\xa5\x86\x79\x1d\x44\ \xec\x8d\x2f\xeb\x3f\xce\x46\x22\xec\x8d\x91\xd9\x17\x2f\x27\x9f\ \xbf\x7a\x3a\xf7\x7a\x0a\x95\xd5\x26\xda\x59\x8e\xab\x78\x3e\x51\ \xc7\xc5\x5b\x5b\x8b\x83\x35\xb5\x36\xab\x22\x9b\xfb\xfa\xe9\xd1\ \xd1\x22\xd9\x5d\x4f\xd0\xa6\x01\xd8\xef\x51\xc1\xb7\xfb\xe1\x64\ \x37\xe2\x09\xe9\xf6\xee\x3a\x85\x78\x1a\xe0\x4c\xbb\x22\x1f\x08\ \x42\x68\x10\xf1\xac\x2b\xe1\x0b\xe3\x9c\x8f\xcb\xeb\x4f\x4a\x0e\ \xed\x41\x80\x30\x2d\x84\x73\x49\xdf\x38\xfe\x00\x62\x1f\x3d\xc9\ \x8f\x43\x97\x1f\xa0\x93\x86\xe1\x87\x64\x0d\xd1\xfb\xe7\x01\x2e\ \x5c\x94\xe1\x7d\x4e\x08\x5d\xa2\xe7\x21\x48\xa5\x61\x96\x08\x57\ \xe8\x88\x5c\x04\x43\x4e\xe6\x3f\x0c\xa9\xe5\xa5\xc9\x6c\xba\x9c\ \x8e\xe5\x32\x7d\xa5\x8b\x5e\x5c\x85\x74\x0a\x0a\x69\xbc\x36\x70\ \xac\x5f\x42\x77\xb7\xfe\x3c\x12\xbd\xe9\x09\x42\x7a\x8d\x8c\x72\ \xcf\x9c\xfd\x85\x5e\xff\xea\x75\xff\xc6\x31\x63\xee\x71\x3f\x6b\ \xe8\xe3\xee\x8d\x8e\x80\x9c\x42\x5e\xc6\x04\x06\x1b\xf9\x34\x5f\ \x67\x08\x47\x74\xfc\x3e\xc8\xfa\xe0\xf1\x86\x40\x41\xce\x70\x80\ \xcb\x77\xab\xd7\x2f\x18\xf4\x0c\x0c\x5f\xe7\x62\x09\x84\x9d\x4a\ \x38\x53\xcf\x84\x4f\xc8\x1a\x37\x10\x42\x6d\xf9\x26\x7a\xd4\xe0\ \x5c\x47\x82\x37\x7c\xd2\x14\xa0\xef\x46\x50\x31\x78\xa9\x6e\xfe\ \x11\xee\x1d\x63\x11\xf4\x8f\xf5\x86\xc7\x6f\x6a\x83\xdf\x29\xbd\ \x01\xcf\x8a\xad\xb7\xc6\x34\xf5\x6a\x00\x00\x00\x25\x74\x45\x58\ \x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\ \x38\x2d\x30\x34\x2d\x31\x30\x54\x30\x31\x3a\x34\x39\x3a\x30\x35\ \x2b\x30\x38\x3a\x30\x30\xab\x22\x39\xeb\x00\x00\x00\x25\x74\x45\ \x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\ \x31\x33\x2d\x30\x39\x2d\x30\x39\x54\x32\x31\x3a\x34\x33\x3a\x32\ \x37\x2b\x30\x38\x3a\x30\x30\x14\x44\x1d\x85\x00\x00\x00\x43\x74\ \x45\x58\x74\x73\x6f\x66\x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\ \x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\ \x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\ \x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\ \x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\ \x74\x3a\x3a\x50\x61\x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\ \x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\ \x67\x65\x3a\x3a\x48\x65\x69\x67\x68\x74\x00\x36\x34\xbc\xe0\xa9\ \x84\x00\x00\x00\x16\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\ \x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x36\x34\x44\ \x4f\x69\x09\x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\ \x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\ \x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x33\x37\ \x38\x37\x33\x34\x32\x30\x37\x39\x95\xe1\xa0\x00\x00\x00\x11\x74\ \x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x32\ \x33\x34\x30\x42\xcc\xd8\xb1\x22\x00\x00\x00\x5f\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\ \x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\ \x73\x69\x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\ \x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\ \x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\ \x32\x36\x30\x2f\x31\x31\x32\x36\x30\x32\x35\x2e\x70\x6e\x67\xf7\ \x1d\xc6\x7c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x46\ \x50\x4c\x54\x45\xff\xff\xff\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\ \x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\ \xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\ \x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\ \x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\ \xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\ \x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\ \x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\ \xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\ \x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\ \x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\ \xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\ \x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\x5c\xc7\x90\ \x5c\xc7\x90\x62\xc9\x94\x5c\xc7\x90\x5c\xc7\x90\x6d\xcd\x9b\x5c\ \xc7\x90\x79\xd1\xa4\x5c\xc7\x90\x61\xc9\x93\x7c\xd2\xa6\x79\xd1\ \xa4\x6e\xcd\x9c\x78\xd1\xa3\x5c\xc7\x90\x79\xd1\xa4\x79\xd1\xa4\ \x69\xcc\x99\x78\xd1\xa3\x7b\xd2\xa5\x78\xd1\xa3\x73\xcf\xa0\x7b\ \xd2\xa5\x7b\xd2\xa5\x7b\xd2\xa5\x7c\xd2\xa6\x7c\xd2\xa6\x5c\xc7\ \x90\x79\xd1\xa4\x79\xd1\xa4\x7b\xd2\xa5\x5c\xc7\x90\x78\xd1\xa3\ \x7c\xd2\xa6\x79\xd1\xa4\x5c\xc7\x90\x7b\xd2\xa5\x7b\xd2\xa5\x5c\ \xc7\x90\x7c\xd2\xa6\x7a\xd1\xa4\x7a\xd1\xa4\x7c\xd2\xa6\x79\xd1\ \xa4\x7d\xd2\xa6\x76\xd0\xa2\x7b\xd2\xa5\x61\xc9\x93\x7b\xd2\xa5\ \x79\xd1\xa4\x7c\xd2\xa6\x79\xd1\xa4\x78\xd1\xa3\x79\xd1\xa4\x78\ \xd1\xa3\x7b\xd2\xa5\x7a\xd1\xa4\x77\xd0\xa3\x7d\xd2\xa6\x78\xd1\ \xa3\x85\xd5\xac\x7a\xd1\xa4\x7c\xd2\xa6\x77\xd0\xa3\x79\xd1\xa4\ \x7a\xd1\xa4\x79\xd1\xa4\x7a\xd1\xa4\x76\xd0\xa2\x7b\xd2\xa5\x7a\ \xd1\xa4\x79\xd1\xa4\x7a\xd1\xa4\x7c\xd2\xa6\x79\xd1\xa4\x79\xd1\ \xa4\x79\xd1\xa4\x78\xd1\xa3\x7b\xd2\xa5\x73\xcf\xa0\x78\xd1\xa3\ \x7b\xd2\xa5\x7b\xd2\xa5\x79\xd1\xa4\x7b\xd2\xa5\x79\xd1\xa4\x7a\ \xd1\xa4\x7b\xd2\xa5\x78\xd1\xa3\x79\xd1\xa4\x5c\xc7\x90\x66\xcb\ \x97\x74\xcf\xa0\x7d\xd2\xa6\x6b\xcc\x9a\x7b\xd2\xa5\x5f\xc8\x92\ \x6d\xcd\x9c\x62\xc9\x94\x71\xce\x9e\x68\xcb\x98\x76\xd0\xa1\x60\ \xc9\x93\x6e\xcd\x9c\x75\xd0\xa1\x65\xca\x96\x64\xca\x96\x6f\xce\ \x9d\x7a\xd1\xa4\x66\xca\x97\x70\xce\x9d\x69\xcb\x99\x72\xcf\x9f\ \x7c\xd2\xa6\x5d\xc7\x91\x6f\xcd\x9d\x77\xd0\xa2\x5e\xc8\x91\x78\ \xd1\xa3\x63\xc9\x95\x73\xcf\xa0\x60\xc8\x93\x5d\xc7\x90\x64\xca\ \x95\x6c\xcc\x9b\x76\xd0\xa2\xff\xff\xff\x87\x1c\xef\x27\x00\x00\ \x00\x9d\x74\x52\x4e\x53\x00\x00\x24\x63\x84\x99\xb4\xcc\xe4\x4b\ \xa2\xe7\x15\xea\xf0\xed\xf9\x12\x93\xf6\xab\x6c\x36\x03\xa5\x1e\ \x21\x4e\x7b\xa8\xf3\x69\xfc\x57\x0c\x09\x1b\xc0\x9f\x39\x66\xc3\ \x96\x33\x06\x48\x3c\x42\xe1\xde\x75\x18\x5a\xd5\xdb\x45\x3f\xbd\ \x8a\x0f\x2d\x27\xcf\x30\xc9\x7e\xba\x72\xb7\x1c\x78\x87\x7f\x54\ \xd3\xb1\xd9\xfd\x16\x9a\x62\x60\x69\x91\x78\x34\xb6\xa2\x0e\xd9\ \xe4\xa5\xe9\xf3\xae\x79\x38\xb9\x5d\x45\xf8\x0b\xd2\xbf\xd7\x81\ \xee\xa8\x88\xe6\x49\xf5\x1f\xc1\x3e\xc4\x7f\xf0\x9a\x52\x3f\x1d\ \xdf\xae\x42\xfa\x56\x04\xbc\xe1\x2a\x4f\xa2\x66\x94\x19\xc9\x9f\ \x81\x9d\xeb\x75\x8b\x59\x23\xcc\x07\x4c\xcf\xd4\x72\xb1\x5f\x97\ \xb4\x2e\x6f\x03\x96\xf9\xc0\x00\x00\x00\x01\x62\x4b\x47\x44\x00\ \x88\x05\x1d\x48\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x09\ \x15\x2b\x12\x8d\x48\x65\x10\x00\x00\x04\x0d\x49\x44\x41\x54\x58\ \xc3\xed\x96\xf9\x57\x13\x57\x14\xc7\x2f\x31\x09\x9b\x61\x11\x25\ \x56\xb1\x24\x41\x45\x31\x82\xb8\xd4\x0a\x54\x5a\xb5\xee\x89\xa8\ \xb5\x46\x42\x1a\x10\x70\x89\x52\xa0\x6c\xd1\x36\x09\xd8\x50\x15\ \xdb\x8a\xb6\xb8\x3f\xbc\x82\x8a\xb5\x85\xe2\x82\xd2\xba\xb4\x7f\ \x5a\xdf\x9b\xc9\x24\x33\x59\x66\xf1\x37\xcf\xe9\xf7\x9c\xcc\x4c\ \xde\xcc\xe7\x3b\xf7\xbd\x7b\xdf\x7b\x03\xf0\xbf\x12\x94\x26\x48\ \x37\x47\x6f\x30\xa6\x67\x90\x8c\x74\xa3\x41\x3f\x47\x27\x34\xab\ \x34\xc8\xcc\xca\x26\x52\x65\x67\x65\xaa\x36\x98\xab\x37\x45\xa8\ \x9c\x5c\x76\xcc\x8b\xfc\x33\xe9\xe7\xaa\x31\xc8\x9f\x57\xc0\x9e\ \x2e\x98\xbf\xa0\xd0\x9c\xb6\x90\x5d\x7e\xb0\x68\x71\xd1\x92\x0f\ \xb9\xc6\x79\xf9\x4a\xbc\xb9\x98\xbd\xd4\x62\xb4\xda\xb8\x80\x79\ \x03\x76\x55\x62\x35\x72\x31\x15\x9b\x65\xf9\xa5\xcb\xb8\x60\x97\ \x33\xa4\x74\x85\x61\x65\x0e\xfb\x97\x5e\xb6\x62\x95\x9d\x35\x70\ \xf7\x96\x2d\x95\xe1\x57\xe7\x44\xba\x5b\x5e\x51\x66\x92\x8c\x61\ \xae\xa1\x3c\xcd\x18\x19\x98\xd5\x29\xf9\x62\x0b\x21\x6b\x56\x92\ \x14\xca\x60\x07\x4b\x25\xfd\x15\xa7\xe0\xd7\xb2\x00\xd7\xe9\xf2\ \x88\x8c\xca\xf2\x59\x27\xd7\x26\xe5\xd7\xd3\x3b\x06\x7b\x9a\x6d\ \x83\x9c\x81\x0e\xec\xcb\xe9\x69\x7d\x12\xbe\x90\xbe\xb9\x08\x40\ \x27\xcb\x93\x8f\x74\x00\x45\x34\x9f\x85\x09\xbc\x8e\x0e\x5a\x19\ \xc0\xc6\x5c\x22\xaf\xdc\x8f\x01\xf4\xb4\xa8\x74\x71\x3c\x0b\x7c\ \x93\x19\x2a\xf2\x88\x92\xf2\x2a\x00\x68\x2f\x36\xd8\xa4\x06\x55\ \xb4\xda\xab\xa1\x26\x47\x91\xa7\x69\xfc\x04\x4a\x36\x13\x52\x25\ \xe1\x6b\x69\x02\xc9\xa7\x8b\x33\x54\xf0\x74\x1c\x16\x7d\x46\x0b\ \xdb\x52\x2b\x36\xd8\xa2\x8a\x94\x6a\x8b\x88\x2f\x7d\x07\x9e\x90\ \xd2\x98\x01\x2d\x52\xa5\xd1\x4f\x22\x63\x6c\x0a\x59\x88\xc9\xb6\ \x55\xcd\x00\x46\xb5\xad\xd6\x44\x2c\x9f\x0b\x06\xdb\x09\xd9\x01\ \x66\x75\x23\xc8\xcb\x64\x87\x1d\x84\xec\x14\x0c\xd2\x09\xa9\x81\ \x8d\x9a\xc2\xdf\x05\x35\x64\x74\x77\x84\xcf\xb7\x90\x4a\x80\x2c\ \x4d\x06\x7b\x00\xf6\xde\x75\x38\x79\x03\x2b\x9d\x44\x50\x52\xa0\ \xc9\xa0\xa0\x04\xf6\x21\xd6\xf1\x06\xb4\xb4\xf7\x43\xb9\xb6\x0c\ \xd0\x1c\x1e\x40\x3c\xc8\x1b\xcc\x27\xa4\x16\xb6\x6a\x34\xf8\x02\ \x0e\x21\x7e\xc9\x1b\xd0\x79\x54\x0d\x06\x6d\xfc\xbd\xc3\xe0\x42\ \x3c\xc2\x1b\xd0\x8c\x1a\x0c\x95\xda\xf8\xb1\x7a\xb7\xdb\x81\x0d\ \xbc\x81\xf2\x14\x8e\xd3\xf8\x7d\xe4\xe5\xe1\x0d\xd4\x72\x96\xc8\ \xf9\xc1\x43\x14\xf4\x4e\x11\x4c\x3c\x8a\xf2\x1e\x61\x0c\x34\xe8\ \xb7\xc7\x63\x51\x5e\x18\x03\x9a\x05\x9b\xda\x2c\x4c\xfc\x1e\x61\ \xdd\xa2\x2c\x7c\xc5\xea\x60\x81\x1a\xfc\x8f\x58\xef\xbd\xd0\x88\ \xd8\x14\xad\xc4\xa3\x6a\x2a\x71\x72\xea\xcf\x58\xf4\xcd\xa2\x4a\ \xb4\xb2\x05\x5d\x71\x2e\x4c\x3f\x11\xe1\xd8\xd2\x0a\xee\xe8\x5c\ \xa0\xb3\xf1\x18\xc0\x1e\x39\x7a\xfc\xe9\xb3\xe7\x28\xd6\x71\x80\ \x7a\x14\x66\x23\x6c\x66\x5b\x96\x35\x25\x3d\x33\xfd\xe2\x25\xc6\ \xa9\x0e\x9a\x11\x4f\x08\x0b\x0a\xdd\xab\x4e\x82\x3d\x3b\xf9\xbb\ \x47\x1f\x3f\xc2\x04\xf9\x5a\xe1\x14\xe2\x69\xd1\x9a\x98\x6d\xb7\ \x25\x2e\xed\xb3\x93\xf7\x1e\xfe\x85\xc9\xd4\xf6\xb5\xab\x1d\x1d\ \x1d\xd1\x55\x75\x1b\x21\x59\xd2\x65\x79\xfc\xef\x89\xfb\xaf\x92\ \xc3\xbc\x8e\x20\x76\xc6\x96\xf5\x6f\x5e\xcf\xce\xbc\x21\x6f\x66\ \x66\x5f\x3f\x78\x3b\xfa\xf4\x9f\xa9\x67\xff\x8e\xa1\xb2\x9a\x45\ \x3b\x4b\x97\x8a\xe7\xe3\xd5\x25\xde\xda\x1a\x1d\xac\xa9\xa9\x41\ \x15\xd9\xd0\xdd\x43\x8f\x8e\x46\xc9\xee\xda\x4b\x9b\xfa\xe0\x90\ \x47\x05\xdf\xe2\x87\x33\xed\x88\xbd\xd2\xed\xdd\x75\x16\xf1\x5b\ \x80\xef\x5a\x14\xf9\x40\x10\x42\xfd\x88\x03\xae\xb8\x2f\x8c\x73\ \x3e\x2e\xaf\xdf\x2b\x39\xb4\x04\x01\xc2\xb4\x10\xce\x25\x7c\xe3\ \xf8\x03\x88\xdd\xf4\x24\x3f\x0e\x6d\x7e\x80\xd3\x34\x0c\x3f\x24\ \x6a\x90\xde\xff\x01\xe0\xfc\x05\x19\xde\xe7\x84\xd0\x45\x7a\x1e\ \x84\x64\x1a\x62\x89\x70\x85\x4e\xc8\x45\x30\xe8\x64\xfe\x43\x90\ \x5c\x5e\x9a\xcc\xfa\x4b\xa9\x58\x2e\xd3\x3f\xb6\xd1\x8b\x9f\x20\ \x95\x82\x42\x1a\x7f\xee\x3b\xd5\x23\xa1\xdb\x9b\x2e\x0f\x47\x6e\ \x7a\x82\x90\x5a\xc3\x57\xb8\x67\x06\xae\xd2\xeb\x5f\xbc\xee\x5f\ \x39\x66\xc4\x7d\xcd\xcf\x1a\xba\xb9\x7b\x57\x86\x41\x4e\x21\x2f\ \x63\x02\xfd\x75\x7c\x9a\xaf\x33\x84\x23\x5a\x6f\xf4\xb3\x3e\x78\ \xbc\x21\x50\x90\x33\x1c\xe0\xf2\xdd\xe4\xf5\x0b\x06\x1d\x7d\x43\ \xd7\xb9\x58\x02\x61\xa7\x12\xce\xd4\x71\xd3\x27\x64\x8d\x1b\x08\ \xa1\xb6\x7c\x37\x3b\xd4\xe0\x5c\x47\x82\xb7\x7c\xd2\x14\xa0\xef\ \x56\x50\x31\x78\xa9\x6e\xdf\x09\x77\x8e\xb0\x08\x7a\x46\x3a\xc3\ \xd7\x6e\x6b\x83\xdf\x2b\xfd\x07\x55\xed\xad\xe1\xad\xe9\x25\x79\ \x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\ \x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\x31\x30\x54\x30\ \x31\x3a\x34\x39\x3a\x30\x35\x2b\x30\x38\x3a\x30\x30\xab\x22\x39\ \xeb\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\ \x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\x2d\x30\x39\x54\ \x32\x31\x3a\x34\x33\x3a\x31\x38\x2b\x30\x38\x3a\x30\x30\x6c\x83\ \x6a\x8f\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\x66\x74\x77\x61\ \x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x69\x6d\ \x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\x61\x72\x65\x2f\ \x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\x69\x63\x6b\x2d\ \x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\xbd\xb5\x79\ \x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\ \x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\x67\x65\x73\x00\ \x31\xa7\xff\xbb\x2f\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\x65\x69\x67\x68\ \x74\x00\x36\x34\xbc\xe0\xa9\x84\x00\x00\x00\x16\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x57\x69\ \x64\x74\x68\x00\x36\x34\x44\x4f\x69\x09\x00\x00\x00\x19\x74\x45\ \x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x69\x6d\x65\x74\x79\x70\ \x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x3f\xb2\x56\x4e\x00\ \x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\x54\ \x69\x6d\x65\x00\x31\x33\x37\x38\x37\x33\x34\x31\x39\x38\x7a\xae\ \xf9\x21\x00\x00\x00\x11\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\ \x3a\x53\x69\x7a\x65\x00\x32\x33\x36\x38\x42\x07\x85\xef\x44\x00\ \x00\x00\x5f\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x55\x52\ \x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\x2f\x68\x6f\x6d\x65\x2f\x77\ \x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\x74\x65\x2f\x77\x77\x77\x2e\ \x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x6e\x65\x74\x2f\x63\x64\x6e\ \x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\x63\x6e\ \x2f\x73\x72\x63\x2f\x31\x31\x32\x36\x30\x2f\x31\x31\x32\x36\x30\ \x31\x31\x2e\x70\x6e\x67\x84\x09\x12\x12\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x2f\x9e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x8d\xbb\x00\x00\x8d\xbb\x01\x9d\x75\x81\x80\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xdd\x09\x04\x16\x02\x31\x9b\x45\ \xed\x0d\x00\x00\x2d\x06\x49\x44\x41\x54\x78\xda\xed\xdd\x79\x9c\ \x55\xc5\x9d\xf7\xf1\xcf\x0f\x50\x56\x51\x5c\x41\x45\x7d\x19\x16\ \x17\x50\x1a\x89\xd1\x08\x2e\x11\x1a\xa3\x41\xd4\x24\x9a\xc4\x56\ \xa2\x99\x24\x44\x1f\x9d\x44\x51\x67\x12\x33\xaf\x49\x9c\xe4\x89\ \x82\xce\x8c\x4e\x0c\x99\x3c\x2e\x68\x3b\x89\x8e\x1b\x31\xa2\x34\ \x18\x45\x8c\xc6\x0d\x88\x82\xca\xa2\x2f\xa5\x8d\x8a\x22\xa2\xb2\ \x89\x42\x3d\x7f\x74\x03\xdd\x4d\x2f\x55\xe7\x9e\x73\xeb\xde\x7b\ \xbe\xef\xfe\xa7\xe9\x3e\x55\xa7\xea\xd0\xbf\xdf\xad\xb3\x54\x1d\ \x73\x88\x48\x5e\x75\x8a\xdd\x00\x11\x89\x47\x09\x40\x24\xc7\x94\ \x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\ \xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\ \x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\ \x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\ \x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\ \x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\ \x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\ \x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\ \x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\ \x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\ \xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\ \x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\ \x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\ \x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\ \x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\ \x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\ \x09\x40\x24\xc7\xba\xc4\x6e\x80\x64\xcd\xba\xd0\xa3\xf1\xab\xfb\ \xd6\xef\xb6\xfd\x1b\xd6\xb1\x9e\x75\xcd\xbe\xb6\xfe\xdb\x7d\x16\ \xbb\xf5\x92\x2d\x73\xb1\x5b\x20\x05\xb2\x5e\xec\x47\x7f\xfa\xd3\ \x9f\x3d\xe8\xb9\x5d\x80\xf7\x60\x87\x02\x2a\xff\xb4\x79\x42\x60\ \x1d\xeb\x58\xcb\x7b\xd4\x53\x4f\x3d\xcb\xdd\x9a\xd8\xbd\x97\xc2\ \x28\x01\x94\x19\xeb\xca\xbe\xf4\xa7\xff\xd6\xa0\xef\xcf\x2e\x11\ \x9b\xb3\xba\x31\x15\xd4\xb3\x9c\x7a\xea\x79\xd3\x7d\x12\xfb\x08\ \x49\x08\x25\x80\x92\x66\x9d\xe9\xd7\x24\xd4\xf7\xa3\x3f\x7b\x60\ \xb1\x5b\xd5\x0e\xc7\x7b\x5b\x93\x41\x43\x5a\x78\xdb\x6d\x8a\xdd\ \x28\x69\x9b\x12\x40\xc9\xb1\x5e\x0c\xa3\x8a\x61\x0c\x66\x3f\xf6\ \xa6\x73\xec\xf6\x14\x68\x13\x6f\xb1\x9c\xc5\x2c\x60\x3e\x0b\x74\ \xca\x50\x6a\x94\x00\x4a\x84\xed\x4e\x15\xc3\xa9\xa2\x8a\x81\x25\ \xfd\x19\x5f\x08\xc7\x52\xe6\x33\x9f\x79\xcc\x77\x2b\x63\x37\x46\ \x40\x09\x20\x32\xdb\x8f\xaa\xc6\xc0\xdf\x37\x76\x5b\x8a\xec\xcd\ \x86\x44\xc0\x7c\xb7\x3c\x76\x53\xf2\x4c\x09\xa0\xe8\xac\x13\x83\ \x1a\xc3\x7e\x18\xbb\xc5\x6e\x4d\x09\x78\x9f\xf9\x8d\x5f\x4b\xdc\ \xe6\xd8\x8d\xc9\x1b\x25\x80\x22\xb1\x1d\x18\x4a\x15\x55\x54\x71\ \x38\x3d\x63\xb7\xa6\x44\xad\xe5\x6f\x8d\xa9\xe0\x45\xf7\x69\xec\ \xc6\xe4\x83\x12\x40\xe6\xec\x60\xaa\xa9\xe6\x38\x85\x7d\x80\xb5\ \xcc\xa1\x8e\x3a\xf7\x72\xec\x86\x54\x3a\x25\x80\xcc\xd8\x6e\x8c\ \xa6\x9a\x31\xf4\x8f\xdd\x92\x32\x56\xcf\x2c\xea\x98\xed\xde\x8f\ \xdd\x90\x4a\xa5\x04\x90\x3a\xdb\x81\xa3\xa9\xa6\x9a\x23\x34\xd3\ \x22\x25\x9b\x79\x9e\x3a\xea\x78\x4a\x27\x06\x69\x53\x02\x48\x91\ \x0d\xa2\x9a\x6a\x4e\xa0\x57\xec\x96\x54\xa8\x35\x3c\x4a\x1d\x75\ \x6e\x49\xec\x86\x54\x0e\x25\x80\x14\x58\x1f\xbe\x44\x35\x63\xd9\ \x3f\x76\x4b\x72\xe2\x0d\x66\x52\xc7\x9f\xdd\x07\xb1\x1b\x52\xfe\ \x94\x00\x0a\x60\x5d\xf8\x02\xd5\x54\xf3\xf9\xb2\x7f\x5e\xaf\x1c\ \x6d\xe2\x59\xea\xa8\xe3\x69\xcd\x59\x4c\x4e\x09\x20\x11\xeb\xc6\ \x38\xce\x62\x0c\xbd\x63\xb7\x44\xf8\x88\x59\xdc\xc9\x03\x6e\x43\ \xec\x86\x94\x23\x25\x80\x40\x66\x1c\x47\x0d\x5f\x63\xe7\xd8\x2d\ \x91\x66\x3e\xe4\x6e\x6a\x99\xe3\xf4\x07\x1d\x44\x09\x20\x80\x1d\ \x4a\x0d\x67\xeb\xb6\x5e\x09\xab\xe7\x0e\x6a\xdd\xa2\xd8\xcd\x28\ \x1f\x4a\x00\x5e\xac\x1f\xdf\xa2\x86\x61\xb1\xdb\x21\x5e\x16\x50\ \xcb\xff\xb8\xb7\x63\x37\xa3\x1c\x28\x01\x74\xc0\x7a\x71\x06\x35\ \x9c\xa8\x7b\xfa\x65\x66\x33\x8f\x50\xcb\xbd\x9a\x80\xdc\x3e\x25\ \x80\x36\x59\x17\xc6\x50\xc3\x69\xf4\x88\xdd\x92\xcc\x6c\x60\x1d\ \xd0\x83\x6e\xb1\x1b\x92\x99\x75\xdc\x4f\x2d\xb3\x74\x9f\xa0\x2d\ \x4a\x00\xad\xb2\x11\xd4\xf0\x4d\xf6\x8c\xdd\x8e\x40\x9b\x78\x87\ \x8f\x9a\xac\xdd\xd7\x7c\x25\xbf\x96\xdf\xaf\xdf\x32\xf7\xce\x3a\ \x35\xae\x1e\xd8\x74\x45\xc1\xe6\xab\x0b\x6e\xfb\x57\x6f\xfa\x96\ \xdd\x4d\xcf\x77\xf9\x3d\xb5\xee\xb9\xd8\xcd\x28\x45\x4a\x00\x2d\ \xd8\x01\xd4\x50\xc3\xe0\xd8\xed\xf0\xe0\x78\x77\xeb\xd2\x5b\x45\ \x5c\x7e\xab\xc5\x32\x65\xfd\xe9\xcf\x9e\x65\xb1\x84\xc9\x62\x6a\ \xa9\x75\xaf\xc7\x6e\x46\x69\x51\x02\xd8\xca\xba\xf0\x35\x2e\x60\ \x64\xc9\xfe\x31\x7f\xd0\x2c\xdc\x4b\x68\x01\xce\xad\x0b\x95\x6e\ \xfb\xea\x13\xbb\x4d\x6d\x70\x3c\xc1\x8d\xdc\xad\x53\x82\x2d\x94\ \x00\x00\xb0\x5e\x7c\x87\x1f\x95\xd8\xa3\xbc\x9b\x59\xca\x7c\x16\ \x6f\x09\xf8\x72\xba\x9c\x65\xbd\xb6\xa6\x82\xc1\x54\x31\xb0\xc4\ \x2e\xa1\xbe\xc1\xbf\x73\x53\x39\x1d\xcf\xec\x28\x01\x60\x7d\xb9\ \x98\x89\x25\xf3\x99\xf5\x29\x2f\x31\x8f\xf9\xcc\xe3\x6f\x95\xf2\ \x27\x6a\xbd\x38\x9c\xe1\x54\x31\x9c\x43\x0a\x7a\x4b\x41\x9a\x3e\ \x60\x2a\xd7\xbb\x77\x62\x37\x23\xb6\x9c\x27\x00\x3b\x98\x4b\xa9\ \xa1\x6b\xec\x76\xb0\x9e\xbf\x35\xae\x91\xb7\xb0\x54\x06\xf6\x59\ \xb0\xae\x0c\x69\x5c\x03\xf1\x70\xba\xc7\x6e\x0d\x9f\x50\xcb\xb5\ \xf9\x5e\x74\x24\xc7\x09\xc0\x8e\xe5\x32\x4e\x89\x7a\xc6\xff\x61\ \x63\xd0\xcf\x63\x71\xde\x56\xcf\xb7\xce\x0c\x6e\x1c\x15\x54\x45\ \x7d\xac\xda\xf1\x20\x93\xdd\xe3\xb1\x8f\x47\x2c\xb9\x4c\x00\xd6\ \x99\x33\x98\xc4\x91\x91\x76\xbf\x82\xf9\xcc\x63\x1e\xf3\xdd\x6b\ \xb1\x8f\x44\x69\xb0\x03\xa9\x62\x38\xc3\xa9\x62\xaf\x48\x4d\x78\ \x86\x29\xdc\x9b\xb7\x24\x0c\x39\x4c\x00\xd6\x83\xf3\xb8\x84\x03\ \x23\xec\x7a\x2d\x8f\x51\x47\x9d\x7b\x25\xf6\x31\x28\x5d\x76\x10\ \xd5\x54\x73\x7c\x94\xf5\x13\x5f\xe3\x3a\x6e\x71\xeb\x62\x1f\x83\ \xe2\xca\x55\x02\xb0\x3d\xb8\x88\x0b\x8a\xbe\x14\xb7\x63\x3e\x75\ \xd4\xf1\x17\xb7\x31\xf6\x11\x28\x0f\xb6\x23\xc7\x50\x4d\x35\x55\ \x45\x3f\x41\x7b\x9f\x1b\xb9\xc1\xbd\x17\xfb\x08\x14\x4f\x6e\x12\ \x80\x0d\xe4\x52\x26\x14\xf9\xa1\xd7\xb7\x98\x45\x1d\xb3\xf2\xf4\ \x07\x95\x26\xdb\x83\x31\x54\x33\x86\xbd\x8b\xba\xdb\x0d\x4c\xe3\ \x5a\xb7\x34\x76\xef\x8b\x23\x17\x09\xc0\x8e\xe6\x72\x4e\x2d\xe2\ \xbd\xe8\xf5\xcc\x65\x26\x75\x6e\x61\xec\x9e\x57\x06\x1b\x42\x35\ \x63\x19\x55\xc4\xfb\x06\x9b\xf9\x23\xd7\xb8\xa7\x62\xf7\x3c\x7b\ \x15\x9f\x00\x6c\x28\x53\xa8\x2e\xda\xee\x5e\xa0\x8e\x3a\xe6\x6a\ \x75\x9a\xf4\x59\x37\x46\x51\x4d\x35\x87\x15\x6d\x97\x75\x4c\x72\ \x2f\xc6\xee\x77\xb6\x2a\x3a\x01\x58\x5f\xae\xe2\xfc\xa2\x7c\xf2\ \xbf\xdb\x38\xd8\xd7\x1c\xf4\xcc\x59\xbf\xc6\x13\x83\x62\x4c\xd5\ \xda\xcc\xcd\xfc\xb4\x92\x1f\x17\xaa\xd8\x04\x60\xdd\xb9\x94\x2b\ \x8a\xb0\x40\xf7\xc7\xdc\x43\x2d\x8f\xea\xad\x76\xc5\x65\x9d\x38\ \x81\x1a\xbe\xca\x4e\x99\xef\x6a\x0d\x57\x73\xad\x5b\x1f\xbb\xc7\ \xd9\xa8\xc8\x04\x60\xc6\xd9\xfc\x32\xf3\xa5\xbb\x3e\xa3\x8e\xdb\ \x99\x5e\xa9\x7f\x1a\xe5\xc0\xba\x33\x9e\x73\xa8\xa6\x4b\xc6\x3b\ \xaa\xe7\xc7\xdc\x51\x89\xeb\x0d\x56\x60\x02\xb0\x51\x5c\xc7\x88\ \x8c\x77\xf2\x1c\xb7\xf3\x07\xf7\x6e\xec\xbe\x0a\x80\xed\xc9\x37\ \x38\xa7\x08\xff\xe7\x97\xb8\xb9\xb1\xfb\x9a\xb6\x0a\x4b\x00\x36\ \x80\xab\x39\x23\xd3\x5d\xbc\xce\x1d\xdc\xee\x16\xc7\xee\xa9\xb4\ \x64\x83\x39\x87\xb3\x39\x20\xd3\x9d\xdc\xcb\x15\x6e\x59\xec\x9e\ \xa6\xa9\x82\x12\x80\xf5\xe1\xa7\x5c\xc8\x8e\x99\xed\x60\x35\x77\ \x51\xcb\x13\x95\x38\x10\xac\x14\x66\x8c\xa4\x86\x33\xd9\x25\xb3\ \x5d\x6c\xe4\xd7\x5c\x55\x39\xef\x24\xaa\x90\x04\x60\x3b\x70\x01\ \xff\xc2\xae\x19\x55\xbf\x91\x19\xd4\xf2\xa7\x4a\x9e\xa7\x57\x49\ \xac\x2b\x5f\xa1\x86\x93\x33\xfb\x30\x58\xc5\xcf\xb9\xb1\x32\x5e\ \x54\x5a\x11\x09\xc0\x4e\xe3\x1a\x06\x66\x54\xf9\x93\xdc\xce\x5d\ \x6e\x55\xec\x3e\x4a\x28\xdb\x95\x33\x39\x87\x2f\x66\x54\xfd\x52\ \x2e\x77\xf7\xc7\xee\x63\xe1\xca\x3e\x01\xd8\x70\xae\xe3\xb8\x4c\ \xaa\x7e\x9f\xdf\x70\x8b\x66\xec\x95\x37\x3b\x90\xf3\xf8\x41\x46\ \xf3\x3f\xe6\x70\x89\x9b\x17\xbb\x87\x85\x29\xeb\x04\x60\xfb\xf0\ \x4b\xce\xc9\x64\xc2\x48\x2e\x67\x86\x55\xaa\x0c\x67\x80\x3a\x6e\ \xe7\xc7\xee\xef\xb1\x7b\x98\x5c\x19\x27\x00\x9b\xc8\x35\x99\x3c\ \x06\xf2\x2c\x93\xf3\x39\x37\xbc\x92\x59\x67\xce\xe0\x32\x3e\x9f\ \x41\xd5\x1f\x73\xb9\x9b\x1a\xbb\x7f\x49\x95\x69\x02\xb0\x7d\xb8\ \x39\x83\x27\xfc\x1d\x33\x98\xec\xe6\xc4\xee\x9d\x64\xc5\x8e\xe3\ \x32\x4e\xce\x60\xcc\x58\xc7\xf9\xe5\x39\x0e\x28\xcb\x04\x60\x35\ \xdc\x90\xfa\x8d\x9e\x8d\xd4\x72\xad\x7b\x29\x76\xdf\x24\x6b\x76\ \x08\x97\x52\x93\xfa\x1d\x82\xd5\x5c\xe4\x6a\x63\xf7\x2d\xc1\xd1\ \x28\xb7\x04\x60\x7b\x30\x35\xf5\x47\x7d\x56\x33\x95\xeb\x35\x91\ \x27\x3f\xac\x1f\x17\x33\x31\xf5\x0f\x91\x7b\x99\x58\x6e\x6b\x3f\ \x94\x59\x02\xb0\xd3\xf8\x6d\xca\xb3\xc0\x96\xf3\x1f\xfc\xae\x52\ \x16\xe0\x16\x7f\xd6\x8b\xef\xf2\x43\xf6\x4b\xb5\xd2\x77\xf9\x7e\ \x79\xdd\x1c\x2c\xa3\x04\x60\x3b\x73\x3d\xe7\xa6\x5a\xe5\x02\xa6\ \x70\xa7\xde\x12\x93\x5f\xd6\x85\xb3\x98\x94\xf2\x6b\xdf\x6f\xe3\ \x62\xf7\x61\xec\x9e\x79\x1f\x81\x72\x49\x00\x36\x9a\x9b\x53\x9d\ \xdf\x57\xc7\x64\x37\x3b\x76\xaf\xa4\x14\xd8\x68\x2e\x4b\xf5\x92\ \x72\x3d\xe7\x97\xcb\xdf\x56\x59\x24\x00\xeb\xc1\x64\x7e\x90\xe2\ \xb5\xdb\x87\xf9\x67\xb7\x20\x76\xaf\xa4\x94\xd8\x30\xfe\x2f\x27\ \xa5\x56\x9d\xe3\x37\x5c\x56\x0e\xcf\x91\x94\x41\x02\xb0\x2f\x32\ \x8d\x01\xa9\x55\xb7\x90\x49\x6e\x66\xec\x3e\x49\x29\xb2\xb1\x4c\ \x61\x48\x6a\xd5\x2d\x63\x82\x7b\x32\x76\x9f\x3a\x52\x5a\x2f\x6d\ \xdc\x8e\xed\x68\xbf\x62\x6e\x6a\xe1\xbf\x82\xef\x33\x4c\xe1\x2f\ \xad\x73\x33\x19\xc6\xf7\x59\x91\x52\x75\x03\x98\x6b\xbf\xb2\xec\ \x66\xa7\xa6\xa2\xa4\x47\x00\x36\x8c\xdb\x18\x9a\x52\x65\xeb\xb9\ \x8e\x5f\xe9\x6a\xbf\x74\xc4\x7a\xf1\x4f\x5c\x92\xda\x0a\xc4\x2f\ \x72\x6e\x29\x9f\x6e\x96\xec\x08\xc0\x3a\xdb\x95\x3c\x93\x52\xf8\ \x3b\x6a\x19\xec\xae\x54\xf8\x4b\xc7\xdc\x1a\x77\x25\x83\xa9\x25\ \x9d\xcf\xc6\xa1\x3c\x63\x57\x5a\xe7\xd8\xbd\x6a\x4b\x89\x8e\x00\ \x6c\x3f\xee\xe4\xa8\x94\x2a\x7b\x9c\x4b\xdd\x73\xb1\x7b\x24\xe5\ \xc6\x46\x70\x2d\xc7\xa6\x54\xd9\x5f\x39\xcb\x2d\x8f\xdd\xa3\x56\ \x7b\x59\x8a\x09\xc0\x46\x71\x0f\x7b\xa4\x52\xd5\x32\x2e\x77\xf7\ \xc5\xee\x8f\x94\x2b\x3b\x9d\x6b\x52\xba\x02\xf5\x1e\x5f\x2d\xc5\ \x15\x05\x4b\xf0\x14\xc0\xfe\x81\x47\x52\x09\xff\x55\xfc\x88\x43\ \x14\xfe\x92\x9c\xbb\x8f\x43\xf8\x11\x69\x2c\x07\xb3\x07\x8f\xd8\ \x3f\xc4\xee\xcf\xf6\x4a\x6c\x04\x60\x9d\xb9\x8e\x8b\x53\xa8\xa8\ \xc2\x56\x6e\x93\x98\x52\x5c\x6d\xf2\x7a\x2e\x29\xad\x89\xe6\x25\ \x95\x00\xac\x0f\x77\x31\x3a\x85\x8a\x2a\x6e\xed\x56\x89\x2d\xb5\ \xf5\xa6\x67\x73\x66\x29\x7d\x30\x95\x50\x02\xb0\x83\x78\x20\x85\ \xf3\xad\x97\x98\x58\x8a\xe7\x5a\x52\xfe\x6c\x14\x53\x39\xa4\xe0\ \x6a\x96\x31\xce\xbd\x12\xbb\x2f\x5b\x94\xcc\x35\x00\x3b\x99\xa7\ \x0b\x0e\xff\xcd\x4c\x61\xb8\xc2\x5f\xb2\xe1\xe6\x32\x9c\x29\x14\ \xfa\x12\xb8\x01\x3c\x6d\x27\xc7\xee\xcb\x16\x25\x32\x02\xb0\x49\ \x5c\x5d\x70\x32\x7a\x8d\x09\xee\x89\xd8\x3d\x91\x4a\x67\x23\x99\ \x56\xf0\xfa\x82\x9b\xb9\xc2\x4d\x89\xdd\x13\x28\x89\x11\x80\x75\ \xb5\x69\x4c\x2e\xb8\x25\x53\x39\x4c\xe1\x2f\xd9\x73\x4f\x70\x18\ \x85\xae\x01\xd8\x89\xc9\x36\xcd\xba\xc6\xee\x4b\x09\x8c\x00\xac\ \x2f\xf7\x15\xfc\xc8\xcf\xdf\xf9\x8e\x9e\xf0\x97\x62\xb2\xb1\xdc\ \xc4\x3e\x05\x56\xf2\x57\x4e\x8f\xfd\xea\xf1\xc8\x23\x00\x3b\x82\ \xe7\x0a\x0e\xff\x5a\x86\x28\xfc\xa5\xb8\xdc\x4c\x86\x50\xe8\x1a\ \x80\x47\xf1\x9c\x1d\x11\xb7\x1f\x51\x13\x80\x7d\x83\xb9\x05\x66\ \xd1\xf7\xf8\xaa\x3b\xc7\xad\x8e\xd9\x0b\xc9\x27\xb7\xda\x9d\xc3\ \x57\x29\x6c\x0d\xc0\x7d\x98\x6b\xdf\x88\xd9\x8b\x68\x09\xc0\xcc\ \xfe\x8d\xdf\x17\x38\xe7\xea\x7e\x86\xb8\x7b\x63\xf5\x40\xc4\xdd\ \xcb\x10\xee\x2f\xa8\x8a\xee\xfc\xde\xfe\xcd\xb2\x78\xb9\x8d\x97\ \x48\xd7\x00\xac\x17\xb5\x8c\x2f\xa8\x8a\x0f\xb9\xd8\xdd\x16\xa5\ \xf1\x22\xcd\xd8\xb9\x5c\xcf\xce\x05\x55\x31\x9d\x9a\x38\x73\x55\ \xa3\x24\x00\xdb\x9d\x87\x29\xec\xdc\x67\x16\xe7\xbb\x37\x23\x34\ \x5d\xa4\x15\xb6\x2f\x37\x33\xa6\xa0\x2a\x9e\xe7\x24\xb7\xb2\xf8\ \x2d\x8f\x70\x0a\x60\x7d\x79\xac\xa0\xf0\x5f\xcb\x85\x8c\x55\xf8\ \x4b\xe9\x70\x6f\x32\x96\x0b\x59\x5b\x40\x15\x47\xf0\x98\xf5\x2d\ \x7e\xcb\x8b\x3e\x02\xb0\xfe\x3c\x52\xd0\xab\xbc\x9f\x64\x82\x9e\ \xf3\x97\x52\x64\x03\x98\x56\xd0\xeb\xc8\x97\x72\xa2\xab\x2f\x6e\ \x9b\x8b\x3c\x02\xb0\xcf\x31\xb7\xa0\xf0\x9f\xca\x71\x0a\x7f\x29\ \x4d\x6e\x19\xc7\x15\xf4\x88\xd0\x40\xe6\xda\xe7\x8a\xdb\xe6\xa2\ \x26\x00\x3b\x98\xc7\xd9\x3f\x71\xf1\xcf\xb8\xd0\xfd\x40\xaf\xf1\ \x90\xd2\xe5\x3e\x73\x3f\xe0\xff\x90\xfc\x6f\x74\x7f\x1e\xb7\x83\ \x8b\xd9\xe2\x22\x9e\x02\xd8\x30\xea\x0a\x58\xe8\x63\x15\x5f\x77\ \x7f\x2e\x5a\x63\x45\x12\xb3\x2f\xf1\xbf\xec\x9a\xb8\xf8\x7b\x54\ \x17\x6f\x19\xd1\xa2\x25\x00\xfb\x02\x0f\x17\xf0\x32\xc6\x97\x39\ \x55\x43\x7f\x29\x17\x36\x80\x3f\x92\xfc\x93\x7c\x35\x27\xb9\xa7\ \x8b\xd3\xd2\x22\x9d\x02\xd8\x31\xcc\x2a\x20\xfc\x67\x70\x94\xc2\ \x5f\xca\x87\x5b\xc6\x51\xcc\x48\x5c\x7c\x17\x66\xd9\x31\xc5\x69\ \x69\x51\x12\x80\x1d\xc1\x0c\x76\x4a\x5c\xfc\x5a\xc6\xb9\x8f\x8a\ \x73\x38\x44\xd2\xe1\x3e\x62\x1c\xd7\x26\x2e\xbe\x13\x33\x8a\x33\ \x4b\xa0\x08\xa7\x00\x76\x28\x73\xd8\x2d\x61\xe1\x4f\xf8\xbe\x9b\ \x56\x8c\x03\x21\x92\x3e\x9b\xc0\x6f\x49\x3a\xe9\xf7\x7d\x8e\x73\ \x8b\x32\x6f\x61\xd6\x09\xc0\x3e\xc7\x5c\xfa\x25\x2c\xbc\x82\xd3\ \xdd\x53\x59\x1f\x02\x91\xec\xd8\xd1\xdc\xc7\x5e\x09\x0b\xbf\xcd\ \x28\xf7\x6a\xc6\xed\xcb\x36\x01\x58\x7f\xe6\x26\xbe\xf1\x37\x9f\ \xf1\xc5\x7e\x2c\x42\x24\x6d\xd6\x9f\xe9\x54\x25\x2c\xfc\x06\xa3\ \xb2\x8d\x81\x4c\xaf\x01\xd8\x9e\xcc\x4e\x1c\xfe\x77\x33\x52\xe1\ \x2f\xe5\xcf\xd5\x33\x92\xbb\x13\x16\xde\x9f\xd9\xb6\x67\x96\xad\ \xcb\x30\x01\x58\x1f\x66\x31\x28\x51\x51\xc7\xcf\x38\xb3\x1c\xde\ \xae\x2e\xd2\x31\xb7\x8e\x33\xf9\x59\xc2\x77\x0d\x0e\x62\x96\xf5\ \xc9\xae\x6d\x99\x9d\x02\x58\x2f\x66\xf3\x85\x44\x45\xd7\xf1\x6d\ \xf7\xbf\xd9\x75\x59\x24\x06\xfb\x3a\xb7\xd2\x23\x51\xd1\xa7\x19\ \x9d\xd5\x64\xe1\x8c\x12\x80\x75\x61\x46\xc2\xe9\x91\x2b\x38\xd9\ \xcd\xcb\xa6\xb3\x22\x31\xd9\x70\x66\x24\xbc\x20\x38\x8b\x93\xb3\ \x79\x08\x3e\xab\x53\x80\x1b\x13\x86\x7f\x3d\xc7\x2a\xfc\xa5\x32\ \xb9\x79\x1c\x4b\xb2\xeb\x5a\x63\xb8\x31\x9b\x36\x65\x92\x00\xec\ \x32\xbe\x9b\xa8\xe0\x32\x46\xb9\x25\xd9\x74\x54\x24\x3e\xb7\x84\ \x51\x24\x7b\xa6\xf5\xbb\x76\x59\x16\x2d\xca\xe0\x14\xc0\x4e\xe7\ \x1e\x92\xac\x71\xb6\x88\x31\xee\xed\x2c\x3a\x29\x52\x3a\xac\x1f\ \xb3\x38\x34\x41\x41\xc7\x57\xd3\x7f\xd7\x75\xea\x09\xc0\x46\x30\ \x27\xd1\xa5\x8e\xe7\x38\xc9\xbd\x9f\x76\xf7\x44\x4a\x8f\xed\xc6\ \xc3\x8c\x48\x50\x70\x1d\xc7\xb9\xe7\x52\x6e\x4b\xba\x09\xc0\xfa\ \xf3\x0c\x49\x16\x36\x9a\xcb\x57\xf4\xbc\xbf\xe4\x85\xf5\xe6\x4f\ \x8c\x4a\x50\xf0\x1d\x8e\x4c\xf7\xe9\x98\x54\xaf\x01\xd8\x4e\x3c\ \x98\x28\xfc\x67\x71\x92\xc2\x5f\xf2\xc3\x7d\xc4\x49\xcc\x4a\x50\ \xb0\x2f\x0f\x5a\xf2\x69\x75\xad\x48\x31\x01\x58\x67\xee\x64\x68\ \x82\x82\x7f\xe6\x54\x3d\xf4\x23\xf9\xe2\xd6\x71\x2a\x49\x16\xb8\ \x19\xca\x9d\xd6\x39\xbd\x76\xa4\x39\x02\xb8\x9a\x2f\x27\x28\xf5\ \x34\xe3\xdd\x86\x14\x5b\x21\x52\x16\xdc\x06\xc6\x93\x64\xd9\x8f\ \x2f\x73\x75\x7a\xad\x48\xed\x1a\x80\x9d\x4e\x92\x77\xf4\xbc\xc8\ \x71\xee\x83\xf4\xba\x23\x52\x4e\xac\x0f\x73\x12\x8d\x9a\xcf\x48\ \xeb\x7e\x40\x4a\x09\xc0\x06\xf0\x5c\x82\x77\xa3\x2c\x63\xa4\x5b\ \x91\x4e\x47\x44\xca\x91\xed\xc5\x13\x0c\x08\x2e\xf6\x21\x23\xd2\ \x59\x23\x2b\x95\x53\x00\xeb\xc6\xdd\x09\xc2\xbf\x9e\xd1\x0a\x7f\ \xc9\x37\xb7\x82\xd1\x09\x9e\x0e\xdc\x99\xbb\xad\x5b\x1a\xfb\x4f\ \xe7\x1a\xc0\x7f\x71\x78\x70\x99\x77\x19\xe3\xde\x48\x65\xef\x22\ \x65\xcc\xbd\xc1\x18\xde\x0d\x2e\x76\x38\xff\x95\xc6\xde\x53\x48\ \x00\xf6\x6d\xbe\x13\x5c\x68\x35\x63\xdd\xe2\x34\x3a\x20\x52\xee\ \xdc\x62\xc6\xb2\x3a\xb8\xd8\x77\xec\xdb\x85\xef\xbb\xe0\x6b\x00\ \x76\x18\x7f\x0d\x7e\xc9\xf7\x46\xc6\xba\xc7\x0a\x6f\xbc\x48\xa5\ \xb0\xe3\x99\xc9\x8e\x81\x85\xd6\x73\x94\x7b\xa1\xb0\xfd\x16\x38\ \x02\xb0\xde\xdc\x1d\x1c\xfe\xf0\x5d\x85\xbf\x48\x53\xee\xb1\x04\ \x13\xe8\xba\x73\xb7\xf5\x2e\x6c\xbf\x85\x9e\x02\xdc\x98\xe0\x4d\ \x7f\x57\xb9\xdb\x0a\xdc\xab\x48\xc5\x71\xb7\x71\x55\x70\xa1\x81\ \x85\x4e\x13\x2e\xe8\x14\xc0\xbe\x46\xf8\xca\x3d\xff\xe3\xce\x2e\ \xac\xc9\x22\x95\xca\xee\xe0\x5b\xc1\x85\xbe\xee\x92\xae\x38\x48\ \x41\x09\xc0\xf6\x62\x21\xbb\x07\x16\x7a\x82\xd1\xee\x93\xe4\xcd\ \x15\xa9\x64\xd6\x95\xd9\x8c\x0c\x2c\xb4\x92\x21\xc9\x6f\xa7\x17\ \x72\x0a\xf0\xdb\xe0\xf0\x5f\xca\x69\x0a\x7f\x91\xb6\xb8\x4f\x38\ \x8d\xa5\x81\x85\x76\xe7\xb7\xc9\xf7\x98\x38\x01\xd8\x04\xc6\x07\ \x16\x59\xcd\x29\x9a\xf1\x2f\xd2\x1e\xf7\x3e\xa7\x04\xdf\x12\x1c\ \x6f\x13\x92\xee\x2f\xe1\x29\x80\xf5\xe7\xc5\xe0\x67\xff\x4e\x73\ \xd3\x0b\x3b\x38\x22\x79\x60\xe3\xb9\x3f\xb0\xc8\x87\x0c\x4d\xb6\ \x4e\x40\xa2\x11\x80\x19\x37\x05\x87\xff\x64\x85\xbf\x88\x0f\x37\ \x9d\xc9\x81\x45\x76\xe6\x26\x4b\xb2\x0c\x5f\xb2\x11\x80\x5d\xc0\ \xaf\x03\x8b\x3c\xce\x89\xd9\x2c\x6b\x2c\x52\x79\xac\x0b\x8f\x70\ \x6c\x60\xa1\x0b\x5d\x82\x5b\x82\x09\x12\x80\x1d\xc0\x42\x7a\x06\ \x15\x59\x41\x95\x96\xfb\x14\xf1\x67\xfd\x98\x1f\xf8\x0e\x81\xb5\ \x0c\x71\xaf\x87\xee\x27\xc9\x29\xc0\xf5\x81\xe1\xbf\x89\x6f\x28\ \xfc\x45\x42\xb8\xb7\xf9\x06\x9b\x82\x8a\xf4\xe4\xfa\xf0\xfd\x04\ \x27\x00\x1b\xc7\xb8\xc0\x22\x57\xea\xc1\x5f\x91\x50\xee\x31\xae\ \x0c\x2c\x32\xce\x42\x63\x33\xf4\x14\xc0\xba\xf3\x12\x07\x04\x15\ \x79\x80\xf1\x2e\xdb\x77\x90\x8b\x54\x24\x33\xa6\x07\x7e\xdc\xbe\ \xce\x21\x6e\x7d\x48\x81\xd0\x11\xc0\x8f\x03\xc3\xbf\x9e\x73\x15\ \xfe\x22\x49\x38\xc7\xb9\x81\x8b\x85\x1c\xc0\x8f\xc3\xf6\x11\x34\ \x02\xb0\x81\xbc\x48\xd7\xa0\xfa\xab\x5d\x92\xc5\x8f\x45\x04\x00\ \x1b\x43\x5d\x50\x81\x4f\x18\xea\x02\x9e\x25\x0c\x1b\x01\xfc\x57\ \x60\xf8\x4f\x55\xf8\x8b\x14\xc2\xcd\x62\x6a\x50\x81\xae\x61\x2b\ \x05\x05\x8c\x00\x82\xe7\xfe\xbd\xc6\x61\x6e\x6d\x86\xc7\x46\x24\ \x07\xac\x27\x2f\x70\x60\x50\x91\x80\xf9\x81\xde\x09\xc0\x7a\xf2\ \x0a\xfb\x06\x34\x62\x33\x27\xb8\xc7\x8b\x70\x7c\x44\x2a\x9c\x1d\ \xcb\xa3\x41\x63\xf5\x37\x39\xc8\xf7\xa3\xd7\xbf\xda\x49\x41\xe1\ \x0f\xff\xa9\xf0\x17\x49\x83\x7b\x9c\xff\x0c\x2a\xb0\x2f\x93\x7c\ \x37\xf5\x1c\x01\xd8\xee\xbc\x46\xc8\x3b\xc9\x16\x33\x4c\xef\xfb\ \x11\x49\x87\x75\x63\x01\x83\x03\x0a\x7c\xcc\x81\x6e\xa5\xcf\x86\ \xbe\x23\x80\x7f\x0e\x0a\xff\x4d\x9c\xab\xf0\x17\x49\x8b\xdb\xc0\ \xb9\x41\xcf\x05\xee\xc4\x3f\xfb\x6d\xe8\x95\x00\x6c\x5f\x2e\x08\ \x6a\xef\x0d\xee\x99\x62\x1d\x1a\x91\x3c\x70\xcf\x70\x43\x50\x81\ \x0b\xcc\xeb\x94\xdd\xeb\x14\xc0\xfe\x3b\x68\xc5\xd2\x77\x18\xac\ \x97\x7d\x8b\xa4\xcb\x7a\xb3\x98\xbe\x01\x05\x7e\xe7\xbe\xd7\xf1\ \x46\x1e\x23\x00\x1b\xc8\x79\x41\x2d\x9d\xa4\xf0\x17\x49\x9b\xfb\ \xc8\xff\xd2\x1e\x00\xe7\x99\xc7\x8a\xdd\x3e\xa7\x00\x57\xd1\x25\ \x60\xb7\x73\xdc\x1d\x45\x3d\x2e\x22\x39\xe1\xee\x60\x4e\xc0\xe6\ \x5d\x7c\x96\x19\xef\xf0\x14\xc0\x86\x31\x0f\xff\xb5\x46\x3e\x63\ \x98\x5b\x14\xe5\xe8\x88\x54\x3c\x3b\x94\x05\x01\x1f\xc7\x8e\xe1\ \x6e\x41\xfb\x9b\x74\x3c\x02\xf8\x45\x40\xf8\xc3\x7f\x2a\xfc\x45\ \xb2\xe2\x16\x05\x3d\x11\x60\xfc\xa2\xc3\x4d\xda\x1f\x01\xd8\xd1\ \x3c\x19\xb0\xc3\xb7\x18\xec\xd6\x44\x3a\x36\x22\x39\x60\xbd\x58\ \xcc\xde\x01\x05\xbe\xe8\x9e\x6a\xef\xd7\x1d\x8d\x00\xc2\x2e\x3b\ \xfc\x44\xe1\x2f\x92\x25\xb7\x86\x9f\x04\x15\xe8\x20\x82\xdb\x1d\ \x01\xd8\xe7\x58\x12\xf0\xb0\xf0\xcb\x0c\x75\x61\x8b\x18\x89\x48\ \x20\xeb\xcc\x8b\x1c\xec\xbd\xf9\x66\x06\xb9\x57\xdb\xfe\x75\xfb\ \xe1\xfd\xc3\xa0\x29\x08\x57\x2a\xfc\x45\xb2\xe6\x36\x05\x2d\x15\ \xd6\x89\x1f\xb6\xf7\xeb\x76\x46\x00\xd6\x87\xfa\x80\xe5\x3f\x9f\ \x75\x47\xc6\x3e\x34\x22\xf9\x60\xcf\xf0\x79\xef\x8d\xd7\xd2\xdf\ \x7d\xd0\xd6\x2f\xdb\xfb\x84\x9f\x18\xb4\xfa\xaf\xe7\xb3\xc7\x22\ \x52\xb0\x90\x68\xeb\xc9\xc4\xb6\x7f\xd9\xe6\x08\xc0\x76\xe4\x75\ \xfa\x79\xef\xe4\x11\x37\x3a\xf6\x31\x11\xc9\x0f\x9b\xcd\x89\xde\ \x1b\xbf\xcd\x01\x6e\x63\xeb\xbf\x6a\x7b\x04\xf0\xcd\x80\xf0\x27\ \x74\x29\x42\x11\x29\x48\x48\xc4\xf5\xe3\x9b\x6d\xfd\xaa\xed\x04\ \x70\x49\xc0\x0e\xee\xd3\xec\x3f\x91\x62\x72\xcf\x70\x5f\xc0\xe6\ \x6d\x46\x73\x1b\x09\xc0\x8e\xe7\xb0\x80\xea\x3b\x7c\xde\x48\x44\ \x52\x16\x12\x75\x87\xd9\xf1\xad\xff\xa2\xad\x11\xc0\xf9\x01\x95\ \x3f\xe6\x9e\x8f\x7d\x2c\x44\xf2\xc6\x3d\xcf\x63\x01\x9b\xb7\x11\ \xd1\xad\x5e\x04\xb4\xde\xbc\x4d\x0f\xef\xaa\x4f\x71\x33\x62\x1f\ \x0c\x91\xfc\xb1\x93\x79\xd0\x7b\xe3\x75\xf4\x6b\x6d\x9a\x7e\xeb\ \x23\x80\x33\x03\xc2\xff\x25\x1e\x8a\x7d\x20\x44\x72\xe9\x21\x5e\ \xf2\xde\xb6\x07\x67\xb6\xf6\xe3\xd6\x13\x40\xc8\x02\x20\x53\xf4\ \xea\x2f\x91\x18\x9c\x63\x4a\xc0\xe6\xad\x46\x75\x2b\xa7\x00\x36\ \x98\x57\xbc\x2b\x6d\xe7\x0e\xa3\x88\x64\x2b\xf0\x69\x9d\x83\xdc\ \xe2\x96\x3f\x6a\x6d\x04\xf0\xed\x80\x16\x5c\xaf\xf0\x17\x89\xc5\ \x6d\xe4\xfa\x80\xcd\xbf\xbd\xfd\x8f\xb6\x1b\x01\x58\x67\x96\x7b\ \xcf\x37\x5e\x43\x7f\xb7\x3a\xf6\x41\x10\xc9\x2f\xdb\x85\x7a\x7a\ \x79\x6e\xfc\x16\xfb\xb5\x9c\xb0\xb7\xfd\x08\xa0\x3a\x60\xb9\x81\ \xbb\x14\xfe\x22\x31\xb9\xd5\xdc\xe5\xbd\xf1\xde\x54\xb7\xfc\xd1\ \xf6\x09\x60\x42\xc0\xde\x6f\x89\xdd\x7d\x91\xdc\x0b\x89\xc2\xed\ \xa2\xbb\xc5\x29\x80\x75\x63\xa5\xf7\x1c\xc0\xa5\x6e\x50\xec\xbe\ \x8b\x88\x2d\xc1\x63\x01\x70\x00\xd6\xb2\x7b\xf3\x77\x76\xb5\x1c\ \x01\x9c\x18\x30\x05\xf8\xd6\xd8\x1d\x17\x11\x42\x22\xb1\x67\xcb\ \x39\x84\x2d\x13\xc0\x78\xef\xaa\x36\x73\x5b\xec\x7e\x8b\x08\x70\ \x1b\x9b\xbd\xb7\x6d\x11\xe1\xcd\x12\x80\x19\xe3\xbc\x2b\x9a\xe5\ \xde\x8c\xdd\x6f\x11\x01\xf7\x26\xb3\xbc\x37\x1e\x67\xcd\x96\xf9\ \x6f\x3e\x02\xf8\x42\xc0\xbb\xc7\x74\x01\x50\xa4\x54\xf8\x47\x63\ \x5f\xbe\xd0\xf4\x9f\xcd\x13\x80\xff\x09\xc0\x07\x4c\x8f\xdd\x67\ \x11\x69\x34\x9d\x0f\xbc\xb7\x6d\x16\xe5\x49\x13\xc0\x9d\xcd\xaf\ \x25\x8a\x48\x3c\x6e\x03\x77\x7a\x6f\xdc\x56\x02\xb0\x81\x01\xab\ \x8d\x87\xac\x46\x22\x22\x59\xf3\x8f\xc8\x83\x9b\xbe\x35\xb8\xe9\ \x08\xc0\xff\xf3\xff\xe3\xa0\xa5\x08\x44\x24\x6b\x8f\xf1\xb1\xf7\ \xb6\x4d\x22\xbd\x69\x02\x18\xe3\x5d\xc1\x4c\x4d\x01\x12\x29\x25\ \x6e\x23\x33\xbd\x37\x6e\x12\xe9\x5b\x13\x80\x75\xe6\x68\xef\x0a\ \xfe\x18\xbb\xbb\x22\xd2\x82\x7f\x54\x1e\x6d\x9d\xb7\x7c\xbb\x6d\ \x04\x30\x8c\x9d\x3c\x8b\x6f\x0a\x58\x88\x48\x44\x8a\xe3\x41\x7c\ \x5f\xcd\xb7\x13\xc3\xb6\x7c\xbb\x2d\x01\x8c\xf4\xde\xd1\x5f\xdc\ \xaa\xd8\x7d\x15\x91\xe6\xdc\x2a\xfe\xe2\xbd\xf1\xd6\x68\xdf\x96\ \x00\x46\x79\x17\xd6\x09\x80\x48\x29\xf2\x8f\xcc\xad\xd1\xbe\x75\ \x36\xa0\xbd\xc3\x5e\x9e\x85\x07\xb9\xa5\xb1\x7b\x2a\x22\x2d\xd9\ \x40\x96\x78\x6e\xba\xc2\x35\x3e\xf3\xdb\x38\x02\xb0\x41\xde\xe1\ \x5f\xaf\xf0\x17\x29\x45\x6e\x29\xf5\x9e\x9b\xee\x65\x8d\x53\xf9\ \xb7\x9c\x02\xf8\x5f\x01\x98\x1b\xbb\x9b\x22\xd2\x06\xff\xe8\x6c\ \x8c\xf8\x2d\x09\xc0\xff\x0a\x80\x12\x80\x48\xa9\xf2\x8f\xce\xc6\ \x88\x0f\x4f\x00\x4f\xc4\xee\xa3\x88\xb4\xc1\x3f\x3a\x1b\x23\xde\ \x1c\x60\xbb\xf3\x9e\x67\xb1\x55\xec\xae\x17\x81\x88\x94\x26\x33\ \x56\xb2\xab\xe7\xc6\x7b\xb8\x95\x5b\x46\x00\x87\x7a\xef\xe1\x2f\ \x0a\x7f\x91\x52\xe5\x5c\xc0\xb3\x00\x87\x42\x78\x02\xd0\x09\x80\ \x48\x29\xf3\x8f\xd0\x26\x09\x60\x88\x77\x21\x5d\x02\x14\x29\x65\ \xfe\x11\x3a\x04\x42\x47\x00\x9f\xf2\x7c\xec\xfe\x89\x48\x3b\x9e\ \xe7\x53\xcf\x2d\x13\x8c\x00\x96\x68\x1a\xb0\x48\x29\x73\x1b\xbd\ \x9f\x06\xdc\x32\x02\xb0\xbe\xde\xd7\x0d\x17\xc5\xee\x9e\x88\x74\ \xc0\x37\x4a\x77\xb5\xbe\x0d\x23\x00\xff\x4b\x80\x4a\x00\x22\xa5\ \xce\x3f\x4a\x0f\x6d\x48\x00\xfe\x97\x00\x95\x00\x44\x4a\x9d\x7f\ \x94\x0e\x69\x48\x00\x87\x64\x50\xb5\x88\xc4\xe1\x1f\xa5\x87\x34\ \x24\x80\x03\x3c\x37\xdf\xc8\xb2\xd8\x7d\x13\x91\x0e\x2c\xc3\xf7\ \x52\xfd\x01\x0d\x09\x60\x6f\xcf\xcd\x17\xbb\xcf\x62\xf7\x4d\x44\ \xda\xe7\x3e\x63\xb1\xe7\xa6\x7b\x87\x25\x80\x57\x62\x77\x4d\x44\ \x3c\xf8\x46\xea\xde\xd0\xc9\xba\x7a\xdf\x04\xd4\xcb\x40\x45\xca\ \x81\x6f\xa4\xee\x6a\x5d\x3b\xd1\xcf\xbb\xda\xb7\x62\xf7\x4b\x44\ \x3c\xf8\x47\x6a\xbf\x4e\xde\x27\x00\x4a\x00\x22\xe5\xc1\x3f\x52\ \xf7\xd6\x08\x40\xa4\xd2\x68\x04\x20\x92\x63\x41\x23\x00\x25\x00\ \x91\xca\x92\xc9\x29\xc0\xc7\x6e\x4d\xec\x7e\x89\x48\xc7\xdc\x1a\ \xef\x37\x05\xf7\xeb\xe4\x7d\x13\x50\x9f\xff\x22\xe5\xc2\x37\x5a\ \x77\xed\x44\x77\xcf\x4d\x57\xc4\xee\x93\x88\x78\xf2\x8d\xd6\xee\ \x9d\xe8\xe6\xb9\xe9\xfa\xd8\x7d\x12\x11\x4f\xeb\x3c\xb7\xeb\xe6\ \x3f\x02\x50\x02\x10\x29\x17\x1b\x3c\xb7\xd3\x08\x40\xa4\x02\xf9\ \x46\x6b\xc0\x08\xc0\x37\xa7\x88\x48\x6c\xbe\xd1\xda\x4d\x23\x00\ \x91\xca\xe3\x1b\xad\x01\xa7\x00\x1a\x01\x88\x94\x8b\x80\x11\x80\ \x2e\x02\x8a\x54\x1a\x8d\x00\x44\x72\x2c\x60\x04\x20\x22\xb9\xd5\ \xc9\x3f\x57\xc4\x6e\xaa\x88\x78\xf2\x1e\xd7\x77\xf2\x3f\x5b\x88\ \xdd\x27\x11\xf1\xe4\x7d\x65\x4f\x23\x00\x91\xca\x13\x30\x02\xf0\ \x7e\x68\x30\x76\x9f\x44\xc4\x53\xc0\x08\xc0\xfb\xa1\xc1\xd8\x7d\ \x12\x11\x4f\x1a\x01\x88\xe4\x98\xf7\x03\xfe\xba\x08\x28\x52\x79\ \xbc\x1f\xf0\xd7\x08\x40\xa4\xf2\xf4\xf0\xdc\x2e\x60\x04\xb0\x57\ \xec\x3e\x89\x88\x27\xdf\x68\x5d\xdf\x89\x55\x9e\x9b\xfa\xaf\x1e\ \x2c\x22\x71\xf9\x46\xeb\xaa\x4e\xbc\xed\xb9\xe9\x4e\xd6\x2b\x76\ \xaf\x44\xa4\x63\xd6\x8b\x9d\x3c\x37\x7d\xbb\x53\xc8\x1a\xe2\xb1\ \x3b\x26\x22\x1e\x02\xde\xf5\xa1\x04\x20\x52\x69\x82\x12\x80\xef\ \x29\x80\x12\x80\x48\x79\xf0\x8f\x54\x9d\x02\x88\x54\x1c\x8d\x00\ \x44\x72\x2c\x64\x04\xe0\x3e\xf1\xbe\x11\xb8\x6f\xec\x7e\x89\x88\ \x07\xdf\x48\x5d\xe5\x3e\xe9\x84\xff\x7b\xc4\x0e\x8a\xdd\x2f\x11\ \xf1\xe0\x1b\xa9\x6f\x41\x48\x02\x18\x6c\x5d\x62\xf7\x4c\x44\xda\ \x67\x5d\x18\xec\xb9\x69\x63\x02\x78\xdd\x73\xf3\x1d\x19\x10\xbb\ \x73\x22\xd2\x81\x01\xec\xe8\xb9\xe5\xeb\x0d\x09\xe0\x25\xef\xaa\ \x0f\x8d\xdd\x37\x11\xe9\x80\x7f\x94\xbe\xd4\x90\x00\x16\x66\x50\ \xb5\x88\xc4\xe1\x1f\xa5\x0b\x1b\x12\xc0\xa2\x0c\xaa\x16\x91\x38\ \xfc\xa3\x74\x11\x74\x02\xf7\x8e\xf7\x8d\x40\x25\x00\x91\x52\xe7\ \x1b\xa5\xab\xdc\x3b\x0d\x23\x00\xff\x93\x80\x41\xe6\x7b\x79\x41\ \x44\x22\xb0\x1d\x19\xe4\xb9\xe9\x42\xd8\x92\x00\x7c\x4f\x02\x76\ \xe0\x88\xd8\x1d\x14\x91\x76\x1c\xc1\x0e\x9e\x5b\x2e\x82\xd0\x11\ \x00\x8c\x8a\xdd\x3f\x11\x69\x87\x7f\x84\x26\x18\x01\xc0\xc8\xd8\ \xfd\x13\x91\x76\xf8\x47\xe8\x22\x00\x73\x80\xed\xce\x7b\x9e\x85\ \x56\xb1\xbb\x73\xb1\xfb\x28\x22\xad\x31\x63\x25\xbb\x7a\x6e\xbc\ \x87\x5b\xd9\x38\x02\x70\x2b\x79\xd5\xb3\xd0\xae\xba\x13\x20\x52\ \xb2\x0e\xf5\x0e\xff\x57\xdd\x4a\xd8\x72\x0a\x00\x73\xbd\x77\xa1\ \x93\x00\x91\x52\xe5\x1f\x9d\x8d\x11\x1f\x9e\x00\x74\x19\x50\xa4\ \x54\xf9\x47\x67\x8b\x04\xf0\x44\x06\xbb\x10\x91\xe2\xf2\x8f\xce\ \xc6\x88\xb7\x2d\x57\xf4\xec\x1d\xef\x97\x09\x0c\x72\x4b\x63\xf7\ \x53\x44\x5a\xb2\x81\x2c\xf1\xdc\x74\x85\xeb\xdb\xf0\x4d\xa7\xad\ \x3f\xf2\x1f\x03\x9c\x1a\xbb\xa3\x22\xd2\x0a\xff\xc8\xdc\x1a\xed\ \xdb\x12\x80\xff\x55\x00\x25\x00\x91\x52\xe4\x1f\x99\x5b\xa3\x3d\ \xc9\x08\xe0\x18\xf3\xbd\xd5\x20\x22\x45\x62\xbb\x72\x8c\xf7\xc6\ \xad\x8c\x00\x16\xf0\xb1\x67\xe1\xce\x9c\x12\xbb\xb3\x22\xd2\xc2\ \x29\x74\xf6\xdc\xf2\x63\x16\x6c\xf9\x76\x6b\x02\x70\x9b\x78\xca\ \x7b\x57\x3a\x09\x10\x29\x35\xfe\x51\xf9\x94\xdb\xb4\xe5\xdb\x4e\ \x4d\x7e\x3c\xcb\xbb\x82\xb1\x9a\x16\x2c\x52\x4a\x6c\x47\xc6\x7a\ \x6f\xdc\x24\xd2\x9b\x26\x80\xe9\xde\x15\xec\xc4\xf1\xb1\x3b\x2c\ \x22\x4d\x1c\xef\xfd\x46\xe0\x66\x91\xde\x24\x01\xb8\xa5\xbc\xec\ \x5d\xc5\xe9\xb1\xfb\x2b\x22\x4d\xf8\x47\xe4\xcb\x4d\x9f\xe3\xe9\ \xd4\xec\x57\xfe\x63\x80\xb3\xac\x5b\xec\x1e\x8b\x48\x03\xeb\xc6\ \x59\xde\x1b\x37\x8b\xf2\xa4\x09\xa0\x0f\xe3\x63\x77\x5a\x44\x1a\ \x8d\xa7\x8f\xf7\xb6\xed\x24\x80\xa7\x79\xc7\xbb\x9a\xf3\x62\xf7\ \x59\x44\x1a\xf9\x47\xe3\x3b\x3c\xdd\xf4\x9f\xcd\x12\x80\x73\x3c\ \xe0\x5d\xd1\x18\xd3\xcb\x42\x45\x4a\x80\xed\xcb\x18\xef\x8d\x1f\ \x68\xbe\xa0\x4f\xa7\x16\xbf\xf6\x3f\x09\xe8\xc4\xb9\xb1\x3b\x2e\ \x22\xc0\xb9\xdb\xc5\x71\xdb\x5a\x44\xb8\x35\x5f\xdf\xcb\xba\xb1\ \x92\x9e\x9e\x55\x2d\x75\xbe\x0b\x10\x8b\x48\x66\x6c\x09\x03\x3d\ \x37\x5d\xcb\xee\x6e\x43\xd3\x1f\xb4\xc8\x1c\x6e\x03\x7f\xf2\xde\ \xef\x40\xd3\xea\x40\x22\x91\xd9\x48\xef\xf0\x87\x3f\x35\x0f\x7f\ \x5a\x19\x3a\x4c\x0b\xd8\xb7\x2e\x04\x8a\xc4\x16\x12\x85\xdb\x45\ \xb7\xb5\x5c\xe2\xd7\x3a\xb3\x9c\xbd\x3d\xab\x5b\x43\x7f\xb7\x3a\ \x76\xff\x45\xf2\xcb\x76\xa1\x9e\x5e\x9e\x1b\xbf\xc5\x7e\xdb\x66\ \x01\x34\xd8\x6e\x04\xe0\x36\x71\x9b\xf7\xde\x7b\x31\x31\xf6\x01\ \x10\xc9\xb5\x89\xde\xe1\x0f\xb7\xb5\x0c\xff\x56\x46\x00\x60\x83\ \x79\xc5\xbb\xca\xb7\x39\xc0\x6d\x8c\x7d\x0c\x44\xf2\xc9\x76\xe4\ \x75\xfa\x79\x6f\x7e\x90\x5b\xdc\xf2\x47\xad\xdc\x3e\x70\x8b\x79\ \xd2\xbb\xca\x7e\x9c\x1d\xfb\x20\x88\xe4\xd6\xd9\x01\xe1\xff\xe4\ \xf6\xe1\x4f\x1b\xf7\x0f\x6f\x09\x68\xc2\x24\xb3\xd8\x47\x41\x24\ \x8f\xcc\x98\x14\xb0\x79\xab\x51\x6d\xad\xbd\xe7\xcb\x7a\xf3\x36\ \x3d\xbc\x2b\x3e\xc5\xcd\x88\x7d\x28\x44\xf2\xc7\x4e\xe6\x41\xef\ \x8d\xd7\xd1\xcf\x7d\xb4\xfd\x8f\x5b\x1d\x01\xb8\x8f\xb8\x27\xa0\ \x1d\x97\xc5\x3e\x10\x22\xb9\x14\x12\x79\xf7\xb4\x16\xfe\xb4\xf9\ \x08\xe1\xcd\x01\x55\x1f\x6f\x47\xc4\x3e\x12\x22\x79\x63\x47\x04\ \x2d\xcb\xd3\x46\x44\xb7\x91\x00\xdc\x63\xbc\x10\x50\xf9\x4f\x62\ \x1f\x0c\x91\xdc\x09\x89\xba\x17\xdc\x63\xad\xff\xa2\xed\x49\x04\ \xd7\x05\x54\x7f\xba\x1d\x19\xfb\x68\x88\xe4\x89\x1d\x19\xb4\x2a\ \x57\x9b\xd1\xdc\xea\x45\x40\x08\xbe\xc3\xf8\x88\x1b\x1d\xfb\x90\ \x88\xe4\x87\xcd\xe6\x44\xef\x8d\xdb\x79\x5a\xa7\xcd\x11\x80\xdb\ \xc8\x0d\x01\xed\x39\xd1\xfc\x9b\x23\x22\x05\xb1\x13\x03\xc2\x1f\ \x6e\x68\xfb\x61\xbd\x36\x47\x00\x60\x7d\xa8\xf7\x9e\x1a\x0c\xcf\ \x3a\x9d\x06\x88\x14\x85\x3d\xc3\xe7\xbd\x37\x5e\x4b\x7f\xf7\x41\ \x5b\xbf\x6c\x67\x21\x01\xf7\x41\xd0\x03\x41\x9f\xb7\x33\x62\x1f\ \x16\x91\x3c\xb0\x33\x02\xc2\x1f\x6e\x69\x3b\xfc\xdb\x1d\x01\x80\ \x7d\x8e\x25\x01\x6b\x8d\xbc\xcc\xd0\xed\x27\x1b\x88\x48\x9a\xac\ \x33\x2f\x72\xb0\xf7\xe6\x9b\x19\xe4\x5e\x6d\xfb\xd7\xed\x86\xb7\ \x7b\x95\xfb\x03\x5a\x76\x30\xe7\x44\x3e\x36\x22\x95\xef\x9c\x80\ \xf0\x87\xfb\xdb\x0b\xff\x0e\x46\x00\x60\x47\x07\x4c\x0c\x82\xb7\ \x18\xec\xd6\x44\x3c\x34\x22\x15\xce\x7a\xb1\xd8\x7b\xbd\x0e\x80\ \x2f\xba\x76\xdf\xf9\xd9\xc1\x00\xdf\x3d\x45\xc8\x73\xfe\x7b\xf3\ \xaf\xd1\x8e\x8c\x48\x1e\xfc\x6b\x50\xf8\xcf\x70\x1d\xbc\xf2\xb7\ \x83\x11\x00\xd8\x30\xe6\xe1\x3f\xdf\xef\x33\x86\xb9\x45\xd1\x0e\ \x8e\x48\x45\xb3\x43\x59\x40\x17\xef\xcd\x1d\xc3\xdd\x82\xf6\x37\ \xe9\xf0\x12\x9f\x5b\xc0\x5d\x01\x2d\xec\xc2\xaf\x23\x1d\x1b\x91\ \xca\xf7\xeb\x80\xf0\x87\xbb\x3a\x0a\x7f\x8f\x11\x00\xd8\x40\x5e\ \x0a\xda\x6d\x8d\xbb\xa3\xf8\x47\x46\xa4\xd2\xd9\xd9\xd4\x06\x6c\ \xfe\x19\x87\x34\x7d\x0d\x68\xeb\x3c\x6e\xf2\xb9\xa5\x41\xcf\x03\ \xc0\x14\xeb\x5d\xec\x43\x23\x52\xe9\xac\x37\x53\x82\x0a\xdc\xd2\ \x71\xf8\x7b\x25\x00\xe0\xe7\x6c\xf0\xda\xae\x41\x5f\x7e\x56\xc4\ \xe3\x22\x92\x0f\x3f\xa3\x6f\xc0\xd6\x1b\xf8\xb9\xcf\x66\x5e\x09\ \xc0\xbd\xc9\x8d\x41\x4d\xbd\x48\xb3\x03\x45\xd2\x64\x47\x72\x51\ \x50\x81\x1b\xdd\x9b\x5e\xf5\x76\x7c\x0d\x00\xc0\x76\xe7\x35\x76\ \x0a\xd8\xfd\x62\x86\xb9\x90\x51\x83\x88\xb4\xc9\xba\xb1\x80\xc1\ \x01\x05\x3e\xe6\x40\xb7\xd2\x67\x43\xcf\x07\x7d\xdd\x4a\xae\x0d\ \x6a\xf1\x60\x7e\x59\xac\x83\x23\x52\xf1\x7e\x19\x14\xfe\x70\xad\ \x5f\xf8\x7b\x8f\x00\xc0\x7a\xf2\x0a\x21\x2f\x04\xdf\xcc\x09\xee\ \xf1\xa2\x1c\x1c\x91\x8a\x66\xc7\xf2\x68\xc0\x9c\x1c\x78\x93\x83\ \xdc\x5a\xbf\x4d\xbd\xab\x75\x6b\xf9\x51\x50\xab\x3b\x71\x8b\xf9\ \x4f\x26\x16\x91\x56\x59\x4f\x6e\x09\x0a\x7f\xf8\x91\x6f\xf8\x07\ \x24\x00\x70\x77\x53\x17\xd4\x8c\x03\x03\x6f\x5b\x88\xc8\xf6\xa6\ \x70\x60\xd0\xf6\x75\xee\x6e\xff\x8d\xbd\x4f\x01\x00\x6c\x20\x2f\ \xd2\x35\xa8\x31\xd5\x6e\x56\x86\x87\x46\xa4\xc2\xd9\x98\xc0\x8f\ \xdd\x4f\x18\xea\x73\xff\x7f\x8b\xa0\xa1\x85\x5b\xca\xe4\xc0\xf6\ \xdf\x64\xbb\x64\x74\x64\x44\x2a\x9e\xed\xc2\x4d\x81\x45\x26\x87\ \x84\x7f\xe0\x08\x00\xac\x3b\x2f\x71\x40\x50\x91\x07\x18\xef\xc2\ \x76\x22\x22\x80\x19\xd3\x19\x17\x54\xe4\x75\x0e\x71\xeb\x43\x0a\ \x84\x5d\x5c\xc0\xad\xe7\xe2\xc0\x5e\x8c\xe3\x8a\x2c\x0e\x8e\x48\ \xc5\xbb\x22\x30\xfc\xe1\xe2\xb0\xf0\x0f\x1e\x01\x00\xd8\x1f\x03\ \x9b\xb5\x89\xd1\x6d\xbd\x96\x40\x44\x5a\x67\xc7\x33\x9b\xce\x41\ \x45\x1e\x70\xa7\x06\xef\x25\x41\x02\x38\x80\x85\x01\xab\x05\x03\ \xac\xa0\xca\xbd\x9d\xea\xd1\x11\xa9\x68\xd6\x8f\xf9\xec\x15\x54\ \x64\x2d\x43\xdc\xeb\xa1\xfb\x09\x3c\x05\x00\x70\xaf\x73\x79\x60\ \x91\xbd\xf8\x83\x85\x4c\x28\x16\xc9\x35\xeb\xc2\x1f\x02\xc3\x1f\ \x2e\x0f\x0f\xff\x44\x09\x00\xf8\x0d\xa1\x37\xf7\x8e\xd5\xa3\xc1\ \x22\xde\x7e\xc9\xb1\x81\x25\x66\xf1\x9b\x24\x3b\x4a\x70\x0a\x00\ \x60\xfd\x79\x91\x9d\x03\x0b\x9d\xe6\xa6\xa7\x70\x68\x44\x2a\x9c\ \x8d\x0f\x5a\x8d\x1b\xe0\x43\x86\xba\xfa\x24\xfb\x4a\x36\x02\xc0\ \xd5\xf3\x8f\xc1\x85\x6e\xb5\x81\x05\x1e\x19\x91\x8a\x67\x03\xb9\ \x35\xb8\xd0\x3f\x26\x0b\xff\xc4\x23\x00\x00\xbb\x9f\xf1\x81\x45\ \x96\x72\xb4\x7b\x3f\xf9\xa1\x11\xa9\x74\xb6\x1b\x4f\x11\xfa\x41\ \x39\xdd\x9d\x96\x78\x7f\x05\x24\x80\xbd\x58\xc8\xee\x81\x85\x9e\ \x60\xb4\xfb\x24\xf9\xe1\x11\xa9\x64\xd6\x95\xd9\x8c\x0c\x2c\xb4\ \x92\x21\x6e\x45\xd2\x3d\x26\x3c\x05\x00\x70\x2b\xf8\x41\x70\xa1\ \x91\xdc\x9c\x7c\x8f\x22\x15\xee\xe6\xe0\xf0\x87\x1f\x24\x0f\xff\ \x82\x12\x00\xb8\xbb\x09\x5f\xff\xf7\x5b\xe6\xb5\x56\x99\x48\xde\ \xd8\xcf\xf9\x56\x70\xa1\x3b\x42\xe6\xfe\xb5\xb2\xcf\xc2\x1e\xd3\ \xb7\xde\x3c\x17\x7c\xc6\x02\x13\xdc\x6d\x05\xed\x56\xa4\xe2\xd8\ \xb9\x4c\x0b\x2e\xb4\x94\x11\xee\xa3\x82\xf6\x5a\xe8\x3c\x1d\x3b\ \x8c\xbf\xd2\x3d\xb0\xd0\x46\xc6\xea\xe1\x60\x91\x6d\xec\x78\x66\ \xb2\x63\x60\xa1\xf5\x1c\xe5\x5e\x28\x6c\xbf\x05\x9d\x02\x00\xb8\ \x17\xb8\x20\xb8\xd0\x8e\xdc\x67\xc3\x0a\xdd\xb3\x48\xa5\xb0\x61\ \xdc\x17\x1c\xfe\x70\x41\xa1\xe1\x9f\x42\x02\x00\x77\x6b\xf0\x9c\ \x65\xd8\x85\x99\x16\xb6\xcc\xa1\x48\x85\xb2\xc1\xcc\x64\x97\xe0\ \x62\x37\xb9\x5b\x53\xd8\x77\x1a\x53\xf5\xad\x1b\x7f\xe5\xf0\xe0\ \x62\xf5\x8c\x72\x6f\xa4\xb0\x7b\x91\x32\x66\xfb\x33\x97\xfe\xc1\ \xc5\xfe\xc6\x51\x69\x2c\xbc\x9f\x4a\x02\x00\x1b\xc0\x73\xc1\x8f\ \x06\xc3\x32\x46\x16\x72\x0b\x43\xa4\xdc\xd9\x5e\x3c\xc1\x80\xe0\ \x62\x1f\x32\xc2\x2d\x4b\x63\xff\x29\x9c\x02\x00\xb8\x65\x9c\x97\ \xa0\xd8\x00\x66\x59\x9f\x74\x5a\x20\x52\x7e\xac\x0f\xb3\x12\x84\ \x3f\x9c\x97\x4e\xf8\xa7\x96\x00\xc0\xdd\x17\xf8\xea\x90\x06\x43\ \x79\xc8\x7a\xa5\xd5\x06\x91\x72\x62\xbd\x78\x88\xa1\x09\x0a\x5e\ \xeb\xee\x4b\xad\x0d\xe9\x2d\xd7\x67\x9d\x79\x80\x2f\x27\x28\xf8\ \x67\x4e\xd1\x6b\xc4\x24\x6f\xac\x1b\x0f\xf2\xa5\x04\x05\x1f\x62\ \x9c\xdb\x94\x5a\x2b\xd2\x5c\xaf\xd3\x76\xe2\x2f\x89\x32\xda\x2c\ \x4e\x73\xeb\x52\x6c\x88\x48\x89\xb3\x1e\xdc\xcf\x98\x04\x05\x5f\ \xe4\x18\xf7\x71\x8a\xed\x48\x77\xc1\x5e\xeb\xcf\x33\x41\x2f\x31\ \xde\x62\x2e\x5f\x29\xec\x89\x26\x91\xf2\x61\xbd\xf9\x13\xa3\x12\ \x14\x7c\x87\x23\x93\x4e\xfc\x6d\x5d\x6a\xd7\x00\x1a\xb8\x7a\xc6\ \x91\xe4\xb3\x7c\x14\x8f\xd8\x6e\xe9\xb6\x45\xa4\x34\xd9\x6e\x3c\ \x92\x28\xfc\xd7\x31\x2e\xdd\xf0\x4f\x3d\x01\x80\x7b\x8e\x1a\x92\ \x0c\x2b\x46\x30\xc7\xfa\xa5\xdd\x1a\x91\x52\x63\xfd\x98\xc3\x88\ \x04\x05\x1d\x35\xee\xb9\xb4\x5b\x93\x7a\x02\x00\x77\x5f\xc2\x37\ \x01\x1c\xca\xe3\xb6\x7f\xfa\xed\x11\x29\x1d\xb6\x3f\x8f\x73\x68\ \xa2\xa2\x57\xa4\x77\xed\xbf\x49\x7b\xb2\x79\x69\x8f\xfd\x37\xdf\ \x4d\x54\xb0\x9e\xd1\x6e\x49\x26\x4d\x12\x89\xce\x06\x31\x3b\xc1\ \x53\x7f\x00\xbf\x73\xdf\xcb\xa4\x45\x19\x25\x80\x2e\xcc\x48\x74\ \x8d\x13\x56\x70\xb2\x9b\x97\x49\xa3\x44\xa2\xb2\xe1\xcc\x08\x5e\ \xec\xbb\xc1\x2c\x4e\x76\x9f\x65\xd1\xa6\x0c\x4e\x01\x00\xdc\x67\ \x9c\xc1\xd3\x89\x8a\xee\xc5\x5c\xfb\x7a\x36\xad\x12\x89\xc7\xbe\ \xce\xdc\x84\xe1\xff\x34\x67\x64\x13\xfe\x99\x25\x00\x70\x6b\xf8\ \x32\xc9\x26\x2b\xf6\xe0\x4e\xfb\x57\xb3\xac\x5a\x26\x52\x6c\x66\ \xf6\xaf\xdc\x49\x8f\x44\x85\x5f\xe0\xcb\x6e\x4d\x66\x2d\xcb\xf2\ \xc5\xbd\xb6\x27\x73\x19\x94\xb0\xf0\xdd\x4c\xd0\xc3\x41\x52\x09\ \xac\x07\xd3\xf8\x5a\xc2\xc2\x4b\x18\xe5\xde\xcd\xb0\x6d\xd9\xbe\ \xb9\xdb\xfa\x33\x97\xa4\x57\xf6\xe7\x33\x3e\xed\xbb\x9e\x22\xc5\ \x66\xfd\x99\x4e\x55\xc2\xc2\x6f\x30\x2a\xdb\x18\xc8\xec\x14\xa0\ \x81\xab\xe7\x44\x92\xbe\x16\xb4\x8a\x67\xed\xe8\x6c\xdb\x27\x92\ \x2d\x3b\x9a\x67\x13\x87\xff\xdb\x9c\x98\xf5\x47\x60\xc6\x09\x00\ \xdc\xab\x8c\x21\xe9\xcb\x40\xf6\xe2\x51\x9b\x90\x75\x0b\x45\xb2\ \x62\x13\x78\x34\xe1\x85\x3f\x78\x9f\x31\xee\xd5\xac\x5b\x98\x79\ \x02\x00\xb7\x88\xb1\x24\x7d\xce\xbf\x2b\xb7\xda\x14\x2b\x42\x2b\ \x45\xd2\x65\x9d\x6c\x0a\xb7\xd2\x35\x61\xf1\x8f\x18\xeb\x16\x15\ \xa1\x95\xd9\x5e\x03\xd8\xba\x9b\x63\x78\x88\x9d\x12\x17\x9f\xc1\ \x37\x35\x55\x48\xca\x89\xf5\xe6\xf7\x9c\x9c\xb8\xf8\xc7\x7c\xd9\ \xfd\xa5\x28\xed\x2c\x4e\x02\x00\xfb\x02\x0f\x27\x58\xf8\x70\x8b\ \x97\x39\x35\xad\x35\x50\x44\xb2\x66\x03\xf8\x23\x07\x27\x2e\xbe\ \x9a\x93\x5c\xb2\xa7\x68\x82\x15\x6d\x70\xed\x9e\xe6\x04\xde\x4b\ \x5c\xfc\x60\x9e\xb6\x24\x8b\x27\x88\x14\x9d\x7d\x89\xa7\x0b\x08\ \xff\xf7\x38\xa1\x58\xe1\x5f\xc4\x04\x00\x6e\x01\xc7\xf1\x56\xe2\ \xe2\xbb\x32\xd3\xc2\xdf\x40\x20\x52\x64\x76\x21\x33\xd9\x35\x71\ \xf1\xb7\x38\xce\x2d\x28\x62\x6b\x8b\x75\x0a\xd0\xb8\xbb\xcf\xf1\ \x48\xe2\xe7\x02\x00\xa6\x72\x51\x56\x0f\x45\x8a\x14\xca\xba\x70\ \x03\x13\x0b\xa8\xe0\x0d\x4e\xcc\xfe\xca\x7f\xb3\x16\x17\x37\x01\ \x80\xf5\xe7\x91\x04\x6f\x13\xdc\xe6\x49\x26\xe8\x6a\x80\x94\x22\ \x1b\xc0\x34\xbe\x58\x40\x05\x4b\xb3\xbf\xef\xdf\x52\xd1\x6f\xb0\ \xb9\x7a\x8e\xa5\x90\xdb\x1b\x5f\x64\x81\x5d\xa0\x99\x02\x52\x5a\ \xcc\xec\x02\x16\x14\x14\xfe\x8b\x38\xb6\xf8\x4f\xbe\x16\x7d\x04\ \x00\x60\xbb\xf3\x30\x47\x14\x54\xc5\x2c\xce\x77\x6f\x46\x68\xba\ \x48\x2b\x6c\x5f\x6e\x4e\x38\xfd\x7d\x8b\xe7\x39\xc9\xad\x2c\x7e\ \xcb\xa3\x3c\x62\xe3\x56\x72\x3c\xd3\x0b\xaa\x62\x0c\x0b\xed\xdc\ \x18\x6d\x17\x69\xc9\xce\x65\x61\x81\xe1\x3f\x9d\xe3\x63\x84\x7f\ \xa4\x04\x00\x6e\x0d\xa7\xf3\x8b\x82\xaa\xd8\x99\x69\x76\x9f\xed\ \x19\xa7\xfd\x22\x0d\x6c\x4f\xbb\x8f\x69\x09\x5e\x8b\xd7\xd4\x2f\ \x38\x3d\xbb\x09\xbf\x1d\xb4\x3f\xc6\x29\xc0\xd6\x9d\x7f\x83\x9b\ \xe9\x5e\x50\x15\xef\x31\xd1\xdd\x1b\xb1\x0b\x92\x6b\x76\x06\x53\ \xd9\xa3\xa0\x2a\xd6\x73\xbe\xfb\x43\xc4\x1e\xc4\x4c\x00\x60\x47\ \x30\x9d\x7d\x0a\xac\xa4\x96\x8b\xdc\xea\xa8\xdd\x90\x1c\xb2\x5d\ \xb8\x81\x9a\x02\x2b\xf9\x3b\xe3\xdd\xf3\x51\x7b\x11\x37\x01\x80\ \xf5\xe5\x3e\x8e\x2a\xb0\x92\xbf\xf3\x1d\x37\x33\x72\x47\x24\x57\ \x6c\x2c\x37\x15\xfc\xd1\xf5\x57\x4e\x77\xef\xc4\xed\x47\xf4\x79\ \x76\xee\x1d\x8e\xe7\xb6\x02\x2b\xd9\x87\x87\xed\x37\xd6\x33\x76\ \x5f\x24\x1f\xac\xa7\xfd\x86\x87\x0b\x0e\xff\xdb\x38\x3e\x76\xf8\ \x97\xc0\x08\xa0\xb1\x19\x93\xb8\xba\xe0\x64\xf4\x1a\x13\xdc\x13\ \xb1\x7b\x22\x95\xce\x46\x32\x8d\x03\x0b\xac\x64\x33\x57\xb8\x29\ \xb1\x7b\x02\x25\x93\x00\xc0\x4e\xe6\xf7\xf4\x2e\xb0\x92\xcd\x5c\ \xc7\x95\xee\x93\xd8\x7d\x91\x4a\x65\x5d\xf9\x37\x2e\x29\xf8\xa3\ \xea\x23\xbe\xe9\x66\xc4\xee\x4b\x63\x8f\x4a\x25\x01\x80\x1d\xc4\ \x03\x0c\x28\xb8\x9a\x97\x98\xe8\xe6\xc6\xee\x8b\x54\x22\x1b\xc5\ \x54\x0e\x29\xb8\x9a\x65\x8c\x73\xaf\xc4\xee\xcb\x16\xd1\xaf\x01\ \x6c\xe3\x5e\xe1\x48\x66\x17\x5c\xcd\x21\x3c\x6e\xf7\x58\xe1\x89\ \x44\xa4\x09\x1b\x60\xf7\xf0\x78\x0a\xe1\x3f\x9b\x23\x4b\x27\xfc\ \x4b\x2a\x01\x80\xfb\x80\x93\xb8\x3e\x85\x8a\xce\x60\x91\x5d\x67\ \x7d\x62\xf7\x47\x2a\x83\xf5\xb1\xeb\x58\xc4\x19\x29\x54\x75\x3d\ \x27\xb9\x0f\x62\xf7\xa7\x59\xdf\x4a\xe7\x14\x60\x6b\x93\xfe\x81\ \x1b\xd9\x21\x85\x8a\x56\x71\x15\xbf\x76\x9f\xc6\xee\x8f\x94\x33\ \xdb\x81\x0b\xf9\x69\x01\xf3\xfb\xb7\xf9\x94\x0b\xdc\xff\x8b\xdd\ \x9f\xed\xfa\x57\x7a\x09\x00\x6c\x14\xf7\x14\xf8\x7c\xd5\x16\xcb\ \xb8\x3c\x8b\x77\xaa\x4a\x3e\xd8\xe9\x5c\x93\xc2\x75\x29\x80\xf7\ \xf8\x6a\x29\x5e\x9b\x2a\xc9\x04\x00\xb6\x1f\x77\x16\xfc\x78\xd0\ \x16\x8f\x73\x69\xfa\xef\x55\x97\x4a\x67\x23\xb8\x96\x63\x53\xaa\ \xec\xaf\x9c\xe5\x96\xc7\xee\x51\x6b\x4a\xea\x1a\xc0\x36\x6e\x39\ \x23\xf9\x29\xe9\x0c\xdf\x8f\xe5\x19\xbb\xdd\x92\xbd\x94\x59\x72\ \xc9\xfa\xdb\xed\x3c\x93\x52\xf8\x7f\xca\x4f\x19\x59\x9a\xe1\x5f\ \xb2\x23\x80\xc6\xc6\x0d\xe3\x36\x86\xa6\x54\xd9\x7a\xae\xe3\x57\ \xb1\xe6\x5c\x49\xf9\xb0\x5e\xfc\x13\x97\x14\x38\x49\x6d\x9b\x17\ \x39\xb7\x98\x6b\xfc\x85\x2a\xd1\x11\x40\x03\xb7\x80\x11\x5c\xcd\ \xe6\x54\x2a\xeb\xce\x4f\x58\x66\xdf\xb3\xce\xb1\x7b\x25\xa5\xcb\ \x3a\xdb\xf7\x58\xc6\x4f\x52\x0a\xff\xcd\x5c\xcd\x88\x52\x0e\xff\ \x12\x1f\x01\x34\x36\xf1\x8b\x4c\x4b\xe9\x42\x0c\xc0\x42\x26\x69\ \xe2\x90\xb4\xc6\xc6\x32\x85\x21\xa9\x55\xb7\x8c\x09\xee\xc9\xd8\ \x7d\xea\x48\x49\x8f\x00\x1a\xb8\x27\x39\x9c\x1b\x49\x2b\x53\x0d\ \xe1\x61\x7b\xc8\x86\xc5\xee\x95\x94\x16\x1b\x66\x0f\xf1\x70\x6a\ \xe1\xef\xb8\x91\xc3\x4b\x3f\xfc\xcb\x62\x04\xd0\xd8\xd0\xd1\xdc\ \x4c\x9a\x17\xf2\xea\x98\xec\x0a\x7f\xee\x50\x2a\x80\x8d\xe6\x32\ \xaa\x53\xac\xb0\x9e\xf3\xcb\xe5\x6f\xab\x6c\x12\x00\xd8\xce\x5c\ \x4f\xba\xeb\x00\x2e\x60\x0a\x77\xea\x3d\x03\xf9\x65\x5d\x38\x8b\ \x49\x0c\x4b\xb5\xd2\xdb\xb8\xd8\x7d\x18\xbb\x67\xde\x47\xa0\x7c\ \x12\x00\x80\x9d\xc6\x6f\x49\x77\x1d\xc0\xe5\xfc\x07\xbf\xd3\xdd\ \x81\xfc\xb1\x5e\x7c\x97\x1f\xb2\x5f\xaa\x95\xbe\xcb\xf7\xdd\xfd\ \xb1\x7b\x16\x74\x14\xca\x2b\x01\x80\xed\xc1\xd4\x54\x9e\xca\x6e\ \x6a\x35\x53\xb9\xde\xbd\x1d\xbb\x6f\x52\x2c\xd6\x8f\x8b\x99\x58\ \xc0\xcb\x6a\x5b\x77\x2f\x13\x5d\xf2\xf7\x5f\xc6\x39\x12\xe5\x96\ \x00\x00\xac\x86\x1b\x52\xff\xcf\xdb\x48\x2d\xd7\xba\x97\x62\xf7\ \x4d\xb2\x66\x87\x70\x29\x35\xec\x98\x72\xb5\xab\xb9\xc8\xd5\xc6\ \xee\x5b\x82\xa3\x51\x8e\x09\x00\x6c\x1f\x6e\x4e\xf5\xb2\x4d\x03\ \xc7\x0c\x26\xbb\x39\xb1\x7b\x27\x59\xb1\xe3\xb8\x8c\x93\x49\xff\ \xbd\x52\x75\x9c\xef\xfe\x1e\xbb\x77\x49\x94\x69\x02\x00\xb0\x89\ \x5c\xc3\x4e\x19\x54\xfc\x2c\x93\xb9\xd7\x6d\x8a\xdd\x3f\x49\x93\ \x75\xe6\x0c\x2e\xe3\xf3\x19\x54\xfd\x31\x97\xbb\xa9\xb1\xfb\x97\ \x54\x19\x27\x00\xb0\x7d\xf8\x25\xe7\x64\x90\xcf\xe1\x35\xae\xe3\ \x16\xb7\x2e\x76\x0f\x25\x0d\xd6\x83\xf3\xb8\xa4\xe0\x75\xfc\x5a\ \xe3\xb8\x9d\x1f\x97\xe7\x67\x7f\x83\xb2\x4e\x00\x00\x36\x9c\xeb\ \x38\x2e\x93\xaa\xdf\xe7\x37\xdc\xe2\x5e\x8b\xdd\x43\x29\x84\x1d\ \xc8\x79\xfc\x80\xdd\x32\xa9\x7c\x0e\x97\xb8\x79\xb1\x7b\x58\x98\ \xb2\x4f\x00\x00\x76\x1a\xd7\x14\xf4\xca\xf1\xf6\x3c\xc9\xed\xdc\ \xe5\x56\xc5\xee\xa3\x84\xb2\x5d\x39\x93\x73\x0a\x7a\x5f\x6f\x7b\ \x96\x72\x79\x79\xdd\xf0\x6b\x5d\x45\x24\x00\xb0\x1d\xb8\x80\x7f\ \x49\x65\xdd\x96\xd6\x6c\x64\x06\xb5\xfc\x49\xeb\x0d\x97\x07\xeb\ \xca\x57\xa8\xe1\xe4\xd4\xaf\xf4\x6f\xb1\x8a\x9f\x73\x63\x65\xac\ \x35\x55\x21\x09\x00\xc0\xfa\xf0\x53\x2e\xcc\xec\x3f\x1d\x56\x73\ \x17\xb5\x3c\xe1\x2a\xe7\x90\x55\x1c\x33\x46\x52\xc3\x99\xa9\xdf\ \x24\xde\x66\x23\xbf\xe6\xaa\xd2\x5a\xd7\xaf\x10\x15\x94\x00\x00\ \x6c\x00\x57\xa7\xfe\x98\x50\x73\xaf\x73\x07\xb7\xbb\xc5\xb1\x7b\ \x2a\x2d\xd9\x60\xce\xe1\x6c\x0e\xc8\x74\x27\xf7\x72\x85\x5b\x16\ \xbb\xa7\x69\xaa\xb0\x04\x00\x60\xa3\xb8\x8e\x11\x19\xef\xe4\x39\ \x6e\xe7\x0f\xee\xdd\xd8\x7d\x15\x00\xdb\x93\x6f\x70\x4e\x11\xfe\ \xcf\x2f\x29\xc5\x55\xfd\x0a\x53\x81\x09\x00\xcc\x38\x9b\x5f\xa6\ \x3a\x77\xb0\x35\x9f\x51\xc7\xed\x4c\x77\xeb\x63\xf7\x37\xbf\xac\ \x3b\xe3\x39\x87\x6a\xba\x64\xbc\xa3\x7a\x7e\xcc\x1d\x95\x78\xf2\ \x57\x91\x09\x00\xc0\xba\x73\x29\x57\xd0\x2b\xf3\x1d\x7d\xcc\x3d\ \xd4\xf2\xa8\x4b\x67\xdd\x22\xf1\x64\x9d\x38\x81\x1a\xbe\x9a\xc9\ \xa3\x60\xcd\xad\xe1\x6a\xae\xad\xd4\x34\x5f\xb1\x09\x00\xc0\xfa\ \x72\x15\xe7\x17\x65\xd1\x93\x77\x99\x45\x1d\xb3\x34\xa1\x28\x7b\ \xd6\x8f\x31\x54\x33\x26\xe5\x59\xa1\xad\xdb\xcc\xcd\xfc\x34\xfe\ \x3b\x7c\xb3\x53\xd1\x09\x00\xc0\x86\x32\x25\x83\x59\x03\x6d\x79\ \x81\x3a\xea\x98\xeb\x36\xc4\xee\x77\xe5\xb1\x6e\x8c\xa2\x9a\x6a\ \x0e\x2b\xda\x2e\xeb\x98\xe4\x5e\x8c\xdd\xef\x6c\x55\x7c\x02\x00\ \xb0\xa3\xb9\x9c\x53\x8b\xb8\xfc\xd9\x7a\xe6\x32\x93\x3a\xb7\x30\ \x76\xcf\x2b\x83\x0d\xa1\x9a\xb1\x8c\x4a\x6d\xa5\xde\x8e\x6d\xe6\ \x8f\x5c\xe3\x9e\x8a\xdd\xf3\xec\xe5\x22\x01\x00\xd8\x40\x2e\x65\ \x02\xdd\x8a\xba\xd3\xb7\x1a\x4f\x0c\xca\x6c\x8e\x78\xa9\xb0\x3d\ \x1a\x07\xfb\x7b\x17\x75\xb7\x1b\x98\xc6\xb5\x6e\x69\xec\xde\x17\ \x47\x6e\x12\x00\x80\xed\xc1\x45\x5c\x90\xd1\x73\xe1\x6d\x73\xcc\ \xa7\x8e\x3a\xfe\xe2\x36\xc6\x3e\x02\xe5\xc1\x76\xe4\x18\xaa\xa9\ \xa6\x2a\x93\x89\x5e\xed\x79\x9f\x1b\xb9\x21\x4f\x09\x3b\x57\x09\ \x00\x32\x9d\x19\xd6\x91\xb5\x3c\x46\x1d\x75\xa5\xf4\x72\xe8\x52\ \x63\x07\x51\x4d\x35\xc7\xd3\x33\xc2\xce\x73\x39\x03\x34\x77\x09\ \x00\x1a\xe7\x86\x4f\xe2\xc8\x48\xbb\x5f\xc1\x7c\xe6\x31\x8f\xf9\ \x9a\x69\xd8\xc0\x0e\xa4\x8a\xe1\x0c\xa7\x8a\xbd\x22\x35\xe1\x19\ \xa6\xe4\x73\x0d\x88\x5c\x26\x80\xc6\xae\x1f\xcb\x65\x9c\x52\xf4\ \x41\x66\x53\x1f\x32\x9f\x79\xcc\x67\x1e\x8b\xf3\xf6\xc7\x67\x9d\ \x19\xcc\x70\xaa\x18\x4e\x15\x3b\x47\x6c\x88\xe3\x41\x26\xbb\xc7\ \x63\x1f\x8f\x58\x72\x9c\x00\x00\xec\x60\x2e\xa5\x86\xae\xb1\xdb\ \xc1\x7a\xfe\xd6\x98\x0c\x16\x56\xf2\x9c\x43\xeb\xca\x90\xc6\xa0\ \x3f\xbc\x88\xd7\xf4\xdb\xf2\x09\xb5\x5c\xeb\x5e\x8e\xdd\x8c\x98\ \x72\x9e\x00\x00\xac\x2f\x17\x33\x91\x3e\xb1\xdb\xd1\xe8\x53\x5e\ \x6a\x1c\x15\xfc\xad\x52\x16\x2b\xb7\x5e\x1c\xde\xf8\x69\x7f\x08\ \x3b\xc4\x6e\x4d\xa3\x0f\x98\xca\xf5\x95\xfc\x88\x8f\x1f\x25\x00\ \x00\xac\x17\xdf\xe1\x47\xec\x1f\xbb\x1d\xcd\x6c\x66\x29\xf3\x59\ \x4c\x7d\xc3\x57\x39\xa5\x03\xeb\x45\xff\xc6\xaf\xc1\x54\x31\xb0\ \xc4\x5e\x41\xf7\x06\xff\xce\x4d\xe5\x74\x3c\xb3\xa3\x04\xb0\x95\ \x75\xe1\x6b\x5c\xc0\xc8\xa8\x57\x05\xda\xf3\xc1\x96\x54\xd0\xf8\ \xf5\x66\xa9\x9c\x2c\x58\x57\xf6\xdd\x1a\xf0\x0d\x5f\xa5\x32\x9e\ \x6a\xc9\xf1\x04\x37\x72\xb7\xde\x06\xb5\x85\x12\x40\x0b\x76\x00\ \x35\xd4\x30\x38\x76\x3b\x3c\x38\xde\x6d\x96\x10\x96\xf3\x76\x31\ \x2e\x25\x5a\x67\xfa\xb1\x5f\xb3\x70\xdf\xb3\x64\x93\x66\x53\x8b\ \xa9\xa5\xd6\xbd\x1e\xbb\x19\xa5\x45\x09\xa0\x55\x36\x82\x1a\xbe\ \x59\x94\xe9\x26\x69\xda\xc4\x3b\x7c\xc4\xba\xc6\xaf\xb5\x5b\xbf\ \x6b\xf9\xaf\x86\xef\xd7\x6f\x99\xc1\x68\x9d\xe8\x4e\x0f\x7a\xd0\ \x93\x1e\x5b\xbf\x9a\x7e\xdf\xf4\x5f\xbd\xe9\x4b\xe7\xd8\x1d\x0d\ \xf4\x2e\xbf\xa7\xd6\x3d\x17\xbb\x19\xa5\x48\x09\xa0\x4d\xd6\x85\ \x31\xd4\x70\x1a\x3d\x62\xb7\x24\x33\x1b\x58\x07\xf4\x28\xf2\x03\ \xd2\xc5\xb4\x8e\xfb\xa9\x65\x96\x86\xfc\x6d\x51\x02\xe8\x80\xf5\ \xe2\x0c\x6a\x38\xb1\xc4\x2e\x63\x49\x47\x36\xf3\x08\xb5\xdc\xab\ \x4b\x7d\xed\x53\x02\xf0\x62\xfd\xf8\x16\x35\x29\xbf\x46\x5a\xb2\ \xb2\x80\x5a\xfe\x47\x6b\x33\xf8\x50\x02\x08\x60\x87\x52\xc3\xd9\ \x99\x2f\x35\x26\xc9\xd5\x73\x07\xb5\x6e\x51\xec\x66\x94\x0f\x25\ \x80\x40\x66\x1c\x47\x0d\x5f\x8b\xfa\xf8\xaa\x6c\xef\x43\xee\xa6\ \x96\x39\x95\xb8\x6e\x5f\x96\x94\x00\x12\xb1\x6e\x8c\xe3\x2c\xc6\ \xd0\x3b\x76\x4b\x84\x8f\x98\xc5\x9d\x3c\xa0\x55\x98\x92\x50\x02\ \x28\x80\x75\xe1\x0b\x54\x53\xcd\xe7\xcb\xee\xc6\x58\x25\xd8\xc4\ \xb3\xd4\x51\xc7\xd3\xba\xc6\x9f\x9c\x12\x40\x0a\xac\x0f\x5f\xa2\ \x9a\xb1\x25\xf6\x28\x71\xe5\x7a\x83\x99\xd4\xf1\xe7\xca\x79\x3f\ \x4f\x3c\x4a\x00\x29\xb2\x41\x54\x53\xcd\x09\x45\x58\x8c\x3c\x9f\ \xd6\xf0\x28\x75\xd4\xb9\x25\xb1\x1b\x52\x39\x94\x00\x52\x67\x3b\ \x70\x34\xd5\x54\x73\x84\x9e\x1d\x48\xc9\x66\x9e\xa7\x8e\x3a\x9e\ \xaa\x8c\x17\x72\x96\x12\x25\x80\xcc\xd8\x6e\x8c\xa6\x9a\x31\xba\ \x6d\x58\x80\x7a\x66\x51\xc7\x6c\xf7\x7e\xec\x86\x54\x2a\x25\x80\ \xcc\xd9\xc1\x54\x53\xcd\x71\x51\xd6\xb9\x2b\x57\x6b\x99\x43\x1d\ \x75\xf9\x5e\xac\xa3\x18\x94\x00\x8a\xc4\x76\x60\x28\x55\x54\x51\ \xc5\xe1\x4a\x05\x6d\x58\xcb\xdf\x98\xcf\x7c\xe6\xf3\xa2\x06\xfb\ \xc5\xa1\x04\x50\x74\xd6\x89\x41\x54\x51\xc5\x70\x86\x15\x7d\x89\ \xf2\x52\xf4\x7e\x63\xd0\xcf\x67\x89\xde\xb0\x58\x6c\x4a\x00\x51\ \xd9\x7e\x8d\xa9\xa0\x8a\x7d\x63\xb7\xa5\xc8\xde\x6c\x5c\x03\x71\ \xbe\x5b\x1e\xbb\x29\x79\xa6\x04\x50\x22\x6c\xf7\xc6\x44\x50\xc5\ \xc0\xb2\x58\x5e\x23\x09\xc7\x52\xe6\x37\x04\xbe\x5b\x19\xbb\x31\ \x02\x4a\x00\x25\xc8\x7a\x31\x8c\x2a\x86\x31\x98\xfd\xd8\xbb\xec\ \x9f\x31\xdc\xc4\x5b\x2c\x67\x31\x0b\x98\xcf\x02\x4d\xce\x2d\x35\ \x4a\x00\x25\xad\xc5\xf2\x5b\xfb\xd1\x9f\x3d\x4a\x7a\x7c\xe0\x78\ \x8f\x7a\x96\x17\x7b\x99\x32\x49\x4a\x09\xa0\xcc\x6c\x5d\x80\x73\ \x5b\x5a\xd8\x25\x62\x73\x56\x37\x09\xf5\x92\x5a\xa8\x54\xfc\x28\ \x01\x94\x3d\xeb\xb5\x35\x19\xec\xd1\x62\x25\xbf\x86\x95\xfe\x0a\ \x59\x89\xff\xd3\x86\xd5\x03\x5b\xac\x2e\xf8\xde\x96\xa0\xd7\x90\ \xbe\xdc\x29\x01\x54\x3c\xeb\xd2\x22\x21\x34\x4f\x10\x6c\x17\xe0\ \x4d\xfe\xad\x79\x76\x95\x4e\x09\x40\x24\xc7\x34\x5d\x45\x24\xc7\ \x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\ \x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\ \x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\ \x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\ \x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\ \xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\ \x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\ \x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\ \x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\ \x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\ \x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\ \x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\ \x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\ \x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\ \xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\x4c\x09\ \x40\x24\xc7\x94\x00\x44\x72\x4c\x09\x40\x24\xc7\x94\x00\x44\x72\ \x4c\x09\x40\x24\xc7\x94\x00\x44\x72\xec\xff\x03\x55\x1f\x6d\x86\ \x01\xbe\x76\x87\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ \x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x38\x2d\x30\x34\x2d\ \x31\x30\x54\x30\x31\x3a\x34\x37\x3a\x34\x37\x2b\x30\x38\x3a\x30\ \x30\xa6\x3e\x16\x8b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\ \x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x33\x2d\x30\x39\ \x2d\x30\x34\x54\x32\x32\x3a\x30\x32\x3a\x34\x39\x2b\x30\x38\x3a\ \x30\x30\x69\x8f\x59\x74\x00\x00\x00\x43\x74\x45\x58\x74\x73\x6f\ \x66\x74\x77\x61\x72\x65\x00\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\ \x6c\x2f\x69\x6d\x61\x67\x65\x6d\x61\x67\x69\x63\x6b\x2f\x73\x68\ \x61\x72\x65\x2f\x64\x6f\x63\x2f\x49\x6d\x61\x67\x65\x4d\x61\x67\ \x69\x63\x6b\x2d\x37\x2f\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\ \x6c\xbd\xb5\x79\x0a\x00\x00\x00\x18\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x3a\x3a\x50\x61\ \x67\x65\x73\x00\x31\xa7\xff\xbb\x2f\x00\x00\x00\x18\x74\x45\x58\ \x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\x65\x3a\x3a\x48\ \x65\x69\x67\x68\x74\x00\x35\x31\x32\x8f\x8d\x53\x81\x00\x00\x00\ \x17\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x49\x6d\x61\x67\ \x65\x3a\x3a\x57\x69\x64\x74\x68\x00\x35\x31\x32\x1c\x7c\x03\xdc\ \x00\x00\x00\x19\x74\x45\x58\x74\x54\x68\x75\x6d\x62\x3a\x3a\x4d\ \x69\x6d\x65\x74\x79\x70\x65\x00\x69\x6d\x61\x67\x65\x2f\x70\x6e\ \x67\x3f\xb2\x56\x4e\x00\x00\x00\x17\x74\x45\x58\x74\x54\x68\x75\ \x6d\x62\x3a\x3a\x4d\x54\x69\x6d\x65\x00\x31\x33\x37\x38\x33\x30\ \x33\x33\x36\x39\xc8\x53\x01\x69\x00\x00\x00\x12\x74\x45\x58\x74\ \x54\x68\x75\x6d\x62\x3a\x3a\x53\x69\x7a\x65\x00\x31\x34\x35\x36\ \x39\x42\xdb\x32\x43\x30\x00\x00\x00\x5f\x74\x45\x58\x74\x54\x68\ \x75\x6d\x62\x3a\x3a\x55\x52\x49\x00\x66\x69\x6c\x65\x3a\x2f\x2f\ \x2f\x68\x6f\x6d\x65\x2f\x77\x77\x77\x72\x6f\x6f\x74\x2f\x73\x69\ \x74\x65\x2f\x77\x77\x77\x2e\x65\x61\x73\x79\x69\x63\x6f\x6e\x2e\ \x6e\x65\x74\x2f\x63\x64\x6e\x2d\x69\x6d\x67\x2e\x65\x61\x73\x79\ \x69\x63\x6f\x6e\x2e\x63\x6e\x2f\x73\x72\x63\x2f\x31\x31\x32\x35\ \x33\x2f\x31\x31\x32\x35\x33\x36\x31\x2e\x70\x6e\x67\xe7\xc0\x76\ \xc1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x24\x39\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x03\x00\x00\x00\xc3\xa6\x24\xc8\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x46\xde\x00\x00\x46\xde\x01\ \x8e\x26\x32\x5b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x00\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x0b\x23\xb7\xe1\x00\x00\x00\xff\x74\x52\x4e\x53\x00\x01\x02\ \x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\ \x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\ \x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\ \x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40\x41\x42\ \x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\ \x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60\x61\x62\ \x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\ \x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x81\x82\ \x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\ \x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\ \xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\ \xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\ \xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\ \xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\ \xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\ \xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xeb\x08\xd9\x35\ \x00\x00\x1f\xa0\x49\x44\x41\x54\x78\xda\xed\x9d\x8b\x5f\x55\x55\ \xda\xc7\xf7\x39\x20\x17\x51\x01\xef\xa1\x26\x2a\x63\x52\xe1\xa5\ \x02\x2f\x11\x2a\x38\xce\x58\x4d\x32\xa6\xe3\xab\xa9\x99\xca\x9b\ \x60\x17\x2f\x78\x19\x41\x2d\x75\x2a\x13\x0d\x2f\x65\x4e\x24\xa2\ \xa5\xe9\x68\x93\x98\x4e\x36\xea\x58\x84\x98\x97\x24\x06\x2f\x0c\ \x2a\xa2\x06\xe2\x25\xc5\x0b\x22\x70\xd8\xef\xdb\x3b\x6f\xef\xe7\ \xad\x9e\xb5\xcf\xda\xe7\xec\xbd\x2e\xfb\x3c\xdf\x3f\xe0\x3c\xbf\ \xb5\x9e\xdf\xd9\x97\xb5\x9f\xf5\x2c\x45\x41\x10\x04\x41\x10\x04\ \x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\ \x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\ \x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\ \x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x61\ \x88\x6f\x9b\xae\xb1\xc3\x12\x53\xd3\xd7\x6f\xc9\xfe\x6c\xef\x57\ \x07\xf3\x8f\x9f\x3a\x57\x76\xee\xd4\xf1\xfc\x83\x5f\xed\xfd\x2c\ \x7b\xcb\xfa\xf4\xd4\xc4\x61\xb1\x5d\xdb\xf8\xe2\x44\x59\x0c\xef\ \x0e\xb1\xe3\x16\x7c\x90\x7b\xf6\x96\x4a\xc7\xad\xb3\xb9\x1f\x2c\ \x1c\x1f\xdb\xc1\x1b\xa7\x4e\x72\x6c\xa1\x4f\xcd\x7e\x7f\x6f\x49\ \x9d\xea\x1a\x75\x67\xff\xb1\x26\x65\x70\x07\x1b\x4e\xa4\x84\x04\ \x46\x27\xae\xca\xad\x54\x8d\xe0\xc6\xfe\x77\x93\xa2\x03\x71\x4a\ \xa5\xc1\xbf\x6f\x4a\x76\xa9\x6a\x34\xa5\xdb\x53\xfa\xfa\xe3\xe4\ \x8a\x4e\xf3\xc1\x8b\xf3\x6a\x54\xb3\xa8\xc9\x5b\x3c\xb8\x39\x4e\ \xb2\xa8\xb4\x1b\x9b\x71\x52\x35\x9f\x93\x19\x63\xdb\xe1\x64\x8b\ \x86\x4f\x5c\x5a\xa1\xca\x8e\xc2\xb4\x01\xf8\xb2\x28\x0e\x1d\x92\ \xb2\x6f\xa9\xac\xb9\xb5\x7d\x52\x27\x9c\x7a\xfe\xd8\x63\xd2\x8b\ \x54\x5e\x14\x2f\xef\x6f\xc7\x14\xf0\x7c\xcf\xef\x93\xfe\x9d\xca\ \x97\xf2\x15\xd1\xb8\x4e\xc0\x89\xc8\xb4\x52\x55\x04\x2e\x2c\xed\ \x89\xc9\x60\x4e\xb7\xd7\x4f\xab\xe2\x50\xb2\xa8\x07\xa6\x84\x21\ \x4d\x9e\x3f\xac\x8a\xc6\xd1\x24\x5c\x2c\x64\x44\xef\x35\xb7\x54\ \x11\xb9\xbd\xf6\x51\x4c\x8e\xe9\x34\x9b\x5c\xa8\x8a\xcb\xb1\x29\ \xcd\x30\x45\xa6\xfe\xf9\x37\x54\xab\x62\x53\xbd\xb1\x37\xa6\xc9\ \x2c\xfa\xef\x51\x65\x60\x4f\x2c\xa6\xca\x0c\x1e\xcf\x55\x65\x61\ \xff\x13\x98\x2e\xa3\x97\x7c\x86\x1c\x51\x65\xe2\x9b\xa7\x71\x79\ \xc8\x40\xbc\x46\x1a\xfe\xe4\x57\x55\x71\x2a\x3f\x67\xe7\xa6\x8c\ \x15\x19\x9b\x76\xe6\xe4\x9f\xaa\xa8\x32\x3a\xc0\xf1\x51\x5e\x98\ \x38\x63\x68\x30\xae\xd8\x88\x8c\x5c\x3b\x90\xb5\x60\x46\xe2\xe8\ \xf8\xb8\xa8\xf0\x76\x41\xbf\x4c\x8e\x57\x50\xbb\xf0\xa8\xb8\xf8\ \xd1\x89\x33\x16\x64\x1d\xb8\x66\x44\xc0\xd3\x09\x3e\x98\x3c\xf7\ \xf1\x9b\xe4\xee\x82\x6f\x5d\xf1\xa7\x69\x09\x31\xad\x74\x45\x6d\ \x15\x93\x90\xf6\x69\x71\x9d\x9b\x91\xcf\xbf\x88\x35\x44\x6e\x12\ \x30\xad\xdc\x8d\x04\x5c\xdd\x9f\x39\x33\x3e\xdc\xf5\xff\xa1\x4f\ \x78\xfc\xcc\xcc\xfd\x57\xdd\x50\x70\x71\x46\x63\x4c\xa2\xeb\x04\ \xa6\x5c\x71\xf9\xcf\x97\x95\xf0\xa8\x51\xd5\x5b\xcd\x1f\x9d\x90\ \x75\xde\x65\x13\xce\x0b\xc6\x44\xba\x86\xff\xbc\xeb\xae\xcd\xf9\ \xe5\xcd\x13\x3b\x1b\xae\xa6\xf3\xc4\xcd\x97\x5c\xac\x2a\x5e\xd8\ \x10\x93\xe9\x02\x4f\x9e\x71\x65\xb6\x2b\xb7\x4f\xe9\x66\xd6\x1b\ \x98\xad\xeb\xe4\x6c\x97\x2a\xcd\x4b\xe3\x31\x9d\x7a\x09\xdd\xa6\ \x7f\x9e\xef\xec\x9e\xdd\xcb\xec\x77\x2f\xaf\xa8\x59\x9f\xbb\xf0\ \xca\xb8\xa3\x23\xa6\x54\xd7\xd3\xd7\x6c\xbd\x93\x5c\x9b\xbb\xa0\ \x1f\xab\x3a\x4d\x9f\xbe\xaf\xe6\xe8\xad\x3d\xbf\x33\x17\xab\x48\ \xe9\x19\xa0\xb3\xbc\xdb\xb1\x7b\x0c\xeb\x87\xed\x80\x67\x76\xe9\ \x7c\x49\x2c\xfe\x0d\x26\x96\x8e\x90\x4d\x3a\xbf\xc1\xce\x6c\xcb\ \x45\xe7\x3d\xc9\x05\xfa\x84\xfe\xa5\x2d\x26\xd7\x39\xde\x53\x6f\ \xe8\x99\xd4\x8a\xf4\x87\x39\x8a\xed\xbe\x44\xd7\x32\xc5\xcd\x64\ \xdc\x70\xec\x8c\x68\x3d\xff\xaa\x3b\x9b\x9f\xe4\x3d\xa3\x5e\x83\ \x36\xea\x79\x5c\x29\x8c\xc1\x14\x6b\xd1\x72\x6d\x3d\xfd\x64\xe6\ \x24\x04\x09\x21\xba\xc9\xb8\x7d\x3a\x54\x67\xb5\xc4\x34\x93\xb0\ \x27\xd1\x7f\x84\x29\x9e\x2b\xd2\x8b\x55\xfb\x54\xfa\xdd\x29\xd7\ \x92\x70\x33\x09\x4c\x24\x75\xa9\x6f\xed\xba\x3e\xc2\xa9\xef\x99\ \x49\xfd\x66\x78\x38\x12\x93\x0d\xfc\xfd\xe7\xd0\xbe\x56\xdd\x5d\ \x2d\xe6\xaa\x4a\xfb\x77\x68\x0b\x16\xeb\xe6\xe2\x45\xe0\x17\x77\ \xff\xbf\xd3\x56\x72\x2c\x13\xf7\x65\x2a\x64\xe9\x6d\xca\x51\xec\ \x6e\x85\x29\xff\x09\xfd\xca\x28\x3f\xac\xbc\x21\xf6\x33\x54\xf3\ \xd7\x28\x3f\x16\x94\xf7\xc7\xa4\xeb\xbf\xfc\x7f\x2f\xc1\xa7\xd5\ \xa0\x39\x74\xf5\x03\x8e\x79\x78\x1b\xd0\x79\xf9\xaf\x98\x29\x47\ \x71\x45\xa3\xe9\x17\xf1\x36\x60\xfc\xe5\xff\xfc\x4b\xf2\x94\x57\ \xf9\xbf\x48\x55\x3f\x52\x8e\x1b\x08\x7e\xb8\xfc\xa7\xd2\x5c\xfe\ \x65\x2b\xb0\xf4\x49\xa0\xd9\xbc\xec\x78\x05\x6f\x03\x2d\x3f\xa7\ \xd9\x81\x3f\x46\xbe\x12\x6b\xaf\x31\x17\x68\x76\x11\xb5\xf6\xf0\ \xfc\xf7\xa5\xb8\xfc\xd7\x2e\x69\x24\xe5\xd8\x1a\x2d\xa9\xa5\xa8\ \x1a\x8d\xc3\xcb\xbf\xb3\x25\xff\x08\x69\xc7\x17\x91\x43\x71\x1b\ \x78\xd5\x73\x6f\x03\x34\x97\xff\x4b\x63\x65\xde\x63\x65\x1b\x4b\ \x51\x48\xba\xd7\x53\x6f\x03\x14\x97\x7f\xc7\x2a\xd9\x6b\xaa\x83\ \x57\x39\x9c\xdf\x06\x06\x78\x64\xfe\x13\xea\x3c\xe3\xab\x09\xc5\ \x37\x2e\xc7\x0b\x1e\x98\xff\x54\x8f\xf9\x6e\x4a\xf3\x95\x7b\xa1\ \xc7\x3d\xfe\xad\xf4\xa4\xca\x89\x96\x59\x4e\x47\xfb\x9e\x67\xed\ \x25\xf6\x71\x5a\xf7\x69\xb1\xda\xa9\x18\xa7\xfb\xdb\x3f\xf1\xf3\ \xa0\xfc\x37\x76\xd6\xeb\xc5\x7a\xd5\x93\xde\xc9\x37\x9d\x8c\xf9\ \xcb\x20\x8f\xc9\x7f\x4b\x67\xdd\x3e\xbe\x09\xb3\xe0\xa8\xc3\x9c\ \x8d\xba\x20\xc4\x43\xf2\xdf\xf1\x94\x93\x99\x78\xdb\x9a\x9b\x68\ \x7c\x9d\x3d\xf7\x94\x74\xf6\x88\xfc\x77\x77\xf2\xb1\xb4\x72\x98\ \x65\x87\x3e\xd4\xc9\x76\xe7\xcb\x9e\x50\x2c\xd8\xdf\x49\xc9\xcc\ \x11\x2b\x77\xe1\xef\x78\xc8\xc9\xb3\xcf\x40\xcb\xe7\x7f\xa8\x93\ \xc2\xc9\x95\xd6\xde\x43\xe9\xb3\x4c\x7b\xf8\x35\x23\x2d\x9e\xff\ \x44\xed\x85\xd1\xeb\x43\x2d\xff\x0f\xf8\xbd\xf6\xaa\x50\xfd\x64\ \x4b\x8f\xfe\x15\x27\x4b\xbf\x9e\xb0\x8b\x3e\xf4\x6b\xed\x49\x78\ \xdd\xba\x43\xb7\xaf\xd2\x1e\xfa\x0a\xcf\x68\xab\xd6\xe0\x2d\xed\ \x69\x58\x63\xd5\x1d\xa4\xde\x5b\xb4\x2f\xff\x4f\x7b\xcc\x42\xc8\ \xe0\xef\x35\x67\x22\xdb\x9a\x7f\x04\xdb\x3a\xcd\x51\x1f\xf2\xa4\ \x26\x2a\xed\xf3\x34\xe7\x62\x93\x25\x6b\x44\x16\x6b\x8e\x79\xb9\ \x67\x75\xd5\x6c\x90\xa6\x7d\x33\xb4\xe0\x90\x93\x35\x3f\x88\x27\ \x99\x11\xd2\xff\xde\xae\xdd\xdd\xa5\x5b\xa7\x26\xe6\xcc\xc7\x78\ \xcd\x72\x88\x54\xcb\xe5\x7f\xb4\xd6\x16\xfa\xbb\x46\x2f\xfe\xb5\ \x9b\xb0\xe9\xeb\x12\xa3\x0e\x96\xb9\xfb\x5d\xfe\xae\x39\x51\x86\ \x5f\x95\x07\xdf\xd1\x0a\x9a\x60\xb1\xfc\x0f\xd2\x2a\x90\xbd\x61\ \xec\x06\x89\x18\x53\x4e\x91\xbd\xb2\xe1\xd9\x00\x63\xe7\xe4\x31\ \xad\x15\x81\x3a\x6b\xb5\x16\xec\xa5\xb5\x6b\xb6\xe2\x21\x23\x43\ \xc5\x99\x77\xae\xc4\xa5\xa9\xc6\x6e\x4e\x8a\xd0\x3a\xf5\xf2\x8e\ \x95\x0a\x22\xc2\xb5\x5a\xfe\x9e\x36\xf2\xdb\x6f\xcc\x3e\x53\xcf\ \x81\x28\x9b\x64\xe8\xb3\x6a\xa8\x56\x5f\x91\xeb\x11\x96\xc9\x7f\ \xdb\x73\x1a\xe3\xcc\x37\xb0\x28\xba\xd1\x47\xa6\x1f\x05\x72\xc6\ \xd0\x13\x22\x5b\x68\x7d\x1c\x2a\x0b\xb5\x48\xfe\x83\x8f\x69\x8c\ \x72\x9f\x81\xc7\x2d\x86\xb1\x38\x51\xae\xca\xd0\xcf\x35\x8d\xb4\ \xb6\x46\x14\xb5\xb0\x44\xfe\xfd\xb5\x6e\xca\x5b\x0d\xfc\xf8\xf7\ \xc4\x35\x95\x09\x8b\x8d\xac\xdf\xf4\xd9\xa8\xb5\x38\xd6\xc8\x02\ \xf9\xf7\xde\xae\x31\xc2\xd5\x06\xbe\x5c\x25\xd7\xab\x8c\xd8\x65\ \x64\xfd\xa6\x6d\xb9\x56\xa4\x06\xf2\x1b\x20\x53\x63\x7c\xf3\x0d\ \x8c\x33\x42\x65\xc7\x46\x43\x67\x28\x45\x23\xd2\x06\xe9\x0f\x1f\ \x7b\x43\x63\xf9\x6f\x92\x91\x2f\x9a\x77\x18\x1a\x40\x9d\x63\xe8\ \x1c\x4d\xd0\x58\x14\x4c\x97\x3c\xff\x53\x34\x16\xd8\xfe\x60\x60\ \x9c\xf6\x17\x59\xe6\x5f\xad\x37\xb6\x70\x25\x5e\xc3\xbd\x7f\x94\ \x3a\xff\xc3\xc9\xf7\xe5\xda\xdf\x19\xf9\xa0\x59\xa0\xb2\xe5\x76\ \x77\x43\xe7\x69\xa0\x46\x93\xc9\x31\x12\xe7\xff\x3e\x8d\xcd\x10\ \x63\x8d\x0c\x34\x4b\x65\xcd\x97\xc6\xce\xd4\x08\xf2\x3f\xa5\x4a\ \xde\x05\x21\xad\xff\xe5\x74\x23\x03\x35\xbd\xc6\xdc\x00\xaa\xc1\ \xc7\x03\xbf\x4c\x8e\x74\x22\x40\x56\x03\xfc\x99\x3c\xa8\x34\x43\ \x03\xa5\xb1\xcf\xbf\xfa\xad\xc1\x9f\x07\x5f\x23\x87\x5a\x27\x69\ \xfe\x47\x6a\xec\xfc\x35\xf4\xed\xe6\xde\x6a\x0e\x06\x50\x47\x19\ \x3c\x5d\x19\xe4\x50\xe3\xa4\xcc\x7f\x67\xf2\x03\xc0\x0e\x63\xcb\ \x1e\x57\xf2\xc8\xbf\x5a\x64\xf0\x7c\x79\x91\xcf\x49\xab\x7a\x50\ \xc2\xfc\xfb\x7d\x4b\x1c\xcf\x7e\x83\x0f\x52\x2c\xe5\x62\x00\xd5\ \xe8\x9d\x7c\x7e\xe4\x96\x52\xc7\x25\x7c\x0c\x58\x4d\xde\xfa\x6f\ \x70\xdf\x9f\x07\xf8\xe4\x5f\x7d\xc9\xe8\x29\x0b\x22\x3f\x34\x67\ \x49\x97\x7f\xf2\xca\x6c\x69\x1b\x83\x43\x25\x73\x32\xc0\x4e\xc3\ \x27\x2d\xe4\x2c\x31\xd8\x73\x92\xe5\xff\x57\xc4\xa3\xbf\xae\x74\ \x31\x3a\xd6\x1e\x4e\x06\xa8\x32\xbe\xa7\x47\xe7\xcb\xc4\x95\xa7\ \x07\xe4\x7a\x00\xc8\x27\x0d\xe4\x56\x94\xe1\xab\x0d\x77\x39\x19\ \x40\x35\xa1\xc9\x67\x24\xf1\xc9\xf9\x98\x54\x27\x50\x13\xf7\x80\ \xd5\x18\xbf\xff\x39\x8c\x57\xfe\xd5\xf1\x26\xcc\xdc\xaf\x89\x8b\ \xc2\x99\x32\x7d\x02\x20\x7e\x44\x19\x61\x7c\xb0\x68\x6e\x06\x30\ \xe5\x3b\x0d\x79\x51\xf8\x59\x69\xf2\x1f\x46\x7c\x00\x98\x6a\x42\ \xb4\xa1\xdc\x0c\x60\xce\xa7\xda\xa9\xc4\xc7\x80\xfb\x25\xc9\xbf\ \xef\x51\xd2\x10\xb6\x98\x11\xee\x05\x6e\x06\xd8\x60\xce\xfc\x11\ \xf7\xd0\x16\x4a\xf2\x18\xf0\x0e\xb1\x00\x3c\xd0\x8c\x70\x0b\xb8\ \x19\x60\x8f\x39\xf3\x17\x48\x3c\x6b\x62\x8d\x14\xf9\x27\x5e\x92\ \xef\x3e\xc2\xd6\x6f\xa6\xf3\x8d\x49\x33\xf8\xc8\x5d\x56\xdf\x1f\ \xcc\x20\xa8\x82\xd9\xca\xd9\xbf\x79\x97\x9b\x01\xf2\xcd\x9a\xc3\ \x97\x48\x11\xaf\x36\x17\xdf\x00\x6f\x93\xc4\x7f\xac\xa0\x01\x68\ \xf9\x98\x14\xf2\x7d\xe1\xf3\xff\x30\xa9\x0b\x54\x49\x10\x1a\x80\ \xfe\x32\x5a\x42\x7a\x8f\xee\x23\x78\xfe\xed\x07\x49\x2b\x40\x51\ \x0a\x1a\x80\x9e\x28\xd2\x7a\x50\xbe\xe0\x5d\xc5\x27\x92\x26\x6b\ \x8a\x82\x06\xd0\x03\xb1\x9c\x5a\xec\x36\x72\x2d\x48\xdd\x8f\xb6\ \x29\x68\x00\x7d\x90\xca\x43\x6e\x08\xdd\x52\x7a\x2d\xe9\x13\x70\ \x30\x1a\x40\x27\xc1\xa4\x32\x97\x8f\x04\xce\x7f\x34\x61\x1d\xbb\ \xa6\x97\x82\x06\xd0\x4b\x2f\xd2\x63\x80\xb8\x47\x4c\x79\x93\x2a\ \x5a\x92\x15\x34\x80\x7e\x48\x85\x2e\x27\x85\x6d\xa8\x36\x8d\xa0\ \x78\xbb\x4d\x04\x03\x7c\x46\xdd\x19\x6c\xa1\x18\x06\xb0\x91\xf6\ \x55\xa7\x08\x9a\xff\x36\x84\x62\x86\x73\x4d\x15\x11\x0c\x40\x7f\ \xef\x9c\x28\x86\x01\x94\xa6\x84\xce\x2a\x55\xa1\x62\x1a\x60\x33\ \xbb\xc2\x19\xcf\x30\x80\x12\x47\x08\x9c\x2d\x64\xfe\x07\xb2\xfd\ \x68\xea\x09\x06\x50\x36\x10\x22\x3f\x25\x60\xfe\x7d\xff\x05\x6b\ \xad\xbc\x07\x0d\xe0\x32\xf7\x10\x8e\x57\x39\x2b\x60\x65\xc0\x1c\ \xc2\x2c\xbd\xac\xa0\x01\x5c\x87\xb4\x67\xf4\x4f\xc2\xe5\xbf\xe3\ \x1d\x5e\x6b\xd7\x96\x36\x80\x17\xa1\xbc\xfa\xee\x7d\xa2\x19\x60\ \x07\xe1\xeb\x55\x6f\x05\x0d\xe0\x0e\xbd\x09\x6b\x6b\xbb\x05\xcb\ \x7f\x7f\xc2\x1c\x65\x28\x68\x00\xf7\x20\x6d\x1a\x1e\x24\x96\x01\ \x08\xbb\x73\xae\x36\x43\x03\xb8\x49\xb3\xab\x70\xf0\x5c\xa1\xf2\ \xdf\x8b\x30\x45\x2c\x9a\x9e\x5b\xdc\x00\x4a\x02\x21\x7a\x3f\x91\ \x0c\xf0\x29\xac\x31\xcf\x86\x06\x70\x1b\x5b\x9e\xf8\x4f\x01\xdd\ \x61\x89\x75\x3d\x14\x34\x80\xfb\xf4\x20\xb4\x11\xec\x29\xfc\x22\ \xf0\x72\x05\x0d\x60\x04\xcb\x45\x5f\x10\xee\x02\x17\x82\x96\x07\ \xa2\x01\x0c\x21\xb0\x1c\x8e\xdf\x4d\x14\x03\x64\xc1\xfa\x9e\x51\ \xd0\x00\xc6\xf0\x0c\x1c\x7f\x93\x20\xf9\xef\x00\x9f\x07\xb4\x57\ \x41\x03\x18\xc5\x5e\x30\xbe\x43\x90\xe5\x40\x38\x03\xb5\xe1\x68\ \x00\xc3\x08\x87\xff\x63\x6b\x85\xc8\x7f\x1b\xb8\x4b\x5f\xa6\x82\ \x06\x30\x8e\x4c\xf8\x4f\x16\x2a\x82\x01\xe0\xa3\x90\x1d\x9d\xd1\ \x00\x06\xd2\x19\x7e\xce\x5e\x25\x40\xfe\x5b\xc0\x27\xc2\x6d\x54\ \xd0\x00\x46\x02\x9f\x2c\x53\x2d\xc0\x26\x01\xb8\xc7\x6d\x7d\x04\ \x1a\xc0\x50\x22\xe0\xaf\x82\x4b\xb9\xe7\x3f\x08\xae\x59\xf9\x44\ \x41\x03\x18\xcb\x27\xa0\x84\xdb\xdc\xf7\x8b\x13\x0a\x81\x22\xd1\ \x00\x06\x13\x29\x66\x69\x50\x00\x7c\x26\xe8\x2e\x05\x0d\x60\x34\ \xbb\x40\x0d\xd7\x03\xf9\x1a\x80\xb0\x7b\xe5\x31\x34\x80\xe1\x3c\ \x06\x8b\xe0\x7b\xd0\xbc\x77\x19\x28\xea\x0b\x05\x0d\x60\x3c\x5f\ \x80\x22\x2e\xfb\xf2\x34\xc0\x10\x78\x66\x06\xa2\x01\x4c\x80\xb0\ \xf1\x62\x04\x4f\x03\xfc\x0d\x94\x74\x50\x41\x03\x98\xc1\x41\xae\ \xdf\x5c\x20\xda\x3b\x04\xd8\xb7\xe2\x39\x06\x78\x0a\x5e\x72\xe9\ \xc4\xcf\x00\xf3\x41\x45\x05\x36\x34\x80\x29\xd8\xe0\xed\xf7\xaf\ \x73\xcb\xbf\xd7\x05\x50\xd0\x70\x05\x0d\x60\x0e\x70\x13\xee\x72\ \x6f\x5e\x06\x80\x2f\x49\x45\x76\x34\x80\x49\xd8\x8b\x40\x1d\xf1\ \xbc\x0c\x00\x37\x30\x18\xab\xa0\x01\xcc\x62\x2c\xa8\x63\x07\xa7\ \xfc\xb7\x05\xab\x55\xcb\xbc\xd1\x00\x8c\xd7\x5d\x1c\xed\xf8\x18\ \x60\x2e\x38\x2b\x8b\x15\x34\x80\x79\x2c\x06\x85\xcc\xe3\x63\x80\ \x62\x50\x4c\x04\x1a\xc0\x44\x22\x40\x21\xc5\x5c\xf2\xff\x10\xa8\ \xe5\xa8\x82\x06\x30\x13\xf8\x30\x8e\x87\x78\x18\x60\x11\x28\x65\ \x0a\x1a\xc0\x54\xe0\x16\xb2\x8b\x78\x18\xa0\x04\xdc\x0d\xd6\x0a\ \x0d\x60\x2a\xad\xc0\x27\xef\x12\x0e\x4a\x7a\x8a\xf2\x46\xe2\x59\ \x06\x20\x74\xe2\xe0\xb0\x4f\x70\xa9\x08\xab\x80\x1e\x68\x80\xe1\ \x82\xd4\x06\xda\xce\x43\x3a\x2a\xfd\xd0\x00\x26\xe3\x07\x16\x61\ \x9e\xb7\xb1\xd6\x01\x1f\xd7\xf8\x9e\x82\x06\x30\x9b\xf7\x40\x2d\ \xd1\xac\x65\xac\x00\x65\xc4\xa0\x01\x4c\x27\x06\xd4\xb2\x82\xf5\ \x1d\x00\xdc\xb1\x7c\xc6\x86\x06\x30\x7f\xea\xcf\x80\x9f\x04\x19\ \x7f\x82\x83\x8b\x94\xe7\x2b\x68\x00\xf3\x99\xcf\xbb\x10\xff\x07\ \xe0\xed\x00\x61\x68\x00\x06\x84\x89\xf0\x3d\x60\x3f\xa4\x61\xbf\ \x82\x06\xe0\x36\xf9\x07\x98\x4a\x08\x06\xd7\xa3\x26\xa2\x01\x98\ \x00\xea\x73\x30\xdd\x24\xf6\x07\x70\xab\x6a\x30\x1a\x80\xcd\xdf\ \x0f\xec\xc8\x30\x92\xa5\x04\xb0\x5f\xc1\x56\x05\x0d\xc0\x86\xad\ \x90\x9a\x0f\x58\xbe\x89\x80\x85\x29\x13\xd0\x00\x8c\x98\x00\x6e\ \x11\x62\xf8\x22\x08\x37\x86\xec\xe4\x69\x06\x38\xcc\xcb\x00\x1d\ \x41\x39\x51\xec\x04\xcc\x82\xe2\x97\x2a\x9e\x66\x80\x3d\xbc\x0c\ \xa0\x9c\xe5\xfc\x22\xb8\x0f\x8a\x9f\xc9\x69\x32\x96\x51\xa6\x2b\ \xcb\x70\x03\x6c\xe5\x66\x80\x35\x90\x9c\x3c\x66\xe1\x7d\xc0\xd3\ \x41\xc6\x70\x9a\x8c\x71\x94\xe9\x9a\x6e\xb8\x01\x32\xb8\x19\x00\ \xec\x1c\x59\xcb\xec\x20\x21\xb8\x39\x7c\x5b\x4e\x93\x11\x41\x99\ \xae\x58\xda\x1f\xb4\xe7\x52\xfe\x62\x1a\x37\x03\x84\x80\x7a\xfa\ \xb1\x0a\x0f\x9e\x10\xfa\x2f\x5e\x93\xe1\x55\x46\x95\xad\x4a\xea\ \x56\x1a\xc9\x94\xf9\xe7\x79\x82\xe7\x09\xae\x7a\x3e\x86\xa2\xaf\ \xe6\x36\x19\xbf\xa3\xca\xd6\x38\xda\x9f\xeb\x72\x87\xd6\x00\x49\ \xfc\x0c\xf0\x36\xa4\x67\x27\xab\xe8\x15\x82\x14\x83\xfd\xc8\x3a\ \x8a\x64\x6d\xa7\xbe\xa0\x1c\xa0\xcd\x3f\xd3\x46\x38\x3f\xe3\x69\ \x48\xcf\x35\x46\x2b\x01\xf0\xd7\xa8\x96\xfc\x66\xa3\xc1\xfc\x5a\ \x27\xa9\x72\x2c\xa1\xae\x55\x9b\x41\x9d\xff\x3a\x8e\xa7\x37\x36\ \x03\xdb\x06\x3e\xc8\x26\xf8\xb3\x50\xec\x42\x85\x27\x8f\x6c\x29\ \xd1\xc8\xd4\xb9\xbf\xd2\xff\x57\xef\xaf\xa6\x36\xc0\x51\x9e\x23\ \x06\x37\x88\x3c\xcf\x26\x36\x58\x94\xb6\x5c\xe1\x4c\xd3\x6e\x84\ \xc3\xe0\xbb\xb5\xd0\xf3\x44\x79\x90\x3a\xff\x1c\x9f\x7a\xfe\x9b\ \x25\x90\xa2\xf5\x6c\x62\x1f\x17\x6a\x8f\xba\xb1\xfc\x91\x3e\xff\ \xf4\x8f\x95\x66\xf0\x04\x58\x92\xc7\xe6\xaf\x06\xdd\x7e\x1c\xc1\ \x96\xc8\xff\x03\x77\x75\x18\xe0\x7e\x9e\x4a\x1b\x83\x8f\x3d\xad\ \x59\x84\x8e\x85\x22\x1f\xb1\x44\xfe\xbd\x0f\xeb\xc8\x3f\xdf\xa7\ \x1e\x05\x3c\x4c\xee\x71\x16\x91\x27\x0b\xd1\x15\xc0\x14\x52\x75\ \xe4\x5f\x9d\xc6\x57\xeb\x42\x48\xd3\x2c\x16\x91\xdf\xe7\x66\x3d\ \xb3\x89\xd0\x73\x03\xa8\x6d\xc9\x57\x2c\x78\x21\xfe\x90\x45\xe4\ \x43\xd0\x6c\x34\xb6\xc2\x0d\xe0\x1b\x3d\x17\x80\x6d\x9c\xd5\xfa\ \x41\xef\xab\xff\x64\x10\xd8\x5e\x05\x04\x3e\x61\x85\x0b\xc0\x5c\ \x3d\xf9\x57\x07\xf3\x96\x0b\xad\x04\xd4\xf8\x98\x1f\xf7\x3e\x68\ \x36\x3e\xb1\x40\xfe\xbb\xd5\xe8\xc9\x7f\x69\x03\xde\x7a\x3f\x82\ \x64\x31\x38\x4b\x72\xa8\x30\x1d\x2a\x8c\xa5\x41\xbe\xae\x0b\xc0\ \x28\xee\x82\x5f\xe5\x24\x0b\xdc\x98\xf4\x9c\xfc\x06\x78\x55\x57\ \xfe\x0f\xdb\xb8\x0b\x1e\x01\xe9\x7a\xd3\xfc\xb8\xe0\xd9\x35\x7d\ \xa4\xcf\x7f\x8f\x5a\x5d\x06\xe8\xc7\x5f\x31\xd8\xa4\xeb\x33\xf3\ \xe3\x82\x7b\x53\x9b\xc9\x9e\x7f\x9f\x02\x55\xa6\x57\x80\x1f\x68\ \x04\x09\x2b\x33\x3d\xac\x2f\xb4\x10\x7c\x45\xfa\x0b\xc0\x42\x5d\ \xf9\xaf\xe9\x22\x82\x66\xb0\x55\x77\x13\x2e\x2f\x01\xb9\xb2\xe7\ \xff\x11\x7d\x37\x80\xf9\x42\x88\xde\xc3\xe5\x35\xe0\x37\x50\xd4\ \x35\x92\xe7\xdf\xb7\x50\x57\xfe\xff\xe9\x23\x84\xea\xb7\xb9\x2c\ \x4f\x80\x25\xd3\x33\x24\x37\xc0\x6b\xba\xf2\x5f\x17\x29\x86\xea\ \x97\x20\x71\x93\xcd\x8e\xba\x48\xc8\x55\x31\xf7\x88\xaa\xd3\x65\ \x80\x37\x05\x91\x0d\x5e\x8c\x97\x99\x1d\x75\x33\x14\xb5\x8b\xd4\ \xf9\xf7\x3d\xae\x2b\xff\x45\x7e\x82\xe8\x0e\x85\xd4\x65\x9b\x1d\ \x15\x2a\x99\xaa\x6d\x20\xb5\x01\x16\xe9\xca\x7f\x7d\xb4\x28\xba\ \xed\x50\xfd\x7a\x81\xd9\x51\x2f\x8b\xb4\x27\xc4\x10\x7a\xe9\xbb\ \x01\x2c\x17\x47\x39\xb4\x76\x71\x93\xc7\xea\x43\xb6\xcc\xf9\xf7\ \x3b\xa9\x2b\xff\x67\x02\xc4\x91\x0e\xde\x8e\x4d\xee\x14\x13\x61\ \xb9\x72\xa0\x34\x5d\xf9\x57\xe3\x04\x92\xbe\x80\x43\xbb\xb8\x27\ \x05\x6a\x0d\x62\x08\x7d\x1c\xba\xf2\xff\x67\x91\xb4\x8f\x82\x14\ \x0e\x35\x37\xe6\x38\xc1\xb6\x48\xb9\x8b\x7f\x91\xae\xfc\x9f\x6f\ \x22\x92\xf8\x48\x0e\x1b\x16\xa7\x43\x31\x5b\xc9\x6b\x80\xb7\xf4\ \xdd\x00\xc4\x2a\x7d\x0c\x84\x24\xce\xe1\xf0\xca\xe4\x2d\x6d\xfe\ \xa3\xf5\xdd\x00\xd6\x09\x26\xbf\x8e\xfd\x4a\x50\x06\x10\xf2\x8e\ \xb4\xf9\x6f\x58\xac\x2b\xff\xe5\x4d\x05\xd3\x7f\x9d\x7d\xb7\x38\ \xa8\x1c\xe4\x92\xb4\x06\x58\xa6\xef\x06\x30\x44\x34\xfd\xe7\xd9\ \x97\x84\xe4\x00\x21\x4f\xcb\x9a\xff\xbe\xf5\xba\xf2\xbf\x59\xb8\ \x01\x40\x6b\xd8\x87\xcc\x0d\x79\x42\xb4\x6d\xd2\x6e\x10\x70\x5a\ \x57\xfe\xaf\xb4\x14\x6e\x04\x5f\x03\x32\x4d\x3e\x40\xec\x12\x10\ \xf2\x4b\x49\x0d\xb0\x52\xdf\x0d\x60\xa4\x78\x23\x80\x4a\x42\x6e\ \x98\x1a\xd1\x06\x3d\x77\xee\x90\x33\xff\xfd\xf5\xdd\x00\x44\x5c\ \xef\x06\x0b\x74\x4d\xad\x56\x09\x76\xaf\x05\xa7\x48\x34\x2a\xd1\ \x95\xff\x6b\x21\x02\x8e\x61\x3d\xa4\xf4\x1e\x33\x23\x76\x10\x7e\ \x79\x94\x9a\x55\xfa\x6e\x00\xe3\x44\x1c\xc3\x3b\x90\xd2\x70\x33\ \x23\x76\x81\x22\x2e\x91\x31\xff\x71\xfa\x6e\x00\xbb\x84\x1c\x04\ \xb8\x2c\xd7\xdd\xcc\x88\xdd\xa0\x88\xaf\x48\x98\xff\xc6\x67\x75\ \xe5\xff\x66\x7b\x21\x47\x01\xf6\x33\x30\xf5\x14\xd9\x48\x01\x3b\ \x25\xb8\xc4\x6a\x7d\x37\x80\x24\x31\x47\x31\x99\xf9\xa7\x39\xf0\ \xbc\xd0\xff\x94\x2f\xff\x03\xf5\xe5\x7f\x9f\x4d\xcc\x61\x8c\x87\ \xc4\x0e\x30\xf5\xce\x09\x45\xfc\x0f\xe9\xf2\xdf\xe4\x9c\xae\xfc\ \x57\x85\x09\x3a\x0e\xf0\xe8\xa6\x27\xcc\x8c\x38\x88\x79\x44\x53\ \xc8\xd0\x77\x01\x98\x2a\xea\x38\xc0\x74\xfc\xde\xcc\x88\xf1\x50\ \xc4\x18\xd9\xf2\xff\x5b\x7d\xf9\xcf\xb3\x8b\x3a\x90\x68\xe6\x17\ \x64\xf0\xf0\xfa\x1e\x92\xe5\x3f\xf0\xbc\xae\xfc\x57\x87\x0b\x3b\ \x12\xf0\xec\xa6\x67\xcd\x8c\x38\x1a\x8a\xd8\x49\x32\x03\x64\xea\ \xbb\x00\xcc\x16\x77\x24\x9d\x20\xbd\x09\x66\x46\x9c\x20\x58\x9f\ \x70\x57\x78\x42\x5f\xfe\xbf\x11\xb8\xde\xa9\x25\x24\xf8\x05\x34\ \x80\x26\x41\xdf\xe9\x6b\x05\xd0\x4d\x41\x03\x58\xea\x16\x90\xa5\ \xef\x02\x30\x5f\xe4\xb1\xb0\xbf\x05\xc8\xff\x10\xa8\x73\x09\xa8\ \xd0\x47\xe4\xc1\xb0\x7f\x08\x94\xfe\x35\xd0\xae\xaf\x17\x90\x28\ \xad\x00\x84\x79\x0d\x94\x7e\x21\x68\xbc\xbe\x0b\xc0\x9b\x62\x8f\ \x86\xfd\x42\x90\xec\x4b\xc1\x01\x65\xba\xf2\x2f\x4c\x2b\x00\x02\ \xec\x97\x82\x65\xff\x18\x34\x4f\xd2\x56\x00\x7a\xae\x67\xa6\x7e\ \x0c\x92\xfc\x73\x70\xd0\x2d\x59\x5b\x01\xc0\xb0\xff\x1c\x2c\x79\ \x41\xc8\x04\x69\x5b\x01\xc0\xb0\x2f\x08\x91\xbc\x24\x6c\x9f\xb4\ \xad\x00\x60\xd8\x97\x84\xc9\x5d\x14\x7a\xaf\xae\x3a\x40\x09\x86\ \xc5\xbe\x28\x54\xee\xb2\xf0\x59\xf2\xb6\x02\x80\x61\x5f\x16\x2e\ \xf7\xc6\x10\x5d\xfd\x40\x65\x38\x05\x89\xfd\xc6\x10\xa9\xb7\x86\ \xb5\x93\xb9\x15\x00\x08\xfb\xad\x61\x52\x6f\x0e\x1d\xac\x23\xff\ \x17\x9b\xca\x30\x22\x0e\x9b\x43\x65\xde\x1e\xae\xe7\x4c\x90\x21\ \x52\x8c\x88\xc3\xf6\x70\x99\x1b\x44\x6c\x97\xb9\x15\x00\x08\x87\ \x06\x11\x32\xb7\x88\xa1\xaf\x04\xb9\x22\x49\x8d\x0b\x87\x16\x31\ \x12\x37\x89\x6a\x25\x75\x2b\x00\x10\x0e\x4d\xa2\x24\x6e\x13\xd7\ \x5f\xea\x56\x00\x10\x3c\xda\xc4\x49\xdc\x28\x72\x08\x6d\xfe\xaf\ \x87\x48\x62\x00\x1e\x8d\x22\x25\x6e\x15\xfb\x9c\xd4\xad\x00\x20\ \x78\xb4\x8a\x95\xb8\x59\xf4\x64\xca\xfc\x7f\x2b\x4b\xfe\xb9\x34\ \x8b\x96\xb8\x5d\xfc\x2b\xb4\x5b\x81\xa5\x31\x00\x8f\x76\xf1\x12\ \x1f\x18\xf1\x96\xe5\x0c\xc0\xe3\xc0\x08\x89\x8f\x8c\x59\x63\x35\ \x03\xf0\x39\x32\x46\xde\x43\xa3\x36\x5a\xcd\x00\x7c\x0e\x8d\x92\ \xf7\xd8\xb8\x8f\xac\x66\x00\x3e\xc7\xc6\xc9\x7b\x70\xa4\xe5\x0c\ \xc0\xe7\xe0\x48\x79\x8f\x8e\xb5\x9c\x01\xf8\x1c\x1d\x2b\xef\xe1\ \xd1\x96\x33\x00\x9f\xc3\xa3\xe5\x3d\x3e\xde\x72\x06\xe0\x73\x7c\ \xbc\x72\x06\x0a\xdb\x0c\x0d\xc0\x1c\x70\x4d\xae\xcc\xfc\xb8\x60\ \x21\x62\x1f\x34\x00\x73\x1e\x52\xd9\x97\x83\xfc\xc0\x7c\x28\xee\ \x73\x68\x00\xe6\x8c\xe0\xb4\x9d\x79\x28\x14\x77\x11\x1a\x80\x39\ \x60\x89\xe3\x28\xf3\xe3\x82\xaf\x01\x9f\xa0\x01\xc4\x18\x0f\x83\ \x8e\x46\xf6\x2a\x20\xee\x09\x34\x00\x73\x8e\x42\x2d\xad\x58\x74\ \xb4\x39\x04\x7d\x0e\x6a\x8c\x06\x60\x8c\x5f\x35\xa0\xfd\x9f\x2c\ \x22\xbf\x2f\xe9\x46\x2a\x8b\x19\x20\x16\xd2\xfe\x21\x8b\xc8\x93\ \x25\x2d\x0a\xb2\x98\x01\x16\x42\xda\x67\x71\xb3\xde\x11\x34\x00\ \x63\xf2\xb8\x5d\x88\x9b\x42\x8b\xc1\x8e\x60\x34\x00\x53\x1a\xd7\ \x42\xda\x5b\x33\x89\x0d\xed\x48\x53\xe3\xd1\x00\x4c\x01\x3b\x1e\ \x9f\x61\x13\xfb\x3d\x29\x1b\x2a\x59\xcc\x00\x4b\x20\xe9\xeb\xd9\ \xc4\x7e\x16\xec\xa9\x8a\x06\xe0\xbe\x0a\xa0\x3e\xcf\x26\x76\x98\ \x2a\x65\xcf\x70\x4b\x19\xa0\x19\xd8\xee\xe8\x41\x46\xd1\x2b\xa0\ \xe0\xc3\xd1\x00\x0c\x79\x1a\x52\x7e\x8d\xd5\xd9\x36\x1f\x43\xd1\ \x57\xa3\x01\x18\x02\x96\x83\xed\x64\x15\x7d\x9a\x2a\xe3\xee\x10\ \x4b\x19\x00\x6a\xd5\xa3\xa6\xb0\x8a\xde\x0b\x9c\xb8\xb6\x68\x00\ \x66\x84\x80\xca\xfb\xb1\x0a\xef\x03\x6d\x49\x51\xc7\xa0\x01\x98\ \xf1\x0c\x24\xbc\xb6\x21\xb3\xf8\x60\xcb\xd5\x4c\x34\x00\x33\xc0\ \x6d\x6e\x79\xec\xe2\x83\x2d\x37\x4b\xd1\x00\xcc\x00\xcf\x3e\x9f\ \xc7\x2e\x3e\x78\x56\x8d\xe8\x87\x47\x59\xc8\x00\x1d\x41\xe1\x51\ \xec\x04\xd8\xca\x24\x6c\x14\x62\x21\x03\x80\x6d\xef\x2f\xb3\x3c\ \xe1\x36\x13\x52\xb0\x15\x0d\xc0\x88\xad\x2a\xfb\xfe\x70\x3f\x05\ \x3c\xac\xa6\x3a\x18\x0d\xc0\x84\xe0\x6a\xee\xbd\xed\x82\xa1\x0e\ \x75\xea\x44\x34\x00\x13\xc0\x1d\xda\x8e\xe6\x4c\x35\xec\x87\x34\ \xec\x47\x03\xf0\x9b\xfc\x03\x6c\x35\xcc\x01\xe7\x2e\x0c\x0d\xc0\ \x00\xf8\x6b\xec\x3c\xb6\x22\xc0\x1e\x85\x62\x1f\xb4\x6b\x19\x03\ \x80\x9b\xf3\x54\xc6\x67\x9c\xda\xca\xc1\x92\x24\x1b\x1a\xc0\xfc\ \xa9\x07\xf7\x67\x97\xdb\x19\xcb\x58\x01\x4e\x5e\x0c\x1a\xc0\x74\ \x62\x40\xd5\x2b\x58\xcb\x00\xcf\x10\x55\xdf\x43\x03\x98\x0e\x58\ \x92\xa9\x32\x3f\xe4\xd4\x06\x1d\x56\xa0\x56\xfa\xa1\x01\x4c\xc6\ \xaf\x12\x3c\xe3\x8c\xfd\xcd\x77\xa9\x2a\x59\x61\x98\x45\x0c\x30\ \x1c\x14\xbd\x94\xbd\x90\x9e\xa0\x90\x1d\x68\x00\x93\xd9\x01\x8a\ \xee\xc9\x41\x49\x09\x24\xa4\xae\x15\x1a\xc0\x54\x5a\x81\x6b\xb0\ \x25\x3c\xa4\x80\x3d\x43\xd5\x29\x68\x00\x53\x99\xa2\x0a\xd3\xa1\ \x05\x6c\x52\x24\xf0\x21\x82\xd6\x30\x00\xb8\x21\x44\x7d\x88\x8b\ \x96\x62\x50\x4b\x04\x1a\xc0\x44\xc0\x03\x3b\xd4\x62\x3e\x62\xe6\ \xaa\x52\x75\x0a\xb0\x84\x01\x16\x8b\xf0\x1d\xe0\x47\xda\x82\xcf\ \x23\x65\xde\x68\x00\xd3\xf0\x06\x4b\xb1\x1c\xed\x38\xc9\x81\x8f\ \xe2\x1c\x8b\x06\x30\x8d\xb1\x62\xbd\x7b\x3f\x05\xca\x29\xb2\xa3\ \x01\x4c\xc2\x5e\xa4\x0a\xd5\x9b\xc1\xeb\x82\x4c\xab\x81\x16\x30\ \x00\xbc\x0a\x58\xce\xef\xa6\x0b\x7f\x99\x2e\xb0\xa1\x01\x4c\xc1\ \x56\x00\x0a\x7e\x9d\x9f\xa2\xf6\x0e\x50\xd1\x53\x68\x00\x86\xb7\ \xdc\x7a\x9e\xfb\x31\xfe\x06\x4a\x3a\x28\xe4\xf4\x7d\x40\x69\x80\ \xdd\xc2\x1a\xe0\x20\xa8\x77\x2f\x4f\x49\x84\xf3\x78\x07\x8a\x38\ \x7d\x29\x94\x06\x58\x21\x6a\xfe\x07\xc2\x7a\x47\x88\xf7\x5e\xaa\ \x7e\x21\xe2\xfc\xfd\x96\xd2\x00\xcf\x8a\x6a\x80\x2f\x40\xb9\x97\ \x7d\xb9\x8a\x4a\x86\x27\x51\xc4\xf3\xc4\x9b\xdd\xa1\xca\xbf\xe3\ \x57\x82\xe6\xff\x31\x58\x6f\x2a\x5f\x55\x01\x57\x40\x55\xbb\x44\ \x9c\xc1\xa9\x54\x06\x78\x53\xd4\x0b\xc0\x2e\x50\xee\xf5\x40\xce\ \xb2\xe0\x0d\x02\xac\x8b\x94\xe9\x96\x51\xbe\xa4\xc8\x7f\xa1\xaf\ \xa0\xf9\x87\x0b\xf1\xd5\x3f\xf1\xd6\x15\x04\x96\xa8\x89\x79\x82\ \x44\xf0\x87\x4e\xf3\xbf\xe3\x1e\x51\x2f\x00\xe0\x59\x4d\xea\xed\ \xe6\xdc\x85\xbd\x06\xbf\x9c\x8a\xf9\x55\xf8\xe9\xbc\x2a\x8d\xec\ \xdf\x3d\x3c\x5e\xd8\x57\xc0\x88\x7a\x51\x6a\x01\x7f\x4e\x8b\xdb\ \xa0\xb2\x8d\x82\x4e\xa4\x77\xd7\xdf\x92\xe8\x21\xf2\x21\xe8\xf0\ \xd1\xd7\xd5\x21\x02\x48\x7b\x0b\x7e\x98\xee\xac\x20\xc6\xd1\x19\ \x5e\x73\x5d\x25\x82\xb6\x36\xe0\x6e\x75\xe1\x7b\x46\xc9\x05\xd8\ \x91\x43\xad\x0d\x15\x42\xdc\xbb\xb0\xb8\x70\x4c\x9b\x61\x84\x83\ \xa7\x03\xa8\x6b\xc5\x50\xd7\xa1\x56\xbc\x35\x6a\x8b\xb1\x17\xbe\ \xcd\xde\x27\x88\xbc\x2c\xf8\xa1\xfa\x19\x4c\x9c\x41\x8c\x80\x27\ \x78\x93\x28\xfa\xba\xc0\x4f\x28\xe5\x81\x98\x3a\x43\x68\x02\x7f\ \x71\x61\x71\x4a\x24\x25\x9b\x61\x81\xcb\x31\x77\x86\x90\x0e\x4f\ \x6f\xb6\x38\x0a\xe1\xc6\x91\x6a\x5d\x0f\x4c\x9e\x01\x74\xab\x53\ \x85\xd9\x0f\x48\xe2\x53\x58\x62\x9e\x0d\xd3\xe7\x36\xb6\x5c\x09\ \x0a\x57\x7a\x11\x16\x57\x13\x30\x7f\x6e\xf3\x1c\x61\x6e\xfb\x09\ \xa5\x72\x0f\x2c\xf2\x6a\x33\x4c\xa0\x9b\x04\x5f\x82\xa7\x36\x57\ \x2c\x99\xfd\x09\x36\xcd\xc0\x0c\xba\xc9\x2a\xc2\xcc\x0e\x12\x4c\ \x27\xdc\xb7\x40\xad\xef\x8d\x29\x74\x8b\x48\x87\x24\xa5\xab\x1d\ \x09\x05\x57\xf9\x5e\x98\x44\x37\xb0\x1f\x22\x7c\xb9\xbe\x4f\x38\ \xa9\x84\xd2\x20\xf5\x65\xcc\xa2\x1b\x24\xaa\x82\x16\x02\xfd\x12\ \xdf\x7f\xc1\x52\x2b\x45\xaa\xb1\x09\x8c\x9b\x95\x4e\x26\xf5\x37\ \x4d\x05\x9b\xd4\x16\xdf\xc3\x93\x7a\xb6\xa1\x80\x66\x25\x94\xad\ \xab\x1b\x84\x51\xd8\xf4\xc3\x7a\x67\x25\x61\x7f\x6d\x2d\xd4\x9c\ \x66\x12\x64\x8a\xb9\xf7\x8a\xb0\x20\xac\xc6\x09\xa2\xef\xd7\xe5\ \x14\x45\xa1\x57\x45\x3a\x06\x3d\xba\x5e\xf8\x45\xe0\xff\x4f\x9b\ \x9b\xb0\xdc\x73\x62\x5c\x58\xdb\x5c\xa3\x2a\x0b\xaf\x12\xa7\x94\ \x29\xf0\x0c\x41\x62\xa8\xa0\x4f\x2c\xd3\x08\x73\xba\x5d\x88\x15\ \xe1\x1d\x94\x3b\x83\xf2\x84\x79\x6f\xd9\x4a\x50\x98\x22\x68\xfe\ \x15\xef\x02\x82\xe2\x64\x01\xc4\x3d\xac\xd2\xf2\xb8\x20\xd3\xf9\ \x22\x41\xdf\x49\x1f\x61\x5f\x5a\x48\xf7\xac\x9a\x5e\xe2\xbe\x50\ \xfd\x92\x39\x62\x4c\xe6\x23\x77\x09\xfa\x06\x08\xfc\xda\xba\x96\ \xa0\xb9\x94\xff\x79\x52\x6b\xa8\x0d\x20\xc6\xa6\x96\xc0\xd3\x04\ \x79\x1f\x89\xbc\x6e\x41\x7a\x6f\x55\xb7\x71\x97\xf6\x0f\x6a\x03\ \x88\xd1\xeb\x72\x0b\x41\xdd\x8d\x10\x91\x0d\x00\x1f\x68\x25\x44\ \x0b\xd9\x7d\xd4\x06\xc8\x17\xf9\x01\x40\x9d\x2c\x74\xfe\x15\xfb\ \x41\x82\xee\x9a\x28\x34\x80\x9e\x47\x56\xd2\x03\x80\xf0\xdf\x56\ \x1e\x26\x7c\xbd\x52\x4b\x82\xd0\x00\xee\x3f\x00\xd4\xf7\x51\x44\ \xe7\x6d\xd2\xbc\x7e\x8c\x06\x70\xfb\x01\x40\x7d\x5f\xf8\xfc\x2b\ \x41\x15\x24\xf1\x2f\xa1\x01\x28\x79\x81\xb8\x50\xdd\x5c\x7c\x03\ \x28\x43\x89\xbb\xaf\x1f\x41\x03\xb8\xf7\x00\xa0\x8e\x52\x64\xe0\ \x1d\x92\xfc\xd3\x81\x68\x00\x77\x1e\x00\xd4\x35\x52\xe4\x5f\xf1\ \x3d\x4a\x1a\xc0\x16\x34\x00\x05\x7f\x21\xb6\xaf\x69\x28\x87\x01\ \x94\xb0\x1b\xa4\x21\x4c\x45\x03\x38\x85\xd8\xcb\xea\xf6\xfd\x8a\ \x2c\x0c\x27\x8d\xa1\x7e\x04\x1a\xc0\x09\x23\xea\xa5\x6b\x60\x08\ \x40\xaa\x65\x56\x6b\x06\xa2\x01\x34\xf9\x75\x0d\x49\x96\x54\x1d\ \x37\xfc\xf2\x49\xc3\xb8\x15\x85\x06\xd0\x20\xf2\x26\x49\xd5\xb1\ \x86\x32\x19\x40\xf9\x15\xf1\x31\xe0\x4a\x17\x34\x00\x91\xce\x97\ \x89\x0f\x00\x0f\x28\x72\x31\x82\x38\xbf\xa5\x6d\xd0\x00\x04\x42\ \xce\x12\x45\x3d\xa7\xc8\xc6\x6a\x72\x33\xce\x60\x34\x00\x48\x50\ \x01\x51\x53\x96\x74\xf9\x57\xfc\xbe\x25\x8e\x66\x7f\x43\x34\x00\ \x34\x63\x39\x44\x49\xc7\x03\xe4\x33\x80\xd2\xf9\x26\xb9\x21\xab\ \x37\x1a\xe0\x17\x78\x6d\x23\x57\x2a\x3f\xa8\xc8\xc8\x48\xf2\x1c\ \x67\xd9\xd0\x00\x3f\x27\x83\xac\x68\x9c\x22\x27\x7f\x26\x0f\x29\ \x0d\x0d\xf0\x33\x5e\x23\x0b\x5a\x27\x69\xfe\x15\x7f\xf2\x43\x8d\ \x3a\x1d\x0d\xf0\x13\x5e\x26\xeb\x39\x11\x20\xab\x01\x94\xfb\xc8\ \x8f\x01\xcc\x0f\x18\x15\xdb\x00\xe4\x05\x60\xb5\x2a\x42\x91\x97\ \xe1\xe4\x71\xd5\xfe\x0e\x0d\xf0\x7f\x0c\xac\x21\xcb\x19\xa3\xc8\ \xcc\x14\x8d\xee\xfc\x7f\x40\x03\xfc\x2f\xf1\x1a\xc7\x19\xfd\x51\ \x91\x9b\x37\x34\x8e\x67\x9a\x84\x06\xf8\x1f\x26\xd4\x91\xc5\xa4\ \x2b\xb2\x93\xa9\x31\xd5\xf3\xd1\x00\x8a\xf6\x81\x86\x1b\xe4\xef\ \xb4\xe8\xbd\x5d\x63\x7c\xab\xed\x1e\x6f\x00\xdb\x72\x0d\x29\xbb\ \x1a\x28\xf2\xe3\x9f\xab\x31\xc2\xad\xbe\x1e\x6e\x00\x9f\x8d\x1a\ \x4a\x0e\x35\x52\xac\x40\xf0\x31\x8d\x31\xee\x0b\xf4\x68\x03\x34\ \xfa\x5c\x43\x48\x51\x0b\xc5\x1a\xb4\x3d\xa7\x35\xdd\xad\x3d\xd8\ \x00\x2d\x0e\x69\xe8\x28\x0b\x55\xac\x42\xf8\x15\x8d\x71\x9e\x0e\ \xf3\x58\x03\x84\x16\x69\xc8\xb8\x1e\xa1\x58\x87\x5e\xb7\x35\x46\ \x5a\xf1\x10\x0b\x09\xbb\xa9\x0d\x70\x98\xd5\xac\x44\x7c\xa7\xa1\ \xe2\x4e\x8c\x62\x25\x06\xd5\x6a\x8c\xf5\x46\x2c\x03\x05\xcb\xa8\ \x0d\xb0\x9e\xd1\x9c\x3c\xa6\xd5\xb5\xaa\x2e\x5e\xb1\x16\xa3\xb5\ \x5a\xf4\xdd\x1d\x66\xbe\x80\x51\xd4\x06\x60\xb4\x03\x7f\xb0\xe6\ \x69\xe6\xd6\x6b\xb4\x9f\xac\x35\x5c\x47\x92\xe9\xf1\x3b\x38\x68\ \x0d\xc0\xe6\xe0\xeb\xf1\x75\x5a\x1a\x52\x15\xeb\xb1\x58\x73\xd6\ \x97\x9b\xde\xfa\xea\x4d\xca\xfc\x33\xa9\xbf\x6f\x90\xa6\xa9\x61\ \x85\x05\xf3\xaf\xd8\xd6\x69\x8e\xf9\x50\x47\x93\xe3\xfb\x9d\xa0\ \xca\xff\x39\x16\x0b\x13\xed\xf3\x34\x35\x6c\xb2\x5b\xd1\x00\x8a\ \xf7\x16\xcd\x51\x5f\x7f\xda\xe4\xf8\xf7\xd2\xbc\x08\xe4\xb2\x78\ \x29\x1d\xfc\xbd\xa6\x86\x6c\x1f\xc5\x9a\xd8\x57\x69\x4f\xfe\x0a\ \x93\x07\x6e\x9b\x54\xa8\x79\xe3\x55\x1d\x27\xa7\x33\xf8\xef\x35\ \x78\x4b\x7b\x1a\xd6\x78\x2b\x96\xe5\x15\x27\x6f\xe0\x66\xdf\x06\ \x94\x86\xbd\xe3\xc9\x3c\xd6\x98\xc9\xea\xcf\xd7\xda\x93\xf0\xba\ \x62\x65\x12\xb5\x9f\xc5\xaf\x0f\x55\xac\xce\xef\xb5\x7b\x56\xd7\ \x4f\xb6\xf8\xf8\x87\x56\x6b\xfb\x7f\xa5\xaf\xa5\x87\xef\xe3\x64\ \x3d\xaa\x66\xa4\xe5\xff\x01\xfd\x2b\xb5\xa7\xe0\x48\x27\x0b\x0f\ \xbe\xe3\x21\xed\xc1\xdf\x1c\xa8\x58\x9f\xee\x17\xb5\x27\xa1\x72\ \x98\x65\x87\x3e\xf4\xba\xf6\xd0\x2f\x47\x2a\x9e\x40\xc7\x53\x4e\ \x5e\xc5\xde\xb6\xe6\x6d\xc0\x77\xa5\x93\x71\x97\x74\x56\x3c\x83\ \x96\x47\x9c\xcc\xc4\x37\x61\x16\x1c\x75\x98\xb3\x51\x17\x84\x28\ \x9e\x42\xe3\x3d\x4e\xe6\xe2\x66\xb2\xd5\xde\x85\xbd\x93\x6f\x3a\ \x19\xf3\x97\x41\x8a\xe7\xe0\xb3\xc9\xd9\x8a\x5c\xa1\xb5\x3e\x87\ \xc7\x14\x3a\x3d\xa5\xc0\x4f\xf1\x24\xec\x2b\x9d\x2e\xca\x66\xb5\ \xb4\xce\x3d\x2f\xcb\xe9\x68\xdf\xf3\xb8\x13\x56\x53\x9d\xce\xc9\ \xb5\x24\x6b\x7c\x13\xb1\x27\x39\x3f\xaf\x6c\xa1\xe2\x79\x24\xd4\ \x39\x2f\xce\xb2\xc2\x6b\x51\xe4\x61\xa7\xe3\x74\xbc\xa0\x78\x22\ \x7d\xcb\x9c\xcf\xcc\xaa\x60\xc9\x07\x19\xbc\xca\x79\x21\xca\xc5\ \x01\x8a\x67\xd2\xf2\x73\xe7\x9f\x67\x2f\x8d\x95\x79\x73\x94\x6d\ \xec\x25\xe7\x43\xdc\xdb\x5a\xf1\x54\xec\xa9\xce\x6f\x03\x6a\x8e\ \xbc\xe5\xd1\x11\x39\xce\x87\xe7\x78\xd5\xae\x78\x30\x14\xb7\x01\ \xb5\x76\x89\x9c\x3b\xa4\x1a\x2d\xa9\x75\x3e\xb8\x8b\x71\x8a\x67\ \x43\x73\x1b\x50\x2f\x8c\x91\xef\x25\xc9\x6b\xcc\x05\x8a\x91\xed\ \x69\xad\x78\x3a\x54\xb7\x01\xf5\x74\x82\x5c\x65\x52\x3e\x09\xa7\ \x29\x46\xe5\x78\xc5\xae\x20\x4a\x3f\x8a\xdb\x80\xaa\x9e\x7f\xc9\ \x5f\x9a\x11\xf9\xbf\x78\x9e\x66\x48\xe5\xb1\x98\xfc\x7f\xdf\x06\ \xfe\x4e\x55\xaf\x5b\x31\xb3\xb1\x14\xc3\x69\x34\xfd\x22\xd5\x78\ \x76\xb7\xc2\xd4\xff\x78\x1b\x98\x53\x47\x35\x65\xdf\xcf\x13\x7f\ \x59\x20\x68\xce\x55\xaa\xb1\x38\xe6\xe1\xe5\x5f\xf7\x6d\x40\x55\ \x6f\xbc\x21\xf6\x17\x82\xe6\xaf\x55\xd2\x0d\xa4\xbc\x3f\x26\xdd\ \x95\xdb\x80\xaa\x56\x2d\x6b\x2b\xec\x20\x42\x96\xde\xa6\x1c\x05\ \x5e\xfe\x5d\xbe\x0d\xa8\xea\xdd\xd5\x1d\x85\x1c\x41\xfb\x77\xaa\ \x29\x47\x50\x37\x17\x2f\xff\x00\x14\x5f\x4d\x7e\x5c\x1a\x5a\x27\ \xde\x11\xba\x3d\x33\x6b\xa8\x1b\x10\x44\x62\xb2\xe1\x8b\x00\xc5\ \x77\xd3\x1f\x29\x9e\x2b\xd2\x65\xa0\x7d\x6a\x11\xb5\x72\xab\x7c\ \xe5\x36\xe7\x49\x60\x6d\x3d\xf5\x44\xaa\x39\x09\x62\x14\x51\x35\ \x19\xb7\x8f\x5e\x75\xfd\xda\x96\x98\x66\x2d\xa2\x0b\xe8\x1d\xa0\ \xde\xd9\xfc\x24\xef\xda\x41\xaf\x41\x1b\xab\x74\x28\x2e\x88\xc6\ \x14\x3b\xc1\x7b\xea\x0d\x1d\x13\xaa\x56\xa4\x3f\xcc\x51\x6c\xf7\ \x25\xe5\x7a\xc4\xde\x98\xea\x8d\x09\xa6\x78\x99\xda\xa4\xea\xe2\ \xd8\x4c\x3e\x2f\x86\xf7\x24\x17\xe8\x13\xba\x29\x04\x93\x4b\xc7\ \x80\x93\xfa\x66\xd6\xb1\x7b\x0c\xeb\x55\xe2\x80\x67\x76\xd5\xe9\ \x13\x79\x72\x00\x26\x96\x1a\x9f\xd9\x55\xfa\x66\x57\xad\xcd\x5d\ \xd0\x8f\xd5\x86\x22\x9f\xbe\xaf\xe6\xd4\xe8\xd4\x57\x35\xdb\x07\ \xd3\xaa\x87\xd0\x6d\xaa\x6e\xee\xec\x9e\xdd\xcb\xec\xc2\x01\xaf\ \xa8\x59\x9f\x57\xe9\x97\xb6\x2d\x14\x53\xaa\x97\x27\xcf\xa8\x2e\ \x50\xb9\x7d\x4a\x37\xb3\xaa\x08\x6d\x5d\x27\x67\x57\xba\x22\xea\ \xcc\x93\x98\x4e\x17\xf0\x9f\x77\x5d\x75\x89\xcb\x9b\x27\x1a\xbf\ \xcd\xb2\xf3\xc4\xcd\x97\x5c\x93\x73\x7d\x9e\x3f\x26\xd3\x35\x02\ \x53\xae\xa8\x2e\x72\x3e\x2b\xe1\xd1\xe6\x06\xc9\x68\xfe\xe8\x84\ \xac\xf3\xae\x0a\xb9\x92\x12\x88\x89\x74\xe3\x61\x7b\x5a\xb9\xea\ \x3a\x57\xf7\x67\xce\x8c\x0f\x77\xfd\xe9\xcb\x27\x3c\x7e\x66\xe6\ \xfe\xab\x6e\x28\x28\x9f\x16\x80\x49\x74\x0f\xbf\x49\xa5\xaa\x7b\ \xd4\x15\x7f\x9a\x96\x10\xa3\xef\xfb\x6b\xab\x98\x84\xb4\x4f\x8b\ \xeb\xdc\x8c\x5c\x3a\xc9\x0f\x13\xe8\x3e\x0d\xc6\x15\xab\x06\x70\ \xed\x40\xd6\x82\x19\x89\xa3\xe3\xe3\xa2\xc2\xdb\x05\xfd\xf2\x65\ \xc1\x2b\xa8\x5d\x78\x54\x5c\xfc\xe8\xc4\x19\x0b\xb2\x0e\x5c\x33\ \x22\x60\xf1\xb8\x06\x98\x3c\x83\xde\xbd\x46\x16\xaa\x06\x53\x55\ \x71\x2a\x3f\x67\xe7\xa6\x8c\x15\x19\x9b\x76\xe6\xe4\x9f\xaa\xa8\ \x32\x3a\x40\xe1\x48\x2f\x4c\x9c\x81\x6f\x60\x43\x8e\xa8\x32\x71\ \x64\x88\x0d\x93\x66\x30\x8f\xe7\x4a\x93\xfe\xdc\xc7\x31\x5d\x66\ \xd0\x7f\x8f\x14\xe9\xdf\x83\xf5\x9e\xa6\xd1\x7b\x43\xb5\xe0\xd9\ \xaf\xde\xd8\x1b\xd3\x64\x26\xcd\x26\x17\x0a\x9c\xfe\x63\x53\x9a\ \x61\x8a\xcc\xbf\x0c\xac\xb9\x25\x64\xf6\x6f\xaf\x7d\x14\x93\xc3\ \x86\x26\xcf\x1f\x16\x2e\xfd\x47\x93\x70\xc9\x97\x25\xdd\x5e\x3f\ \x2d\x50\xf6\x4b\x16\xf5\xc0\x94\x30\x27\x32\xad\x54\x88\xec\x5f\ \x58\xda\x13\x93\xc1\x69\x79\xa8\x4f\xfa\x77\x9c\xb3\x5f\xbe\x22\ \x1a\x97\x7c\x78\x62\x8f\x49\x2f\xe2\x96\xfd\xe2\xe5\xfd\x71\x93\ \x87\x00\x74\x48\xca\x66\xff\x5e\x70\x6b\xfb\xa4\x4e\x38\xf5\xc2\ \xe0\x13\x97\xc6\x72\x7d\xa0\x30\x6d\x80\x2f\x4e\xba\x68\xb4\x1b\ \x9b\x71\x92\x41\xf2\x4f\x66\x8c\x6d\x87\x93\x2d\x2a\xcd\x07\x2f\ \xce\xab\x31\x2d\xf7\x35\x79\x8b\x07\x37\xc7\x49\x16\x1d\xff\xbe\ \x29\xd9\xc6\xbf\x20\x96\x6e\x4f\xe9\x8b\xc5\x9d\xf2\x10\x18\x9d\ \xb8\x2a\xb7\xd2\x90\xd4\xdf\xd8\xff\x6e\x52\x34\x2e\xf3\x49\xb9\ \x4e\x10\xfa\xd4\xec\xf7\xf7\x96\xb8\x5a\xda\x57\x77\xf6\x1f\x6b\ \x52\x06\x77\xc0\xf7\x7c\xd9\xf1\xee\x10\x3b\x6e\xc1\x07\xb9\x67\ \x69\xdf\x15\x6f\x9d\xcd\xfd\x60\xe1\xf8\xd8\x0e\xb8\x95\xd7\x6a\ \xf8\xb6\xe9\x1a\x3b\x2c\x31\x35\x7d\xfd\x96\xec\xcf\xf6\x7e\x75\ \x30\xff\xf8\xa9\x73\x65\xe7\x4e\x1d\xcf\x3f\xf8\xd5\xde\xcf\xb2\ \xb7\xac\x4f\x4f\x4d\x1c\x16\xdb\xb5\x0d\xbe\xe0\x21\x08\x82\x20\ \x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\ \x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\ \x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\ \x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\ \x62\x1e\xff\x05\x03\x36\x0c\x52\xf0\x4d\x16\x57\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x21\x82\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x0a\x4d\x69\x43\x43\x50\x50\x68\x6f\ \x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\ \x6c\x65\x00\x00\x78\xda\x9d\x53\x77\x58\x93\xf7\x16\x3e\xdf\xf7\ \x65\x0f\x56\x42\xd8\xf0\xb1\x97\x6c\x81\x00\x22\x23\xac\x08\xc8\ \x10\x59\xa2\x10\x92\x00\x61\x84\x10\x12\x40\xc5\x85\x88\x0a\x56\ \x14\x15\x11\x9c\x48\x55\xc4\x82\xd5\x0a\x48\x9d\x88\xe2\xa0\x28\ \xb8\x67\x41\x8a\x88\x5a\x8b\x55\x5c\x38\xee\x1f\xdc\xa7\xb5\x7d\ \x7a\xef\xed\xed\xfb\xd7\xfb\xbc\xe7\x9c\xe7\xfc\xce\x79\xcf\x0f\ \x80\x11\x12\x26\x91\xe6\xa2\x6a\x00\x39\x52\x85\x3c\x3a\xd8\x1f\ \x8f\x4f\x48\xc4\xc9\xbd\x80\x02\x15\x48\xe0\x04\x20\x10\xe6\xcb\ \xc2\x67\x05\xc5\x00\x00\xf0\x03\x79\x78\x7e\x74\xb0\x3f\xfc\x01\ \xaf\x6f\x00\x02\x00\x70\xd5\x2e\x24\x12\xc7\xe1\xff\x83\xba\x50\ \x26\x57\x00\x20\x91\x00\xe0\x22\x12\xe7\x0b\x01\x90\x52\x00\xc8\ \x2e\x54\xc8\x14\x00\xc8\x18\x00\xb0\x53\xb3\x64\x0a\x00\x94\x00\ \x00\x6c\x79\x7c\x42\x22\x00\xaa\x0d\x00\xec\xf4\x49\x3e\x05\x00\ \xd8\xa9\x93\xdc\x17\x00\xd8\xa2\x1c\xa9\x08\x00\x8d\x01\x00\x99\ \x28\x47\x24\x02\x40\xbb\x00\x60\x55\x81\x52\x2c\x02\xc0\xc2\x00\ \xa0\xac\x40\x22\x2e\x04\xc0\xae\x01\x80\x59\xb6\x32\x47\x02\x80\ \xbd\x05\x00\x76\x8e\x58\x90\x0f\x40\x60\x00\x80\x99\x42\x2c\xcc\ \x00\x20\x38\x02\x00\x43\x1e\x13\xcd\x03\x20\x4c\x03\xa0\x30\xd2\ \xbf\xe0\xa9\x5f\x70\x85\xb8\x48\x01\x00\xc0\xcb\x95\xcd\x97\x4b\ \xd2\x33\x14\xb8\x95\xd0\x1a\x77\xf2\xf0\xe0\xe2\x21\xe2\xc2\x6c\ \xb1\x42\x61\x17\x29\x10\x66\x09\xe4\x22\x9c\x97\x9b\x23\x13\x48\ \xe7\x03\x4c\xce\x0c\x00\x00\x1a\xf9\xd1\xc1\xfe\x38\x3f\x90\xe7\ \xe6\xe4\xe1\xe6\x66\xe7\x6c\xef\xf4\xc5\xa2\xfe\x6b\xf0\x6f\x22\ \x3e\x21\xf1\xdf\xfe\xbc\x8c\x02\x04\x00\x10\x4e\xcf\xef\xda\x5f\ \xe5\xe5\xd6\x03\x70\xc7\x01\xb0\x75\xbf\x6b\xa9\x5b\x00\xda\x56\ \x00\x68\xdf\xf9\x5d\x33\xdb\x09\xa0\x5a\x0a\xd0\x7a\xf9\x8b\x79\ \x38\xfc\x40\x1e\x9e\xa1\x50\xc8\x3c\x1d\x1c\x0a\x0b\x0b\xed\x25\ \x62\xa1\xbd\x30\xe3\x8b\x3e\xff\x33\xe1\x6f\xe0\x8b\x7e\xf6\xfc\ \x40\x1e\xfe\xdb\x7a\xf0\x00\x71\x9a\x40\x99\xad\xc0\xa3\x83\xfd\ \x71\x61\x6e\x76\xae\x52\x8e\xe7\xcb\x04\x42\x31\x6e\xf7\xe7\x23\ \xfe\xc7\x85\x7f\xfd\x8e\x29\xd1\xe2\x34\xb1\x5c\x2c\x15\x8a\xf1\ \x58\x89\xb8\x50\x22\x4d\xc7\x79\xb9\x52\x91\x44\x21\xc9\x95\xe2\ \x12\xe9\x7f\x32\xf1\x1f\x96\xfd\x09\x93\x77\x0d\x00\xac\x86\x4f\ \xc0\x4e\xb6\x07\xb5\xcb\x6c\xc0\x7e\xee\x01\x02\x8b\x0e\x58\xd2\ \x76\x00\x40\x7e\xf3\x2d\x8c\x1a\x0b\x91\x00\x10\x67\x34\x32\x79\ \xf7\x00\x00\x93\xbf\xf9\x8f\x40\x2b\x01\x00\xcd\x97\xa4\xe3\x00\ \x00\xbc\xe8\x18\x5c\xa8\x94\x17\x4c\xc6\x08\x00\x00\x44\xa0\x81\ \x2a\xb0\x41\x07\x0c\xc1\x14\xac\xc0\x0e\x9c\xc1\x1d\xbc\xc0\x17\ \x02\x61\x06\x44\x40\x0c\x24\xc0\x3c\x10\x42\x06\xe4\x80\x1c\x0a\ \xa1\x18\x96\x41\x19\x54\xc0\x3a\xd8\x04\xb5\xb0\x03\x1a\xa0\x11\ \x9a\xe1\x10\xb4\xc1\x31\x38\x0d\xe7\xe0\x12\x5c\x81\xeb\x70\x17\ \x06\x60\x18\x9e\xc2\x18\xbc\x86\x09\x04\x41\xc8\x08\x13\x61\x21\ \x3a\x88\x11\x62\x8e\xd8\x22\xce\x08\x17\x99\x8e\x04\x22\x61\x48\ \x34\x92\x80\xa4\x20\xe9\x88\x14\x51\x22\xc5\xc8\x72\xa4\x02\xa9\ \x42\x6a\x91\x5d\x48\x23\xf2\x2d\x72\x14\x39\x8d\x5c\x40\xfa\x90\ \xdb\xc8\x20\x32\x8a\xfc\x8a\xbc\x47\x31\x94\x81\xb2\x51\x03\xd4\ \x02\x75\x40\xb9\xa8\x1f\x1a\x8a\xc6\xa0\x73\xd1\x74\x34\x0f\x5d\ \x80\x96\xa2\x6b\xd1\x1a\xb4\x1e\x3d\x80\xb6\xa2\xa7\xd1\x4b\xe8\ \x75\x74\x00\x7d\x8a\x8e\x63\x80\xd1\x31\x0e\x66\x8c\xd9\x61\x5c\ \x8c\x87\x45\x60\x89\x58\x1a\x26\xc7\x16\x63\xe5\x58\x35\x56\x8f\ \x35\x63\x1d\x58\x37\x76\x15\x1b\xc0\x9e\x61\xef\x08\x24\x02\x8b\ \x80\x13\xec\x08\x5e\x84\x10\xc2\x6c\x82\x90\x90\x47\x58\x4c\x58\ \x43\xa8\x25\xec\x23\xb4\x12\xba\x08\x57\x09\x83\x84\x31\xc2\x27\ \x22\x93\xa8\x4f\xb4\x25\x7a\x12\xf9\xc4\x78\x62\x3a\xb1\x90\x58\ \x46\xac\x26\xee\x21\x1e\x21\x9e\x25\x5e\x27\x0e\x13\x5f\x93\x48\ \x24\x0e\xc9\x92\xe4\x4e\x0a\x21\x25\x90\x32\x49\x0b\x49\x6b\x48\ \xdb\x48\x2d\xa4\x53\xa4\x3e\xd2\x10\x69\x9c\x4c\x26\xeb\x90\x6d\ \xc9\xde\xe4\x08\xb2\x80\xac\x20\x97\x91\xb7\x90\x0f\x90\x4f\x92\ \xfb\xc9\xc3\xe4\xb7\x14\x3a\xc5\x88\xe2\x4c\x09\xa2\x24\x52\xa4\ \x94\x12\x4a\x35\x65\x3f\xe5\x04\xa5\x9f\x32\x42\x99\xa0\xaa\x51\ \xcd\xa9\x9e\xd4\x08\xaa\x88\x3a\x9f\x5a\x49\x6d\xa0\x76\x50\x2f\ \x53\x87\xa9\x13\x34\x75\x9a\x25\xcd\x9b\x16\x43\xcb\xa4\x2d\xa3\ \xd5\xd0\x9a\x69\x67\x69\xf7\x68\x2f\xe9\x74\xba\x09\xdd\x83\x1e\ \x45\x97\xd0\x97\xd2\x6b\xe8\x07\xe9\xe7\xe9\x83\xf4\x77\x0c\x0d\ \x86\x0d\x83\xc7\x48\x62\x28\x19\x6b\x19\x7b\x19\xa7\x18\xb7\x19\ \x2f\x99\x4c\xa6\x05\xd3\x97\x99\xc8\x54\x30\xd7\x32\x1b\x99\x67\ \x98\x0f\x98\x6f\x55\x58\x2a\xf6\x2a\x7c\x15\x91\xca\x12\x95\x3a\ \x95\x56\x95\x7e\x95\xe7\xaa\x54\x55\x73\x55\x3f\xd5\x79\xaa\x0b\ \x54\xab\x55\x0f\xab\x5e\x56\x7d\xa6\x46\x55\xb3\x50\xe3\xa9\x09\ \xd4\x16\xab\xd5\xa9\x1d\x55\xbb\xa9\x36\xae\xce\x52\x77\x52\x8f\ \x50\xcf\x51\x5f\xa3\xbe\x5f\xfd\x82\xfa\x63\x0d\xb2\x86\x85\x46\ \xa0\x86\x48\xa3\x54\x63\xb7\xc6\x19\x8d\x21\x16\xc6\x32\x65\xf1\ \x58\x42\xd6\x72\x56\x03\xeb\x2c\x6b\x98\x4d\x62\x5b\xb2\xf9\xec\ \x4c\x76\x05\xfb\x1b\x76\x2f\x7b\x4c\x53\x43\x73\xaa\x66\xac\x66\ \x91\x66\x9d\xe6\x71\xcd\x01\x0e\xc6\xb1\xe0\xf0\x39\xd9\x9c\x4a\ \xce\x21\xce\x0d\xce\x7b\x2d\x03\x2d\x3f\x2d\xb1\xd6\x6a\xad\x66\ \xad\x7e\xad\x37\xda\x7a\xda\xbe\xda\x62\xed\x72\xed\x16\xed\xeb\ \xda\xef\x75\x70\x9d\x40\x9d\x2c\x9d\xf5\x3a\x6d\x3a\xf7\x75\x09\ \xba\x36\xba\x51\xba\x85\xba\xdb\x75\xcf\xea\x3e\xd3\x63\xeb\x79\ \xe9\x09\xf5\xca\xf5\x0e\xe9\xdd\xd1\x47\xf5\x6d\xf4\xa3\xf5\x17\ \xea\xef\xd6\xef\xd1\x1f\x37\x30\x34\x08\x36\x90\x19\x6c\x31\x38\ \x63\xf0\xcc\x90\x63\xe8\x6b\x98\x69\xb8\xd1\xf0\x84\xe1\xa8\x11\ \xcb\x68\xba\x91\xc4\x68\xa3\xd1\x49\xa3\x27\xb8\x26\xee\x87\x67\ \xe3\x35\x78\x17\x3e\x66\xac\x6f\x1c\x62\xac\x34\xde\x65\xdc\x6b\ \x3c\x61\x62\x69\x32\xdb\xa4\xc4\xa4\xc5\xe4\xbe\x29\xcd\x94\x6b\ \x9a\x66\xba\xd1\xb4\xd3\x74\xcc\xcc\xc8\x2c\xdc\xac\xd8\xac\xc9\ \xec\x8e\x39\xd5\x9c\x6b\x9e\x61\xbe\xd9\xbc\xdb\xfc\x8d\x85\xa5\ \x45\x9c\xc5\x4a\x8b\x36\x8b\xc7\x96\xda\x96\x7c\xcb\x05\x96\x4d\ \x96\xf7\xac\x98\x56\x3e\x56\x79\x56\xf5\x56\xd7\xac\x49\xd6\x5c\ \xeb\x2c\xeb\x6d\xd6\x57\x6c\x50\x1b\x57\x9b\x0c\x9b\x3a\x9b\xcb\ \xb6\xa8\xad\x9b\xad\xc4\x76\x9b\x6d\xdf\x14\xe2\x14\x8f\x29\xd2\ \x29\xf5\x53\x6e\xda\x31\xec\xfc\xec\x0a\xec\x9a\xec\x06\xed\x39\ \xf6\x61\xf6\x25\xf6\x6d\xf6\xcf\x1d\xcc\x1c\x12\x1d\xd6\x3b\x74\ \x3b\x7c\x72\x74\x75\xcc\x76\x6c\x70\xbc\xeb\xa4\xe1\x34\xc3\xa9\ \xc4\xa9\xc3\xe9\x57\x67\x1b\x67\xa1\x73\x9d\xf3\x35\x17\xa6\x4b\ \x90\xcb\x12\x97\x76\x97\x17\x53\x6d\xa7\x8a\xa7\x6e\x9f\x7a\xcb\ \x95\xe5\x1a\xee\xba\xd2\xb5\xd3\xf5\xa3\x9b\xbb\x9b\xdc\xad\xd9\ \x6d\xd4\xdd\xcc\x3d\xc5\x7d\xab\xfb\x4d\x2e\x9b\x1b\xc9\x5d\xc3\ \x3d\xef\x41\xf4\xf0\xf7\x58\xe2\x71\xcc\xe3\x9d\xa7\x9b\xa7\xc2\ \xf3\x90\xe7\x2f\x5e\x76\x5e\x59\x5e\xfb\xbd\x1e\x4f\xb3\x9c\x26\ \x9e\xd6\x30\x6d\xc8\xdb\xc4\x5b\xe0\xbd\xcb\x7b\x60\x3a\x3e\x3d\ \x65\xfa\xce\xe9\x03\x3e\xc6\x3e\x02\x9f\x7a\x9f\x87\xbe\xa6\xbe\ \x22\xdf\x3d\xbe\x23\x7e\xd6\x7e\x99\x7e\x07\xfc\x9e\xfb\x3b\xfa\ \xcb\xfd\x8f\xf8\xbf\xe1\x79\xf2\x16\xf1\x4e\x05\x60\x01\xc1\x01\ \xe5\x01\xbd\x81\x1a\x81\xb3\x03\x6b\x03\x1f\x04\x99\x04\xa5\x07\ \x35\x05\x8d\x05\xbb\x06\x2f\x0c\x3e\x15\x42\x0c\x09\x0d\x59\x1f\ \x72\x93\x6f\xc0\x17\xf2\x1b\xf9\x63\x33\xdc\x67\x2c\x9a\xd1\x15\ \xca\x08\x9d\x15\x5a\x1b\xfa\x30\xcc\x26\x4c\x1e\xd6\x11\x8e\x86\ \xcf\x08\xdf\x10\x7e\x6f\xa6\xf9\x4c\xe9\xcc\xb6\x08\x88\xe0\x47\ \x6c\x88\xb8\x1f\x69\x19\x99\x17\xf9\x7d\x14\x29\x2a\x32\xaa\x2e\ \xea\x51\xb4\x53\x74\x71\x74\xf7\x2c\xd6\xac\xe4\x59\xfb\x67\xbd\ \x8e\xf1\x8f\xa9\x8c\xb9\x3b\xdb\x6a\xb6\x72\x76\x67\xac\x6a\x6c\ \x52\x6c\x63\xec\x9b\xb8\x80\xb8\xaa\xb8\x81\x78\x87\xf8\x45\xf1\ \x97\x12\x74\x13\x24\x09\xed\x89\xe4\xc4\xd8\xc4\x3d\x89\xe3\x73\ \x02\xe7\x6c\x9a\x33\x9c\xe4\x9a\x54\x96\x74\x63\xae\xe5\xdc\xa2\ \xb9\x17\xe6\xe9\xce\xcb\x9e\x77\x3c\x59\x35\x59\x90\x7c\x38\x85\ \x98\x12\x97\xb2\x3f\xe5\x83\x20\x42\x50\x2f\x18\x4f\xe5\xa7\x6e\ \x4d\x1d\x13\xf2\x84\x9b\x85\x4f\x45\xbe\xa2\x8d\xa2\x51\xb1\xb7\ \xb8\x4a\x3c\x92\xe6\x9d\x56\x95\xf6\x38\xdd\x3b\x7d\x43\xfa\x68\ \x86\x4f\x46\x75\xc6\x33\x09\x4f\x52\x2b\x79\x91\x19\x92\xb9\x23\ \xf3\x4d\x56\x44\xd6\xde\xac\xcf\xd9\x71\xd9\x2d\x39\x94\x9c\x94\ \x9c\xa3\x52\x0d\x69\x96\xb4\x2b\xd7\x30\xb7\x28\xb7\x4f\x66\x2b\ \x2b\x93\x0d\xe4\x79\xe6\x6d\xca\x1b\x93\x87\xca\xf7\xe4\x23\xf9\ \x73\xf3\xdb\x15\x6c\x85\x4c\xd1\xa3\xb4\x52\xae\x50\x0e\x16\x4c\ \x2f\xa8\x2b\x78\x5b\x18\x5b\x78\xb8\x48\xbd\x48\x5a\xd4\x33\xdf\ \x66\xfe\xea\xf9\x23\x0b\x82\x16\x7c\xbd\x90\xb0\x50\xb8\xb0\xb3\ \xd8\xb8\x78\x59\xf1\xe0\x22\xbf\x45\xbb\x16\x23\x8b\x53\x17\x77\ \x2e\x31\x5d\x52\xba\x64\x78\x69\xf0\xd2\x7d\xcb\x68\xcb\xb2\x96\ \xfd\x50\xe2\x58\x52\x55\xf2\x6a\x79\xdc\xf2\x8e\x52\x83\xd2\xa5\ \xa5\x43\x2b\x82\x57\x34\x95\xa9\x94\xc9\xcb\x6e\xae\xf4\x5a\xb9\ \x63\x15\x61\x95\x64\x55\xef\x6a\x97\xd5\x5b\x56\x7f\x2a\x17\x95\ \x5f\xac\x70\xac\xa8\xae\xf8\xb0\x46\xb8\xe6\xe2\x57\x4e\x5f\xd5\ \x7c\xf5\x79\x6d\xda\xda\xde\x4a\xb7\xca\xed\xeb\x48\xeb\xa4\xeb\ \x6e\xac\xf7\x59\xbf\xaf\x4a\xbd\x6a\x41\xd5\xd0\x86\xf0\x0d\xad\ \x1b\xf1\x8d\xe5\x1b\x5f\x6d\x4a\xde\x74\xa1\x7a\x6a\xf5\x8e\xcd\ \xb4\xcd\xca\xcd\x03\x35\x61\x35\xed\x5b\xcc\xb6\xac\xdb\xf2\xa1\ \x36\xa3\xf6\x7a\x9d\x7f\x5d\xcb\x56\xfd\xad\xab\xb7\xbe\xd9\x26\ \xda\xd6\xbf\xdd\x77\x7b\xf3\x0e\x83\x1d\x15\x3b\xde\xef\x94\xec\ \xbc\xb5\x2b\x78\x57\x6b\xbd\x45\x7d\xf5\x6e\xd2\xee\x82\xdd\x8f\ \x1a\x62\x1b\xba\xbf\xe6\x7e\xdd\xb8\x47\x77\x4f\xc5\x9e\x8f\x7b\ \xa5\x7b\x07\xf6\x45\xef\xeb\x6a\x74\x6f\x6c\xdc\xaf\xbf\xbf\xb2\ \x09\x6d\x52\x36\x8d\x1e\x48\x3a\x70\xe5\x9b\x80\x6f\xda\x9b\xed\ \x9a\x77\xb5\x70\x5a\x2a\x0e\xc2\x41\xe5\xc1\x27\xdf\xa6\x7c\x7b\ \xe3\x50\xe8\xa1\xce\xc3\xdc\xc3\xcd\xdf\x99\x7f\xb7\xf5\x08\xeb\ \x48\x79\x2b\xd2\x3a\xbf\x75\xac\x2d\xa3\x6d\xa0\x3d\xa1\xbd\xef\ \xe8\x8c\xa3\x9d\x1d\x5e\x1d\x47\xbe\xb7\xff\x7e\xef\x31\xe3\x63\ \x75\xc7\x35\x8f\x57\x9e\xa0\x9d\x28\x3d\xf1\xf9\xe4\x82\x93\xe3\ \xa7\x64\xa7\x9e\x9d\x4e\x3f\x3d\xd4\x99\xdc\x79\xf7\x4c\xfc\x99\ \x6b\x5d\x51\x5d\xbd\x67\x43\xcf\x9e\x3f\x17\x74\xee\x4c\xb7\x5f\ \xf7\xc9\xf3\xde\xe7\x8f\x5d\xf0\xbc\x70\xf4\x22\xf7\x62\xdb\x25\ \xb7\x4b\xad\x3d\xae\x3d\x47\x7e\x70\xfd\xe1\x48\xaf\x5b\x6f\xeb\ \x65\xf7\xcb\xed\x57\x3c\xae\x74\xf4\x4d\xeb\x3b\xd1\xef\xd3\x7f\ \xfa\x6a\xc0\xd5\x73\xd7\xf8\xd7\x2e\x5d\x9f\x79\xbd\xef\xc6\xec\ \x1b\xb7\x6e\x26\xdd\x1c\xb8\x25\xba\xf5\xf8\x76\xf6\xed\x17\x77\ \x0a\xee\x4c\xdc\x5d\x7a\x8f\x78\xaf\xfc\xbe\xda\xfd\xea\x07\xfa\ \x0f\xea\x7f\xb4\xfe\xb1\x65\xc0\x6d\xe0\xf8\x60\xc0\x60\xcf\xc3\ \x59\x0f\xef\x0e\x09\x87\x9e\xfe\x94\xff\xd3\x87\xe1\xd2\x47\xcc\ \x47\xd5\x23\x46\x23\x8d\x8f\x9d\x1f\x1f\x1b\x0d\x1a\xbd\xf2\x64\ \xce\x93\xe1\xa7\xb2\xa7\x13\xcf\xca\x7e\x56\xff\x79\xeb\x73\xab\ \xe7\xdf\xfd\xe2\xfb\x4b\xcf\x58\xfc\xd8\xf0\x0b\xf9\x8b\xcf\xbf\ \xae\x79\xa9\xf3\x72\xef\xab\xa9\xaf\x3a\xc7\x23\xc7\x1f\xbc\xce\ \x79\x3d\xf1\xa6\xfc\xad\xce\xdb\x7d\xef\xb8\xef\xba\xdf\xc7\xbd\ \x1f\x99\x28\xfc\x40\xfe\x50\xf3\xd1\xfa\x63\xc7\xa7\xd0\x4f\xf7\ \x3e\xe7\x7c\xfe\xfc\x2f\xf7\x84\xf3\xfb\x25\xd2\x9f\x33\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\x16\xaf\x49\x44\ \x41\x54\x78\xda\xec\xdd\x6d\xb0\x6d\x75\x5d\xc0\xf1\xef\x01\x2e\ \x20\xc8\x4d\xf0\xf9\xe1\x82\x80\x68\x54\xa2\x53\x8a\x8a\x16\x8a\ \x82\x92\x9a\xa9\x4d\x65\x33\x0e\x36\x4e\x5a\xa9\x2f\xca\x49\xcc\ \x99\xea\x85\x36\xe9\x34\x53\x96\xcf\x93\x35\xa9\x59\xe6\x94\x95\ \x96\x0f\x60\x81\x04\xe6\x44\x35\x3e\x14\x2a\x0a\x2a\x60\x01\xc5\ \x25\x11\xe4\x51\x4e\x2f\xd6\xbe\x06\x08\xdc\x73\xee\x3d\xe7\xec\ \xb5\xf7\xfa\x7c\x66\x18\x9a\x54\xce\xda\x7f\xd6\x3d\xbf\xef\xfe\ \xef\xb5\xd6\x5e\x59\x5d\x5d\x0d\x00\x98\x96\x7d\x2c\x01\x00\x08\ \x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\ \x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\ \x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\ \x00\x00\x01\x00\x00\x08\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\ \x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\ \x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\ \x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\ \x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\ \x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\ \x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\ \x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x40\x00\x00\x00\x02\x00\ \x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\ \x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\ \x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\ \x40\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\ \x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\ \x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\ \x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x01\x60\x09\ \x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\ \x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x60\x7e\xf6\x9b\ \xda\x0b\x5e\x59\x59\x99\xd2\xcb\xdd\xb7\x7a\x68\x75\x4c\x75\x64\ \x75\xd4\xec\xef\x87\x56\xdf\x33\xfb\x6b\x7b\xb5\xed\x36\xff\x9b\ \x43\xfd\xb1\xd8\x2b\xff\x5d\x5d\x5e\x9d\x53\xfd\x41\xf5\x19\x4b\ \xc2\x66\x59\x5d\x5d\xb5\x08\xec\xf9\x3c\x9c\xda\x09\xb4\xc4\x01\ \x70\x50\xf5\x43\xd5\xf1\xb3\xbf\xbe\x6f\x36\xf8\x0f\x70\x9a\xcf\ \xcd\xad\xd5\x5b\xaa\x5f\xae\x6e\xb1\x1c\x08\x00\x04\x80\x00\xd8\ \x08\xfb\x54\x3f\x58\x3d\x7d\xf6\xd7\x13\x9a\xe0\x8e\xce\x82\xf8\ \x50\xf5\xdc\xea\xdb\x96\x02\x01\x80\x00\x10\x00\x7b\x62\xdf\xea\ \xc4\xea\x79\xb3\x81\xf2\x20\xa7\xf0\xc2\x78\x43\xf5\x6a\xcb\x80\ \x00\x40\x00\x08\x80\xf5\x78\x58\xf5\xe2\xea\x45\xd5\x03\x9c\xb6\ \x0b\xe9\x96\xea\x91\xd5\x17\x2c\x05\x02\x80\x31\x70\x17\xc0\xb8\ \xff\xdd\x3c\xbb\xfa\x78\x75\xe1\xec\xdd\xa3\xe1\xbf\xb8\xf6\xab\ \x5e\x6a\x19\x80\x31\xfd\x52\x62\x5c\x0e\x9c\xbd\xd3\xff\xa5\xea\ \xe1\x96\x63\xa9\x9c\x6c\x09\x00\x01\xc0\x1d\x6d\x6f\xb8\x5a\xfc\ \x65\xd5\x7d\x2c\xc7\x52\x3a\xc2\x12\x00\x63\xe1\x1a\x80\xf9\xdb\ \xa7\x3a\xad\x7a\x5d\x2e\xea\x9b\x82\xfd\xab\x9b\x2d\xc3\x6e\x1d\ \xd6\x70\xa1\xeb\x93\xaa\x63\x67\xf1\xb4\xeb\x96\xd6\x1b\xab\xaf\ \x56\x9f\xaf\xce\xad\xfe\xaa\xba\x7a\x8a\x8b\xe4\x1a\x00\x04\xc0\ \xe2\x06\xc0\x13\xab\x37\x56\x8f\x71\x2a\x4e\xc6\xbd\xab\x9d\x96\ \xe1\x2e\x1d\x53\xbd\xa6\x7a\x41\x6b\x7f\x86\xc5\x8d\xd5\x9f\x56\ \xbf\x59\x5d\x24\x00\x60\xed\xef\x3e\xd9\x7a\xdb\xab\xb7\x57\xff\ \x68\xf8\x4f\xce\x21\x96\xe0\x4e\xed\x5b\xfd\x6a\xf5\xb9\x86\x6b\ \x60\xd6\xf3\x00\xab\x03\xaa\x9f\xad\xfe\xbd\x3a\xdd\xef\x35\xb0\ \x03\x30\xd6\x1d\x80\x53\xab\x77\x54\x3b\x9c\x7e\x93\xf4\xc8\xd9\ \xa0\xe2\xff\xdd\xaf\x7a\x7f\xc3\x33\x2e\x36\xc2\x59\xd5\x4f\x35\ \x3c\x96\xd9\x0e\x00\xd8\x01\x98\xbb\x7b\x34\x3c\x16\xf6\xef\x0c\ \x7f\x3b\x00\x7c\xc7\x8e\x86\x9d\xb0\x13\x37\xf0\x9f\xf9\x94\x86\ \xef\x62\xf0\xe7\x0c\x04\xc0\xdc\x1d\x57\x9d\x5f\xfd\x62\xb5\x62\ \x39\x26\xed\x60\x4b\x70\xbb\x77\xfe\x67\xb6\x39\xb7\xbb\x7e\x6f\ \x75\x76\x75\xb8\x65\x06\x01\x30\x2f\xa7\x57\xff\x5a\x7d\xbf\xa5\ \x40\x00\x7c\xc7\xfe\x0d\xdf\x91\xf0\x88\x4d\xfc\x19\x47\x35\xdc\ \x25\x70\xb4\xe5\x06\x01\xb0\xd5\xbf\xe0\xde\x56\xbd\x3e\xcf\x5b\ \x40\x00\xdc\xd1\xab\x1b\xbe\xb5\x72\xb3\xed\xa8\xce\xb0\x13\x00\ \x02\x60\xab\xdc\xbb\xfa\x87\xea\xe7\x2d\x05\x77\x70\x90\x25\xe8\ \xc8\x86\x2b\xfe\xb7\xca\x51\x0d\x17\x06\x8a\x00\x10\x00\x9b\xea\ \xe8\xea\x93\x0d\xf7\xf8\x03\xdf\xed\xf4\x86\x47\x5e\x6f\x25\x11\ \x00\x02\x60\x53\x3d\x76\x36\xfc\x3d\xc3\x9f\xbb\x72\xeb\xc4\x5f\ \xff\xf6\xea\x85\x73\xfa\xd9\x22\x00\x04\xc0\xa6\xf8\x91\x86\x6f\ \xee\xbb\x9f\xa5\xe0\x6e\xdc\x32\xf1\xd7\xff\x9c\xe6\xfb\x31\x88\ \x08\x00\x01\xb0\xa1\x9e\x51\x7d\x64\xf6\xee\x06\xee\xce\x55\x13\ \x7f\xfd\x27\x8d\xe0\x18\x44\x00\x08\x80\x0d\x71\x6a\xf5\x37\xb9\ \xb8\x8b\xb5\xb9\x72\xe2\xaf\xff\xb8\x91\x1c\x87\x08\x40\x00\x58\ \x82\xbd\x7e\x37\xf3\x97\x0d\xb7\xfc\xc1\x5a\xfc\xe7\xc4\x5f\xff\ \x43\x47\x74\x2c\x22\x80\x49\xf3\x5d\x00\x7b\xee\x84\x86\xfb\x8b\ \xdd\xd7\xcd\x5a\x5d\x53\xdd\xab\x9a\xf2\x03\xdc\x6f\xaa\xb6\x8d\ \xec\x98\x2e\x6e\x78\x7c\xf0\x25\x8b\xb6\x98\xbe\x0b\x00\x3b\x00\ \x5b\xef\x98\xea\x83\x86\x3f\xeb\xf4\xf9\x89\x0f\xff\x46\x38\xfc\ \xed\x04\x20\x00\x58\xb3\xc3\xaa\xbf\x6d\x78\xd8\x0f\xac\x87\x6f\ \x01\x1c\x2f\x11\x80\x00\x60\xb7\xef\x5e\x3e\x90\xfb\xfc\xd9\x33\ \x9f\xb0\x04\x22\x00\x04\xc0\x62\xfa\x9d\x36\xf6\x6b\x4b\x99\x8e\ \xeb\xab\x0f\x5b\x06\x11\x00\x02\x60\xf1\x9c\x56\xbd\xdc\x32\xb0\ \x87\xfe\x30\xcf\x00\x10\x01\x30\x22\xee\x02\x58\x9b\x47\x55\x9f\ \x6a\xeb\x9f\x5f\xce\x72\xf8\x7c\xf5\xf8\x86\xbb\x00\xa6\x6e\x91\ \x7e\xe1\x8c\xfe\xee\x00\x77\x01\x60\x07\x60\x73\x1d\x54\xfd\x99\ \xe1\xcf\x1e\x3a\xbf\x7a\xba\xe1\x6f\x27\x00\x04\xc0\xe2\xf9\x9d\ \xea\x58\xcb\xc0\x1a\xdd\x52\x5d\x56\xbd\xbf\xfa\xc9\x86\x6f\x85\ \xbc\xd4\xb2\x88\x00\x18\x1b\x1f\x01\xdc\xbd\x67\x36\xdc\xf2\xb7\ \x0c\x56\x1b\xb6\xa2\xff\xad\xba\xe8\x36\x7f\x5d\x3e\xfb\xcf\xaf\ \xbe\xc3\xdf\x61\xb3\xce\xc3\x45\x34\xca\x8f\x03\x7c\x04\x80\x00\ \xd8\x9c\x00\xd8\xde\x70\xdf\xf6\x8e\x05\x7e\xb9\x57\x34\x3c\xaa\ \xf8\xec\x86\x5b\xd0\xae\x74\xca\x23\x00\x96\x27\x02\x04\x00\x7b\ \x63\x3f\x4b\x70\x97\x5e\xbf\xa0\xc3\xff\x86\x86\xa7\x14\xbe\xbb\ \xfa\x58\xbe\x7e\x16\x36\xca\xae\x8f\x03\x16\xf2\xb1\xc1\x60\x07\ \x60\x6d\x3b\x00\x8f\xaf\xce\x6b\xb1\xae\x91\xd8\x59\xbd\xb5\x7a\ \x93\x77\xfa\xd8\x01\x98\xc6\x4e\x80\x1d\x00\x04\xc0\xc6\x06\xc0\ \x4a\xc3\x2d\x7f\xc7\x2f\xd0\xe0\x7f\x6d\xf5\xce\xea\x5a\xa7\x34\ \x02\x60\x3a\x11\x20\x00\xd8\x1b\xee\x02\xf8\x6e\x2f\x5e\x90\xe1\ \x7f\x6b\xf5\xfb\xd5\xd1\xd5\x1b\x0d\x7f\xd8\x52\x47\x55\xe7\xce\ \xfe\xfc\x81\x1d\x80\x25\xd8\x01\x38\xb0\xfa\x72\xf5\xe0\x91\xbf\ \x8c\xaf\x56\x2f\xa9\xce\x74\x0a\x63\x07\x60\xba\x3b\x01\x76\x00\ \xb0\x03\xb0\x71\x5e\xbe\x00\xc3\xff\x4f\xaa\xe3\x0c\x7f\xb0\x13\ \x00\x76\x00\x36\x66\x07\xe0\xe0\x86\xfb\xe2\xef\x3f\xd2\x43\xbf\ \xa1\x7a\x65\xc3\x85\x7e\x60\x07\xc0\x4e\x80\x1d\x00\xec\x00\x6c\ \x90\x9f\x1b\xf1\xf0\xff\x46\xc3\xe3\x64\x0d\x7f\x18\xef\x4e\x80\ \x27\x06\x62\x07\x60\x01\x77\x00\xf6\x9b\xbd\xfb\x1f\xe3\x1f\xde\ \xcb\xaa\x53\x1a\x9e\xe2\x07\x76\x00\xc6\xed\xd2\xd9\x4e\xc0\x45\ \x76\x00\xb0\x03\xb0\x18\x9e\x3d\xd2\xe1\x7f\x69\xf5\x34\xc3\x1f\ \x16\xc6\x8e\xea\x0c\x3b\x01\x08\x80\xc5\xf1\x8a\x11\x1e\xd3\x7f\ \x57\x27\x57\x5f\xf4\xaf\x07\x16\x8a\x8f\x03\x58\x08\x3e\x02\x18\ \xbe\xe9\xef\x82\x91\x1d\xe6\xd5\xd5\x89\xd5\xe7\x9c\xa2\x2c\x99\ \x29\xfd\xc2\xd9\xf4\x8f\x03\x7c\x04\x80\x1d\x80\xbd\xf3\xc2\x91\ \x1d\xcf\x4d\xd5\x4f\x18\xfe\xb0\xf0\x7c\x1c\x80\x00\x18\xb1\x7d\ \xab\xd3\x46\x76\x4c\xbf\x52\xfd\x83\x53\x13\x96\x82\x8f\x03\x10\ \x00\x23\xf5\xe4\xea\x41\x23\x3a\x9e\x77\x37\x3c\xde\x17\x58\xae\ \x08\xf0\xb0\x20\x04\xc0\xc8\xfc\xf8\x88\x8e\xe5\x4b\x8d\xf3\x62\ \x44\x60\xef\xf9\x38\x80\xd1\x99\xf2\x45\x80\xfb\x34\x5c\xa4\x33\ \x86\x1d\x80\xd5\x86\xdd\x88\x73\x9c\x92\x2c\xb9\xa9\x5f\xb5\xb6\ \xa1\x4f\x0c\x74\x11\x20\x76\x00\xf6\xcc\x63\x1a\xcf\xf6\xff\x1f\ \x19\xfe\x30\x09\x3e\x0e\x40\x00\x8c\xc0\x29\x23\x39\x8e\xff\xa9\ \x5e\xe5\x54\x84\xc9\xd8\xd1\x70\x61\xa0\x08\x40\x00\xcc\xc9\x53\ \x47\x72\x1c\x6f\xa8\x76\x3a\x15\x61\x72\x11\xe0\x9a\x00\xe6\x6a\ \xaa\xd7\x00\x1c\x58\xfd\x6f\x75\xc0\x9c\x0f\x67\x67\x75\x44\x75\ \xad\x53\x91\x89\xf0\xa1\xf5\xed\xed\xd5\x35\x01\xae\x01\xc0\x0e\ \xc0\xfa\xfd\xd0\x08\x86\x7f\xd5\xef\x1a\xfe\x30\x69\xae\x09\x40\ \x00\x6c\xb1\xc7\x8e\xe0\x18\xae\xab\xde\xe6\x14\x84\xc9\xf3\x71\ \x00\x02\x60\x0b\x1d\x3f\x82\x63\xf8\x9b\xea\x2a\xa7\x20\x90\x27\ \x06\x22\x00\xb6\xcc\x71\x23\x38\x86\x77\x39\xfd\x80\x3b\x44\x80\ \x8f\x03\xd8\x32\x53\xbc\x08\x70\x5b\xc3\xf6\xfb\xb6\x39\x1e\xc6\ \xe5\xd5\x43\xaa\x6f\x3b\x05\x99\x18\x57\xad\xed\xde\x9a\xbf\x45\ \xd0\x45\x80\xd8\x01\x58\x7f\x65\x6f\x9b\xf3\x31\x7c\xd0\xf0\x07\ \xee\x82\x6b\x02\x10\x00\x9b\xe4\xe1\x23\x38\x86\xb3\x9d\x7a\xc0\ \x6e\xde\xa8\xb8\x26\x00\x01\xb0\xc1\x8e\x18\xc1\x31\x9c\xe5\xd4\ \x03\xd6\x10\x01\xae\x09\x40\x00\x6c\xa0\x1d\x73\xfe\xf9\x17\x36\ \x5c\x03\x00\xb0\x96\xdf\x57\x1e\x1b\x8c\x00\x58\x92\x00\xf8\xb4\ \xd3\x0e\x58\xe7\xef\x2c\xd7\x04\x20\x00\x36\xc0\x7d\xe6\xfc\xf3\ \xbf\xe4\xb4\x03\xd6\xc9\xc7\x01\x08\x80\x0d\x70\xd8\x9c\x7f\xfe\ \x45\x4e\x3b\x60\x0f\x77\x02\x7c\x1c\x80\x00\xd8\x0b\x87\x0a\x00\ \x60\x81\x23\xc0\xc7\x01\x08\x80\x3d\xb4\x7d\xce\x3f\xff\x0a\xa7\ \x1d\xb0\x17\xdc\x22\xc8\x86\xd8\x6f\x82\xaf\x79\xde\xdf\x02\xe8\ \xdb\xff\x80\x8d\x88\x80\x73\x57\x56\x56\xd6\xf4\xc4\x40\xd6\x66\ \x6a\x4f\x56\x9c\xe2\x0e\xc0\xbc\x9f\x02\x78\x9d\x3f\x66\xc0\x06\ \x70\x4d\x00\x02\x60\x9d\xf6\x17\x00\x80\x08\x40\x00\x78\xcd\x5b\ \xed\x66\xa7\x1d\xb0\xc1\x11\xe0\xc2\x40\x04\x00\xc0\x04\x79\x4e\ \x00\x02\x00\x60\xc2\x3b\x01\x3e\x0e\x40\x00\x00\x88\x00\x10\x00\ \x00\x22\x00\x04\x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\ \x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\x40\x00\x00\x20\x02\x10\ \x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\x40\x00\x00\ \x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\x00\x80\x08\ \x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\x22\x00\x01\ \x00\x80\x08\x40\x00\x00\x20\x02\x04\x80\x25\x00\x40\x04\x4c\xcf\ \xca\xea\xea\xea\xb4\x5e\xf0\xca\xca\xbc\x5f\xf0\x8a\xd3\x6e\x4d\ \x0e\xab\x9e\x5b\x3d\xa9\x3a\xb6\x3a\xa2\x3a\xa0\x3a\xd4\xd2\xc0\ \x96\xbb\xb8\x7a\x4a\x75\xc9\x32\xbf\xc8\xc9\xcd\x43\x01\x20\x00\ \x46\xe6\x98\xea\x35\xd5\x0b\x66\x03\x1f\x10\x01\x02\x40\x00\x08\ \x80\x25\xb6\x6f\xf5\xaa\xea\x37\x0c\x7e\x10\x01\x02\x40\x00\x08\ \x80\x69\xb8\x5f\xf5\xfe\xea\x44\x4b\x01\x22\x40\x00\x08\x00\x01\ \x30\x0d\x3b\xaa\x8f\x57\x0f\xb7\x14\x20\x02\x04\xc0\xd6\x71\x17\ \x00\xf3\x7e\xe7\x7f\xa6\xe1\x0f\x0b\xe7\xa8\x86\xbb\x03\x0e\xb7\ \x14\x02\x00\xd6\x6b\xff\xea\x43\xd5\x23\x2c\x05\x2c\x6c\x04\x9c\ \x9b\x5b\x04\x05\x00\xac\xd3\xab\xab\xe3\x2d\x03\x2c\xb4\x1d\xd5\ \x19\x76\x02\x16\x93\x6b\x00\xe6\x70\x08\x4e\xbb\x8e\xac\x2e\xa8\ \x0e\xb4\x14\xb0\x14\x96\xe2\x9a\x00\xd7\x00\xc0\xe6\x3b\xdd\xf0\ \x87\xa5\xe2\x9a\x00\x3b\x00\x76\x00\xec\x00\xec\xd6\xbd\xaa\xff\ \x12\x00\xb0\x94\x2e\x9d\xed\x04\x5c\x64\x07\xc0\x0e\x00\xdc\xd1\ \xb3\x0d\x7f\x58\x5a\xae\x09\x10\x00\x70\x97\x4e\xb2\x04\xb0\xd4\ \x7c\x1c\x20\x00\xe0\x4e\x3d\xda\x12\xc0\x24\x22\xc0\x2d\x82\x02\ \x00\x6e\xc7\xbb\x02\x98\x06\x1f\x07\x08\x00\xb8\x9d\x43\x2c\x01\ \xd8\x09\x40\x00\x30\x3d\xdb\x2c\x01\xd8\x09\x40\x00\x00\x60\x27\ \x00\x01\x00\xc0\x12\xef\x04\x9c\x25\x02\x04\x00\x00\x22\x00\x01\ \x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x04\x00\x00\ \x22\x00\x01\x00\x80\x08\x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\ \x04\x00\x00\x22\x00\x01\x00\x80\x08\x10\x00\x00\x20\x02\x04\x00\ \x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\x80\x08\x10\x00\x00\x20\ \x02\x04\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\x80\x08\x10\ \x00\x00\x20\x02\x04\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\x00\ \x80\x08\x10\x00\x00\x20\x02\x04\x00\x00\x22\x00\x01\x00\x80\x08\ \x40\x00\x00\x20\x02\x10\x00\x00\x88\x00\x01\x00\x00\x22\x40\x00\ \x00\x80\x08\x10\x00\x00\x20\x02\x04\x00\x00\x88\x00\x01\x00\x00\ \x22\x40\x00\x00\x80\x08\x10\x00\x00\x30\xaa\x08\x38\xa3\x7a\x88\ \x00\x00\x80\x69\x39\xaa\x3a\xb3\xba\x97\x00\x00\x80\x69\xf9\xde\ \xea\xcf\xab\xfd\x04\x00\x00\x4c\xcb\x29\xd5\xab\xa6\xfa\xe2\x57\ \x56\x57\x57\xa7\xf5\x82\x57\x56\xe6\xfd\x82\x57\x26\xfe\x07\x6e\ \x35\x80\xf1\xb8\x7e\xb6\x1b\x70\xc9\xd4\xe6\xa1\x1d\x00\x00\xa6\ \xec\x1e\xd5\xe9\x76\x00\xec\x00\xd8\x01\xb0\x03\x00\x4c\x73\x17\ \xe0\x81\xab\xab\xab\xdf\xb0\x03\x00\x00\xd3\xda\x05\xf8\xd1\xa9\ \xbd\x68\x01\x00\x00\xf5\x54\x01\x00\x00\xd3\xf3\x68\x01\x00\x00\ \xd3\x73\x84\x00\x00\x80\xe9\xd9\x2e\x00\x00\x60\x7a\x26\x77\x87\ \x92\x00\x00\x80\xfa\xc6\xd4\x5e\xb0\x00\x00\x80\xba\x58\x00\x00\ \xc0\xf4\x7c\x56\x00\x00\xc0\xf4\x9c\x35\xb5\x17\xec\x51\xc0\x73\ \x38\x84\x89\xff\x21\xf3\x28\x60\x60\x6c\xbe\x59\x3d\x60\x75\x75\ \xf5\x5b\x76\x00\x00\x60\x3a\xde\x53\x7d\x6b\x6a\x2f\xda\x0e\x80\ \x1d\x00\x3b\x00\xc0\x94\xf9\x3a\x60\x00\x98\xa0\xd7\x55\x97\x4c\ \xf1\x85\xdb\x01\xb0\x03\x60\x07\x00\x98\xaa\xf7\x55\x3f\xb3\xeb\ \xf7\xd2\xe4\xe6\xa1\x00\x10\x00\x02\x00\x98\xa0\x7f\xae\x9e\xdc\ \xf0\x11\x40\x53\x0c\x00\x1f\x01\x00\x30\x35\x17\x57\xcf\xbf\xed\ \xf0\x9f\x22\x01\x00\xc0\x94\x5c\x50\x9d\x50\x5d\x36\xf5\x85\x10\ \x00\x00\x4c\x69\xf8\x9f\x54\x5d\x61\x29\x04\x00\x00\x86\xbf\x00\ \x00\x00\xc3\x5f\x00\x00\x80\xe1\x2f\x00\x00\xc0\xf0\x17\x00\x00\ \x60\xf8\x0b\x00\x00\x30\xfc\x05\x00\x00\x18\xfe\x02\x00\x00\x0c\ \x7f\x01\x00\x00\x86\xbf\x00\x00\x00\xc3\x5f\x00\x00\x80\xe1\x2f\ \x00\x00\xc0\xf0\x17\x00\x00\x60\xf8\x0b\x00\x00\x0c\x7f\x04\x00\ \x00\x86\x3f\x02\x00\x00\xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\xc0\ \xf0\x17\x00\x00\x60\xf8\x0b\x00\x00\x30\xfc\x05\x00\x00\x18\xfe\ \x02\x00\x00\x0c\x7f\x01\x00\x00\x86\xbf\x00\x00\x00\xc3\x5f\x00\ \x00\x80\xe1\x2f\x00\x00\xc0\xf0\x17\x00\x00\x18\xfe\x86\xbf\x00\ \x00\xc0\xf0\x47\x00\x00\x60\xf8\x23\x00\x00\x30\xfc\x11\x00\x00\ \x18\xfe\x08\x00\x00\x0c\x7f\x04\x00\x00\x86\x3f\x02\x00\x00\xc3\ \x1f\x01\xc0\xbc\xdc\x6c\x09\x60\x52\x2e\xae\x4e\x35\xfc\x05\x00\ \x5c\x63\x09\x60\x52\xc3\xff\x29\xd5\x25\x96\x42\x00\xc0\xc5\x96\ \x00\x26\xe1\x82\xea\x04\xc3\x5f\x00\xc0\x2e\x9f\xb5\x04\x30\x89\ \xd0\xb7\xed\x2f\x00\xe0\x76\xce\xb6\x04\xb0\xf4\xc3\xdf\xb6\xff\ \x02\x58\x59\x5d\x5d\x9d\xd6\x0b\x5e\x59\x99\xf7\x0b\x5e\x99\xf8\ \x39\x77\x70\x75\x79\x75\x4f\x7f\xfc\x60\xe9\x2c\xf4\xd5\xfe\x53\ \x9b\x87\x76\x00\xd8\x6a\xd7\x55\xef\xb5\x0c\xb0\x94\xef\xfc\x6d\ \xfb\xdb\x01\xb0\x03\x60\x07\xe0\x6e\x1d\x39\x7b\xa7\x70\xa0\xa5\ \x80\xa5\x19\xfe\x0b\xbf\xed\x6f\x07\x00\x36\xdf\x57\xaa\xdf\xb2\ \x0c\x60\xf8\x63\x07\xc0\x0e\xc0\xf4\xec\x53\x7d\xa4\x3a\xc5\x52\ \xc0\xc2\x5a\xaa\x27\xfc\x4d\x6e\x1e\x0a\x00\x01\x30\x47\xf7\xab\ \xce\xa9\x1e\x61\x29\xc0\x3b\x7f\x01\xb0\xf5\xef\xc2\x60\x5e\xae\ \xac\x9e\x56\x7d\xc6\x52\x80\xe1\x8f\x00\x60\x5a\x2e\xab\x1e\x57\ \xbd\xc7\x52\xc0\x42\xf0\x84\x3f\x01\x00\x1b\xe6\xc6\xea\x45\xd5\ \x6b\x66\xff\x37\x30\xde\x77\xfe\x6e\xf5\x5b\x12\xae\x01\x98\xc3\ \x21\x38\xed\xee\xd6\x31\xb3\x10\xf8\xe9\xdc\x26\x08\x63\x1b\xfe\ \x4b\xbd\xed\xef\x22\x40\x01\x20\x00\xc6\xe1\x90\xea\x19\xd5\xc9\ \xd5\x71\xd5\x11\xd5\x7d\xab\x7d\x2d\x0d\x18\xfe\x02\x40\x00\x08\ \x00\x58\xb0\xdf\xb1\x96\xc0\xf0\x17\x00\xe3\xe0\x1a\x00\x00\xee\ \x8a\x0b\xfe\x04\x00\x00\x13\x1c\xfe\x4b\xf3\x90\x1f\x04\x00\x00\ \x86\x3f\x02\x00\x00\xc3\x5f\x00\x00\x60\xf8\x1b\xfe\x02\x00\x00\ \xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\xc0\xf0\x47\x00\x00\x60\xf8\ \x23\x00\x00\x30\xfc\x11\x00\x00\x18\xfe\x08\x00\x00\x0c\x7f\x04\ \x00\x00\x86\x3f\x02\x00\x00\xc3\x1f\x01\x00\x80\xe1\x8f\x00\x00\ \xc0\xf0\x47\x00\x00\x60\xf8\x23\x00\x00\x30\xfc\x11\x00\x00\x86\ \x3f\x08\x00\x00\xc3\x1f\x04\x00\x80\xe1\x8f\x00\x00\xc0\xf0\x47\ \x00\x00\x60\xf8\x23\x00\x96\xca\xad\x73\xfe\xf9\xdb\x9c\x76\xc0\ \x06\xba\xb8\x3a\xd5\xf0\x47\x00\xec\xde\x4d\x73\xfe\xf9\xf7\x74\ \xda\x01\x1b\xf8\xce\xff\x84\xea\x12\x4b\x81\x00\x18\x7f\x00\x1c\ \xec\xb4\x03\x36\x68\xf8\xdb\xf6\x67\x8f\xed\x27\x00\x04\x00\xb0\ \x70\x2e\xae\x4e\x5d\x5d\x5d\x35\xfc\xb1\x03\xb0\x0e\xd7\xcc\xf9\ \xe7\xdf\xdf\x69\x07\xec\xe5\xf0\x7f\x4a\xb6\xfd\x11\x00\xeb\xb6\ \x73\xce\x3f\xff\x18\xa7\x1d\xb0\x87\x7c\xe6\x8f\x00\x58\xe0\x00\ \x38\xda\x69\x07\xec\xe1\xf0\xf7\x99\x3f\x02\x60\x2f\x5c\x25\x00\ \x80\x05\xe3\x56\x3f\x04\xc0\x06\xf8\xda\x9c\x7f\xfe\x63\x9c\x76\ \xc0\x3a\xdf\xf9\xdb\xf6\x47\x00\x6c\x80\x4b\xe7\xfc\xf3\x8f\xaa\ \x0e\x77\xea\x01\x6b\x1c\xfe\xb6\xfd\x11\x00\x4b\x12\x00\x55\x4f\ \x74\xea\x01\xbb\x61\xdb\x1f\x01\xb0\xc1\x2e\x1c\xc1\x31\x3c\xd9\ \xa9\x07\xec\x66\xf8\xbb\xd5\x8f\x4d\xb5\xb2\xba\xba\x3a\xad\x17\ \xbc\xb2\xb2\x6f\xf5\xcd\xea\x1e\x73\x3c\x8c\x9d\xd5\x03\x9b\xff\ \x43\x89\x60\xab\xad\x5a\x82\xdd\xba\xa0\x3a\xc9\x43\x7e\xb0\x03\ \xb0\xf1\xbe\x3d\x82\x5d\x80\xc3\xaa\x53\x9c\x7e\xc0\x9d\x0d\xff\ \x6c\xfb\x23\x00\x36\xcd\xe7\x46\x70\x0c\x2f\x70\xfa\x01\xb7\xe1\ \x33\x7f\x04\xc0\x16\x38\x7f\x04\xc7\xf0\x9c\xea\xde\x4e\x41\x20\ \x9f\xf9\x23\x00\xb6\xcc\x3f\x8d\xe0\x18\x0e\xae\x7e\xc9\x29\x08\ \x93\xe7\x3e\x7f\xe6\x62\x8a\x17\x01\x56\x1d\x50\x7d\x63\xf6\xf7\ \x79\xda\x59\x1d\x51\x5d\xeb\x54\x64\x22\x5c\x04\xb8\xc6\x77\xfe\ \x53\xfb\xdd\x8c\x1d\x80\xad\x72\xe3\x48\x76\x01\x0e\xab\x7e\xde\ \x69\x08\x86\x3f\x08\x80\xad\xf3\xd1\x91\x1c\xc7\xaf\x57\x0f\x76\ \x2a\xc2\xa4\xd8\xf6\x47\x00\xcc\xd1\x19\x23\x39\x8e\x43\xaa\xdf\ \x76\x2a\xc2\xa4\x86\xbf\x5b\xfd\x98\xbb\xa9\x5e\x03\xb0\x2b\x7e\ \x2e\xad\x1e\x34\x82\xc3\x5a\x6d\x78\x3a\xe0\x39\x4e\x49\x96\xdc\ \xd4\x3f\xd8\x5e\xf3\xb6\xbf\x6b\x00\xb0\x03\xb0\x79\x6e\xad\x3e\ \x30\x96\x2e\xa9\xde\x59\x6d\x77\x4a\x82\xe1\x0f\x02\x60\xf3\xbd\ \x7f\x44\xc7\x72\x4c\xf5\xde\x59\x0c\x00\xcb\xc5\x67\xfe\x08\x80\ \x91\xf9\x64\xf5\x9f\x23\x3a\x9e\x67\x55\xaf\x70\x5a\xc2\xd2\xbd\ \xf3\xf7\x84\x3f\x04\xc0\xc8\x7c\xbb\x7a\xd7\xc8\x8e\xe9\xb7\x1b\ \x2e\x10\x02\x96\x63\xf8\xdb\xf6\x67\x94\xa6\x7c\x11\xe0\x2e\x47\ \x56\x5f\x1e\x59\x0c\x5d\xdf\xf0\x65\x41\xe7\x3a\x45\x59\x32\x53\ \xfa\x85\xb3\x57\x57\xfb\xbb\x08\x10\x3b\x00\x9b\xef\x2b\xd5\x27\ \x46\x76\x4c\xf7\x68\xb8\x40\xf1\x11\xfe\xf5\xc0\xc2\xbe\xf3\xb7\ \xed\x8f\x00\x58\x00\xbf\x37\xc2\x63\xba\x6f\x75\xa6\x08\x80\x85\ \x1c\xfe\xb6\xfd\x19\x3d\x1f\x01\xcc\xfe\xdf\xd5\x7f\x54\xc7\x8e\ \xf0\x90\xaf\x6e\xb8\x38\xf0\x93\x4e\x57\x96\xc0\xb2\xff\xc2\xd9\ \xb0\x87\xfc\xf8\x08\x00\x3b\x00\x5b\xf7\x4b\xe9\x4d\x23\x3d\xb6\ \x43\xab\x0f\x57\x3f\xe2\x5f\x13\x8c\xfe\x9d\xbf\x6d\x7f\xec\x00\ \x2c\xd8\x0e\x40\xd5\x81\x0d\x17\x03\x8e\xf5\xb9\xfc\x37\x54\xaf\ \xac\xde\xea\xb4\xc5\x0e\xc0\x28\x87\xff\x86\x6e\xfb\xdb\x01\xc0\ \x0e\xc0\xd6\x0e\xd8\xd7\x8d\xf8\xf8\x0e\xac\xde\xd2\x70\x5d\xc0\ \x03\xfc\xeb\x82\xd1\xf0\x90\x1f\xec\x00\x2c\xf8\x0e\xc0\xae\x21\ \xfb\xa5\xea\x21\x23\x7f\x19\x5f\xad\x5e\x32\x8b\x01\xb0\x03\xb0\ \x44\xef\xfc\xed\x00\x60\x07\x60\x7e\xbb\x00\xa7\x2f\xc0\x71\x3e\ \xb4\xe1\xdb\x0c\x3f\x54\x1d\xee\x5f\x1b\x78\xe7\x0f\x76\x00\xf6\ \x6e\x07\xa0\x86\x3b\x02\x3e\x55\x1d\xbf\x20\x2f\x69\x67\xf5\xda\ \x86\x2f\x13\xba\xd6\x29\x8d\x1d\x80\xc5\x7e\xe7\x6f\x07\x00\x01\ \x30\xbf\x00\xa8\x7a\x7c\x75\x5e\x8b\xb5\x43\xb2\xb3\xe1\x02\xc1\ \x37\x55\x57\x3a\xb5\x11\x00\x8b\x3b\xfc\x05\x00\x02\x60\x7e\x01\ \xd0\x6c\x98\xfe\xc2\x02\xbe\xc4\x1b\xaa\x0f\x56\xef\xae\x3e\x56\ \xdd\xe2\x34\x47\x00\x2c\xd6\xf0\x17\x00\x08\x80\xf9\x06\xc0\xf6\ \xea\xdf\xab\x1d\x0b\xfc\x72\xaf\x68\x78\xa4\xf0\x79\x0d\xdf\x2b\ \xf0\x35\xa7\x3c\x02\x60\xfc\xc3\x5f\x00\x20\x00\xe6\x1b\x00\x55\ \xcf\xac\xfe\x76\x89\x5e\xfe\xd7\xab\x7f\xad\xbe\x58\x5d\x58\x7d\ \xa1\xe1\xeb\x90\xaf\xad\xae\x9b\xfd\x05\x02\x60\xce\xc3\x5f\x00\ \x20\x00\xe6\x1f\x00\x55\x6f\xaf\x5e\xea\x54\x61\x37\x76\x36\x3c\ \xb6\x79\x67\xc3\x4e\xcb\x17\x1b\x3e\x8a\xf9\x67\x4b\xb3\xf0\x01\ \x30\x97\x67\xfb\x0b\x00\x04\xc0\xfc\x03\xe0\xa0\xea\x5f\x1a\xe7\ \xf7\x04\x30\x6e\x57\x57\xa7\x35\xdc\xae\xc9\x62\x06\xc0\xdc\xbe\ \xd8\x47\x00\xb0\xd9\x3c\x07\x60\xf7\xbe\x55\xbd\xa0\xe1\xe2\x3a\ \x58\x8f\x43\x67\xbb\x00\xff\x58\x3d\xce\x72\x78\xe7\x0f\x76\x00\ \x16\x6b\x07\x60\x97\xd3\xaa\x3f\x76\xca\xb0\x87\x6e\xae\x9e\x9c\ \x6f\x75\x5c\x94\x5f\x38\x73\x1f\xfe\x76\x00\xb0\x03\x30\x1e\xef\ \xaa\xde\x6c\x19\xd8\x43\xdb\xaa\xa7\x5a\x06\xc3\x1f\x04\xc0\x62\ \xfa\xe5\xea\x6c\xcb\x80\x3f\x6f\x86\x3f\xf8\x85\x34\x2d\x37\x57\ \xcf\x6b\x78\x06\x38\xac\xd7\xfd\x2d\x81\xe1\x0f\x02\x60\x71\x5d\ \x5d\x9d\xec\x97\x04\x7b\xe0\x14\x4b\x30\x5a\xbe\xd8\x87\xc9\x71\ \x11\xe0\x9e\x7b\x74\x75\x56\x75\x2f\xa7\x11\xeb\xb0\x7f\xc3\x4e\ \xd2\x54\xdd\xd4\x70\x3d\x84\x77\xfe\xbb\xe1\x22\x40\xec\x00\x8c\ \xd7\xa7\xab\x67\x35\xdc\x26\x08\x6b\x75\xc8\xc4\x5f\xff\x35\x86\ \x3f\x08\x80\x65\x70\x5e\xc3\x35\x01\x37\x59\x0a\x04\xc0\x9a\x7c\ \xc5\xf0\x07\x01\xb0\x2c\x3e\x56\x3d\xc7\x4e\x00\x02\x60\x4d\x3e\ \x63\xf8\x83\x00\x58\x26\x1f\xad\x4e\x6d\x7c\xdb\x9b\x08\x80\xb1\ \x39\xdb\xf0\x07\x01\xb0\x6c\xce\xa9\x9e\x56\x5d\x69\x29\xb8\x1b\ \x07\x4f\xfc\xf5\x7f\xb0\xf9\xee\x96\x19\xfe\x20\x00\x36\xc5\xf9\ \x0d\xb7\x12\x5d\x68\x29\x10\x00\x77\xea\x9a\xea\x3d\x86\x3f\x08\ \x80\x65\x74\xd1\x2c\x02\xce\xb3\x14\x08\x80\x3b\xf5\x86\xb6\xfe\ \xcb\xb5\x0c\x7f\x10\x00\x5b\xe2\xaa\xea\xa4\xea\xed\x96\x82\x3b\ \x38\xc8\x12\xf4\x95\xea\xb7\x0c\x7f\x10\x00\xcb\xea\xa6\xea\x17\ \x1a\xbe\x4a\xf8\x5a\xcb\x01\xb7\xf3\xba\xea\x8c\x2d\xf8\x39\x9e\ \xf0\x07\x02\x60\x6e\xde\x57\x3d\xb1\xfa\x0f\x4b\x41\x75\xab\x25\ \xf8\xce\x3a\xbc\xb0\xfa\xe2\x26\xbf\xf3\x3f\xb5\xba\xc2\x72\x83\ \x00\x98\x97\xcf\x56\x8f\xad\xde\xda\xe2\x7c\x1f\x3a\x9b\xe3\x16\ \x4b\xf0\x1d\x57\x36\xdc\x39\xb3\x19\xcf\x06\xf8\x74\x75\xa2\x77\ \xfe\x20\x00\xc6\xe0\xfa\xea\x65\xd5\x33\xab\x4b\x2d\xc7\x64\x5d\ \x65\x09\x6e\xe7\xb2\xea\x49\xd5\x5f\x6f\xe0\x3f\xf3\x03\xb3\x7f\ \xe6\x65\x96\x17\x04\xc0\x98\x7c\xa4\xfa\x81\xea\x1d\x76\x03\x26\ \xfb\xae\x97\xdb\xbb\xb6\x7a\x7e\xf5\x9a\xea\xc6\xbd\xf8\xe7\xdc\ \x50\x9d\x5e\xfd\x44\x75\x9d\x65\x85\xbb\xe7\xdb\x00\xe7\xeb\x89\ \xd5\x1b\xab\xc7\x38\x15\x27\xe3\x21\xd5\xd7\x2d\xc3\x5d\x3a\x66\ \x16\x02\x3f\x5d\x1d\xb8\xc6\xff\xcd\xf5\x0d\xd7\xda\xfc\x66\xc3\ \x6d\xb8\x4b\xc1\xb7\x01\x22\x00\x96\x3b\x00\x6a\xd8\x85\x39\xad\ \xe1\xaa\xe8\x07\x39\x25\x97\xda\x35\x0d\x5f\x1f\xed\x37\xfb\xee\ \x1d\x52\x3d\xa3\x3a\xb9\x3a\xae\x3a\xa2\xba\xef\x6c\xed\xfe\xa7\ \xfa\x6a\xc3\xb5\x35\x67\x36\x3c\x8a\x7b\xe9\xee\xb4\x11\x00\x08\ \x80\xe5\x0f\x80\x5d\xb6\x35\xdc\x32\xf8\x6b\xd5\xc3\x9c\x9a\x4b\ \xe9\x53\xd5\x13\x2c\x03\x02\x80\xb1\xbc\xfb\x64\x1c\x6e\xae\xde\ \x5d\x3d\xb2\xe1\xf9\x01\x1e\x27\xbc\x7c\xdc\x0a\x0a\x08\x00\xee\ \xd2\x0d\x0d\x4f\x10\x3c\xb6\xfa\xb1\xea\xef\xb3\x65\xbc\x2c\x3e\ \x61\x09\x80\xb1\xf0\x11\xc0\x62\x78\x58\xf5\xe2\xea\x45\xd5\x03\ \x9c\xb6\x0b\xe9\xfa\x6a\x47\x6e\x03\x64\x8d\x7c\x04\x80\x00\x10\ \x00\xb7\xb5\x6f\xc3\xc3\x4d\x9e\x57\x3d\x37\x17\x0d\x2e\x92\x37\ \x57\xaf\xb0\x0c\x08\x00\x04\x80\x00\xd8\x5b\xfb\x54\x8f\x6a\xf8\ \xd2\xa1\x93\xaa\x1f\x6e\xb8\x72\x9a\xf1\xf9\x7c\xf5\xf8\x86\xbb\ \x00\x40\x00\x20\x00\x04\xc0\x86\xef\x0e\x3c\xaa\xe1\x09\x68\x27\ \x54\xdf\xdf\x70\x4f\xf5\x01\x4e\xf3\xb9\x3a\xbf\xe1\x21\x37\x9e\ \xfe\x88\x00\x40\x00\x08\x80\x2d\x8d\x82\x87\x56\x47\x37\x3c\x80\ \x66\x47\x75\x78\x75\x9f\xea\xde\xd5\x61\xb3\xbf\x6f\xab\xb6\xcf\ \xfe\xfb\xec\x9d\x5b\xaa\xcb\xab\x4f\x56\x7f\xd1\xf0\x88\xdb\x9b\ \x2d\x0b\x02\x00\x01\x00\x00\xcc\x9d\xdb\x00\x01\x40\x00\x00\x00\ \x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\ \x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\ \x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\ \x00\x00\x40\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\ \x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\ \x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\ \x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x01\ \x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\ \x00\x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\ \x40\x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\ \x00\x20\x00\x00\x00\x01\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\ \x00\x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\ \x00\x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\ \x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\ \x00\x04\x00\x00\x20\x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\ \x00\x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\ \x00\x00\x00\x01\x00\x00\x08\x00\x00\x40\x00\x00\x00\x02\x00\x00\ \x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\x00\x40\x00\x00\ \x00\x02\x00\x00\x10\x00\x00\x80\x00\x00\x00\x04\x00\x00\x20\x00\ \x00\x00\x01\x00\x00\x08\x00\x00\x60\x8e\xfe\x6f\x00\x84\x60\x47\ \x9d\x6c\x46\x2f\x1d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ " qt_resource_name = b"\ \x00\x08\ \x0a\x61\x5a\xa7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x06\x19\x61\xe7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x69\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0b\x21\x0f\x87\ \x00\x66\ \x00\x69\x00\x6c\x00\x65\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x08\xc8\x58\x67\ \x00\x73\ \x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x07\x44\x3d\x87\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xed\x72\x47\ \x00\x62\ \x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x35\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0e\xcf\x90\xa7\ \x00\x70\ \x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x05\x52\x5a\x47\ \x00\x61\ \x00\x6e\x00\x6e\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xeb\x72\x47\ \x00\x62\ \x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x33\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x09\x71\x36\x27\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x73\x00\x65\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xea\x72\x47\ \x00\x62\ \x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x34\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0f\x55\x06\x27\ \x00\x72\ \x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x07\xd8\xb7\x27\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xf1\x72\x47\ \x00\x62\ \x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xe8\x72\x47\ \x00\x62\ \x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x07\x50\x31\x47\ \x00\x65\ \x00\x6c\x00\x6c\x00\x69\x00\x70\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x41\x99\xc7\ \x00\x68\ \x00\x65\x00\x6c\x00\x70\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x09\xa7\x0e\x47\ \x00\x66\ \x00\x69\x00\x6c\x00\x65\x00\x71\x00\x75\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x12\x00\x00\x00\x01\ \x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x01\xc1\xd7\ \x00\x00\x01\x12\x00\x00\x00\x00\x00\x01\x00\x01\x69\xd3\ \x00\x00\x00\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x3d\xde\ \x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\xa4\x01\ \x00\x00\x01\x64\x00\x00\x00\x00\x00\x01\x00\x01\xb8\x53\ \x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xd1\x3c\ \x00\x00\x00\x16\x00\x00\x00\x00\x00\x01\x00\x00\x00\xd0\ \x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x69\xfc\ \x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x01\xcb\x62\ \x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x01\x77\xf1\ \x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x76\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x01\x47\x24\ \x00\x00\x01\xd4\x00\x00\x00\x00\x00\x01\x00\x02\x1f\x41\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x15\ \x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x01\xfb\x04\ \x00\x00\x00\xaa\x00\x00\x00\x00\x00\x01\x00\x00\xad\x7c\ \x00\x00\x01\x2c\x00\x00\x00\x00\x00\x01\x00\x01\x73\x3a\ " 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()
NIRVANALAN/TU_rcm
resources.py
resources.py
py
612,926
python
ja
code
2
github-code
36
35478168713
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- import argparse import codecs import sys import openapc_toolkit as oat ARG_HELP_STRINGS = { "csv_file": "The csv file where rows should be reordered", "column": "The numerical index of the column to be used as sorting key", "encoding": "The encoding of the CSV file. Setting this argument will " + "disable automatic guessing of encoding.", "quotemask": "A quotemask to apply to the result file after the action " + "has been performed. A quotemask is a string consisting " + "only of the letters 't' and 'f' (true/false) and has " + "the same length as there are columns in the (resulting) " + "csv file. Only the columns where the index is 't' will be " + "quoted.", "openapc_quote_rules": "Determines if the special openapc quote rules " + "should be applied, meaning that the keywords " + "NA, TRUE and FALSE will never be quoted. If in " + "conflict with a quotemask, openapc_quote_rules " + "will take precedence.", "other_csv_file": "An optional second csv file. If given, the rows in " + "the first file will not be sorted alphabetically. " + "Instead, they will be rearranged so that the values in " + "the denoted column mirror their order " + "of occurence in the given column of the second file " + "(this will obviously only make sense if the columns " + "have common values and the values represent some sort " + "of key). Rows with a column value not occuring in the " + "second file will be appended to the end of the " + "output file in original order.", "other_column": "The numerical index of the column to use in the second " + "file. If omitted, the same index as in the first file " + "is used.", "other_encoding": "The optional encoding of the second CSV file.", "ignore_case": "Ignore case when comparing values for reordering between two files" } def main(): parser = argparse.ArgumentParser() parser.add_argument("csv_file", help=ARG_HELP_STRINGS["csv_file"]) parser.add_argument("column", type=int, help=ARG_HELP_STRINGS["column"]) parser.add_argument("other_csv_file", nargs="?", help=ARG_HELP_STRINGS["other_csv_file"]) parser.add_argument("other_column", type=int, nargs="?", help=ARG_HELP_STRINGS["other_column"]) parser.add_argument("-e2", "--other_encoding", help=ARG_HELP_STRINGS["other_encoding"]) parser.add_argument("-e", "--encoding", help=ARG_HELP_STRINGS["encoding"]) parser.add_argument("-i", "--ignore_case", action="store_true", default=False, help=ARG_HELP_STRINGS["ignore_case"]) parser.add_argument("-q", "--quotemask", help=ARG_HELP_STRINGS["quotemask"]) parser.add_argument("-o", "--openapc_quote_rules", help=ARG_HELP_STRINGS["openapc_quote_rules"], action="store_true", default=False) args = parser.parse_args() quote_rules = args.openapc_quote_rules encs = [] #CSV file encodings for encoding in [args.encoding, args.other_encoding]: if encoding: try: codec = codecs.lookup(encoding) msg = "Encoding '{}' found in Python's codec collection as '{}'" print(msg.format(encoding, codec.name)) except LookupError: print("Error: '" + encoding + "' not found Python's " + "codec collection. Either look for a valid name here " + "(https://docs.python.org/2/library/codecs.html#standard-" + "encodings) or omit this argument to enable automated " + "guessing.") sys.exit() encs.append(encoding) mask = None if args.quotemask: reduced = args.quotemask.replace("f", "").replace("t", "") if reduced: print("Error: A quotemask may only contain the letters 't' and 'f'!") sys.exit() mask = [True if x == "t" else False for x in args.quotemask] header, content = oat.get_csv_file_content(args.csv_file, enc=encs[0]) column = args.column if not args.other_csv_file: rearranged_content = header + sorted(content, key=lambda x: x[column]) else: rearranged_content = [] _, second_content = oat.get_csv_file_content(args.other_csv_file, enc=encs[1]) other_column = column # default: use same column index as in first file if args.other_column: other_column = args.other_column for other_row in second_content: if args.ignore_case: matching_rows = [row for row in content if row[column].lower() == other_row[other_column].lower()] else: matching_rows = [row for row in content if row[column] == other_row[other_column]] rearranged_content += matching_rows for matching_row in matching_rows: content.remove(matching_row) unmatched_msg = ("{} rows could not be rearranged (unmatched in second csv file) " + "and were appended to the end of the result file " + "in original order.") if content: oat.print_y(unmatched_msg.format(len(content))) else: oat.print_g("All rows matched.") rearranged_content = header + rearranged_content + content # append any unmatched rows with open('out.csv', 'w') as out: writer = oat.OpenAPCUnicodeWriter(out, mask, quote_rules, False) writer.write_rows(rearranged_content) if __name__ == '__main__': main()
OpenAPC/openapc-de
python/csv_row_reorder.py
csv_row_reorder.py
py
6,006
python
en
code
114
github-code
36
5029822148
""" Tuplas- Diferença entre elas e listas é q elas não são modificaveis """ t1 = 1, 3, 4, 5 t2 = 2, 5, 7527, 27, 5 t3 = t1 + t2 print(type(t1)) print(type(t2)) print(t3) t1 = list(t1) t1[2] = 2 t1 = tuple(t1) print(t1, type(t1))
hdtorrad/Estudos-Python3
Aulas & Desafios/Aula020-Tuplas e dicionarios/Tuplas.py
Tuplas.py
py
235
python
pt
code
1
github-code
36
24770123438
#!/usr/bin/python3 import requests # pip3 install requests import sys from lxml import etree # pip3 install lxml import re class Item: category = '' detName = '' detDesc = '' link = '' def __init__(self, category, detName, detDesc, link): self.category = category self.detName = detName self.detDesc = detDesc self.link = link def parseHtmlForItems(html): items = [] trs = html.xpath('//table[@id="searchResult"]/tr') for tr in trs: cInfo = tr.xpath('./td[@class="vertTh"]/center/a/text()') cStr = _paresCategoryInfo(cInfo) if cStr != None: detName = tr.xpath('.//a[@class="detLink"]/text()')[0].strip() detDescTailNode = tr.xpath('.//font[@class="detDesc"]/a/text()') detDescTail = "" if len(detDescTailNode) > 0: detDescTail = detDescTailNode[0] detDesc = (tr.xpath('.//font[@class="detDesc"]/text()')[0] + detDescTail).strip() link = tr.xpath('.//a[@title="Download this torrent using magnet"]/@href')[0].strip() items.append(Item(cStr, detName, detDesc, link)) return items def _paresCategoryInfo(categoryInfo): if len(categoryInfo) != 2: return None return "{0}({1})".format(categoryInfo[0].strip(), categoryInfo[1].strip()) def showItems(items): for i, item in enumerate(items): print(i, item.category, item.detName, item.detDesc, sep=" | ") def showItem(items, i): if (i < 0) | (i >= len(items)): print("无指定条目!") return item = items[i] print(i, item.category, item.detName, item.detDesc, sep=" | ", end=" :\n") print(item.link) class Searcher: searchName = '' pageNum = 1 orderBy = 99 category = "0" categoryStr = "All" categoryNode = None begin = 0 end = 0 totle = 0 count = 0 items = [] def search(self): if (self.searchName == "") | (self.searchName.isspace()): return # 搜索 url = "https://thepiratebay10.org/search/{0}/{1}/{2}/{3}".format(self.searchName, self.pageNum, self.orderBy, self.category) resp = requests.get(url) if resp.status_code != 200: print("网络请求出错, 请检查网络或访问的地址!!") sys.exit(1) resp.encoding = "utf-8" html = etree.HTML(resp.text) # 设置page信息 countInfo = html.xpath('//body/h2[1]/text()')[0].strip() self._parseCountInfo(countInfo) # 设置categoryNode categoryNodes = html.xpath('//select[@id="category"]') if len(categoryNodes) > 0: self.categoryNode = categoryNodes[0] else: self.categoryNode = None # 设置items self.items = parseHtmlForItems(html) def _parseCountInfo(self, countInfo): matchObj = re.match(r"Displaying hits from (\d+) to (\d+) \(approx (\d+) found\)", countInfo, re.I) if matchObj != None: self.begin = int(matchObj.group(1)) self.end = int(matchObj.group(2)) self.totle = int(matchObj.group(3)) self.count = (self.totle + 29) // 30 else: self.begin = 0 self.end = 0 self.totle = 0 self.count = 0 def setupCategory(self): buf = {"0": "All"} gBuf = {} print("0 : All") if self.categoryNode != None: optgroups = self.categoryNode.xpath('./optgroup') for optgroup in optgroups: gCode = optgroup.xpath('./option[1]/@value')[0][:1] + "00" gDesc = optgroup.xpath('./@label')[0] print("[ {0} : {1} ]:".format(gCode, gDesc)) gBuf[gCode] = gDesc opts = optgroup.xpath('./option') for opt in opts: code = opt.xpath('./@value')[0] desc = opt.xpath('./text()')[0].strip() buf[code] = desc print("{0} : {1}".format(code, desc)) print("当前类型: {0}({1})".format(self.category, self.categoryStr)) while True: inputStr = input("请输出类别编码(可以使用','分隔以同时输入多个组编码; 输入'q'将取消设置): ").strip() if "q" == inputStr: return elif inputStr in buf: self.category = inputStr self.categoryStr = buf[inputStr] return else: gCodes = inputStr.split(",") cs = self._getCategoryStrByGCodes(gBuf, gCodes) if cs != None: self.category = inputStr self.categoryStr = cs return else: print("输入有误!") def _getCategoryStrByGCodes(self, gBuf, gCodes): gDescs = [] for gc in gCodes: if gc in gBuf: gDescs.append(gBuf[gc]) else: return None return ",".join(gDescs) def showMeta(self): print("类别: {0}, 搜索: {1}, 页码: {2}, 总条数: {3}, 总页数: {4}, 显示条码: [{5},{6})".format( self.categoryStr, self.searchName, self.pageNum, self.totle, self.count, self.begin, self.end)) def searchAndShow(self): self.search() showItems(self.items) self.showMeta() def setPageNum(self, pageNum): if pageNum < 1: pageNum = 1 elif pageNum > self.count: if self.count == 0: pageNum = 1 else: pageNum = self.count self.pageNum = pageNum class TopCategory: title = "" url = "" ended = False def __init__(self, title, url, ended = False): self.title = title self.url = url self.ended = ended class Toper: categories = [] index = 0 items = [] def __init__(self): url = "https://thepiratebay10.org/top" resp = requests.get(url) if resp.status_code != 200: print("网络请求出错, 请检查网络或访问的地址!!") sys.exit(1) resp.encoding = "utf-8" html = etree.HTML(resp.text) nodes = html.xpath('//table[@id="categoriesTable"]/tr/td/dl/*') for node in nodes: if node.tag == "dt": title = node.xpath('./a[1]/text()')[0].strip() url = node.xpath('./a[1]/@href')[0] self.categories.append(TopCategory("[ {0} ] ".format(title), "https://thepiratebay10.org"+url)) title2 = "[ {0}({1}) ]".format(title, node.xpath('./a[2]/text()')[0].strip()) url2 = node.xpath('./a[2]/@href')[0] self.categories.append(TopCategory(title2, "https://thepiratebay10.org"+url2, True)) elif node.tag == "dd": subNodes = node.xpath('.//a') for subNode in subNodes: title = subNode.xpath('./text()')[0].strip() url = subNode.xpath('./@href')[0] self.categories.append(TopCategory(title, "https://thepiratebay10.org"+url)) self.categories[-1].ended = True def showCategories(self): for i, v in enumerate(self.categories): print(i , v.title, sep=":", end=" ") if v.ended: print() def setCategoryIndex(self, index): if (index < 0) | (index >= len(self.categories)): return False else: self.index = index return True def getTop(self): url = self.categories[self.index].url resp = requests.get(url) resp.encoding = "utf-8" html = etree.HTML(resp.text) # 设置items self.items = parseHtmlForItems(html) def getAndShow(self): self.getTop() showItems(self.items) def runSearcher(searcher): inputStr = input("请输入搜索关键词(输出空白字符将退出): ").strip() if inputStr == "": return searcher.searchName = inputStr searcher.searchAndShow() while True: ops = input("i <item> 查看指定条目详情; g <page> 跳转到指定页码; p 上一页; n 下一页; s <keyword> 搜索指定关键词; r 刷新; c 设置查询类型; q 退出;\n") op = ops[:1] arg = ops[1:].strip() if op == "i": showItem(searcher.items, (int(arg))) elif op == "g": searcher.setPageNum(int(arg)) searcher.searchAndShow() elif op == "p": searcher.setPageNum(searcher.pageNum - 1) searcher.searchAndShow() elif op == "n": searcher.setPageNum(searcher.pageNum + 1) searcher.searchAndShow() elif op == "s": if arg == "": print("输入有误(不允许为空)!") else: searcher.searchName = arg searcher.pageNum = 1 searcher.searchAndShow() elif op == "r": searcher.searchAndShow() elif op == "c": searcher.setupCategory() elif op == "q": return def runToper(toper): toper.showCategories() while True: inputStr = input("请输入类别编号[0, {0})(输入'q'将退出): ".format(len(toper.categories))).strip() if inputStr == "q": return index = int(inputStr) flag = toper.setCategoryIndex(index) if flag: toper.getAndShow() break else: print("输入有误!") while True: ops = input("i <item> 查看指定条目详情; g <no> 查询指定类别编号的热门条目; r 刷新; c 查看类别目录; q 退出;\n") op = ops[:1] arg = ops[1:].strip() if op == "i": showItem(toper.items, int(arg)) elif op == "g": flag = toper.setCategoryIndex(int(arg)) if flag: toper.getAndShow() else: print("输入有误!") elif op == "r": toper.getAndShow() elif op == "c": toper.showCategories() elif op == "q": return if __name__ == "__main__": searcher = None toper = None while True: m = input("请输入模式('s'(搜索), 't'(热门))(输入'q'将退出): ").strip() if m == "q": break elif m == "s": if searcher == None: searcher = Searcher() runSearcher(searcher) elif m == "t": if toper == None: toper = Toper() runToper(toper)
echcz/sak
piratebay-cli.py
piratebay-cli.py
py
10,776
python
en
code
2
github-code
36
34087877175
data = [int(x) for x in open('input.txt').read().split(',')] jump = {1:4, 2:4, 3:2, 4:2} i = 0 while data[i] != 99: opcode = '{:0>4}'.format(data[i]) op = int(opcode[2:]) if op == 1: v1 = (data[data[i+1]] if int(opcode[1]) == 0 else data[i+1]) v2 = (data[data[i+2]] if int(opcode[0]) == 0 else data[i+2]) data[data[i+3]] = v1 + v2 elif op == 2: v1 = data[data[i+1]] if int(opcode[1]) == 0 else data[i+1] v2 = data[data[i+2]] if int(opcode[0]) == 0 else data[i+2] data[data[i+3]] = v1 * v2 elif op == 3: j = int(input('Please enter code ')) data[data[i+1]] = j elif op == 4: v1 = data[data[i+1]] if int(opcode[1]) == 0 else data[i+1] if v1 != 0: print('Output: ', v1) if op < 3: i += 4 else: i += 2 print('Finished')
ajclarkin/AdventofCode2019
day05/opcode.py
opcode.py
py
848
python
en
code
2
github-code
36
74297991462
from collections import defaultdict from itertools import product, chain class Rule: def __init__(self, registry): self.registry = registry self.or_rules = [] self._generated = None def __iter__(self): for r in self.value: yield r def parse_rule(self, rule): self.raw_rule = rule for or_def in rule.split(" | "): or_rule = [] for dependency in or_def.split(" "): if dependency in '"a""b"': or_rule.append([dependency[1]]) continue or_rule.append(self.registry[dependency]) self.or_rules.append(or_rule) @property def value(self): if not self._generated: for idx, rules in enumerate(self.or_rules): for i, rule in enumerate(rules): if isinstance(rule, Rule): rules[i] = rule.value self.or_rules[idx] = ["".join(comb) for comb in product(*rules)] self._generated = list(chain(*self.or_rules)) return self._generated def parse_input(lines): messages = [] rules = defaultdict(lambda: Rule(rules)) for line in lines: if not line: continue if ':' in line: index, rule = line.split(': ') rules[index].parse_rule(rule) else: messages.append(line) return rules, messages def solve1(puzzle_input): rules, messages = parse_input(puzzle_input) valid_counter = 0 for message in messages: if message in rules["0"].value: valid_counter += 1 return valid_counter def solve2(puzzle_input): rules, messages = parse_input(puzzle_input) valid_messages = 0 invalid_message = [] for message in messages: if message in rules["0"].value: valid_messages += 1 else: invalid_message.append(message) # I'm not smart enough for this (yet ;)) So imma just hack it. def find_start(message): for start in rules["8"].value: if message.startswith(start): return message[len(start):] def find_end(message): for start in rules["42"].value: for end in rules["31"].value: if message.startswith(start) and message.endswith(end): return message[len(start): -len(end)] msgs = 0 for message in invalid_message: candidates = [] while message: message = find_start(message) if message: candidates.append(message) for message in candidates: while message: message = find_end(message) if message == '': msgs += 1 return valid_messages + msgs
maarten-dp/adventofcode2020
solvers/day19.py
day19.py
py
2,835
python
en
code
2
github-code
36
72225859944
#!/usr/bin/python3 """Tests for 'State' class that inherits from 'BaseModel' with unittest module""" import unittest import models from models.base_model import BaseModel from models.state import State class TestUser(unittest.TestCase): """Testing our methods of 'BaseModel' for 'State'""" def test_doc_module(self): """Testing all class documentation""" self.assertTrue(models.state.__doc__) self.assertTrue(State.__doc__) def test_is_instance(self): """Creating an instance of 'State'""" Model = State() self.assertIsInstance(Model, State) def test_id(self): """Testing if there is a different id (uuid4)""" instance_0 = State() instance_1 = State() self.assertNotEqual(instance_0, instance_1) def test_str(self): """Testing the '__str__' method""" Model = State() str = f"[{Model.__class__.__name__}] ({Model.id}) {Model.__dict__}" str2 = Model.__str__() self.assertEqual(str, str2) def test_type_objects_State(self): """Testing the 'State' public attributes""" Model = State() self.assertIsInstance(Model, State) self.assertIsInstance(Model.name, str) self.assertTrue(issubclass(State, BaseModel)) def test_instances_of_State(self): """Testing the 'State' public attributes""" Model = State() self.assertTrue(hasattr(Model, "name")) if __name__ == '__main__': unittest.main()
DevPacho/holbertonschool-AirBnB_clone
tests/test_models/test_state.py
test_state.py
py
1,517
python
en
code
0
github-code
36
22143984130
from art import logo def greet(name, location, time): print(f"Hi {name} from {location}. Good {time}.") print(f"Hey {name} from {location}. Good {time}.") print(f"Hello {name} from {location}. Good {time}.") #greet("Angela", location="London", time="evening") def caeser(direction, text, shift): caeser_text ="" shift = shift % 26 if direction == "encode": shift = 26 - shift for letter in text: if letter in alphabet: caeser_text += alphabet[alphabet.index(letter)-shift] else: caeser_text += letter print(caeser_text) def encrypt(text, shift): encrypt_text ="" for letter in text: encrypt_text += alphabet[alphabet.index(letter)+shift-26] print(encrypt_text) def decrypt(text, shift): decrypt_text ="" for letter in text: decrypt_text += alphabet[alphabet.index(letter)-shift] print(decrypt_text) print(logo) alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] run = "y" while run == "y": direction = input("Type 'encode' to encrypt, type 'decode' to decrypt:\n") text = input("Type your message:\n").lower() shift = int(input("Type the shift number:\n")) caeser(direction, text, shift) run = input('Type "y" to continue. Type any other key to end.\n').lower() print("Goodbye from Caeser")
tarunchandel/python-ceaser-cipher
main.py
main.py
py
1,367
python
en
code
0
github-code
36
16746507107
import os import sys import gensim import smart_open import collections import random import json import os.path from gensim.models.doc2vec import Doc2Vec, TaggedDocument from gensim.test.utils import get_tmpfile import time from corpus_indexer import CorpusIndexer class CorpusModeler: def __init__(self, model_name, corpus_name=""): self.model_name = model_name self.corpus_name = corpus_name self.corpus_file = f"{self.corpus_name}.cor" self.corpus_index = f"{self.corpus_name}.json" self.settings_file = f"/models/{self.model_name}.json" self.model_file = f"/models/{self.model_name}.model" self.load() def build(self): self.__build_model() def load(self): self.__load_or_create_settings() self.__load_model() def save(self): self.__save_settings() self.__save_model() def __load_or_create_settings(self): if(os.path.exists(self.settings_file)): with open(self.settings_file) as f: content = f.read() self.settings = json.loads(content) self.corpus_file = self.settings["corpus_file"] self.corpus_index = self.settings["corpus_index"] self.model_file = self.settings["model_file"] self.corpus_name = self.settings["corpus_name"] self.model_name = self.settings["model_name"] else: with open(self.settings_file, "w+") as f: empty_content = json.dumps({}) f.write(empty_content) self.settings = { "vector_size": 70, "min_count":2, "epochs":20, "dm":0, "corpus_name": self.corpus_name, "corpus_file": self.corpus_file, "corpus_index": self.corpus_index, "model_file": self.model_file, "model_name": self.model_name } self.__save_settings() def __save_settings(self): content = json.dumps(self.settings) with open(self.settings_file, "w") as f: f.write(content) def __save_model(self): fname = get_tmpfile(self.model_file) self.model.save(fname) def __read_corpus(self, fname, tokens_only=False): with smart_open.open(fname, encoding="iso-8859-1") as f: for i, line in enumerate(f): tokens = gensim.utils.simple_preprocess(line) if tokens_only: yield tokens else: # For training data, add tags yield gensim.models.doc2vec.TaggedDocument(tokens, [i]) def __build_model(self): train_corpus = list(self.__read_corpus(self.corpus_file)) model = gensim.models.doc2vec.Doc2Vec(vector_size=self.settings["vector_size"], min_count=self.settings["min_count"], epochs=self.settings["epochs"], dm=self.settings["dm"]) model.build_vocab(train_corpus) model.train(train_corpus, total_examples=model.corpus_count, epochs=model.epochs) self.model = model def __load_model(self): if (os.path.exists(self.model_file)): self.model = Doc2Vec.load(self.model_file) else: model = None def gen_data(self, test_file): if(self.model == None): print("Must Load of Build a Model to test") else: self.__gen_data(test_file) def __gen_data(self, test_file): test_corpus = list(self.__read_corpus(test_file, tokens_only=True)) data = [] for doc in test_corpus: inferred_vector = self.model.infer_vector(doc) sims = self.model.docvecs.most_similar([inferred_vector], topn=len(self.model.docvecs)) ranks = self.__build_ranks(sims) data.append({"doc": doc, "ranks": ranks}) self.__save_data(data) #print('Test Document ({}): «{}»\n'.format(doc_id, ' '.join(test_corpus[doc_id]))) #print(u'SIMILAR/DISSIMILAR DOCS PER MODEL %s:\n' % self.model) #for label, index in [('MOST', 0), ('MEDIAN', len(sims)//2), ('LEAST', len(sims) - 1)]: # print(u'%s %s: «%s»\n' % (label, sims[index], ' '.join(train_corpus[sims[index][0]].words))) def __save_data(self, data): content = json.dumps(data) with open(f"/outputs/{self.model_name}-{time.time()}output.json", "w") as f: f.write(content) def __build_ranks(self, sims): corpus_indexer = CorpusIndexer(self.corpus_index) data = [] for sim in sims: desc = corpus_indexer.get_description(sim[0]) point = {"id": int(sim[0]), "rank": float(sim[1]), "description": desc} data.append(point) return data
kcculhwch/prayer2vec
build/scripts/corpus_modeler.py
corpus_modeler.py
py
5,038
python
en
code
0
github-code
36
24192841460
import requests def check_security_headers(url): headers_to_check = [ 'Strict-Transport-Security', 'Content-Security-Policy', 'X-Content-Type-Options', 'X-Frame-Options', 'X-XSS-Protection', 'Referrer-Policy', 'Permissions-Policy' ] missing_headers = [] try: response = requests.get(url) response_headers = response.headers for header in headers_to_check: if header not in response_headers: missing_headers.append(header) except requests.exceptions.RequestException as e: print(f"Error: {e}") return missing_headers if __name__ == "__main__": url = input("Enter the URL of the web app: ").strip() missing_headers = check_security_headers(url) if missing_headers: print("Missing security headers:") for header in missing_headers: print(f"- {header}") else: print("All security headers are present.")
hexodotsh/WebSite_Header_Scanner
headers-security-check.py
headers-security-check.py
py
999
python
en
code
0
github-code
36
4242736127
from .__init__ import * def gen_func(maxBase=3, maxVal=8, format='string'): a = random.randint(1, maxVal) b = random.randint(2, maxBase) c = pow(b, a) if format == 'string': problem = "log" + str(b) + "(" + str(c) + ")" solution = str(a) return problem, solution elif format == 'latex': problem = "\\(\\log_{" + str(b) + "}" + str(c) + "\\)" solution = "\\(" + str(a) + "\\)" return problem, solution else: return b, c, a log = Generator("Logarithm", 12, gen_func, ["maxBase=3", "maxVal=8"])
KrishayR/academix
venv/lib/python3.8/site-packages/mathgenerator/funcs/algebra/log.py
log.py
py
577
python
en
code
1
github-code
36
14144674644
import numpy as np from PIL import Image import torch class GenericDataset: def __init__(self): self.patch_width = None self.image_height = None def add(self, dataset): return SummedDataset(self, dataset) def resize_image(self, image): original_width, original_height = image.size original_height = max(original_height, 1) original_width = max(original_width, 1) scale = self.image_height / original_height resized_width = int(round(scale * original_width, 0)) new_width = resized_width + (self.patch_width - (resized_width % self.patch_width)) # Adjusted this line return image.resize((new_width, self.image_height)) def __add__(self, dataset): return self.add(dataset) class SummedDataset(GenericDataset): def __init__(self, dataset_left, dataset_right) -> None: self.left = dataset_left self.right = dataset_right def __len__(self): return len(self.left) + len(self.right) def __getitem__(self, idx): if idx > (len(self.left) - 1): idx_corrected = idx % len(self.left) return self.right[idx_corrected] return self.left[idx] class DummyDataset(GenericDataset): def __init__(self, number=30, name='dummy_v1', split='test') -> None: self.samples = list(range(number)) self.name = name self.split = split def __len__(self): return len(self.samples) def __getitem__(self, idx): return { 'dataset_name': self.name, 'split': self.split, 'image': self.samples[idx] } class CollateFNs: def __init__(self, patch_width, image_height, character_tokenizer, seq2seq_same_size=False, max_size=224, transforms=lambda x: x) -> None: self.patch_width = patch_width self.image_height = image_height self.character_tokenizer = character_tokenizer self.visual_padding_token = torch.zeros((3, self.image_height, self.patch_width)) self.total_visual_padding = torch.zeros((3, max_size, max_size)) self.same_size = seq2seq_same_size self.max_size = max_size self.transforms = transforms def collate(self, batch): max_tokens = max([len(x['tokens']) for x in batch]) max_patches = max([x['input_tensor'].shape[2] // self.patch_width for x in batch]) max_tokens_both = max(max_patches, max_tokens) visual_tokens = [] text_tokens = [] raw_texts = [] sources = [] resized_images = [] original_images = [] images_tensor_full = [] patched_images = [] masks = [] images_full_resized = [] simply_padded_labels = [] for item in batch: original_image, image, text_token, raw_text, split, dataset, resized_image = item['original_image'], item[ 'input_tensor'], item['tokens'], item['annotation'], item['split'], item['dataset'], item[ 'resized_image'] original_images.append(original_image) resized_image = resize_to_max_size(resized_image, self.max_size) image_to_be_patched = self.transforms(resized_image) images_full_resized.append(self.transforms(resized_image.resize((self.max_size, self.max_size)))) _, w, h = image_to_be_patched.shape final_image = self.total_visual_padding.clone() # mask = self.total_visual_padding.clone() final_image[:, :w, :h] = image_to_be_patched # mask[:, w:, h:] = 1 # mask = 1 - mask # masks.append(mask) patched_images.append(final_image) resized_images.append(resized_image) sources.append(f"{split}_ {dataset}") raw_texts.append(raw_text.lower()) patches = list(image.chunk(image.shape[2] // self.patch_width, dim=-1)) patches = patches + [self.visual_padding_token] * (max_tokens_both - len(patches)) text_tokenized = torch.from_numpy( self.character_tokenizer( text_token + [self.character_tokenizer.padding_token] * (max_tokens_both - len(text_token)) ) ) text_simply_tokenized = torch.from_numpy( self.character_tokenizer( text_token + [self.character_tokenizer.padding_token] * (max_tokens - len(text_token)) ) ) simply_padded_labels.append(text_simply_tokenized) text_tokens.append(text_tokenized) visual_tokens.append( torch.stack( patches ) ) images_tensor_full.append( torch.cat(patches, dim=2) ) return { 'input_visual_seq': torch.stack(visual_tokens), 'images_tensor': torch.stack(images_tensor_full), 'padded_labels_to_text': torch.stack(simply_padded_labels), 'labels': torch.stack(text_tokens), 'raw_text_gt': raw_texts, 'sources': sources, # 'original_images': resized_images, 'input_lengths': [x.size[0] // self.patch_width for x in resized_images], 'output_lengths': [len([char for char in x]) for x in raw_texts], # 'pre_resize_images': original_images, 'totally_padded_image': torch.stack(patched_images), 'input_lengths_clip': [224 // self.patch_width for _ in resized_images], 'masks': masks, 'square_full_images': torch.stack(images_full_resized) } def collate_while_debugging(self, batch): try: return self.collate(batch) except: print(batch) import pdb pdb.set_trace() def resize_to_max_size(image, max_size): width, height = image.size return image.resize((min(max_size, width), min(max_size, height))) if __name__ == '__main__': dataset_0_3 = DummyDataset(3, name='dataset_1', split='test') dataset_3_5 = DummyDataset(2, name='dataset_2', split='test') dataset_5_10 = DummyDataset(5, name='dataset_3', split='val') dataset_0_5 = dataset_0_3 + dataset_3_5 dataset_0_10 = dataset_0_5 + dataset_5_10 print(dataset_0_10[0]) # Prints dataset_1: 0 print(dataset_0_10[3]) # Prints dataset_2: 0 print(dataset_0_10[5]) # Prints dataset_3: 0 print(dataset_0_10[2]) # Prints dataset_1: 2 print(dataset_0_10[4]) # Prints dataset_2: 1 print(dataset_0_10[9]) # Prints dataset_3: 4
EauDeData/oda_ocr
src/dataloaders/summed_dataloader.py
summed_dataloader.py
py
6,678
python
en
code
0
github-code
36
21017643306
class Solution: def addStrings(self, num1: str, num2: str) -> str: res = [] carry = 0 n1 = len(num1) - 1 n2 = len(num2) - 1 while n1 >= 0 or n2 >= 0: x1 = ord(num1[n1]) - ord('0') if n1 >= 0 else 0 x2 = ord(num2[n2]) - ord('0') if n2 >= 0 else 0 value = (x1 + x2 + carry) % 10 carry = (x1 + x2 + carry) // 10 res.append(value) n1 -= 1 n2 -= 1 if carry: res.append(carry) return ''.join(str(x) for x in res[::-1])
EveChen/Leetcode_Practice
415_add-strings/solution1.py
solution1.py
py
644
python
en
code
2
github-code
36
1252994742
class UncommonWordsfromTwoSentences(object): def uncommonFromSentences(self, A, B): count = {} for word in A.split(): count[word] = count.get(word, 0) + 1 for word in B.split(): count[word] = count.get(word, 0) + 1 # Alternatively: # count = collections.Counter(A.split()) # count += collections.Counter(B.split()) return [word for word in count if count[word] == 1] if __name__ == '__main__': a = UncommonWordsfromTwoSentences() print(a.uncommonFromSentences(A = "this apple is sweet", B = "this apple is sour")) print(a.uncommonFromSentences(A = "apple apple", B = "banana"))
lyk4411/untitled
beginPython/leetcode/UncommonWordsfromTwoSentences.py
UncommonWordsfromTwoSentences.py
py
676
python
en
code
0
github-code
36
30872218901
# -*- coding: utf-8 -*- # from rest_framework.generics import ListAPIView, CreateAPIView, UpdateAPIView, RetrieveAPIView, DestroyAPIView # from django.shortcuts import render # from django.views import View # from rest_framework.views import APIView from rest_framework.authentication import BasicAuthentication, SessionAuthentication from rest_framework.permissions import IsAuthenticatedOrReadOnly, IsAuthenticated from rest_framework.generics import GenericAPIView from rest_framework.response import Response from rest_framework.mixins import ListModelMixin, CreateModelMixin from django.http import JsonResponse from django.http.request import QueryDict from rest_framework.viewsets import GenericViewSet, ModelViewSet from crawlers.models import Book as Book_model, Comment as Comment_model from book_drf.serializer import BookSerializer, CommentSerializer # Create your views here. class Books(GenericAPIView): queryset = Book_model.objects.all() serializer_class = BookSerializer def get_res(self): temp = {'result': False, 'data': None, 'msg': ''} return dict(**temp) def get(self, request): # print(request.data, request.query_params) # books = Book_model.objects.all() books = self.get_queryset() # c1 = BookContent.objects.get(id=1) # print(c1.book_name.book_name) # 关联查询 主表对象.(foreign_model.lower())_set # book1 = Book_model.objects.get(book_id=1) # contents = BookContent.objects.filter(book_name_id=book_id) # contents = book1.bookcontent_set.all() # print(contents) ser = self.get_serializer(books, many=True) # ser = BookSerializer(books, many=True) res = self.get_res() res['data'] = ser.data res['result'] = True # return JsonResponse(ser.data, safe=False, json_dumps_params={ # 'ensure_ascii': False}) return Response(data=res) # class Book(GenericAPIView): # queryset = Book_model.objects.all() # serializer_class = BookSerializer # # def get_res(self): # temp = {'result': False, 'data': None, 'msg': ''} # return dict(**temp) # # def get(self, request, book_id): # print(request.data, request.query_params) # res = self.get_res() # try: # book1 = Book_model.objects.get(book_id=book_id) # print('121:', book_id, book1) # # books = self.get_queryset() # # ser = BookSerializer(book1, many=False) # # ser.is_valid() # # res['result'] = True # res['data'] = ser.data # # except Book_model.DoesNotExist: # res['msg'] = 'not found' # return JsonResponse(res, json_dumps_params={ # 'ensure_ascii': False}, status=404) # # # return JsonResponse(res, json_dumps_params={ # # 'ensure_ascii': False}) # return Response(data=res) class Book(ModelViewSet): authentication_classes = (BasicAuthentication, SessionAuthentication) permission_classes = (IsAuthenticated, ) queryset = Book_model.objects.all() serializer_class = BookSerializer class Comment(GenericAPIView, ListModelMixin, CreateModelMixin): queryset = Comment_model.objects.all() serializer_class = CommentSerializer def get(self, request): return self.list(request) # comments = self.get_queryset().filter(book_id=book_id, chapter_count=chapter_count) # ser = self.get_serializer(comments, many=True) # return Response(data=ser.data) # def post(self, request: QueryDict, book_id, chapter_count): def post(self, request: QueryDict): try: return self.create(request) except Exception as e: import traceback traceback.print_exc() # print(e) return Response({'msg': str(e)}, 400) # c = self.get_object() # print('c=', c) data = request.data print(data, type(data)) temp = {'book_id': book_id, 'chapter_count': chapter_count} temp.update(data) print('temp:', temp) # new_comment = Comment_model.objects.create() ser = self.get_serializer(data=temp) if ser.is_valid(): ser.save() return Response(data=ser.data) else: # ser.save() res = {'msg': 'invalid', 'data': ser.errors} return Response(data=res, status=400)
ietar/huluobei
book_drf/views2.py
views2.py
py
4,527
python
en
code
0
github-code
36
36748155431
from collections import OrderedDict from fudge.index import Index, read_index, write_index from fudge.object import Object, load_object, store_object from fudge.parsing.builder import Builder from fudge.parsing.parser import Parser from fudge.utils import FudgeException class Node(object): def __init__(self, name, mode, object_id): self.name = name self.mode = mode self.object_id = object_id self.children = OrderedDict() def __iter__(self): for child in self.children.values(): yield child def add(self, child): self.children[child.name] = child def get(self, name): return self.children.get(name) @property def is_branch(self): return len(self.children) > 0 @property def is_leaf(self): return len(self.children) == 0 def get_node(root, path): path = path.split('/') current = root for dirname in path: current = current.get(dirname) if not current: break return current def walk_tree2(root, recurse, basepath): for child in root: path = basepath + child.name yield path, child if child.is_branch and recurse: yield from walk_tree2(child, recurse, path + '/') def walk_tree(root, recurse): return walk_tree2(root, recurse, '') def print_tree(root, recurse): types = { '100644': 'blob', '100755': 'blob', '40000': 'tree', '160000': 'commit', } for path, node in walk_tree(root, recurse): if node.is_branch and recurse: continue node_type = types.get(node.mode) or 'unknown' print('{:0>6} {} {} {}'.format(node.mode, node_type, node.object_id, path)) def build_tree_from_object2(root): obj = load_object(root.object_id) if obj.type != 'tree': raise FudgeException('the specified object is not a tree') parser = Parser(obj.contents, padding=False) while not parser.eof: info = parser.get_utf8() mode, name = info.split() object_id = parser.get_sha1() node = Node(name, mode, object_id) root.add(node) if mode == '40000': build_tree_from_object2(node) return root def build_tree_from_object(object_id): root = Node('root', None, object_id) return build_tree_from_object2(root) def read_tree2(index, root, basepath): for child in root: path = basepath + child.name if child.is_branch: read_tree2(index, child, path + '/') else: index.add_object(child.mode, child.object_id, path) def read_tree(object_id): index = Index() root = build_tree_from_object(object_id) read_tree2(index, root, '') write_index(index) def build_tree_from_index(): root = Node('root', None, None) index = read_index() for entry in index: parts = entry.path.split('/') if len(parts) == 1: path, filename = [], parts[0] else: path, filename = parts[:-1], parts[-1] current = root for dirname in path: if not current.get(dirname): node = Node(dirname, '40000', None) current.add(node) current = current.get(dirname) node = Node(filename, entry.perms, entry.object_id) current.add(node) return root def write_tree2(root): builder = Builder(padding=False) for child in root: if child.is_branch: object_id = write_tree2(child) child.object_id = object_id info = '{} {}'.format(child.mode, child.name) builder.set_utf8(info) builder.set_sha1(child.object_id) data = builder.data obj = Object('tree', len(data), data) store_object(obj) return obj.id def write_tree(): root = build_tree_from_index() return write_tree2(root)
QuantamKawts/fudge
fudge/tree.py
tree.py
py
3,926
python
en
code
0
github-code
36
24428229816
import numpy as np import matplotlib.pyplot as plt import random class Tuihuo: path = [] def __init__(self, graph, num, value=0): # 初始化类 self.num = num self.graph = graph self.value = 0 def output_graph(self): # 输出初始图 for i in self.graph: for j in i: print(j, end=',') print() def distance(self, tuihuocurrent): valuenow = 0 for i in range(self.num - 1): valuenow += self.graph[tuihuocurrent[i]][tuihuocurrent[i + 1]] valuenow += self.graph[tuihuocurrent[self.num - 1]][0] return valuenow def threetuihuo(self, tuihuocurrent, x, y, w): if x > y: x, y = y, x if w > y: w, y = y, w if w > x: w, x = x, w temp1 = tuihuocurrent[x:y + 1] + tuihuocurrent[w + 1:x] tuihuocurrent[w + 1:y + 1] = temp1 return tuihuocurrent def calculate(self): # 计算近似最短路径并且将路径存储在path中 result = [] # 用于生成可视化图表 tuihuosolution = list(range(self.num)) valuenow = 0 valuenow = self.distance(tuihuosolution) valuebest = valuenow tuihuocurrent = tuihuosolution.copy() tuihuonow = tuihuosolution.copy() t = 100000 # 初始温度 t1 = 1 # 最后底线温度 r = 0.99999 # 降温参数 while t > t1: # 使用两路扰乱和三路扰乱两种方式 p1 = np.random.rand() if p1 > 0.5: # 使用二路扰乱 while 1: x = random.randrange(1, self.num - 1) y = random.randrange(1, self.num - 1) # 生成交换坐标点 if x != y: break tuihuocurrent[x], tuihuocurrent[y] = tuihuocurrent[y], tuihuocurrent[x] else: # 使用三路扰乱 while 1: x = random.randrange(1, self.num - 1) y = random.randrange(1, self.num - 1) w = random.randrange(1, self.num - 1) # 生成交换坐标点 if x != y and x != w and y != w: break tuihuocurrent = self.threetuihuo(tuihuocurrent, x, y, w) valuethen = self.distance(tuihuocurrent) # 判断是否接受该解 if valuethen < valuenow: tuihuonow = tuihuocurrent.copy() valuenow = valuethen if valuethen < valuebest: tuihuosolution = tuihuocurrent.copy() valuebest = valuethen elif np.random.rand() < np.exp(-(valuethen - valuebest) / t): # 一定概率在不是优解的情况下接受 valuenow = valuethen tuihuonow = tuihuocurrent.copy() else: tuihuocurrent = tuihuonow.copy() t = t * r result.append(valuenow) plt.plot(np.array(result)) plt.ylabel("valuenow") plt.xlabel("t") plt.show() self.value = valuebest return tuihuosolution def print_outcome(self): num = self.calculate() print("模拟退火算法近似最短路径为",end='') print(0, end='') for i in range(len(num)): if i != 0: print("->%d" % num[i], end='') print("-> 0") print("模拟退火算法近似最短路径长度为" + str(self.value))
blue-vegetable/AI_TSP_HOMEWORK
SA.py
SA.py
py
3,558
python
en
code
0
github-code
36
6255434476
# write a program that takes your full name as input and displays the abbreviations of the first and # middle names except the last name whitch is displayed as it is. # for example, if yoy name is Robert Brett Roser, then the output should be R.B.Roser fullName = input("Ingresa tu nombre: ").split(" ") nombre = fullName[0] nombre2 = fullName[1] apellido = fullName[2] print(f"Tu nombre es: + {nombre[:1].capitalize()}.{nombre2[:1].capitalize()}.{apellido.title()}")
yonch100/python
ProyectoJavi/Ejercicio21_apellido.py
Ejercicio21_apellido.py
py
472
python
en
code
0
github-code
36
70177206504
# Understanding how computers work with binary currents with bitwise operations AND how arithmatic operations work on that, by developing a calculator that can do the same. # What is binary numbers? => 0 and 1, they are simply like a switch, either on or off, 1 or 0. # What is a bit? => A bit is a single binary digit, 0 or 1. # What is a byte? => A byte is a group of 8 bits, 8 binary digits, 8 switches, 8 0s and 1s. # ---------------------------------------------------------------------------------------------------------------------------------------------- # LIMITATIONS: # 1. For Positive Integers Only # ---------------------------------------------------------------------------------------------------------------------------------------------- # Converting a decimal number to binary number. def decimal_to_binary(decimal_number): # Brute Code First Try: # counting how many bits will be needed to form string or you can say allocating space count = 1 while True: measurable = ((2**count)-1) if decimal_number > measurable: count += 1 else: break # allocating space bin = [] # How can I overwrite bin, because bin is python built-in function not a operator neither keyword... for i in range(count): bin.append("0") # not playing with main argument, a good habit, maybe I'll need in future temp = decimal_number # real algorithm def biggest(num): return 2**num for i in range(len(bin)): j = len(bin) - 1 - i # just to get number of positing in reverse order, because in binary integer data left hand side has greater value if temp >= biggest(j): bin[i] = "1" # i is not disturbed here to assign bits in right order, otherwise I have to reverse the list afterwards temp = temp - biggest(j) # what I'm doing is iterating through every bit and finding it's turned on value, if greater than value remained from decimal value will turn that bit on and subtract that value from decimal value and loop it further until reached zero return ''.join(bin) # str is immutable so I had to convert str into list and then vice-versa # ------------------------------------------------------------------------------------------------------------------------------------------ # Better Version # Best from co-pilot or research # ---------------------------------------------------------------------------------------------------------------------------------------------- # Building Gates and with the help of different gates, building complex logic circuits for various operation. # Firstly, there is an AND and a NOT gate which can't be build via code, I mean it can but it'll require if else and other high level language stuff which already build upon logic circuits, So using them don't make sense. AND and NOT can made via physical circuit easily for ex: A circuit with two switch and a led in series is a example of a AND gate with led indicating binary. # First, I'll build NAND, OR, XOR which will be helpful in building Binary Adder... def AND(a, b): return a and b def NAND(a, b): ''' Not of And Truth Table 0, 0 | 1 0, 1 | 1 1, 0 | 1 1, 1 | 0 ''' return int(not (AND(a, b))) def OR(a, b): ''' Not of inputs of Nand Truth Table 0, 0 | 0 0, 1 | 1 1, 0 | 1 1, 1 | 1 ''' return int(NAND(not(a), not(b))) def XOR(a,b): ''' And of Nand and Or Truth Table 0, 0 | 0 0, 1 | 1 1, 0 | 1 1, 1 | 0 XOR is Basically Adder of Binary Numbers but Without Carry because if both inputs/binary are 1 it give zero but this 1 should be carry to next bit ''' return int(AND(NAND(a, b), OR(a, b))) # ---------------------------------------------------------------------------------------------------------------------------------------------- # Logic To Add Binary Numbers ''' THEORY: How bits add? First, We need to understand that what bits depicts naturally it's just 0 and 1, true or false, but true or false of what. So, according to the place of the bit, it means something, A Value, 0 means that value is neglected and 1 means take that value into consideration. For Example, in a 4 bit system: 1st 0,1 depicts -> 1 22t 0,1 depicts -> 2 3rd 0,1 depicts -> 4 4th 0,1 depicts -> 8 This depiction is based on binary counting system not much different then the decimal counting system we follow. So 1st bit can show upto 2 possibility or two possible outcomes, so it can count upto 2 and so on. For Example: 0101 represent 5 in binary. [0*8 + 1*4 + 0*2 + 1*1] Moving forward with Binary, Coming to our main topic how does binary actually add? As we discussed above, every bit depicts a number and same place bits will represent same number but if you have noticed closely, you'll observe that every next place is double of the previous, Means If I add two same place bit it's also say double of that bit which we just see that is the next place bit. So, If I take two 1's of same place like this: 0010 and 0010, It'll turn next bit up, but in return value of the current bit turns off, like this --> 0010 + 0010 => 0100. Just like this if I have 4 bit of same place it turns out 2 bit of next place which further mean 1 bit of even next to next bit. like this --> 0010(2) + 0010(2) + 0010(2) + 0010(2) --> 0100(4) + 0100(4) => 1000(8). ''' def two_bit_adder(bit1, bit2, carry = 0): ''' Need only XOR and AND Gates: XOR -> will act as the Result Finder for current bit, And AND -> will act as Carry Finder ''' curr_bit = XOR(XOR(bit1, bit2), carry) # XOR for 3 bit system # carry = OR(OR(AND(bit1, bit2), AND(bit2, carry)), AND(carry, bit1)) # there are 3 posibilities of AND gate for 3 bit system, ab, bc and ca. This system is equivalent of, IF there are 2 or 3 bits turned on(1), then return 1, IF less then 2 bit is one or no bit is turned 1 return false. # A Better Way carry = OR(AND(XOR(bit1, bit2), carry), AND(bit1, bit2)) # According to A Better Carry Calculation Theory, there are two possibility for carry two result 1, rather than three as shown in previous example, First, If both Bits are True Return True, OR, Secondly, If one Bit is True and Carry is True Return True. This is just a simulation of that. return [curr_bit, carry] def largest_len(ls): '''To find largest length of string from strings in given list''' temp = len(ls[0]) for i in range(1, len(ls)): if len(ls[i]) > temp: temp = len(ls[i]) return temp def binary_adder_two_bit(a, b): # Equalising all binary numbers lengths. Like If one is 1 and other if 010 then first one should be 001 for optimal addition l_len = largest_len([a, b]) if len(a) < l_len: diff = l_len - len(a) a = ("0"*diff) + a if len(b) < l_len: diff = l_len - len(b) b = ("0"*diff) + b # Actually Adding total = "" carry = 0 for i in range(l_len-1, -1, -1): # Getting bits from reverse because binary number start from reverse bit, carry = two_bit_adder(int(a[i]), int(b[i]), int(carry)) # using two bit adder for every bit total += str(bit) return (str(carry) + total[::-1]) # We need to reverse the total as we perform addition rightfully(reversed), but don't add it to start of str but just normally to the end # EXAMPLE: # print(decimal_to_binary(17)) # print(binary_adder_two_bit("111", "100")) # ---------------------------------------------------------------------------------------------------------------------------------------------- def many_bit_adder(bits_in_list, carry=0): ''' THEORY: Every next bit is of double value of the previous bit, so two previous bit of same position will be a single bit of next position, We'll just take exploit this scenario, we'll just shift the to next position by reducing it to half if even or first make it even by storing one value in current bit. For Example: 0001 +0001 +0001 +0001 If we have a bit number system like this, Indicating 4, What we can do is turning off all the one's value bits and turn a single 4 value bit. CONGRATULATIONS, we have invented Addition. Theoretically, We'll first reduce all the four bit into two bit of next position and secondly that two bit into even next to next position, So It'll become like this -> 0001+0001+0001+0001 -> 0010+0010 => 0100. It's also discussed in Main THEORY Section, Please Refer to That. ''' # Calculating Current Bit bit = 0 ones = bits_in_list.count(1) + carry if ones%2 == 0: bit = 0 else: bit = 1 ones -= 1 # Calculating Carry carry = ones / 2 return [bit, int(carry)] def binary_adder_many_bit(*bin): # Equalising all binary number lengths ls = [] l_len = largest_len(bin) for i in bin: if len(i) < l_len: diff = l_len - len(i) ls.append(("0"*diff) + i) else: ls.append(i) # Actually Adding total = "" carry = 0 for i in range(l_len-1, -1, -1): # Getting bits from reverse because binary number start from reverse bits = [] for j in ls: bits.append(int(j[i])) bit, carry = many_bit_adder(bits, int(carry)) total += str(bit) # If iteration number get finished before calculation getting over as it's only set to length of binary number, In short What If resultant result is grater in length then the inputs, Therefore this while loop to take care of that while carry > 0: # Will run until it'll resolve carry, Refer to THEORY <-- many_bit_adder bit, carry = many_bit_adder([], int(carry)) total += str(bit) return (total[::-1]) # We need to reverse the total as we perform addition rightfully(reversed), but don't add it to start of str but just normally to the end # EXAMPLE # print(binary_adder_many_bit('1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1','1'))
krishna-kush/Bit-Calculator
bit-calculator.py
bit-calculator.py
py
10,410
python
en
code
0
github-code
36
69904854506
from flask import Flask, request, jsonify from config import Config from flask_cors import CORS, cross_origin from database import db def create_app(config_class=Config): app = Flask(__name__) app.config.from_object(config_class) app.config['CORS_HEADERS'] = 'Content-Type' db.init_app(app) # import controllers from controllers.weo.weo_controller import weo_bp from controllers.econ.econ_controller import econ_bp from controllers.money_supply.money_supply_controller import money_supply_bp from controllers.oil.oil_controller import oil_production_bp # register controllers app.register_blueprint(weo_bp) app.register_blueprint(econ_bp, url_prefix='/econ') app.register_blueprint(money_supply_bp) app.register_blueprint(oil_production_bp, url_prefix='/oil') # test route @app.route('/') def hello_world(): return "Izzy is pretty" # error handler @app.errorhandler(404) def not_found(error): return jsonify({"error": "Not Found"}), 404 return app app = create_app() cors = CORS(app, resources={r"/*": {"origins": "*"}}) @app.after_request def add_cors_headers(response): response.headers.add('Access-Control-Allow-Origin', '*') response.headers.add('Access-Control-Allow-Headers', 'Content-Type,Authorization') response.headers.add('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS') return response if __name__ == '__main__': app.run()
danme-l/website-v2-backend
app.py
app.py
py
1,479
python
en
code
0
github-code
36
39941333480
z=0.00 cant=input() l1=[] l2=[] def masa(p,h): z = float(p) / float(h)**2 return z for i in range(0,int(cant)): x=0.00 adata=input() p,h=adata.split(" ") x=masa(p,h) if x>=30.0: y="obese" elif x<30.0 and x>=25.0: y="over" elif x<25 and x>=18.5: y="normal" else: y="under" l2.append(y) print (*l2)
carloscondore/python-codeabbey
python/028/condoreca.py
condoreca.py
py
317
python
en
code
1
github-code
36
6357753937
import pandas as pd import functions as fn import numpy as np #USDMXN = fn.descarga_data(["USDMXN"])['USDMXN'] #USDMXN_train = USDMXN[(USDMXN['time'] >= '2020-01-01') & (USDMXN['time'] <='2021-01-01')] #USDMXN_test = USDMXN[(USDMXN['time'] >= '2021-02-01') & (USDMXN['time'] <='2022-02-01')] #EURUSD = fn. descarga_data(["EURUSD"])["EURUSD"] #EURUSD_train = EURUSD[(EURUSD['time'] >= '2020-01-01') & (EURUSD['time'] <='2021-01-01')] #EURUSD_test = EURUSD[(EURUSD['time'] >= '2021-02-01') & (EURUSD['time'] <='2022-02-01')] indicador = pd.read_csv('./files/Gross Domestic Product Annualized.csv') USDMXN = pd.read_csv('./files/USDMXN.csv') USDMXN_train = pd.read_csv('./files/USDMXN_train.csv') USDMXN_test = pd.read_csv('./files/USDMXN_test.csv') EURUSD = pd.read_csv('./files/EURUSD.csv') EURUSD_train = pd.read_csv('./files/EURUSD_train.csv') EURUSD_test = pd.read_csv('./files/EURUSD_test.csv') print(len(USDMXN_train)) print(len(EURUSD_train)) print(len(USDMXN_test)) print(len(EURUSD_test)) capital_inicial = 100000 max_perdida_cap = 1000 capital_acumulado_ent = [] capital_actual = capital_inicial min_length = min(len(USDMXN_train), len(EURUSD_train), len(USDMXN_test), len(EURUSD_test)) capital_acumulado_ent = [] capital_actual = capital_inicial # Calcular de capital acumulado periodo entrenamiento for i in range(min_length): precio_actual_USDMXN = USDMXN_train.iloc[i]['close'] precio_anterior_USDMXN = USDMXN_train.iloc[i-1]['close'] cambio_precio_USDMXN = precio_actual_USDMXN - precio_anterior_USDMXN precio_actual_EURUSD = EURUSD_train.iloc[i]['close'] precio_anterior_EURUSDN = EURUSD_train.iloc[i-1]['close'] cambio_precio_EURUSD = precio_actual_EURUSD - precio_anterior_EURUSDN # Calculo de capital actualizado cambio_capital = cambio_precio_USDMXN + cambio_precio_EURUSD capital_actual += cambio_capital # Ajuste si excede el limite de perdida max if cambio_capital < 0: capital_actual = max(capital_actual, capital_actual - max_perdida_cap) capital_acumulado_ent.append(capital_actual) capital_acumulado_prueba = [] capital_actual = capital_inicial # Calculo de capital acumulado periodo prueba for i in range(min_length): precio_actual_USDMXN = USDMXN_test.iloc[i]['close'] precio_anterior_USDMXN = USDMXN_test.iloc[i-1]['close'] cambio_precio_USDMXN = precio_actual_USDMXN - precio_anterior_USDMXN precio_actual_EURUSD = EURUSD_test.iloc[i]['close'] precio_anterior_EURUSDN = EURUSD_test.iloc[i-1]['close'] cambio_precio_EURUSD = precio_actual_EURUSD - precio_anterior_EURUSDN # Calculo de capital actualizado cambio_capital = cambio_precio_USDMXN + cambio_precio_EURUSD capital_actual += cambio_capital # Ajuste si excede el limite de perdida max if cambio_capital < 0: capital_actual = max(capital_actual, capital_actual - max_perdida_cap) capital_acumulado_prueba.append(capital_actual) # Calculo diferencias absolutas dif_absolutas = abs(np.array(capital_acumulado_ent[:min_length]) - np.array(capital_acumulado_prueba[:min_length])) # MAD mad1 = dif_absolutas.mean() mad2 = np.median(dif_absolutas) mad3 = np.mean(np.abs(dif_absolutas - np.mean(dif_absolutas))) tabla = pd.DataFrame({'MAD1': [mad1], 'MAD2': [mad2], 'MAD3': [mad3]}) print(tabla) #Generación de señal de compra o de venta. import pandas as pd import numpy as np # Define las variables y carga los datos capital_inicial = 100000 max_perdida_cap = 1000 nivel_entrada = 30 nivel_salida = 70 rsi = fn.cal_rsi(USDMXN_train['close']) # Correr primero functions indicador = pd.read_csv('./files/Gross Domestic Product Annualized.csv') min_length = min(len(USDMXN_train), len(EURUSD_train), len(USDMXN_test), len(EURUSD_test), len(indicador)) rsi = rsi[:min_length] indicador = indicador[:min_length] posicion_abierta = False capital_actual = capital_inicial cantidad_posicion = 0 precio_apertura = 0 precio_cierre = 0 capital_acumulado = [] operaciones = [] tickets = [] # Itera sobre los datos y realiza las operaciones for i in range(len(rsi)): if rsi[i] > nivel_entrada and not posicion_abierta and indicador.iloc[i]['actual'] > 0: # Generar señal de compra precio_apertura = precio_actual_USDMXN cantidad_posicion = (capital_actual * max_perdida_cap) / precio_apertura capital_actual -= cantidad_posicion * precio_apertura posicion_abierta = True operaciones.append('Compra') tickets.append(f'Compra Ticket {i+1}') capital_acumulado.append(capital_actual) elif rsi[i] < nivel_salida and posicion_abierta and indicador.iloc[i]['actual'] < 0: # Generar señal de venta precio_cierre = precio_actual_USDMXN capital_actual += cantidad_posicion * precio_cierre posicion_abierta = False operaciones.append('Venta') tickets(f'Vende Ticket {i+1}') capital_acumulado.append(capital_actual) if posicion_abierta and (precio_cierre - precio_actual_USDMXN) < -max_perdida_cap: # Cierre de posición por pérdida máxima alcanzada capital_actual += cantidad_posicion * precio_actual_USDMXN posicion_abierta = False operaciones.append('Venta') tickets(f'Vende Ticket {i+1} (maxima perdida)') capital_acumulado.append(capital_actual) rendimiento_acumulado = capital_actual - capital_inicial rendimiento_promedio = rendimiento_acumulado / len(rsi) # Imprime la tabla de resultados tabla_rsi = pd.DataFrame({'Operación': operaciones, 'Ticket':tickets}) print(tabla_rsi)
andres1999iteso/ProyectoFinal
data.py
data.py
py
5,597
python
es
code
0
github-code
36
18338901118
import os import wave import numpy as np import calRMSE import dsp import pylab as pl import scipy.signal as signal import numpy as np import cv2 import matplotlib.pyplot as plt import scipy from scipy.fftpack import fft from scipy.io import wavfile as wav from scipy import signal as sig from scipy.signal import windows ''' 1.录取敲击声音频,音频中包含多个敲击声 2.将数据流中的多个敲击声切割出来,转换为stft矩阵,进行组合为3通道 3.load模型 4.将数据输入进模型进行测试 5.输出识别结果 ''' def read_wav_scipy(wav_path): """[使用scipy读取wav] Args: wav_path ([str]): [路径] Returns: [np.array, numeric]: [信号及采样率] """ wf = wave.open(wav_path, "rb") # 打开wav params = wf.getparams() # 参数获取 nchannels, sampwidth, framerate, nframes = params[:4] #nframes指bufsize #声道数, 量化位数(byte单位), 采样频率, #采样点数, 压缩类型, 压缩类型的描述 str_data = wf.readframes(nframes) wf.close() # 关闭wave #####2.将波形数据转换为数组 # N-1 一维数组,右声道接着左声道 wave_data = np.fromstring(str_data, dtype=np.short) # 2-N N维数组 wave_data.shape = -1, 1 # 将数组转置为 N-2 目标数组 wave_data = wave_data.T # #fs, signal = wav.read(wav_path) #if(len(signal.shape) > 1): #signal = signal[:,0] #return_signal = signal # return_signal=wave_data[0]; if return_signal.dtype.name == "int16": return_signal = return_signal / 32767 fs=framerate return return_signal, fs def enframe(x, win, inc): nx = len(x) # 取数据长度 nwin = len(win) # 取窗长 if nwin == 1: # 判断窗长是否为1,若为1,即表示没有设窗函数 len_temp = win # 是,帧长=win else: len_temp = nwin # 否,帧长=窗长 if inc is None: # 如果只有两个参数,设帧inc=帧长 inc = len_temp nf = int(np.fix((nx-len_temp+inc)/inc)) # 计算帧数 frameout = np.zeros((nf, len_temp)) # 初始化 indf = np.reshape(inc * np.arange(0, nf), (nf, 1)) inds = np.reshape(np.arange(0, len_temp), (1, len_temp)) ## 此处没有matlab的语法糖,无法做到简单复制 ## Caution: 此处数值已经产生了细微的不同 # frameout = x[indf[:, np.ones((1, len_temp))] + inds[np.ones((nf, 1)), :]] def myfunc(a): return x[a] # 方式1: 使用vectorize来映射 # vfunc = np.vectorize(myfunc) # frameout = vfunc(np.repeat(indf, len_temp, axis=1) + np.repeat(inds, nf, axis=0)) # 方式2: 直接遍历来映射 temp = np.repeat(indf, len_temp, axis=1) + np.repeat(inds, nf, axis=0) frameout = np.zeros(np.shape(temp)) for idx,i in enumerate(temp): for idxx,j in enumerate(i): frameout[idx, idxx] = myfunc(j) if nwin > 1: frameout = frameout * win return frameout def vad_specEn(x, wnd, inc, NIS, th1, th2, fs): frames = enframe(x, wnd, inc).T # 分帧 fn = np.size(frames, axis=1) # 求帧数 if len(wnd) == 1: wlen = wnd # 求出帧长 else: wlen = len(wnd) df = fs / wlen # 求出FFT后频率分辨率 fx1 = int(np.fix(250 / df) + 1) fx2 = int(np.fix(3500 / df) + 1) # 找出250Hz和3500Hz的位置 km = int(np.floor(wlen / 8)) # 计算出子带个数 K = 0.5 # 常数K Hb = np.zeros((fn)) for i in range(fn): A = np.abs(fft(frames[:, i])) # 取来一帧数据FFT后取幅值 E = A[fx1 + 1 : fx2 - 1] # 只取250~3500Hz之间的分量 E = E * E # 计算能量 P1 = E / np.sum(E) # 幅值归一化? -> 应该是计算概率 index = np.argwhere(P1 >= 0.9) # 寻找是否有分量的概率大于0.9 if len(index) != 0: E[index] = 0 # 若有,该分量置0 Eb = np.zeros((km)) for m in range(km): # 计算子带能量 Eb[m] = np.sum(E[4 * m : 4 * (m + 1)]) prob = (Eb + K) / np.sum(Eb + K) # 计算子带概率 Hb[i] = -np.sum(prob * np.log(prob + 10 ** -23)) Enm = sig.medfilt(Hb, 5) # 1次平滑处理 for i in range(9): Enm = sig.medfilt(Enm, 5) # 9次平滑处理 Me = np.min(Enm) # 设置阈值 eth = np.mean(Enm[1:NIS]) Det = eth - Me T1 = th1 * Det + Me T2 = th2 * Det + Me voiceseg, vsl, SF, NF = vad_revr(Enm, T1, T2) return voiceseg, vsl, SF, NF, Enm def vad_revr(dst1, T1, T2): fn = len(dst1) # 取得帧数 maxsilence = 8 # 初始化 minlen = 5 status = 0 count = [0] silence = [0] x1 = [0] x2 = [0] # 开始端点检测 xn = 0 for n in range(1, fn): if status == 0 or status == 1: # 0 = 静音, 1 = 可能开始 if dst1[n] < T2: # 确信进入语音段 x1[xn] = np.max((n - count[xn] - 1, 1)) status = 2 silence[xn] = 0 count[xn] += 1 elif dst1[n] < T1: # 可能处于语音段 status = 1 count[xn] += 1 else: # 静音状态 status = 0 count[xn] = 0 x1[xn] = 0 x2[xn] = 0 elif status == 2: # 2 = 语音段 if dst1[n] < T1: # 保持在语音段 count[xn] += 1 else: # 语音将结束 silence[xn] += 1 if silence[xn] < maxsilence: # 静音还不够长,尚未结束 count[xn] += 1 elif count[xn] < minlen: # 语音长度太短,认为是噪声 status = 0 silence[xn] = 0 count[xn] = 0 else: status = 3 x2[xn] = x1[xn] + count[xn] elif status == 3: # 语音结束,为下一个语音准备 status = 0 xn += 1 count.append(0) silence.append(0) x1.append(0) x2.append(0) el = len(x1) - 1 if x1[el] == 0: el = el - 1 # 获得x1的实际长度 if el == 0: return None,None,None,None if x2[el] == 1: # 如果x2最后一个值为0,对它设置为fn print("Error: Not find endding point!") x2[el] = fn SF = np.zeros((1, fn)) NF = np.ones((1, fn)) for i in range(el+1): # 按x1和x2,对SF和NF赋值 SF[0, x1[i] : x2[i]] = 1 NF[0, x1[i] : x2[i]] = 0 speechIndex = np.argwhere(SF == 1) voiceseg = findSegment(speechIndex) # 计算voiceseg vsl = len(voiceseg) return voiceseg, vsl, SF, NF def findSegment(express): express_temp = [e[0] if e[0] != 0 else e[1] for e in express] express = express_temp if express[0] == 0: voiceIndex = np.argwhere(express != 0) # 寻找express中为1的位置 else: voiceIndex = express class seg_object(object): """ 保存begin/end/duration属性 """ def __init__(self) -> None: pass soundSegment = [seg_object()] k = 0 soundSegment[k].begin = voiceIndex[0] # 设置第一组有话段的起始位置 for i in range(len(voiceIndex)-1): if voiceIndex[i + 1] - voiceIndex[i] > 1: # 本组有话段结束 soundSegment[k].end = voiceIndex[i] # 设置本组有话段的结束位置 soundSegment.append(seg_object()) soundSegment[k + 1].begin = voiceIndex[i + 1] # 设置下一组有话段的起始位置 k += 1 soundSegment[k].end = voiceIndex[-1] # 最后一组有话段的结束位置 # 计算每组有话段的长度 for i in range(k+1): soundSegment[i].duration = soundSegment[i].end - soundSegment[i].begin + 1 return soundSegment def FrameTimeC(frameNum, framelen, inc, fs): frameTime = ((np.arange(1, frameNum + 1) - 1) * inc + framelen / 2) / fs return frameTime def read_data(i): global list1; x=list1[i]; return np.array(x,float); def seg_data(wavfile,th1,th2,tap_num = 3,threshold = 30): global list1; list1=[]; # 遍历文件开始处理 signal, fs = read_wav_scipy(wavfile) # step2.0: 变量使用及预处理 IS = 0.7 # 设置前导无话段长度 wlen = 200 # 设置帧长为25ms inc = 80 # 求帧移 signal = signal[int(np.round(0.25 * fs))-1:] # 去除开头的硬件噪声? signal_normalized = signal / np.max(np.abs(signal)) # 幅值非严格归一 -> [-1, 1] N = len(signal_normalized) # 信号长度 time = np.arange(0, N) / fs wnd = sig.windows.hamming(wlen, sym=False) # 此处matlab的显示精度需要设置,数值应该是一样的 overlap = wlen - inc NIS = int(np.fix((IS * fs - wlen) / inc + 1)) #th1=0.7; #th2=0.8; ''' # step2.1: 阈值选取 material_list = ["6061", "yCu", "bxg304"] # assert material_type in material_list, "材料类型不在列表中,请更换材料类型参数;Material_type not in the list... Please change the \"material_type\" parameter." if material_type in material_list: th1 = 0.35 th2 = 0.3 # th1 = 0.25 # th2 = 0.2 else: th1 = 0.7 th2 = 0.8 ''' # step3.0: 谱熵法计算 voiceseg, vsl, SF, NF, Enm = vad_specEn( signal_normalized, wnd, inc, NIS, th1, th2, fs ) # 谱熵法 if voiceseg==None and vsl==None: return np.array([[[1]]], float) fn = np.max(np.size(SF)) frameTime = FrameTimeC(fn, wlen, inc, fs) # 计算各帧对应的时间 # step3.1: 切分开始 up_cut_time_point = [] down_cut_time_point = [] for k in range(vsl): nx1 = voiceseg[k].begin nx2 = voiceseg[k].end up_cut_time_point.append(frameTime[nx1]) down_cut_time_point.append(frameTime[nx2]) multi_data=[]; for i in range(vsl): ''' if loc.find("10cm") + 1: t1 = up_cut_time_point[i] - 0.0025 else: t1 = up_cut_time_point[i] - 0.001 ''' t1 = up_cut_time_point[i] - 0.001 t2 = t1 + 0.009 touchsound = signal[int(np.round(t1 * fs)) : int(np.round(t2 * fs))] # 观察结果 N_final = len(touchsound) time_final = N_final / fs Xtime_final = np.linspace(0, time_final, N_final, endpoint=True) """ plt.close() plt.figure() touchsound_final=touchsound plt.plot(Xtime_final, touchsound_final) touchsound_final2=touchsound_final.reshape(1,-1); list1.append(Xtime_final); list1.append(touchsound_final2[0]); plt.title("touchsound_final") plt.show() """ # 求切割完成的信号的STFT得到时频分析的矩阵,进行多通道的组合 # window_size = 32 #window_size = 32 #stft_stride = 10 window_size = 64 stft_stride = 10 #window_size = 128 #stft_stride = 5 stft_n_downsample = 1 stft_no_log = False log_alpha = 0.1 #print(touchsound) # [f, t, Zxx] = signal.spectrogram(touchsound_final, 44100, window="hamm", nperseg=window_size, noverlap=stft_stride, detrend=False) spectrum = dsp.signal2spectrum(touchsound, window_size,stft_stride, stft_n_downsample, not stft_no_log) #plt.close()############# #plt.figure()############ # y_max = np.max(spectrum) #plt.xlim([2, spectrum.shape[1]])######## #plt.ylim([0, spectrum.shape[0]])####### # plt.axis("off") #plt.imshow(spectrum)######### # plt.savefig(); #print(spectrum) multi_data.append(spectrum) multi_data1 = np.array(multi_data, dtype = np.float32) ch = 3 print("vsl : "+str(vsl)) if vsl<ch : return np.array([[[0]]], float) #for i in range(ch): #print (multi_data1[i]); #multi_data1[i] = normliaze(multi_data[i], mode = 'z-score', truncated=5) #print (multi_data1[i]) return np.array(multi_data1,float) def normliaze(data, mode = 'z-score', sigma = 0, dtype=np.float32, truncated = 2): ''' mode: norm | std | maxmin | 5_95 dtype : np.float64,np.float16... ''' data = data.astype(dtype) data_calculate = data.copy() if mode == 'norm': result = (data-np.mean(data_calculate))/sigma elif mode == 'z-score': mu = np.mean(data_calculate) sigma = np.std(data_calculate) print(np.mean(data_calculate)) print(np.std(data_calculate)) result = (data - mu) / sigma return result.astype(dtype)
wzt1512978386/Surtify
app/src/main/python/DataPreprocessing2.py
DataPreprocessing2.py
py
12,746
python
en
code
1
github-code
36
40660876105
# -*- coding:utf-8 -*- import os import sys import time import tensorflow as tf import seq2seqModel import getConfig import io gConfig = {} gConfig=getConfig.get_config(config_file='seq2seq.ini') vocab_inp_size = gConfig['enc_vocab_size'] vocab_tar_size = gConfig['dec_vocab_size'] embedding_dim=gConfig['embedding_dim'] units=gConfig['layer_size'] BATCH_SIZE=gConfig['batch_size'] max_length_inp,max_length_tar=20,20 def preprocess_sentence(w): w ='start '+ w + ' end' #print(w) return w def create_dataset(path, num_examples): lines = io.open(path, encoding='UTF-8').read().strip().split('\n') word_pairs = [[preprocess_sentence(w)for w in l.split('\t')] for l in lines[:num_examples]] return zip(*word_pairs) def max_length(tensor): return max(len(t) for t in tensor) def read_data(path,num_examples): input_lang,target_lang=create_dataset(path,num_examples) input_tensor,input_token=tokenize(input_lang) target_tensor,target_token=tokenize(target_lang) return input_tensor,input_token,target_tensor,target_token def tokenize(lang): lang_tokenizer = tf.keras.preprocessing.text.Tokenizer(num_words=gConfig['enc_vocab_size'], oov_token=3) lang_tokenizer.fit_on_texts(lang) tensor = lang_tokenizer.texts_to_sequences(lang) tensor = tf.keras.preprocessing.sequence.pad_sequences(tensor, maxlen=max_length_inp,padding='post') return tensor, lang_tokenizer input_tensor,input_token,target_tensor,target_token= read_data(gConfig['seq_data'], gConfig['max_train_data_size']) def train(): print("Preparing data in %s" % gConfig['train_data']) steps_per_epoch = len(input_tensor) // gConfig['batch_size'] print(steps_per_epoch) enc_hidden = seq2seqModel.encoder.initialize_hidden_state() checkpoint_dir = gConfig['model_data'] ckpt=tf.io.gfile.listdir(checkpoint_dir) if ckpt: print("reload pretrained model") seq2seqModel.checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) BUFFER_SIZE = len(input_tensor) dataset = tf.data.Dataset.from_tensor_slices((input_tensor,target_tensor)).shuffle(BUFFER_SIZE) dataset = dataset.batch(BATCH_SIZE, drop_remainder=True) checkpoint_dir = gConfig['model_data'] checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt") start_time = time.time() while True: start_time_epoch = time.time() total_loss = 0 for (batch, (inp, targ)) in enumerate(dataset.take(steps_per_epoch)): batch_loss = seq2seqModel.train_step(inp, targ,target_token, enc_hidden) total_loss += batch_loss print(batch_loss.numpy()) step_time_epoch = (time.time() - start_time_epoch) / steps_per_epoch step_loss = total_loss / steps_per_epoch current_steps = +steps_per_epoch step_time_total = (time.time() - start_time) / current_steps print('训练总步数: {} 每步耗时: {} 最新每步耗时: {} 最新每步loss {:.4f}'.format(current_steps, step_time_total, step_time_epoch, step_loss.numpy())) seq2seqModel.checkpoint.save(file_prefix=checkpoint_prefix) sys.stdout.flush() def predict(sentence): checkpoint_dir = gConfig['model_data'] seq2seqModel.checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) sentence = preprocess_sentence(sentence) inputs = [input_token.word_index.get(i,3) for i in sentence.split(' ')] inputs = tf.keras.preprocessing.sequence.pad_sequences([inputs],maxlen=max_length_inp,padding='post') inputs = tf.convert_to_tensor(inputs) result = '' hidden = [tf.zeros((1, units))] enc_out, enc_hidden = seq2seqModel.encoder(inputs, hidden) dec_hidden = enc_hidden dec_input = tf.expand_dims([target_token.word_index['start']], 0) for t in range(max_length_tar): predictions, dec_hidden, attention_weights = seq2seqModel.decoder(dec_input, dec_hidden, enc_out) predicted_id = tf.argmax(predictions[0]).numpy() if target_token.index_word[predicted_id] == 'end': break result += target_token.index_word[predicted_id] + ' ' dec_input = tf.expand_dims([predicted_id], 0) return result if __name__ == '__main__': if len(sys.argv) - 1: gConfig = getConfig.get_config(sys.argv[1]) else: gConfig = getConfig.get_config() print('\n>> Mode : %s\n' %(gConfig['mode'])) if gConfig['mode'] == 'train': train() elif gConfig['mode'] == 'serve': print('Serve Usage : >> python3 app.py')
zhangzhiqiangccm/NLP-project
chineseChatbotWeb/execute.py
execute.py
py
4,645
python
en
code
120
github-code
36
18034729277
class Solution: def minDifficulty(self, A: List[int], d: int) -> int: n = len(A) dp = [[float('inf')] * n + [0] for _ in range(d+1)] for d in range(1, d+1): for i in range(n-d+1): maxd = 0 for j in range(i, n-d+1): maxd = max(maxd, A[j]) dp[d][i] = min(dp[d][i], maxd + dp[d-1][j+1]) return dp[d][0] if dp[d][0] < float('inf') else -1
LittleCrazyDog/LeetCode
1335-minimum-difficulty-of-a-job-schedule/1335-minimum-difficulty-of-a-job-schedule.py
1335-minimum-difficulty-of-a-job-schedule.py
py
454
python
en
code
2
github-code
36
37338865985
from distutils.core import setup import os.path import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="python_obfuscator", packages=setuptools.find_packages(), version="0.0.2", license="MIT", description="It's a python obfuscator.", author="David Teather", author_email="contact.davidteather@gmail.com", url="https://github.com/davidteather/python-obfuscator", long_description=long_description, long_description_content_type="text/markdown", download_url="https://github.com/davidteather/python-obfuscator/tarball/master", keywords=["obfuscator"], install_requires=["regex"], classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", ], entry_points={"console_scripts": ["pyobfuscate=python_obfuscator.cli:cli"]}, )
davidteather/python-obfuscator
setup.py
setup.py
py
1,182
python
en
code
133
github-code
36
33815850991
from django.shortcuts import get_object_or_404 from rest_framework.decorators import api_view, permission_classes from rest_framework.response import Response from rest_framework import status from rest_framework.permissions import IsAdminUser, IsAuthenticated from .models import Exercise from .serializers import ExerciseSerializer import requests import os from workouts.models import Workout # Create your views here. @api_view(['GET']) @permission_classes([IsAuthenticated]) def api_exercises_list(request): if request.method == 'GET': url = 'https://exercisedb.p.rapidapi.com/exercises' headers = { 'X-RapidAPI-Key': os.environ.get("EXERCISE_DB_RAPID_API_KEY"), 'X-RapidAPI-Host': 'exercisedb.p.rapidapi.com' } response = requests.get(url=url, headers=headers) return Response(response.json(), status=status.HTTP_200_OK) return Response(status=status.HTTP_400_BAD_REQUEST) @api_view(['GET', 'POST']) @permission_classes([IsAdminUser]) def admin_exercise_list(request): if request.method == 'GET': workout_id = request.query_params.get('workout_id') if workout_id is not None: exercises = Workout.objects.get(pk=workout_id).exercise_set.all() serializer = ExerciseSerializer(exercises, many=True) return Response(serializer.data) if request.method == 'POST': workout_id = request.data.pop('workouts_id') serializer = ExerciseSerializer(data=request.data) serializer.is_valid(raise_exception=True) serializer.save() new_exercise = get_object_or_404( Exercise, pk=serializer.data.get('id')) if new_exercise is not None: workout = get_object_or_404(Workout, id=workout_id) new_exercise.workouts.add(workout) new_exercise = get_object_or_404( Exercise, pk=serializer.data.get('id')) serializer = ExerciseSerializer(new_exercise) return Response(serializer.data, status=status.HTTP_201_CREATED) return Response(status=status.HTTP_400_BAD_REQUEST) @api_view(['GET', 'PATCH', 'DELETE']) @permission_classes([IsAuthenticated]) def exercise_detail(request, pk): exercise = get_object_or_404(Exercise, pk=pk) if request.method == 'GET': serializer = ExerciseSerializer(exercise) return Response(serializer.data, status=status.HTTP_200_OK) elif request.method == 'PATCH' and request.user.is_staff: serializer = ExerciseSerializer( exercise, data=request.data, partial=True) serializer.is_valid(raise_exception=True) serializer.save() return Response(serializer.data, status=status.HTTP_200_OK) elif request.method == 'DELETE' and request.user.is_staff: exercise.delete() return Response(status=status.HTTP_204_NO_CONTENT) return Response(status=status.HTTP_400_BAD_REQUEST)
christianbeckham/capstone-app
backend/exercises/views.py
views.py
py
2,944
python
en
code
0
github-code
36
22782711018
# # @lc app=leetcode id=1721 lang=python3 # # [1721] Swapping Nodes in a Linked List # # https://leetcode.com/problems/swapping-nodes-in-a-linked-list/description/ # # algorithms # Medium (66.34%) # Likes: 2015 # Dislikes: 81 # Total Accepted: 116.7K # Total Submissions: 174.9K # Testcase Example: '[1,2,3,4,5]\n2' # # You are given the head of a linked list, and an integer k. # # Return the head of the linked list after swapping the values of the k^th node # from the beginning and the k^th node from the end (the list is 1-indexed). # # # Example 1: # # # Input: head = [1,2,3,4,5], k = 2 # Output: [1,4,3,2,5] # # # Example 2: # # # Input: head = [7,9,6,6,7,8,3,0,9,5], k = 5 # Output: [7,9,6,6,8,7,3,0,9,5] # # # # Constraints: # # # The number of nodes in the list is n. # 1 <= k <= n <= 10^5 # 0 <= Node.val <= 100 # # # # @lc code=start # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next class Solution: def swapNodes(self, head: Optional[ListNode], k: int) -> Optional[ListNode]: if not head: return head curr = head for i in range(k - 1): curr = curr.next slow = head fast = curr while fast.next: slow = slow.next fast = fast.next slow.val, curr.val = curr.val, slow.val return head # @lc code=end
Zhenye-Na/leetcode
python/1721.swapping-nodes-in-a-linked-list.py
1721.swapping-nodes-in-a-linked-list.py
py
1,454
python
en
code
17
github-code
36
4748854183
#!/usr/bin/env python # coding: utf-8 # In[1]: class Solution(object): def heap_sort(self, nums): """ :type nums: List[int] ex:[3,2,-4,6,4,2,19],[5,1,1,2,0,0] :rtype: List[int] ex:[-4,2,2,3,4,6,19],[0,0,1,1,2,5] """ n = len(nums) for i in range(n-1,-1,-1): Solution().heapify(nums,i,n) for i in range(n-1,0,-1): nums[i],nums[0] = nums[0],nums[i] Solution().heapify(nums,0,i) return nums def heapify(self,nums,i,n): root = i left = i*2+1 right = i*2+2 if left < n and nums[left] > nums[root]: root = left if right < n and nums[right] > nums[root]: root = right if i != root: nums[i],nums[root] = nums[root],nums[i] Solution().heapify(nums,root,n)
samuel80402/sam
HW2/heap_sort_06170224.py
heap_sort_06170224.py
py
877
python
en
code
0
github-code
36
74477215464
from rdflib import Graph, RDF, Literal, RDFS, plugin, OWL, XSD, SKOS, PROV plugin.register('json-ld', 'Serializer', 'rdfextras.serializers.jsonld', 'JsonLDSerializer') import csv import pandas as pd from collections import Counter from nltk.tag import StanfordNERTagger import spacy import jellyfish as jf import json import validators import re csv_links = "../results/yago-links.csv" csv_node_labels = "../results/yago-node-labels.csv" csv_nodes = "../results/yago-nodes.csv" entity_file = "../results/entities_nodes.csv" data_type_json = "../results/data-type-validation.json" csv_with_features = "../results/features_selected_yago_nodes.csv" ############################Triple Features############################################################################ def pred_occur(): #counts the no. of times a predicate occurs within the entire dataset print("inside pred_occur") df_node_labels = pd.read_csv(csv_node_labels) df_node_labels['CountPredOccur'] = df_node_labels['predicate'].map(Counter(list(df_node_labels['predicate']))) df_node_labels.to_csv(csv_node_labels, index=False) subj_pred_occur() def subj_pred_occur(): # counts the no. of times a predicate occurs within the entity's group print("inside subj_pred_occur") df_node_labels = pd.read_csv(csv_node_labels) total_groups = df_node_labels.groupby(['subject', 'predicate']) label_count = {} for group in total_groups.groups: label_count[group] = len(total_groups.get_group(group)) df_node_labels['CountPredOccurofSubject'] = df_node_labels.set_index(['subject', 'predicate']).index.map(label_count.get) df_node_labels.to_csv(csv_node_labels, index=False) dup_triples() def dup_triples(): # counts the no. of times a predicate occurs within the entity's group print("inside dup_triples") df_node_labels = pd.read_csv(csv_node_labels) total_groups = df_node_labels.groupby(['subject', 'predicate', 'object']) label_count = {} for group in total_groups.groups: try: label_count[group] = len(total_groups.get_group(group)) except: continue df_node_labels['CountDupTriples'] = df_node_labels.set_index(['subject', 'predicate', 'object']).index.map(label_count.get) df_node_labels.to_csv(csv_node_labels, index=False) cal_haslabel_similarity() def cal_haslabel_similarity(): # Calculate the similarity between two labels given a has_label predicate print("inside cal_haslabel_similarity") df_node_labels = pd.read_csv(csv_node_labels) label_count = {} for index, row in df_node_labels.iterrows(): if row['predicate'] == "has_label": entity_split = row['subject'].split("/")[-1] underscore_removed = entity_split.replace("_", " ") wordnet_removed = underscore_removed.replace('wordnet', "") wikicat_removed = wordnet_removed.replace('wikicategory', "") subject_final = "".join(filter(lambda x: not x.isdigit(), wikicat_removed)) subject_final = subject_final.strip() print(subject_final) similarity = jf.jaro_distance(subject_final, row['object']) label_count[(row['subject'], row['object'])] = round(similarity,2) else: label_count[(row['subject'], row['object'])] = "na" df_node_labels['SimSubjectObject'] = df_node_labels.set_index(['subject', 'object']).index.map(label_count.get) df_node_labels.to_csv(csv_node_labels, index=False) tot_literals() def entity_recognition(): print("inside entity_recognition") web_sm = spacy.load(r'/Users/asara/Documents/data_enrichment/assets/en_core_web_sm-3.0.0/en_core_web_sm/en_core_web_sm-3.0.0') st = StanfordNERTagger('assets/stanford-ner-4.2.0/classifiers/english.all.3class.distsim.crf.ser.gz', 'assets/stanford-ner-4.2.0/stanford-ner-4.2.0.jar', encoding='utf-8') df_node_labels = pd.read_csv(csv_node_labels) dict_entity_type = {} entities = set(list(df_node_labels['subject']) + list(df_node_labels['object'])) total_entities = len(entities) print("total_entities: " ,total_entities) count=0 with open(entity_file, "a") as outfile: writer = csv.writer(outfile) writer.writerow(["entity", "entity_type"]) for entity in entities: try: count = count + 1 print("entity number: ", count) print("more to go number: ", total_entities-count) entity_types = [] entity_split = entity.split("/")[-1] underscore_removed = entity_split.replace("_", " ") wordnet_removed = underscore_removed.replace('wordnet', "") wikicat_removed = wordnet_removed.replace('wikicategory', "") entity_final = "".join(filter(lambda x: not x.isdigit(), wikicat_removed)) entity_final = entity_final.strip() print(entity_final) spacy_ner = [(X.text, X.label_) for X in web_sm(entity_final).ents] if spacy_ner: for item in spacy_ner: entity_types.append(item[1]) else: stanford_ner = st.tag([entity_final]) for item in stanford_ner + spacy_ner: entity_types.append(item[1]) replacements = {"ORG": "ORGANIZATION", "GPE": "LOCATION", "LOC": "LOCATION"} replacer = replacements.get # For faster gets. entity_types = [replacer(n, n) for n in entity_types] dict_entity_type[entity] = set(entity_types) writer.writerow([entity, set(entity_types)]) except: dict_entity_type[entity] = "{O}" writer.writerow([entity, set(entity_types)]) df_node_labels['SubjectEntityType'] = df_node_labels.set_index(['subject']).index.map(dict_entity_type.get) df_node_labels['ObjectEntityType'] = df_node_labels.set_index(['object']).index.map(dict_entity_type.get) df_node_labels.to_csv(csv_node_labels, index=False) pred_entity_type_occur() def pred_entity_type_occur(): #this method counts the no. of times a particular predicate occurs with the two given entity types of subject and object print("inside pred_entity_type_occur") df_node_labels = pd.read_csv(csv_node_labels) total_groups = df_node_labels.groupby(['SubjectEntityType','ObjectEntityType','predicate']) label_count = {} for group in total_groups.groups: try: label_count[group] = len(total_groups.get_group(group)) except: continue df_node_labels['CountPredOccurEntityType'] = df_node_labels.set_index(['SubjectEntityType','ObjectEntityType','predicate']).index.map(label_count.get) df_node_labels.to_csv(csv_node_labels, index=False) find_com_rare_entity_type() def validate_literal_data_type(): print("inside validate_literal_data_type") df_node_labels = pd.read_csv(csv_node_labels) json_file = open(data_type_json,) data_type_dict = json.load(json_file) print(data_type_dict) validity_score = [] for index, row in df_node_labels.iterrows(): pred_extracted = row['predicate'] if validators.url(pred_extracted): pred_extracted = row['predicate'].split("/")[-1] validity = "na" for key in data_type_dict.keys(): if key in pred_extracted.lower(): data_type = data_type_dict[key] try: if data_type == "url": validity = is_url(row['object']) break if data_type == "date": validity = is_date(row['object']) break if data_type == 'integer': validity = row['object'].isnumeric() break if data_type == 'time': validity = re.match('\d{2}:\d{2}:\d{2}', row['object']) break if data_type == 'string': validity = ((not row['object'].isnumeric()) and (not row['object'] == "") and (not validators.url(row['object'])\ and (not is_date(row['object'])))) break except: validity = 0 validity_score.append(validity) df_node_labels['ValidityOfLiteral'] = validity_score df_node_labels.to_csv(csv_node_labels, index=False) count_occur_dup_triples() ############################Node Features############################################################################ def tot_literals(): #count total number of literal based triples an entity has print("inside tot_predicates") df_node_labels = pd.read_csv(csv_node_labels) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: try: label_count[group] = len(total_groups.get_group(group)) except: continue data = {'node':list(label_count.keys()), 'CountLiterals': list(label_count.values()) } df_nodes = pd.DataFrame.from_dict(data) df_nodes.to_csv(csv_nodes, index=False) count_dif_literal_types() def count_dif_literal_types(): #count different types of predicates an entity has got where the object is a literal print("inside count_dif_literal_types") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) print(fetched_group) count_dif_literals = len(fetched_group['predicate'].unique()) label_count[group] = count_dif_literals df_nodes['CountDifLiteralTypes'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_isa_triples() def count_isa_triples(): #count different types of predicates an entity has got where the object is a literal print("inside count_isa_triples") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) print(fetched_group) count_dif_literals = len(fetched_group[fetched_group['predicate']=='isa']) label_count[group] = count_dif_literals df_nodes['CountIsaPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_haslabel_triples() def count_haslabel_triples(): #count different types of predicates an entity has got where the object is a literal print("inside count_haslabel_triples") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) print(fetched_group) count_dif_literals = len(fetched_group[fetched_group['predicate']=='has_label']) label_count[group] = count_dif_literals df_nodes['CountHaslabelPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_subclassof_triples() def count_subclassof_triples(): #count different types of predicates an entity has got where the object is a literal print("inside count_subclassof_triples") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) print(fetched_group) count_dif_literals = len(fetched_group[fetched_group['predicate']=='subClassOf']) label_count[group] = count_dif_literals df_nodes['CountSubclassofPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_subpropertyof_triples() def count_subpropertyof_triples(): #count different types of predicates an entity has got where the object is a literal print("inside count_subpropertyof_triples") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) print(fetched_group) count_dif_literals = len(fetched_group[fetched_group['predicate']=='subPropertyOf']) label_count[group] = count_dif_literals df_nodes['CountSubpropofPredicate'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_high_sim_labels() def count_high_sim_labels(): #count different types of predicates an entity has got where the object is a literal print("inside count_high_sim_labels") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) count = 0 for index, row in fetched_group.iterrows(): if row['SimSubjectObject'] != 'na' and float(row['SimSubjectObject']) >=0.5: count+=1 label_count[group] = count df_nodes['CountHighSimLabels'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_low_sim_labels() def count_low_sim_labels(): #count different types of predicates an entity has got where the object is a literal print("inside count_low_sim_labels") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: fetched_group = total_groups.get_group(group) count = 0 for index, row in fetched_group.iterrows(): if row['SimSubjectObject'] != 'na' and float(row['SimSubjectObject']) <0.5: count+=1 label_count[group] = count df_nodes['CountLowSimLabels'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) tot_outgoing_links() def tot_outgoing_links(): print("inside tot_incoming_links") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) df_links = pd.read_csv(csv_links) groups_in_node_labels = df_node_labels.groupby(['subject']) groups_in_links = df_links.groupby(['subject']) label_count = {} for group in df_nodes['node']: try: fetched_node_label_groups = len(groups_in_node_labels.get_group(group)) except: fetched_node_label_groups = 0 try: fetched_link_groups = len(groups_in_links.get_group(group)) except: fetched_link_groups = 0 label_count[group] = fetched_node_label_groups + fetched_link_groups df_nodes['OutDegree'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) tot_incoming_links() def tot_incoming_links(): print("inside tot_outgoing_links") df_nodes = pd.read_csv(csv_nodes) df_links = pd.read_csv(csv_links) groups_in_links = df_links.groupby(['object']) label_count = {} for group in df_nodes['node']: try: fetched_link_groups = len(groups_in_links.get_group(group)) except: fetched_link_groups = 0 label_count[group] = fetched_link_groups df_nodes['InDegree'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) validate_literal_data_type() def find_com_rare_entity_type(): # counts the no. of times a predicate occurs within the entity's group print("inside find_com_rare_entity_type") df_node_links = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_links.groupby(['subject']) entity_count_node_max, entity_count_node_min = {}, {} for group in total_groups.groups: entity_count = {} sub_group = total_groups.get_group(group).groupby(['SubjectEntityType','ObjectEntityType']) for entity_group in sub_group.groups: entity_count[entity_group] = len(sub_group.get_group(entity_group)) key_max = max(entity_count.keys(), key=(lambda k: entity_count[k])) key_min = min(entity_count.keys(), key=(lambda k: entity_count[k])) entity_count_node_max[group] = [key_max] entity_count_node_min[group] = [key_min] df_nodes['CommonPredType'] = df_nodes.set_index(['node']).index.map(entity_count_node_max.get) df_nodes['RarePredType'] = df_nodes.set_index(['node']).index.map(entity_count_node_min.get) df_nodes.to_csv(csv_nodes, index=False) def count_occur_dup_triples(): # counts the no. of duplicate triples a node has got print("inside count_occur_dup_triples") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: count=0 for index, row in total_groups.get_group(group).iterrows(): if row['CountDupTriples'] > 1: count+=row['CountDupTriples'] label_count[group] = count df_nodes['CountDupTriples'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) count_invalid_literals() def count_invalid_literals(): print("inside count_invalid_literals") df_node_labels = pd.read_csv(csv_node_labels) df_nodes = pd.read_csv(csv_nodes) total_groups = df_node_labels.groupby(['subject']) label_count = {} for group in total_groups.groups: count=0 for index, row in total_groups.get_group(group).iterrows(): if row['ValidityOfLiteral'] == False: count+=1 label_count[group] = count df_nodes['CountInvalidTriples'] = df_nodes.set_index(['node']).index.map(label_count.get) df_nodes.to_csv(csv_nodes, index=False) entity_recognition() ########################################Special Functions################################### def is_date(string, fuzzy=False): """ Return whether the string can be interpreted as a date. :param string: str, string to check for date :param fuzzy: bool, ignore unknown tokens in string if True """ from dateutil.parser import parse try: parse(string, fuzzy=fuzzy) return True except ValueError: return False def is_url(url): #check for valid URL if not validators.url(url): return False else: return True def feature_reduction(): print("Inside feature reduction") df = pd.read_csv(csv_node_labels) df_fileterd = df.iloc[:,3:] for feature in df_fileterd.columns: if df_fileterd.dtypes[feature] != np.int64 or df_fileterd.dtypes[feature] != np.float64: df_fileterd[feature].replace(['1','0','True','False',True,False],[1,0,1,0,1,0], inplace=True) df_fileterd[feature] = df_fileterd[feature].astype(np.float) for col in df_fileterd.columns: count_unique = len(df[col].unique()) if count_unique == 1: print(col) df_fileterd.drop(col, inplace=True, axis=1) columns = list(df_fileterd.columns) corr_feature_list = [] for i in range(0, len(columns)-1): for j in range(i+1, len(columns)): print(columns[i],columns[j]) correlation = df_fileterd[columns[i]].corr(df_fileterd[columns[j]]) if correlation == 1: print(columns[i], columns[j]) corr_feature_list.append(columns[i]) corr_feature_list.append(columns[j]) remove_corr_features(corr_feature_list, df_fileterd, df) def remove_corr_features(corr_feature_list, df_fileterd, df): print("Correlated Features: ", corr_feature_list) features_to_remove = [input("Enter the features to remove seperated by a comma without spaces: ")] if features_to_remove[0] == '': gen_binary_feature(df_fileterd, df) else: for feature in features_to_remove: df_fileterd.drop(feature, inplace=True, axis=1) gen_binary_feature(df_fileterd, df) def gen_binary_feature(df_fileterd, df): print("inside binary_features") columns = df_fileterd.columns for column in columns: new_col = [] new_col_name = "Freq" + column for index, row in df_fileterd.iterrows(): if row[column] > df_fileterd[column].median(): new_col.append(1) else: new_col.append(0) df[new_col_name] = new_col df.to_csv(csv_with_features, index=False)
AsaraSenaratne/anomaly-detection-kg
source-files/yago_nodes.py
yago_nodes.py
py
21,397
python
en
code
2
github-code
36
70442787624
#coding: utf-8 # __author__ = jqy import logging class Logger(object): def __init__(self, log_file): """Initialize logging module.""" # disable requests log logging.getLogger("requests").setLevel(logging.DEBUG) logger = logging.getLogger() logger.setLevel(logging.DEBUG) formatter = logging.Formatter('%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s') # Create a file handler to store error messages fh = logging.FileHandler(log_file, mode='w') fh.setLevel(logging.DEBUG) fh.setFormatter(formatter) # Create a stream handler to print all messages to console ch = logging.StreamHandler() ch.setLevel(logging.WARNING) ch.setFormatter(formatter) logger.addHandler(fh) logger.addHandler(ch) self.logger = logger def getLogger(self): return self.logger
stkaeljason/TjgbSpider
logdealer.py
logdealer.py
py
932
python
en
code
1
github-code
36
25946748198
from data_access_layer.abstract_classes.customer_dao import CustomerDAO from entities.customer import Customer from util.database_connection import connection class CustomerPostgresDAO(CustomerDAO): def create_new_customer(self, customer: Customer) -> Customer: sql = "insert into customer values(%s, %s, default) returning customer_id" cursor = connection.cursor() cursor.execute(sql, (customer.first_name, customer.last_name)) connection.commit() generated_id = cursor.fetchone()[0] customer.customer_id = generated_id return customer def get_customer_by_id(self, customer_id: int) -> Customer: sql = "select * from customer where customer_id = %s" cursor = connection.cursor() cursor.execute(sql, [customer_id]) customer_record = cursor.fetchone() customer = Customer(*customer_record) return customer def get_all_customers(self) -> list[Customer]: sql = "select * from customer" cursor = connection.cursor() cursor.execute(sql) customer_records = cursor.fetchall() customer_list = [] for customer in customer_records: customer_list.append(Customer(*customer)) return customer_list def update_customer_by_id(self, customer: Customer) -> Customer: sql = "update customer set first_name = %s, last_name = %s where customer_id = %s" cursor = connection.cursor() cursor.execute(sql, (customer.first_name, customer.last_name, customer.customer_id)) connection.commit() return customer def delete_customer_by_id(self, customer_id: int) -> bool: sql = "delete from customer where customer_id = %s" cursor = connection.cursor() cursor.execute(sql, [customer_id]) connection.commit() return True
dZazulak/Project0
project0/data_access_layer/implementation_classes/customer_postgres_dao.py
customer_postgres_dao.py
py
1,869
python
en
code
0
github-code
36
72172630823
""" Inventarios Componentes v3, CRUD (create, read, update, and delete) """ from typing import Any from sqlalchemy.orm import Session from lib.exceptions import MyIsDeletedError, MyNotExistsError from lib.safe_string import safe_string from ...core.inv_componentes.models import InvComponente from ..inv_categorias.crud import get_inv_categoria from ..inv_equipos.crud import get_inv_equipo def get_inv_componentes( database: Session, inv_categoria_id: int = None, inv_equipo_id: int = None, generacion: str = None, ) -> Any: """Consultar los componentes activos""" consulta = database.query(InvComponente) if inv_categoria_id is not None: inv_categoria = get_inv_categoria(database, inv_categoria_id=inv_categoria_id) consulta = consulta.filter(InvComponente.inv_categoria == inv_categoria) if inv_equipo_id is not None: inv_equipo = get_inv_equipo(database, inv_equipo_id=inv_equipo_id) consulta = consulta.filter(InvComponente.inv_equipo == inv_equipo) if generacion is not None: generacion = safe_string(generacion) if generacion != "": consulta = consulta.filter_by(generacion=generacion) return consulta.filter_by(estatus="A").order_by(InvComponente.id.desc()) def get_inv_componente(database: Session, inv_componente_id: int) -> InvComponente: """Consultar un componente por su id""" inv_componente = database.query(InvComponente).get(inv_componente_id) if inv_componente is None: raise MyNotExistsError("No existe ese componente") if inv_componente.estatus != "A": raise MyIsDeletedError("No es activo ese componente, está eliminado") return inv_componente
PJECZ/pjecz-plataforma-web-api-key
plataforma_web/v4/inv_componentes/crud.py
crud.py
py
1,709
python
es
code
0
github-code
36
37853605555
#!/usr/bin/env python # # import common import os, sys, re, random, itertools, functools from atoslib import utils from atoslib import atos_lib from atoslib import generators from atoslib import process TEST_CASE = "ATOS generators - pruning" args = common.atos_setup_args(ATOS_DEBUG_FILE="debug.log") # #################################################################### # # creation of fake atos-config directory # atos_config = "atos-configurations" process.commands.mkdir(atos_config) db = atos_lib.atos_db.db(atos_config) process.commands.touch("sha1-c") atos_lib.generate_script( "profile.sh", ";" "true", {}) process.commands.mkdir("csv") process.commands.touch("plugin.so") with open('atos-configurations/flags.inline.cfg', 'w') as flagsf: print >>flagsf, '-fgood1|-fbad1' print >>flagsf, '-fgood2|-fgood2' print >>flagsf, '-fbad2|-fbad2' print >>flagsf, '-fnone1|-fnone1' with open('atos-configurations/flags.loop.cfg', 'w') as flagsf: print >>flagsf, '-fgood3|-fbad3' print >>flagsf, '-fgood4|-fbad4' print >>flagsf, '-fnone2|-fnone2' with open('atos-configurations/flags.optim.cfg', 'w') as flagsf: print >>flagsf, '-fgood5|-fbad5' print >>flagsf, '-fnone3|-fnone3' print >>flagsf, '-fcrash1|-fnone4' # # generation of profile files (fctmap.out, oprof.out) # def profile_gen(): with open('fctmap.out', 'w') as flagsf: print >>flagsf, 'sha1.o SHA1Reset' print >>flagsf, 'sha1.o SHA1Result' print >>flagsf, 'sha1.o SHA1PadMessage' print >>flagsf, 'sha1.o SHA1Input' print >>flagsf, 'sha1.o SHA1ProcessMessageBlock' print >>flagsf, 'sha.o main' print >>flagsf, 'sha.o usage' with open('oprof.out', 'w') as flagsf: print >>flagsf, 'vma samples % linenr_info image_name symbol_name' print >>flagsf, '0000000000400b93 353965337 52.2748 (no localization information) sha1-c SHA1ProcessMessageBlock' print >>flagsf, '0000000000400a86 260243456 38.4336 (no localization information) sha1-c SHA1Input' print >>flagsf, '00000000004006e4 62914627 9.2914 (no localization information) sha1-c main' print >>flagsf, '0000000000400f6c 732 0.0001 (no localization information) sha1-c SHA1PadMessage' print >>flagsf, '0000000000401110 25 0.0000 (no localization information) sha1-c __libc_csu_init' print >>flagsf, '00000000004009c8 25 0.0000 (no localization information) sha1-c SHA1Reset' print >>flagsf, '0000000000400a3f 20 0.0000 (no localization information) sha1-c SHA1Result' # # estimation of time/size results given a set of flags # def get_cfg_result(cfg): good_flags = [ ["-fgood1"], ["-fgood2"], ["-fgood3"], ["-fgood4"], ["-fgood5"], ["-fgood-g1-1", "-fgood-g1-2"], ["-fgood-g2-1", "-fgood-g2-2", "-fgood-g2-3"], ] bad_flags = [ ["-fbad1"], ["-fbad2"], ["-fbad3"], ["-fbad4"], ["-fbad5"], ["-fbad-g1-1", "-fbad-g1-2"], ["-fbad-g2-1", "-fbad-g2-2", "-fbad-g2-3"], ] crash_flags = [["-fcrash1"]] # flag_list = generators.optim_flag_list.parse_line(cfg.flags) nb_good = len( filter(lambda f: (len(set(f) - set(flag_list)) == 0), good_flags)) nb_bad = len( filter(lambda f: (len(set(f) - set(flag_list)) == 0), bad_flags)) nb_crash = len( filter(lambda f: (len(set(f) - set(flag_list)) == 0), crash_flags)) if nb_crash: return None, None # file-by-file acf flag acf_file_flag = filter( functools.partial(re.search, '--atos-optfile'), flag_list) if acf_file_flag: fbf_file = acf_file_flag[0][14:].strip('= ') fbf_config = ( generators.gen_file_by_file_cfg.read_config_csv(fbf_file)) for (obj, flags) in fbf_config.items(): flags = generators.optim_flag_list.parse_line(flags) acf_nb_good = len( filter(lambda f: (len(set(f) - set(flags)) == 0), good_flags)) acf_nb_bad = len( filter(lambda f: (len(set(f) - set(flags)) == 0), bad_flags)) nb_good += acf_nb_good * 0.2 nb_bad += acf_nb_bad * 0.2 # function-by-function acf flag acf_func_flag = filter( functools.partial(re.search, '-fplugin-arg-acf_plugin-csv_file'), flag_list) if acf_func_flag: fbf_file = re.search( '-fplugin-arg-acf_plugin-csv_file=([^ ]*)', acf_func_flag[0]).group(1) fbf_config = ( generators.gen_function_by_function_cfg.read_config_csv(fbf_file)) for (obj, flags) in fbf_config.items(): flags = generators.optim_flag_list.parse_line(flags) acf_nb_good = len( filter(lambda f: (len(set(f) - set(flags)) == 0), good_flags)) acf_nb_bad = len( filter(lambda f: (len(set(f) - set(flags)) == 0), bad_flags)) nb_good += acf_nb_good * 0.2 nb_bad += acf_nb_bad * 0.2 score = 1000 - ((nb_good - nb_bad) * 100) return float(score), score # # exploration loop and database update # def db_add_result(cfg, variant_id=None): db = atos_lib.atos_db.db(atos_config) time, size = get_cfg_result(cfg) if None in [time, size]: return None new_entry = { 'variant': variant_id or atos_lib.variant_id(options=cfg.flags), 'target': 'target', 'conf': cfg.flags or '', 'time': time, 'size': size, 'cookies': ','.join(cfg.cookies or []) } db.add_results([new_entry]) return new_entry def generator_loop(generator): all_results = [] for cfg in generator: if cfg.profile: profile_gen() new_res = db_add_result(cfg) if new_res: all_results.append(new_res) return all_results # #################################################################### # # # ref_entry = db_add_result( generators.config()) new_entry = db_add_result( generators.config( flags="-fgood1 -fbad1 -fgood-g1-1 -fgood2 " "-fgood-g1-2 -fbad-g1-1 -fbad-g1-2 -fgood3 -fbad-g2-1"), variant_id="VAR-1") # good: 4: fgood1 fgood2 fgood3 fgood-g1-1_fgood-g1-2 # bad : 2: -fbad1 fbad-g1-1_fbad-g1-2 # score = 4 - 2 = 2 -> 1000 - 2 * 100 -> 800 assert new_entry['size'] == 800 assert new_entry['time'] == 800.0 generator = generators.gen_flags_pruning( variant_id='VAR-1', tradeoff=5.0, threshold=0.0, configuration_path=atos_config) generator_loop(generator) assert generator.final_flags == [ '-fgood1', '-fgood2'] generator = generators.gen_flags_pruning( variant_id='VAR-1', update_reference=True, tradeoff=5.0, threshold=0.0, configuration_path=atos_config) generator_loop(generator) assert generator.final_flags == [ '-fgood1', '-fgood-g1-1', '-fgood2', '-fgood-g1-2', '-fgood3'] generator = generators.gen_flags_pruning( variant_id='VAR-1', one_by_one=True, tradeoff=5.0, threshold=0.0, configuration_path=atos_config) generator_loop(generator) assert generator.final_flags == [ '-fgood1', '-fgood-g1-1', '-fgood2', '-fgood-g1-2', '-fgood3'] generator = generators.gen_flags_pruning( variant_id='VAR-1', tradeoff=5.0, threshold=0.0, selection_size=2, configuration_path=atos_config) generator_loop(generator) assert generator.final_flags == [ '-fgood2', '-fgood3', '-fbad-g2-1'] generator = generators.gen_flags_pruning( variant_id='VAR-1', tradeoff=5.0, threshold=0.0, random_selection=1, configuration_path=atos_config) generator_loop(generator) generator = generators.gen_flags_pruning( variant_id='VAR-1', tradeoff=5.0, threshold=-10, configuration_path=atos_config) generator_loop(generator) generator = generators.gen_flags_pruning( variant_id='VAR-1', tradeoff=5.0, threshold=-10, keep_opt_level=1, configuration_path=atos_config) generator_loop(generator) # # ACF FUNCTION # generator = generators.gen_function_by_function( acf_plugin_path="plugin.so", hwi_size="8", prof_script="./profile.sh", imgpath=".", csv_dir="csv", hot_th="70", cold_opts="-Os", base_flags="-O2", per_func_nbiters=100, optim_levels="-O2", configuration_path=atos_config) results = generator_loop(generator) generator = generators.gen_flags_pruning( variant_id=results[-1]['variant'], update_reference=True, tradeoff=5.0, threshold=0.0, configuration_path=atos_config) generator_loop(generator) # # ACF FILE # generator = generators.gen_file_by_file( imgpath=".", csv_dir="csv", hot_th="70", cold_opts="-Os", base_flags="-O2", per_file_nbiters=100, optim_levels="-O2", configuration_path=atos_config) results = generator_loop(generator) generator = generators.gen_flags_pruning( variant_id=results[-1]['variant'], update_reference=True, tradeoff=5.0, threshold=0.0, configuration_path=atos_config) generator_loop(generator)
atos-tools/atos-utils
tests/test116.py
test116.py
py
9,009
python
en
code
5
github-code
36
6508918488
import numpy as np import csv import chainer import chainer.functions as F import chainer.links as L import sys import matplotlib.pyplot as plt class LaughNeuralNet(chainer.Chain): def __init__(self): super(LaughNeuralNet, self).__init__( l1=L.Linear(None, 200), l2=L.Linear(None, 100), l3=L.Linear(None, 2) ) def __call__(self, x): h = F.dropout(F.relu(self.l1(x))) h = F.dropout(F.relu(self.l2(h))) h = self.l3(h) return h class LaughNeuralNet2(chainer.Chain): def __init__(self): super(LaughNeuralNet2, self).__init__( l1=L.Linear(None, 1000), b1=L.BatchNormalization(1000), l2=L.Linear(None, 1000), b2=L.BatchNormalization(1000), l3=L.Linear(None, 1000), l4=L.Linear(None, 500), b3=L.BatchNormalization(500), l5=L.Linear(None, 500), l6=L.Linear(None, 2) ) def __call__(self, x): h = F.dropout(self.b1(F.relu(self.l1(x)))) h = F.dropout(self.b2(F.relu(self.l2(h)))) h = F.dropout(F.relu(self.l3(h))) h = F.dropout(self.b3(F.relu(self.l4(h)))) h = F.dropout(F.relu(self.l5(h))) h = self.l6(h) return h class LaughNet(chainer.Chain): def __init__(self): super(LaughNet, self).__init__( l1=L.LSTM(None, 200), l2=L.Linear(None, 100), l3=L.Linear(None, 2) ) def __call__(self, x): self.l1.reset_state() h = self.l1(x) h = F.dropout(self.l2(h)) h = self.l3(h) return h class LaughNet2(chainer.Chain): def __init__(self): super(LaughNet2, self).__init__( l1=L.Linear(None, 200), l2=L.Linear(None, 100), l3=L.Linear(None, 2) ) def __call__(self, x): h = F.dropout(F.relu(self.l1(x))) h = F.dropout(F.relu(self.l2(h))) h = self.l3(h) return h # test predicting def test_predict(path='movie_model'): model = LaughNet() chainer.serializers.load_npz(path, model) with open('confused_data/Raw/v_0.csv', 'r') as f: reader = csv.reader(f) csv0 = [(np.array(row, dtype=np.float32), 0) for row in reader] with open('confused_data/Raw/v_1.csv', 'r') as f: reader = csv.reader(f) csv1 = [(np.array(row, dtype=np.float32), 1) for row in reader] all_ary = csv0 + csv1 ans_counts = 0 incorrect = 0 question_num = len(all_ary) plt_ary = [] for data in all_ary: correct = data[1] np_data = data[0].reshape(1, 50) y = np.argmax(F.softmax(model(np_data)).data) if y == correct: ans_counts += 1 plt_ary.append((model(np_data).data, y, 1)) else: incorrect += 1 plt_ary.append((model(np_data).data, y, 0)) print('accuracy:', str(ans_counts / question_num)) print('incorrect rate:', str(incorrect / question_num)) # plt x_ary0 = [] y_ary0 = [] x_ary1 = [] y_ary1 = [] incorrect_x0 = [] incorrect_y0 = [] incorrect_x1 = [] incorrect_y1 = [] for dt in plt_ary: if dt[2] == 0: if dt[1] == 0: incorrect_x0.append(dt[0][0][0]) incorrect_y0.append(dt[0][0][1]) continue else: incorrect_x1.append(dt[0][0][0]) incorrect_y1.append(dt[0][0][1]) continue if dt[1] == 0: x_ary0.append(dt[0][0][0]) y_ary0.append(dt[0][0][1]) else: x_ary1.append(dt[0][0][0]) y_ary1.append(dt[0][0][1]) np_plt_x0 = np.array(x_ary0, dtype=np.float32) np_plt_y0 = np.array(y_ary0, dtype=np.float32) np_plt_x1 = np.array(x_ary1, dtype=np.float32) np_plt_y1 = np.array(y_ary1, dtype=np.float32) np_incorrectx0 = np.array(incorrect_x0, dtype=np.float32) np_incorrecty0 = np.array(incorrect_y0, dtype=np.float32) np_incorrectx1= np.array(incorrect_x1, dtype=np.float32) np_incorrecty1 = np.array(incorrect_y1, dtype=np.float32) plt.plot(np_plt_x1, np_plt_y1, 'o', color='r', alpha=0.5) plt.plot(np_plt_x0, np_plt_y0, 'o', color='b', alpha=0.5) plt.plot(np_incorrectx0, np_incorrecty0, 'o', color='g', alpha=0.5) plt.plot(np_incorrectx1, np_incorrecty1, 'o', color='m', alpha=0.5) plt.show() # predict test_predict()
awkrail/laugh_maker
validation_src/predict.py
predict.py
py
4,519
python
en
code
0
github-code
36
30846787707
# image/views.py from rest_framework.response import Response from rest_framework import generics, status, filters from rest_framework.views import APIView from django.shortcuts import get_object_or_404 from django.core.serializers.json import DjangoJSONEncoder from django.contrib.auth.models import User from django.http import HttpResponse, HttpResponseNotFound from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient import json import os import google_streetview.api import random import secrets import base64 from .serializers import ImageSerializer, ProfileSerializer, UserSerializer from .models import Image, Profile #SendView: sends blob to backend and backend sends blob to azure #ReceiveView: front end sends request for blob, backend uses request to get blob from azure and sends it to frontend #Load: front end sends streetview info and backend saves jpg to blob def sendToBlob(blob, blob_name): connect_str = "DefaultEndpointsProtocol=https;AccountName=blupix;AccountKey=8KBz2PiH671bmhUYvjO+iAs1mh+TIx31DVgnGKzygcv8ItnRgyGtewwZkVgS7aaQ8VB6z6qY/Gqh9lTTTkrx/g==;EndpointSuffix=core.windows.net" blob_service_client = BlobServiceClient.from_connection_string(connect_str) container_client = blob_service_client.get_container_client("blupix-app") blob_client = blob_service_client.get_blob_client(container="blupix-app", blob=blob_name) blob_client.upload_blob(blob) blob_list = container_client.list_blobs() for blob in blob_list: print("\t" + blob.name) class SendView(APIView): def post(self, request): try: blob = request.data['file'] blob_name = request.data['blob_name'] sendToBlob(blob, blob_name) except Exception as ex: print('Exception:') print(ex) return Response({"Error": "Problem with SendView"}) return Response({"blob_name": request.data['blob_name']}) class ReceiveView(APIView): def post(self, request): connect_str = "DefaultEndpointsProtocol=https;AccountName=blupix;AccountKey=8KBz2PiH671bmhUYvjO+iAs1mh+TIx31DVgnGKzygcv8ItnRgyGtewwZkVgS7aaQ8VB6z6qY/Gqh9lTTTkrx/g==;EndpointSuffix=core.windows.net" try: blob_service_client = BlobServiceClient.from_connection_string(connect_str) blob_client = blob_service_client.get_blob_client(container="blupix-app", blob=request.data['blob_name']) blob = blob_client.download_blob() return HttpResponse(blob.readall(), content_type="image/jpeg") except Exception as ex: print('Exception:') print(ex) return Response({"Error": "Problem with ReceiveView"}) class KeyView(APIView): def get(self, request): return Response({"key": "AIzaSyD7blO0Y7Z-Jf2rRFyuo2CrQa7kEXRy1po"}) class LoadView(APIView): def post(self, request): data = request.data params = [{ 'size': data["size"], # max 640x640 pixels 'location': data["location"], 'heading': data["heading"], 'pitch': data["pitch"], "fov": data["fov"], 'key': "AIzaSyD7blO0Y7Z-Jf2rRFyuo2CrQa7kEXRy1po" }] # Create a results object results = google_streetview.api.results(params) image_file = "media/pre_images" results.download_links(image_file) random.seed(secrets.token_bytes(4)) new_file_name = str(random.randint(0, 99999)) print("load: " + new_file_name) os.rename("media/pre_images/gsv_0.jpg", "media/pre_images/" + new_file_name + ".jpg") os.remove("media/pre_images/metadata.json") upload_file_path = os.getcwd()+ "/" + "/media/pre_images/" + new_file_name + ".jpg" with open(upload_file_path, "rb") as data: encoded = base64.b64encode(data.read()) img = b'data:image/jpg;base64,' + encoded sendToBlob(img, new_file_name) os.remove(upload_file_path) return Response({"blob_name": new_file_name}) class LoginView(APIView): def get(self, request): return Response({"Failure": "Incorrect URL"}) def post(self, request): password = request.data["password"] profile = None if "username" in request.data: username = request.data["username"] try: user = User.objects.get(username=username) profile = Profile.objects.get(user=user) except: return Response({"Failure": "Can't find username"}) elif "phone_number" in request.data: phone_number = request.data["phone_number"] try: profile = Profile.objects.get(phone_number=phone_number) except: return Response({"Failure": "Can't find phone_number"}) else: return Response({"Failure": "Incorrect information sent"}) if profile.banned == True: return Response({"Failure": "this user is banned!"}) correct_pw = profile.user.check_password(password) if correct_pw: prof_dict = { "id": profile.id, "username": profile.user.username, "phone_number": profile.phone_number, "is_admin": profile.is_admin, "approved_by_admin": profile.approved_by_admin, "banned": profile.banned } profiles = [] profiles.append(prof_dict) return Response(json.loads(json.dumps(profiles, cls=DjangoJSONEncoder))) else: return Response({"Failure!": "Incorrect Password"}) class ProfileApproveView(generics.ListCreateAPIView): def get(self, request): #returns all profiles not approved by admin unapproved_profiles = Profile.objects.filter(approved_by_admin=False) profiles = [] for p in unapproved_profiles: prof_dict = { "id": p.id, "username": p.user.username, "phone_number": p.phone_number, "is_admin": p.is_admin, "approved_by_admin": p.approved_by_admin, "banned": p.banned } profiles.append(prof_dict) return Response({"unapproved_profiles": json.loads(json.dumps(profiles, cls=DjangoJSONEncoder))}) class ProfileView(generics.ListCreateAPIView): serializer_class = ProfileSerializer queryset = Profile.objects.all() def get(self, requset, pk=None): #used to get a list of all users q = [] profiles = [] if pk == None: q = self.get_queryset() else: q.append(get_object_or_404(Profile.objects.all(), pk=pk)) for p in q: prof_dict = { "id": p.id, "username": p.user.username, "phone_number": p.phone_number, "is_admin": p.is_admin, "approved_by_admin": p.approved_by_admin, "banned": p.banned } print(prof_dict) profiles.append(prof_dict) return Response(json.loads(json.dumps(profiles, cls=DjangoJSONEncoder))) def post(self, request): #used to create a new user q = request.data username = q["username"] password = q["password"] phone_number = q["phone_number"] is_admin = q["is_admin"] approved_by_admin = q["approved_by_admin"] if User.objects.filter(username=username).exists(): return Response({"Failure!": "A user with this username already exists"}) if Profile.objects.filter(phone_number=phone_number).exists(): return Response({"Failure!": "A user with this phone_number already exists"}) profile = self.serializer_class.create_object(self,username, password, phone_number, is_admin, approved_by_admin) return Response({"Success!": "User {} was created!".format(profile.user.username)}) def put(self, request, pk): #updated profile information profile = get_object_or_404(Profile.objects.all(), pk=pk) data = request.data updated_profile = self.serializer_class.update_profile(self, profile, data) return Response({"Success!": "User {} was updated!".format(updated_profile.user.username)}, status=204) def delete(self, request, pk): profile = get_object_or_404(Profile.objects.all(), pk=pk) username = profile.user.username profile.user.delete() profile.delete() return Response({"Profile for {} was deleted".format(username)}, status=204) class ImageView(APIView): def get(self, request, pk = None): #either returns one image (by id number) or all images if pk == None: images = Image.objects.all() serializer_class = ImageSerializer(images, many = True) else: image = get_object_or_404(Image.objects.all(), pk=pk) serializer_class = ImageSerializer(image, many = False) return Response({"images": serializer_class.data}) def post(self, request): image_serializer = ImageSerializer(data=request.data) if image_serializer.is_valid(): image_serializer.save() return Response(image_serializer.data, status=status.HTTP_201_CREATED) else: print('error', image_serializer.errors) return Response(image_serializer.errors, status=status.HTTP_400_BAD_REQUEST) def put(self, request, pk): saved_image = get_object_or_404(Image.objects.all(), pk=pk) data = request.data.get('image') serializer_class = ImageSerializer(instance=saved_image, data=data, partial=True) if serializer_class.is_valid(raise_exception=True): image_saved = serializer_class.save() return Response({"success": "Image '{}' has been updated successfully".format(image_saved)}) def delete(self, request, pk): image = get_object_or_404(Image.objects.all(), pk=pk) try: blob_name = image.blob_name connect_str = "DefaultEndpointsProtocol=https;AccountName=blupix;AccountKey=8KBz2PiH671bmhUYvjO+iAs1mh+TIx31DVgnGKzygcv8ItnRgyGtewwZkVgS7aaQ8VB6z6qY/Gqh9lTTTkrx/g==;EndpointSuffix=core.windows.net" blob_service_client = BlobServiceClient.from_connection_string(connect_str) blob_client = blob_service_client.get_blob_client(container="blupix-app", blob=blob_name) blob_client.delete_blob() except: pass image.delete() return Response({"success": "Image '{}' has been updated deleted".format(pk)}, status=204) class DataSearch(generics.ListCreateAPIView): def createJSONObj(self, post_images): JSONList = [] for post in post_images: try: #post_user = get_object_or_404(Profile, id=post.user_id_of_upload) post_user = Profile.objects.get(id=post.user_id_of_upload) image_dict = { "postID" : post.id, "post_blob_name" : post.blob_name, "position": { "lat" : post.latitude, "lng" : post.longitude }, "address" : post.address, "floodDate" : post.flood_date, "postSource" : post.source, "pairAttempted" : post.pair_attempted, "username_of_post": post_user.user.username, "approved_user": post_user.approved_by_admin } except: image_dict = { "postID" : post.id, "post_blob_name" : post.blob_name, "position": { "lat" : post.latitude, "lng" : post.longitude }, "address" : post.address, "floodDate" : post.flood_date, "postSource" : post.source, "pairAttempted" : post.pair_attempted, "username_of_post": "null", "approved_user": "null" } try: pre_image = Image.objects.get(id=post.pair_index) #pre_profile = get_object_or_404(Profile, id=pre_image.user_id_of_upload) image_dict["preID"] = pre_image.id image_dict["pre_blob_name"] = pre_image.blob_name image_dict["preSource"] = pre_image.source image_dict["map_url"] = pre_image.Maps_URL if pre_image.approved_by_admin == True: image_dict["isPaired"] = "True" else: image_dict["isPaired"] = "False" try: pre_profile = Profile.objects.get(id=pre_image.user_id_of_upload) image_dict["username_of_pre"] = pre_profile.user.username except Profile.DoesNotExist: image_dict["username_of_pre"] = "null" except Image.DoesNotExist: image_dict["username_of_pre"] = "null" image_dict["predID"] = "null" image_dict["pre_blob_name"] = "null" image_dict["preSource"] = "null" image_dict["isPaired"] = "False" JSONList.append(image_dict) return(json.loads(json.dumps(JSONList, cls=DjangoJSONEncoder))) def get(self, request): #return all unapproved images post_images = Image.objects.filter(pre_post = True, approved_by_admin="False") return Response(self.createJSONObj(post_images)) def post(self, request): q = request.data.get("data") post_images = [] post_images = Image.objects.filter(pre_post = True, latitude__gte=q["MinLat"], latitude__lte=q["MaxLat"], longitude__gte=q["MinLong"], longitude__lte=q["MaxLong"], flood_date__gte=q["MinDate"], flood_date__lte=q["MaxDate"]) images = [] if q["PairingStatus"] == "paired": for p in post_images: if p.approved_by_admin == True: try: pre_image = Image.objects.get(id=p.pair_index) if pre_image.approved_by_admin == True: images.append(p) except: print("problem with paired") continue elif q["PairingStatus"] == "unpaired": for p in post_images: try: pre_image = Image.objects.get(id=p.pair_index) if p.approved_by_admin != pre_image.approved_by_admin: images.append(p) except Image.DoesNotExist: images.append(p) continue else: for p in post_images: if p.approved_by_admin == True: images.append(p) try: pre_image = Image.objects.get(id=p.pair_index) if p.approved_by_admin == False and pre_image.approved_by_admin == True: images.append(p) except Image.DoesNotExist: print("You are trying to access a pre_image that does not exist") continue approved_user_images = [] for i in images: try: #profile = get_object_or_404(Profile, id=i.user_id_of_upload) profile = Profile.objects.get(id=i.user_id_of_upload) if profile.approved_by_admin == True: approved_user_images.append(i) except: print("user doesn't exit") continue return Response(self.createJSONObj(approved_user_images))
ngade98/waterlogged_heroku
waterlogged/views.py
views.py
py
16,109
python
en
code
0
github-code
36
71001878825
# Напишите программу, которая на вход принимает два числа A и B, и возводит число А в целую степень B с помощью рекурсии. def exponent(a, b): if b == 0: return 1 else: if b > 0: return a * exponent(a, b-1) else: return 1 / a * exponent(a, b+1) while True: try: a = int(input("Введите число А: ")) b = int(input("Введите число B: ")) print(f"число {a} возведенное в степень {b} = {exponent(a, b)}") break except: print("Ошибка ввода. Введено не число!")
IgorVGoncharov/Python_start
Lesson_5/Task_26.py
Task_26.py
py
726
python
ru
code
0
github-code
36
15442973460
from __future__ import absolute_import, print_function import json import os import tempfile import mock import mesos.cli.cfg import mesos.cli.cmds.config from .. import utils config_path = os.path.normpath(os.path.join( os.path.dirname(__file__), "..", "data", "config.json")) class TestConfig(utils.MockState): @mock.patch('os.environ', {"MESOS_CLI_CONFIG": config_path}) @utils.patch_args(["mesos-config"]) def test_output(self): mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config() mesos.cli.cmds.config.main() out = json.loads(self.stdout) assert "master" in out["test"] @mock.patch('os.environ', {"MESOS_CLI_CONFIG": config_path}) @utils.patch_args([ "mesos-config", "master" ]) def test_get_key(self): mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config() mesos.cli.cmds.config.main() assert "zk://localhost:2181/mesos" in self.stdout @utils.patch_args([ "mesos-config", "master", "zk://localhost:2181/mesos" ]) def test_set_key(self): fd, fname = tempfile.mkstemp() with open(fname, "w") as fobj: fobj.write("{}") try: with mock.patch('os.environ', {"MESOS_CLI_CONFIG": fname}): mesos.cli.cmds.config.CFG = mesos.cli.cfg.Config() mesos.cli.cmds.config.main() with open(fname, "r") as fobj: assert "zk://localhost:2181" in json.loads( fobj.read())["default"]["master"] finally: os.remove(fname)
mesosphere-backup/mesos-cli
tests/integration/test_config.py
test_config.py
py
1,613
python
en
code
116
github-code
36
15958452776
import os #from numpy import where, zeros import re #from itertools import repeat def build_depend_dict(data): depend_dict = {} for (i, d) in data: if d in depend_dict: depend_dict[d].append(i) else: depend_dict[d] = [i] return depend_dict findRoutes = re.compile(r'((?<=\s)[A-Z](?=\s))') workPath = os.path.expanduser("~/Documents/Code/Advent_of_code") os.chdir(workPath) with open(os.path.join(workPath, "day_7_input.txt"), "r") as inFile: lines = [findRoutes.findall(s.strip()) for s in inFile] line_dict = {} for (i, d) in lines: if i in line_dict: line_dict[i].append(d) else: line_dict[i] = [d] for k, v in line_dict.items(): line_dict[k] = sorted(v) depend_dict = build_depend_dict(lines) independant, dependant = zip(*lines) independant = sorted(set(independant)) dependant = sorted(set(dependant)) numTasks = len(set(independant + dependant)) #vals = sorted(set([i for i in independant if i not in dependant])) #vals += sorted([i for i in independant if i not in vals]) #vals += sorted([d for d in dependant if d not in independant]) #vals = iter(vals) vals = sorted(set([i for i in independant if i not in dependant])) # ['G', 'M', 'W', 'Z'] result = '' while len(vals) > 0: next_val = vals[0] result += next_val vals = vals[1:] if next_val in line_dict: for p in line_dict[next_val]: if p in depend_dict: depend_dict[p].remove(next_val) if len(depend_dict[p]) == 0: vals += [p] vals = sorted(set(vals)) # Answer = GLMVWXZDKOUCEJRHFAPITSBQNY # Part 2: 1105 speed = 60 num_workers = 5 numTasks = len(set(independant + dependant)) task_duration = lambda c : 60 + ord(c.lower()) - 96 depend_dict = build_depend_dict(lines) vals = sorted(set([i for i in independant if i not in dependant])) workers = {w:0 for w in range(num_workers)} worker_pool = list(workers.keys()) task_in_process = {} result = '' clock = 0 while len(result) < numTasks: # working try: time_worked = min([v for v in workers.values() if v > 0]) except: time_worked = 0 clock += time_worked for w in set(workers.keys()).difference(set(worker_pool)): workers[w] -= time_worked if workers[w] <= 0: worker_pool.append(w) finished_task = task_in_process[w] result += finished_task if finished_task in line_dict: for p in line_dict[finished_task]: if p in depend_dict: depend_dict[p].remove(finished_task) if len(depend_dict[p]) == 0: vals += [p] vals = sorted(set(vals)) while len(worker_pool) > 0 and len(vals) > 0: # Assign work next_val = vals[0] vals = vals[1:] elf = worker_pool.pop() workers[elf] = task_duration(next_val) task_in_process[elf] = next_val
jdmuss/advent_of_code
2018/day_7.py
day_7.py
py
3,022
python
en
code
0
github-code
36
11568085044
### 4 import time import RPi.GPIO as gpio import numpy as np #### initialize GPIO pins #### def init(): gpio.setmode(gpio.BOARD) gpio.setup(31, gpio.OUT) # in 1 gpio.setup(33, gpio.OUT) # in 2 gpio.setup(35, gpio.OUT) # in 3 gpio.setup(37, gpio.OUT) # in 4 gpio.setup(7, gpio.IN, pull_up_down=gpio.PUD_UP) gpio.setup(12, gpio.IN, pull_up_down=gpio.PUD_UP) def shutdown(): gpio.output(31, False) # close in 1 gpio.output(33, False) # close in 2 gpio.output(35, False) # close in 3 gpio.output(37, False) # close in 4 gpio.cleanup() def main(): init() counter_front_left = np.uint64(0) counter_back_right = np.uint64(0) button_front_left = int(0) button_back_right = int(0) # independent motor control via pwm pwm_back_right = gpio.PWM(31, 50) pwm_front_left = gpio.PWM(37, 50) val = 22 pwm_back_right.start(val) pwm_front_left.start(val) time.sleep(0.1) ### save encoder state to txt file filename_br = 'encoderStateBR.txt' filename_fl = 'encoderStateFL.txt' file_br = open(filename_br, 'w') file_fl = open(filename_fl, 'w') for i in range(0, 100000): print('counter back right', counter_back_right, 'counter front left', counter_front_left, "BR state: ", gpio.input(12), "FL state: ", gpio.input(7)) file_br.write(str(int(gpio.input(12))) + ' ' + str(counter_back_right) +' \n') file_fl.write(str(int(gpio.input(7))) + ' ' + str(counter_front_left) + ' \n') if int(gpio.input(12)) != int(button_back_right): button_back_right = int(gpio.input(12)) counter_back_right += 1 if int(gpio.input(7)) != int(button_front_left): button_front_left = int(gpio.input(7)) counter_front_left += 1 if counter_front_left >= 960: pwm_front_left.stop() if counter_back_right >= 960: pwm_back_right.stop() if button_front_left >= 960 and button_back_right >= 960: shutdown() print("endcoder count finished, encoder state recorded at", filename_br) break file_br.close() file_fl.close() if __name__ == '__main__': main()
StrikerCC/RaspberryPi_autonomousRobotics_ENPM809T
A7/encodercontrol04.py
encodercontrol04.py
py
2,306
python
en
code
0
github-code
36
5603104189
import discord cogs_list = [ "help", "unveil", "bet", "account" ] class Dealer(discord.Bot): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) for cog in cogs_list: self.load_extension(f"cogs.{cog}") async def on_ready(self): print(f"{self.user} has connected to Discord!")
liang799/rivenDealer
bot.py
bot.py
py
359
python
en
code
1
github-code
36
16237300867
""" This is the place that takes the basic configuration of your LaTeX build project. """ # The name of our main LaTeX source, e. g. 'thesis' or a file 'thesis.tex'. LATEX_PROJECT = 'report' # Default target. DEFAULT_TARGET = 'pdf' # --- Things below should mostly not need touching. --- # Some rather fixed configurations. IMAGES_DIRECTORY = 'images' GENERATED_DIRECTORY = 'generated' CHAPTER_DIRECTORY = 'chapters' FILE_EXTENSIONS = {'tex': '.tex', 'eps': '.eps', 'pdf': '.pdf', 'md': '.md', 'png': '.png', 'jpg': '.jpg', 'graffle': '.graffle', 'gnuplot': '.gnuplot'} MAKEINDEX_EXTENSIONS = ['.glg', '.glo', '.gls']
alexbowe/keyphrase
report/build_config.py
build_config.py
py
758
python
en
code
14
github-code
36
22530028718
"""Implementation of a space that represents textual strings.""" from typing import Any, Dict, FrozenSet, Optional, Set, Tuple, Union import numpy as np from gym.spaces.space import Space alphanumeric: FrozenSet[str] = frozenset( "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" ) class Text(Space[str]): r"""A space representing a string comprised of characters from a given charset. Example:: >>> # {"", "B5", "hello", ...} >>> Text(5) >>> # {"0", "42", "0123456789", ...} >>> import string >>> Text(min_length = 1, ... max_length = 10, ... charset = string.digits) """ def __init__( self, max_length: int, *, min_length: int = 1, charset: Union[Set[str], str] = alphanumeric, seed: Optional[Union[int, np.random.Generator]] = None, ): r"""Constructor of :class:`Text` space. Both bounds for text length are inclusive. Args: min_length (int): Minimum text length (in characters). Defaults to 1 to prevent empty strings. max_length (int): Maximum text length (in characters). charset (Union[set], str): Character set, defaults to the lower and upper english alphabet plus latin digits. seed: The seed for sampling from the space. """ assert np.issubdtype( type(min_length), np.integer ), f"Expects the min_length to be an integer, actual type: {type(min_length)}" assert np.issubdtype( type(max_length), np.integer ), f"Expects the max_length to be an integer, actual type: {type(max_length)}" assert ( 0 <= min_length ), f"Minimum text length must be non-negative, actual value: {min_length}" assert ( min_length <= max_length ), f"The min_length must be less than or equal to the max_length, min_length: {min_length}, max_length: {max_length}" self.min_length: int = int(min_length) self.max_length: int = int(max_length) self._char_set: FrozenSet[str] = frozenset(charset) self._char_list: Tuple[str, ...] = tuple(charset) self._char_index: Dict[str, np.int32] = { val: np.int32(i) for i, val in enumerate(tuple(charset)) } self._char_str: str = "".join(sorted(tuple(charset))) # As the shape is dynamic (between min_length and max_length) then None super().__init__(dtype=str, seed=seed) def sample( self, mask: Optional[Tuple[Optional[int], Optional[np.ndarray]]] = None ) -> str: """Generates a single random sample from this space with by default a random length between `min_length` and `max_length` and sampled from the `charset`. Args: mask: An optional tuples of length and mask for the text. The length is expected to be between the `min_length` and `max_length` otherwise a random integer between `min_length` and `max_length` is selected. For the mask, we expect a numpy array of length of the charset passed with `dtype == np.int8`. If the charlist mask is all zero then an empty string is returned no matter the `min_length` Returns: A sampled string from the space """ if mask is not None: assert isinstance( mask, tuple ), f"Expects the mask type to be a tuple, actual type: {type(mask)}" assert ( len(mask) == 2 ), f"Expects the mask length to be two, actual length: {len(mask)}" length, charlist_mask = mask if length is not None: assert np.issubdtype( type(length), np.integer ), f"Expects the Text sample length to be an integer, actual type: {type(length)}" assert ( self.min_length <= length <= self.max_length ), f"Expects the Text sample length be between {self.min_length} and {self.max_length}, actual length: {length}" if charlist_mask is not None: assert isinstance( charlist_mask, np.ndarray ), f"Expects the Text sample mask to be an np.ndarray, actual type: {type(charlist_mask)}" assert ( charlist_mask.dtype == np.int8 ), f"Expects the Text sample mask to be an np.ndarray, actual dtype: {charlist_mask.dtype}" assert charlist_mask.shape == ( len(self.character_set), ), f"expects the Text sample mask to be {(len(self.character_set),)}, actual shape: {charlist_mask.shape}" assert np.all( np.logical_or(charlist_mask == 0, charlist_mask == 1) ), f"Expects all masks values to 0 or 1, actual values: {charlist_mask}" else: length, charlist_mask = None, None if length is None: length = self.np_random.integers(self.min_length, self.max_length + 1) if charlist_mask is None: string = self.np_random.choice(self.character_list, size=length) else: valid_mask = charlist_mask == 1 valid_indexes = np.where(valid_mask)[0] if len(valid_indexes) == 0: if self.min_length == 0: string = "" else: # Otherwise the string will not be contained in the space raise ValueError( f"Trying to sample with a minimum length > 0 ({self.min_length}) but the character mask is all zero meaning that no character could be sampled." ) else: string = "".join( self.character_list[index] for index in self.np_random.choice(valid_indexes, size=length) ) return "".join(string) def contains(self, x: Any) -> bool: """Return boolean specifying if x is a valid member of this space.""" if isinstance(x, str): if self.min_length <= len(x) <= self.max_length: return all(c in self.character_set for c in x) return False def __repr__(self) -> str: """Gives a string representation of this space.""" return ( f"Text({self.min_length}, {self.max_length}, characters={self.characters})" ) def __eq__(self, other) -> bool: """Check whether ``other`` is equivalent to this instance.""" return ( isinstance(other, Text) and self.min_length == other.min_length and self.max_length == other.max_length and self.character_set == other.character_set ) @property def character_set(self) -> FrozenSet[str]: """Returns the character set for the space.""" return self._char_set @property def character_list(self) -> Tuple[str, ...]: """Returns a tuple of characters in the space.""" return self._char_list def character_index(self, char: str) -> np.int32: """Returns a unique index for each character in the space's character set.""" return self._char_index[char] @property def characters(self) -> str: """Returns a string with all Text characters.""" return self._char_str @property def is_np_flattenable(self) -> bool: """The flattened version is an integer array for each character, padded to the max character length.""" return True
openai/gym
gym/spaces/text.py
text.py
py
7,660
python
en
code
33,110
github-code
36
8919279602
import subprocess import json import argparse import os import requests args = None def main(): global args parser = argparse.ArgumentParser( description='update cloudflare dns records') parser.add_argument('Domain', metavar='domain', type=str, help='domain to update') parser.add_argument('--dryrun', action='store_true', help='dry run') parser.add_argument('--kind', action='store', type=str, default='A', help='type of record, e.g. A') parser.add_argument('--zone', action='store', type=str, help='dns zone') parser.add_argument('--id', action='store', type=str, help='ID of record to update') parser.add_argument('--email', action='store', type=str, help='email') parser.add_argument('--api-token', action='store', type=str, help='API token') parser.add_argument('--api-key', action='store', type=str, help='API key') parser.add_argument('--a-name', action='store', type=str, help='record A name') parser.add_argument('--a-ip', action='store', type=str, help='record A IP') args = parser.parse_args() domain = args.Domain if (args.api_token == None): atoken = os.getenv('CF_API_TOKEN') if (atoken == None): print("can't find CF_API_TOKEN") os.exit(1) args.api_token = atoken if (args.api_key == None): akey = os.getenv('CF_API_KEY') if (akey == None): print("can't find CF_API_KEY") os.exit(1) args.api_key = akey if (args.zone== None): azone = os.getenv('CF_ZONE_ID') if (azone== None): print("can't find CF_ZONE_ID") os.exit(1) args.zone = azone find_gcp_vms_ip(callback1) def find_gcp_vms_ip(cb): instances = subprocess.Popen(['gcloud', 'compute', 'instances', 'list', '--format=json'], stdout=subprocess.PIPE).communicate()[0] instances2 = json.loads(instances.decode('utf-8').replace('\n', ' ')) for inst in instances2: name = inst['name'] interface = inst['networkInterfaces'][0] if (interface == None): return accessConfigs = interface['accessConfigs'] if (accessConfigs == None): return externalIP = accessConfigs[0]['natIP'] if (externalIP == None): return cb(name,externalIP) def cloudflare_update(name,ip,domain): url = f"https://api.cloudflare.com/client/v4/zones/{args.zone}/dns_records" # print(url) bearer_token = f"Bearer {args.api_token}" headers = { 'Authorization': bearer_token, 'Content-Type': 'application/json', 'Accept': 'application/json' } # print(bearer_token) # 'X-Auth-Email': f"{args.email}", # 'X-Auth-Key': f"{args.api_key}", response = requests.post( url, headers=headers, data = { 'type': args.kind, 'name': name, 'content': ip, 'priority': 10, 'ttl':120, 'proxied':'false' } ) print(response.json()) def callback1(name,externalIP): #print(args) #print(name,externalIP) cloudflare_update(name,externalIP,args.Domain) if __name__ == "__main__": main()
bobbae/examples-2021
Python/cloudflare/update_dns.py
update_dns.py
py
4,011
python
en
code
3
github-code
36
34168133396
from bs4 import BeautifulSoup import requests def wsearch(word): word = word.replace(" ", "-") url = f"https://dictionary.cambridge.org/dictionary/english/{word}" user_agent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246' headers = {'User-Agent': user_agent} page = requests.get(url, headers=headers).text doc = BeautifulSoup(page, 'html.parser') try: entries = doc.find( class_="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english").find_all(class_="pr entry-body__el") if entries == []: # for a single entry entries = doc.find( class_="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english").find_all(class_="pr di superentry") return entries except AttributeError: return None def compileResult(entries): id = 0 res = list() for entry in entries: # get the word word = entry.find(class_="di-title").text # get the word type try: wordType = entry.find( True, class_="pos dpos").text except AttributeError: wordType = '' # get the list of audio tags audioTags = [] for tag in entry.find_all(class_="region dreg"): audioTags.append(tag.text) # get the list of audio links audioLinks = [] for tag in entry.find_all('source', {"type": "audio/mpeg"}): audioLinks.append("https://dictionary.cambridge.org" + tag['src']) # merge the two lists mergedAudioList = [] for tag, link in zip(audioTags, audioLinks): mergedAudioList.append({"tag": tag, "link": link}) groups = entry.find_all(class_="def-block ddef_block") explanation = list() for group in groups: groupList = list() groupText = group.find_all( True, {"class": ["def ddef_d db", "eg deg"]}) for text in groupText: c = ' '.join(text['class']) if c == "def ddef_d db": groupList.append( { "type": "main", "content": text.text } ) elif c == "eg deg": groupList.append( { "type": "example", "content": text.text } ) explanation.append(groupList) res.append( {"id": id, "word": word, "wordType": wordType, "audioLinks": mergedAudioList, "explanation": explanation } ) id += 1 return res if __name__ == "__main__": entries = wsearch("hi") res = compileResult(entries)
Chris4496/TheDictionaryHubAPI
app/scrapers/cambridge.py
cambridge.py
py
3,117
python
en
code
0
github-code
36
4134038538
from random import sample import numpy as np from Dataset import * from Vocabulary import * from Config import * class Generator: @staticmethod def data_generator(voc, gui_path,img_paths,batch_size,generate_binary_sequences=False,verbose=False,loop_only_once=False): assert len(gui_path) == len(img_paths) voc.binaryConvert() while True: batch_input_images = [] batch_partial_sequences = [] batch_next_words = [] sample_in_batch_counter = 0 for i in range(0,len(gui_path)): if img_paths[i].find(".png") != -1: img = Utils.imgPreprocess(img_paths[i],IMAGE_SIZE) else: img = np.load(img_paths[i])["features"] gui = open(gui_path[i],'r') token_sequence = [START_TOKEN] for line in gui: line = line.replace("," ," ,").replace("\n"," \n") tokens = line.split(" ") for token in tokens: voc.append(token) token_sequence.append(token) token_sequence.append(END_TOKEN) suffix = [PLACEHOLDER] * CONTEXT_LENGTH a = np.concatenate([suffix,token_sequence]) for j in range(0,len(a) - CONTEXT_LENGTH): context = a[j:j+CONTEXT_LENGTH] label = a[j+CONTEXT_LENGTH] batch_input_images.append(img) batch_partial_sequences.append(context) batch_next_words.append(label) sample_in_batch_counter +=1 if sample_in_batch_counter == batch_size or (loop_only_once and i == len(gui_path)-1): if verbose: print("Generating sparse vectors...") batch_next_words = Dataset.makeSparseLabels(batch_next_words,voc) if generate_binary_sequences: batch_partial_sequences = Dataset.createBinary(batch_partial_sequences,voc) else: batch_partial_sequences = Dataset.makeIndices(batch_partial_sequences,voc) if verbose: print("Converting things.. ") batch_input_images = np.array(batch_input_images) batch_partial_sequences = np.array(batch_partial_sequences) batch_next_words = np.array(batch_next_words) if verbose: print("Yield batch...") yield ([batch_input_images,batch_partial_sequences],batch_next_words) batch_input_images = [] batch_partial_sequences = [] batch_next_words = [] sample_in_batch_counter = 0
TismeetSingh14/AutoCode
Generator.py
Generator.py
py
3,060
python
en
code
1
github-code
36
24855579355
from ROOT import TFile, TH3D import numpy as np def SelectParticleMomentumFromHist() : # Open file containing particle momentum distribution file = TFile("threeD.root", "READ") # Retrieve momentum distribution hist = file.Get("threeDHist") # Normalise histogram so that bin height represent probabilities hist.Scale(1./hist.Integral()) # Pick a random number [0, 1) to use to select bin in momentum histogram randomNum = np.random.uniform(0,1) # Find associated bin in momentum histogram cumulativeProb = 0 momentumXBinIndex = 0 momentumYBinIndex = 0 momentumZBinIndex = 0 found = False for xBin in range(1, hist.GetXaxis().GetNbins() + 1, 1) : if found : break for yBin in range(1, hist.GetYaxis().GetNbins() + 1, 1) : if found : break for zBin in range(1, hist.GetZaxis().GetNbins() + 1, 1) : cumulativeProb += hist.GetBinContent(xBin, yBin, zBin) print("Bin Content: ", hist.GetBinContent(xBin, yBin, zBin)) print("Cumulative Prob: ", cumulativeProb) if(cumulativeProb > randomNum) : momentumXBinIndex = xBin momentumYBinIndex = yBin momentumZBinIndex = zBin found = True break; # Select random momentum within this bin xMomentum = np.random.uniform(hist.GetXaxis().GetBinLowEdge(momentumXBinIndex), hist.GetXaxis().GetBinLowEdge(momentumXBinIndex) + hist.GetXaxis().GetBinWidth(momentumXBinIndex)) yMomentum = np.random.uniform(hist.GetYaxis().GetBinLowEdge(momentumYBinIndex), hist.GetYaxis().GetBinLowEdge(momentumYBinIndex) + hist.GetYaxis().GetBinWidth(momentumYBinIndex)) zMomentum = np.random.uniform(hist.GetZaxis().GetBinLowEdge(momentumZBinIndex), hist.GetZaxis().GetBinLowEdge(momentumZBinIndex) + hist.GetZaxis().GetBinWidth(momentumZBinIndex)) print("X Momentum: ", xMomentum) print("Y Momentum: ", yMomentum) print("Z Momentum: ", zMomentum)
imawby/EventGeneration
momentumFromHist.py
momentumFromHist.py
py
2,093
python
en
code
0
github-code
36
70606542505
import json from wsgiref import simple_server from wsgiref.simple_server import make_server def load_html(file_name,**kwargs): try: with open(file_name,'r',encoding='utf-8') as file: content = file.read() if kwargs: # kwargs = {'username ': 'zhangsan ', 'age':19, 'gender': 'male'} content = content.format(**kwargs) # {username}, 迎回来,你今年{age}岁,你的性别是(gender}.format(**kwargs) return content except FileExistsError: print('文件未找到') # 第1个参数,表示环境(电脑的环境;请求路径相关的环境) # 第2个参数,是一个函数,用来返回响应头 # 这个函数需要一个返回值,返回值是一个列表 # 列表里有一个元素,是一个二进制,表示返回给浏览器的数据 def demo_app(environ,start_response): print(environ) # environ是一个字典,保存了很多数据 # 其中重要的一个是 PATH_INFO 能够获取到用户的访问路径 path = environ['PATH_INFO'] # print(environ. get('QUERY-STRING')) # QUERY_STRING ==> 获取到客户端GET请求方式传递的参数 # POST 请求数据的方式 # 状态码: RESTFUL ==> 前后端分离 # 2xx:请求响应成功 # 3Xx:重定向 # 4xx:客户端的错误。404客户端访问了一个不存在的地址 405:请求方式不被允许 # 5xx:服务器的错误。 status_code = '200 OK' # 默认状态码 if path == '/': response = '欢迎来到我的首页' elif path == '/test': response = json.dumps({'name':'zhagnsna','age':18}) elif path == '/demo': with open('hello1.txt','r',encoding='utf-8') as file: response = file.read() elif path == '/info': # html 文件查询数据库,获取用户名 name = 'jack' with open('info.html','r',encoding='utf-8') as file: # '{username},欢迎回来'.format(username=name) # flask django 模块,渲染引擎 response = file.read().format(username=name,age=18,gender='男') else: status_code = '404 Not Found' response = '页面走丢了' print('path={}'.format(path)) start_response(status_code, [('Content-Type', 'text/plain; charset=utf-8'),('Connection', 'keep-alive')]) return [response.encode("utf-8")] # 浏览器显示的内容 if __name__ == '__main__': # demo_app 是一个函数,用来处理用户的请求 httpd = make_server('', 8000, demo_app) sa = httpd.socket.getsockname() print("Serving HTTP on", sa[0], "port", sa[1], "...") # 代码的作用是打开电脑的浏览器,并在浏览器里输入 http://localhost:8000/xyz?abc # import webbrowser # webbrowser.open('http://localhost:8000/xyz?abc') # httpd.handle_request() # 只处理一次请求 httpd.serve_forever() # 服务器在后台一直运行
cgyPension/pythonstudy_space
01_base/$05_wsg服务器.py
$05_wsg服务器.py
py
2,943
python
zh
code
7
github-code
36
36041433257
#!/usr/bin/python import httplib import random import argparse import sys #Get options parser = argparse.ArgumentParser( description='Testing vote app') parser.add_argument( '-port', type=int, help='port of server', default=8000) parser.add_argument( '-host', type=str, help='server name/ip', default="localhost") args = parser.parse_args() #Color table colorList = ["blue", "orange", "red", "green", "yellow" ] colorSize = len(colorList) - 1 #Connect with server conn = httplib.HTTPConnection(args.host, args.port) #initial request conn.request("GET", "/") r1 = conn.getresponse() #print(r1.status, r1.reason) print(r1.read()) #vote loop count = 0 while count < 100 : count = count + 1 nColor = random.randint(0, colorSize) conn.request("GET", "/v1/vote?color="+colorList[nColor]) r1 = conn.getresponse() #print(r1.read()) print # view current results conn.request("GET", "/v1/listVotes") r1 = conn.getresponse() print(r1.read()) conn.request("GET", "/v1/listWorkers") r1 = conn.getresponse() print(r1.read()) conn.close()
JoseIbanez/testing
redis/p02-vote/client/c02.py
c02.py
py
1,136
python
en
code
3
github-code
36
16252978279
#!/usr/bin/env python3 import time, RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(26, GPIO.OUT) i=0 while True: while i<10: i+=1 LEDon = GPIO.output(26, 1) time.sleep(0.5) LEDoff = GPIO.output(26,0) time.sleep(0.5)
jack23574372/Adafruit_Python_DHT2
blink11.py
blink11.py
py
234
python
en
code
0
github-code
36
27940912517
#!/usr/bin/env python3 """A mere list of phrases that may be used for the game""" #Phrases were taken from: https://wofanswers.com/phrase string_list = [ "ALONE IN A CROWD", "WITHIN THE REALM OF POSSIBILITY", "YOU READ MY MIND", "YOUVE NEVER LOOKED BETTER", "ZERO GRAVITY", ]
Sebastiaan35/Techdegree-developer---Project-3
phrasehunter/phrase_list.py
phrase_list.py
py
313
python
en
code
0
github-code
36
23331780439
from utility_functions import * import matplotlib.pyplot as plt def lemke_optimizer_sparse(eco, payoff_matrix = None, dirac_mode = True): A = np.zeros((eco.populations.size, eco.populations.size * eco.layers)) for k in range(eco.populations.size): A[k, k * eco.layers:(k + 1) * eco.layers] = -1 q = np.zeros(eco.populations.size + eco.populations.size * eco.layers) q[eco.populations.size * eco.layers:] = -1 q = q.reshape(-1, 1) if payoff_matrix is None: payoff_matrix = total_payoff_matrix_builder(eco) H = np.block([[-payoff_matrix, A.T], [-A, np.zeros((A.shape[0], eco.populations.size))]]) lcp = sn.LCP(H, q) ztol = 1e-8 #solvers = [sn.SICONOS_LCP_PGS, sn.SICONOS_LCP_QP, # sn.SICONOS_LCP_LEMKE, sn.SICONOS_LCP_ENUM] z = np.zeros((eco.layers*eco.populations.size+eco.populations.size,), np.float64) w = np.zeros_like(z) options = sn.SolverOptions(sn.SICONOS_LCP_PIVOT) #sn.SICONOS_IPARAM_MAX_ITER = 10000000< options.iparam[sn.SICONOS_IPARAM_MAX_ITER] = 1000000 options.dparam[sn.SICONOS_DPARAM_TOL] = 10**(-5) info = sn.linearComplementarity_driver(lcp, z, w, options) if sn.lcp_compute_error(lcp,z,w, ztol) > 10**(-5): print(sn.lcp_compute_error(lcp,z,w, ztol), "Error") return z #@njit(parallel = True) def total_payoff_matrix_builder_sparse(eco, current_layered_attack = None, dirac_mode = False): total_payoff_matrix = np.zeros((eco.populations.size*eco.layers, eco.populations.size*eco.layers)) if current_layered_attack is None: current_layered_attack = eco.parameters.layered_attack for i in range(eco.populations.size): for j in range(eco.populations.size): if i != j: i_vs_j = payoff_matrix_builder(eco, i, j, current_layered_attack = current_layered_attack, dirac_mode = dirac_mode) elif i == j: i_vs_j = np.zeros((eco.layers, eco.layers)) #if i == 1: # total_payoff_matrix[i*eco.layers:(i+1)*eco.layers, j*eco.layers: (j+1)*eco.layers] = i_vs_j.T #else: total_payoff_matrix[i * eco.layers:(i + 1) * eco.layers, j * eco.layers: (j + 1) * eco.layers] = i_vs_j # print("MAXIMM PAYDAY ORIGINAL", np.max(total_payoff_matrix)) total_payoff_matrix[total_payoff_matrix != 0] = total_payoff_matrix[total_payoff_matrix != 0] - np.max(total_payoff_matrix) #- 1 #Making sure everything is negative #- 0.00001 #total_payoff_matrix = total_payoff_matrix/np.max(-total_payoff_matrix) print(np.where(total_payoff_matrix == 0)) return total_payoff_matrix depth = 45 layers = 100 segments = 1 size_classes = 2 lam = 100 simulate = False verbose = True l2 = False min_attack_rate = 10**(-3) mass_vector = np.array([0.05, 0.05*408]) # np.array([1, 30, 300, 400, 800, 16000]) obj = spectral_method(depth, layers, segments=segments) logn = stats.lognorm.pdf(obj.x, 1, 0) norm_dist = stats.norm.pdf(obj.x, loc=0, scale=3) res_start = 4*norm_dist # 0.1*(1-obj.x/depth) res_max = 8*norm_dist water_start = water_column(obj, res_start, layers=layers * segments, resource_max=res_max, replacement=lam, advection=0, diffusion=0, logistic = True) params = ecosystem_parameters(mass_vector, obj, lam=0.3, min_attack_rate = min_attack_rate, forage_mass = 0.05/408) params.handling_times = np.zeros(2) eco = ecosystem_optimization(mass_vector, layers * segments, params, obj, water_start, l2=l2, movement_cost=0) eco.population_setter(np.array([1, 0.05])) eco.heat_kernel_creator(10**(-1)) eco.heat_kernels[1] = eco.heat_kernels[0] S = lemke_optimizer_sparse(eco, total_payoff_matrix_builder_sparse(eco)) S1 = lemke_optimizer(eco) plt.plot(eco.spectral.x, S[0:layers]@eco.heat_kernels[0]) plt.plot(eco.spectral.x, S[layers:2*layers]@eco.heat_kernels[0]) S2 = quadratic_optimizer(eco, payoff_matrix=total_payoff_matrix_builder_sparse(eco)) S3 = quadratic_optimizer(eco) plt.show() plt.plot(eco.spectral.x, S1[0:layers]@eco.heat_kernels[0]) plt.plot(eco.spectral.x, S1[layers:2*layers]@eco.heat_kernels[0]) plt.show() plt.plot(eco.spectral.x, S2[0:layers]@eco.heat_kernels[0]) plt.plot(eco.spectral.x, S2[layers:2*layers]@eco.heat_kernels[0]) plt.show() plt.plot(eco.spectral.x, S3[0:layers]@eco.heat_kernels[0]) plt.plot(eco.spectral.x, S3[layers:2*layers]@eco.heat_kernels[0]) plt.show()
jemff/food_web
old_sims/sparse_testing.py
sparse_testing.py
py
4,391
python
en
code
0
github-code
36
43231808566
""" <风格>复古</风格>的旗袍款式 1. 先分词,再标签。 """ import os import re from transformers import BertTokenizer from collections import defaultdict, Counter PATTEN_BIO = re.compile('<?.*>?') def parse_tag_words(subwords): """ HC<领型>圆领</领型><风格>拼接</风格>连衣裙 """ tags = [] new_subwords = [] i = 0 entity = '' while i < len(subwords): if subwords[i] == '<': if entity == '': # <领型> for j in range(i + 1, len(subwords)): if subwords[j] == '>': break entity += subwords[j] else: # </领型> for j in range(i + 1, len(subwords)): if subwords[j] == '>': break entity = '' i = j + 1 continue if entity != '': # 圆领 for j in range(i, len(subwords)): if subwords[j] == '<': i = j break new_subwords.append(subwords[j]) if j == i: tags.append('B-' + entity) else: tags.append('I-' + entity) continue tags.append('O') new_subwords.append(subwords[i]) i = i + 1 return new_subwords, tags def bpe(part='train', export_dict=False): all_tags = [] data_dir = '/workspace/fairseq/data/JD/kb_ner' bpe_dir = data_dir + '/bpe' bpe = BertTokenizer('/workspace/fairseq/data/vocab/vocab.jd.txt') # never_split参数对tokenizer不起作用 f_src = open(os.path.join(bpe_dir, part + '.src'), 'w', encoding='utf-8') f_tgt = open(os.path.join(bpe_dir, part + '.tgt'), 'w', encoding='utf-8') for line in open(data_dir + '/raw/jdai.jave.fashion.' + part, 'r', encoding='utf-8'): cid, sid, sent, tag_sent = line.strip().split('\t') subwords = bpe._tokenize(tag_sent) subwords, tags = parse_tag_words(subwords) f_src.write(' '.join(subwords) + '\n') f_tgt.write(' '.join(tags) + '\n') all_tags += tags if export_dict: with open(os.path.join(bpe_dir, 'vocab.tgt.txt'), 'w', encoding='utf-8') as f_out: f_out.write('\n'.join([k for k, cnt in Counter(all_tags).items()]) + '\n') def find_all_entity(): all_tag_sent = [] for line in open('raw/jdai.jave.fashion.train', 'r', encoding='utf-8'): cid, sid, sent, tag_sent = line.strip().split('\t') all_tag_sent.append(tag_sent) entity_list = re.findall('<.*?>', ''.join(all_tag_sent)) aa = Counter(entity_list) f_out = open('raw/vocab_bioattr.txt', 'w', encoding='utf-8') f_out.write(''.join(['{}\t{}\n'.format(k, cnt) for k, cnt in aa.items()])) if __name__ == "__main__": bpe('train', export_dict=True) bpe('valid') bpe('test')
WaveLi123/m-kplug
m_kplug/data_process/bpe_kb_encoder.py
bpe_kb_encoder.py
py
2,910
python
en
code
4
github-code
36
16132606164
# -*- coding: utf-8 -*- """ Created on Tue Feb 18 10:01:52 2020 @author: Ferhat """ from flask import Flask, jsonify, json, Response,make_response,request from flask_cors import CORS # ============================================================================= # from flask_cors import cross_origin # ============================================================================= import numpy as np import cv2 #from flask.ext.httpauth import HTTPBasicAuth # ============================================================================= # from luminoso_api import LuminosoClient # from luminoso_api.errors import LuminosoError, LuminosoClientError # from luminoso_api.json_stream import open_json_or_csv_somehow # from werkzeug.datastructures import ImmutableMultiDict # ============================================================================= import logging import random app = Flask(__name__, static_url_path = "") CORS(app) file_handler = logging.FileHandler('app.log') app.logger.addHandler(file_handler) app.logger.setLevel(logging.INFO) logger = logging.getLogger(__name__) logging.basicConfig(level=logging.INFO) def return_img(new_img,name): random_value = random.randrange(1000) path1 ='newImage'+str(random_value)+'.png' path2 = 'C:/xampp/htdocs/python/'+path1 cv2.imwrite(path2,new_img) data = { 'imgNew' : path1, 'desc' : name } return data def convol(img): kernel = np.ones((5,5),np.float32)/25 dst = cv2.filter2D(img,-1,kernel) return return_img(dst,"Convolution") def averaging(img): blur = cv2.blur(img,(5,5)) return return_img(blur,"Averaging") def gaus_filter(img): blur = cv2.GaussianBlur(img,(5,5),0) return return_img(blur,"Gaussian Filtering") def median(img): median = cv2.medianBlur(img,5) return return_img(median,"Median Filtering") def bilateral(img): blur = cv2.bilateralFilter(img,9,75,75) return return_img(blur,"Bilateral Filtering") def binary(img): ret,thresh_binary = cv2.threshold(img,127,255,cv2.THRESH_BINARY) return return_img(thresh_binary,"THRESH_BINARY ") def binary_inv(img): ret,thresh_binary_inv= cv2.threshold(img,127,255,cv2.THRESH_BINARY_INV) return return_img(thresh_binary_inv,"THRESH Binary Inv") def tozero(img): ret,thresh_tozero = cv2.threshold(img,127,255,cv2.THRESH_TOZERO) return return_img(thresh_tozero,"THRESH Tozero") def trunc(img): ret,thresh_trunc = cv2.threshold(img,127,255,cv2.THRESH_TRUNC) return return_img(thresh_trunc,"THRESH Trunc") def trunc_inv(img): ret,thresh_trunc_inv = cv2.threshold(img,127,255,cv2.THRESH_TOZERO_INV) return return_img(thresh_trunc_inv,"THRESH Tozero Inv") @app.errorhandler(400) def not_found(error): app.logger.error('Bad Request - 400') return make_response(jsonify( { 'error': 'Bad request' } ), 400) @app.route('/image_process', methods = ['GET','POST']) def get_test(): img_Path = request.args.get('img_path') img_type = request.args.get('img_type') image = cv2.imread(img_Path,0) if img_type == "convol": data = convol(image) elif img_type == "averaging": data = averaging(image) elif img_type == "gaus_filter": data = gaus_filter(image) elif img_type == "median": data = median(image) elif img_type == "bilateral": data = bilateral(image) elif img_type == "binary": data = binary(image) elif img_type == "binary_inv": data = binary_inv(image) elif img_type == "trunc": data = trunc(image) elif img_type == "tozero": data = tozero(image) elif img_type == "trunc_inv": data = trunc_inv(image) else: data = return_img(image,"No Image") js = json.dumps(data) resp = Response(js, status=200, mimetype='application/json') resp.headers['Link'] = 'https://localhost/python/' return resp # return "ECHO: GET\n" if __name__ == "__main__": app.run(debug=True)
RamazanFerhatSonmez/Image-Processing-Python
rest-server.py
rest-server.py
py
4,161
python
en
code
0
github-code
36
10663938377
# -*- coding: utf-8 -*- """ Created on Fri Sep 16 22:56:22 2016 @author: Neo Rotation Componets fitting. Fitting Equation: d_pmRA = -w_x*sin(DE)*cos(RA) - w_y*sin(DE)*sin(RA) + w_z*cos(DE) d_pmDE = +w_x*sin(RA) - w_y*cos(RA) Oct 21 2016: updated by Niu """ import numpy as np sin = np.sin cos = np.cos pi = np.pi def RotationFit(pmRA,pmDE,e_pmRA,e_pmDE,RA,DE): ## Notice !!! ## unit for RA and DE are rad. ## partial of d_pmRA, d_pmDE with respect to w_x, w_y, w_z N = pmRA.size parx1 = -sin(DE)*cos(RA) pary1 = -sin(DE)*sin(RA) parz1 = cos(DE) parx2 = sin(RA) pary2 = -cos(RA) parz2 = np.zeros(N) wei1 = np.diag(e_pmRA**-2) wei2 = np.diag(e_pmDE**-2) F1T = np.vstack((parx1, pary1, parz1)) F1 = np.transpose(F1T) F2T = np.vstack((parx2, pary2, parz2)) F2 = np.transpose(F2T) a1 = np.dot(np.dot(F1T, wei1), F1) b1 = np.dot(np.dot(F1T, wei1), pmRA) a2 = np.dot(np.dot(F2T, wei2), F2) b2= np.dot(np.dot(F2T, wei2), pmDE) A = a1 + a2 b = b1 + b2 w = np.linalg.solve(A, b) cov = np.linalg.inv(A) sig = np.sqrt(cov.diagonal()) corrcoef = np.array([ cov[i,j]/sig[i]/sig[j] \ for j in range(len(w)) for i in range(len(w))]) corrcoef.resize((len(w), len(w))) return w, sig, corrcoef def Elim(pmRAs,pmDEs, e_pmRA,e_pmDE, n): a = np.abs(pmRAs) - n*e_pmRA b = np.abs(pmDEs) - n*e_pmDE indice1 = np.where(a<0) indice2 = np.where(b<0) indice = np.intersect1d(indice1, indice2) return indice #def NormalRotation(pmRA,pmDE,e_pmRA,e_pmDE,RA,DE): # w, sig, corrcoef = RotationFit(pmRA,pmDE,e_pmRA,e_pmDE,RA,DE) ### Calculate the fitting values. # wx = w[0] # wy = w[1] # wz = w[2] # pmRAf = -sin(DE)*cos(RA)*wx-sin(DE)*sin(RA)*wy+cos(DE)*wz # pmDEf = sin(RA)*wx-cos(RA)*wy ### residuals # pmRAs = pmRAf - pmRA # pmDEs = pmDEf - pmDE # ## generate the new array after eliminating outliers # n = 2.6 # indice = Elim(pmRAs,pmDEs, e_pmRA,e_pmDE, n) # npmRA = np.take(pmRA, indice) # npmDE = np.take(pmDE, indice) # nRA = np.take(RA, indice) # nDE = np.take(DE, indice) # ne_pmRA = np.take(e_pmRA, indice) # ne_pmDE = np.take(e_pmDE, indice) # w, sig, corrcoef = RotationFit(npmRA,npmDE,ne_pmRA,ne_pmDE,nRA,nDE) # return w, sig, corrcoef def MeanWeiRotation(pmRA,pmDE, RA,DE): ### First Loop, calculate the mean error without weights. N = pmRA.size w, sig, corrcoef = RotationFit(pmRA,pmDE,np.ones(N),np.ones(N),RA,DE) ## Calculate the residuals wx = w[0] wy = w[1] wz = w[2] pmRAf = -sin(DE)*cos(RA)*wx -sin(DE)*sin(RA)*wy +cos(DE)*wz pmDEf = sin(RA)*wx -cos(RA)*wy ## residuals pmRAs = pmRAf - pmRA pmDEs = pmDEf - pmDE wrmsRA = np.sqrt(np.sum(pmRAs**2)/(len(pmRAs)-1)) wrmsDE = np.sqrt(np.sum(pmDEs**2)/(len(pmRAs)-1)) wrms = np.sqrt((wrmsRA**2 + wrmsDE**2)/2) ## generate the new array after eliminating outliers n = 2.6 indice = Elim(pmRAs,pmDEs, wrms*np.ones(len(pmRAs)),wrms*np.ones(len(pmRAs)), n) npmRA = np.take(pmRA, indice) npmDE = np.take(pmDE, indice) nRA = np.take(RA, indice) nDE = np.take(DE, indice) w, sig, corrcoef = RotationFit(npmRA,npmDE,np.ones(len(npmRA)),np.ones(len(npmDE)),nRA,nDE) ## Calculate the residuals wx = w[0] wy = w[1] wz = w[2] pmRAf = -sin(DE)*cos(RA)*wx -sin(DE)*sin(RA)*wy +cos(DE)*wz pmDEf = sin(RA)*wx -cos(RA)*wy ## residuals pmRAs = pmRAf - pmRA pmDEs = pmDEf - pmDE wrmsRA = np.sqrt(np.sum(pmRAs**2)/(len(pmRAs)-1)) wrmsDE = np.sqrt(np.sum(pmDEs**2)/(len(pmRAs)-1)) wrms = np.sqrt((wrmsRA**2 + wrmsDE**2)/2) merr = wrms # ## Next, apply the weigths of 1/M_err**2 w, sig, corrcoef = RotationFit(pmRA,pmDE,np.ones(len(pmRA))*merr,\ np.ones(len(pmRA))*merr, RA, DE) # ## Calculate the residuals # wx = w[0] # wy = w[1] # wz = w[2] # # pmRAf = -sin(DE)*cos(RA)*wx-sin(DE)*sin(RA)*wy+cos(DE)*wz # pmDEf = sin(RA)*wx-cos(RA)*wy # # ## residuals # pmRAs = pmRAf - pmRA # pmDEs = pmDEf - pmDE # # ## eliminating outliers again # n = 2.6 # indice = Elim(pmRAs,pmDEs, np.ones(len(pmRA))*merr, np.ones(len(pmRA))*merr, n) # npmRA = np.take(pmRA, indice) # npmDE = np.take(pmDE, indice) # nRA = np.take(RA, indice) # nDE = np.take(DE, indice) # w, sig, corrcoef = RotationFit(npmRA,npmDE,np.ones(len(npmRA))*merr,np.ones(len(npmDE))*merr,nRA,nDE) return w, sig, corrcoef
Niu-Liu/thesis-materials
sou-selection/progs/RotationFit.py
RotationFit.py
py
4,791
python
en
code
0
github-code
36
4836908641
import socket fwq = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) fwq.bind(('localhost', 9090)) print('Начать чат! ') while True: data, addr = fwq.recvfrom(1024) recvmsg = data.decode('utf-8') if recvmsg == 'exit!': print("Участник" + str(addr) + "добровольно закончил чат с тобой, пока!") continue elif recvmsg == 'login!': print("Пользователь " + str(addr) + " регистрируется") print(str(addr) + ' client msg: ' + recvmsg) replymsg = input('Ответить: ') fwq.sendto(replymsg.encode('utf-8'), addr) fwq.close()
wwatchenjoy/python-practic-2-BogdanovDA
server.py
server.py
py
685
python
ru
code
0
github-code
36
36840226069
"""Test hook for verifying data consistency across a replica set. Unlike dbhash.py, this version of the hook runs continously in a background thread while the test is running. """ import os.path from buildscripts.resmokelib import errors from buildscripts.resmokelib.testing.hooks import jsfile from buildscripts.resmokelib.testing.hooks.background_job import _BackgroundJob, _ContinuousDynamicJSTestCase class CheckReplDBHashInBackground(jsfile.JSHook): """A hook for comparing the dbhashes of all replica set members while a test is running.""" IS_BACKGROUND = True def __init__(self, hook_logger, fixture, shell_options=None): """Initialize CheckReplDBHashInBackground.""" description = "Check dbhashes of all replica set members while a test is running" js_filename = os.path.join("jstests", "hooks", "run_check_repl_dbhash_background.js") jsfile.JSHook.__init__(self, hook_logger, fixture, js_filename, description, shell_options=shell_options) self._background_job = None def before_suite(self, test_report): """Start the background thread.""" client = self.fixture.mongo_client() # mongos does not provide storageEngine information. And the hook # run_check_repl_dbhash_background.js will check whether the storage engine of the CSRS and # replica set shards supports snapshot reads. if not client.is_mongos: server_status = client.admin.command("serverStatus") if not server_status["storageEngine"].get("supportsSnapshotReadConcern", False): self.logger.info( "Not enabling the background check repl dbhash thread because '%s' storage" " engine doesn't support snapshot reads.", server_status["storageEngine"]["name"]) return self._background_job = _BackgroundJob("CheckReplDBHashInBackground") self.logger.info("Starting the background check repl dbhash thread.") self._background_job.start() def after_suite(self, test_report, teardown_flag=None): """Signal the background thread to exit, and wait until it does.""" if self._background_job is None: return self.logger.info("Stopping the background check repl dbhash thread.") self._background_job.stop() def before_test(self, test, test_report): """Instruct the background thread to run the dbhash check while 'test' is also running.""" if self._background_job is None: return hook_test_case = _ContinuousDynamicJSTestCase.create_before_test( test.logger, test, self, self._js_filename, self._shell_options) hook_test_case.configure(self.fixture) self.logger.info("Resuming the background check repl dbhash thread.") self._background_job.resume(hook_test_case, test_report) def after_test(self, test, test_report): # noqa: D205,D400 """Instruct the background thread to stop running the dbhash check now that 'test' has finished running. """ if self._background_job is None: return self.logger.info("Pausing the background check repl dbhash thread.") self._background_job.pause() if self._background_job.exc_info is not None: if isinstance(self._background_job.exc_info[1], errors.TestFailure): # If the mongo shell process running the JavaScript file exited with a non-zero # return code, then we raise an errors.ServerFailure exception to cause resmoke.py's # test execution to stop. raise errors.ServerFailure(self._background_job.exc_info[1].args[0]) else: self.logger.error( "Encountered an error inside the background check repl dbhash thread.", exc_info=self._background_job.exc_info) raise self._background_job.exc_info[1]
mongodb/mongo
buildscripts/resmokelib/testing/hooks/dbhash_background.py
dbhash_background.py
py
4,041
python
en
code
24,670
github-code
36
37697513017
import streamlit as st from streamlit_option_menu import option_menu from pages import home, dashboard, login class MultiApp: def __init__(self): self.apps = [] def add_app(self, title, func): self.apps.append({ "title": title, "function": func }) def run(): # app = st.sidebar( with st.sidebar: app = option_menu( menu_title='Navigation', options=['Home','Dashboard','Login'], icons=['house','book','envelope'], menu_icon='cast', default_index=0, ) if app == "Home": home.app() if app == "Dashboard": dashboard.app() if app == "Login": login.app() run()
Ashwani132003/Attendace-Tracker-using-Face-recognition
main.py
main.py
py
976
python
en
code
0
github-code
36