From 24380b7be6c7985dcff6dc1a65118db4d3442bdd Mon Sep 17 00:00:00 2001 From: deepa-chaudhari Date: Tue, 20 Oct 2015 17:43:05 +0530 Subject: 2d drawing --- Connections/Shear/Finplate/ResourceFiles/icons.qrc | 2 + .../Shear/Finplate/ResourceFiles/images/colF2.png | Bin 0 -> 6246 bytes .../Shear/Finplate/ResourceFiles/images/colW3.png | Bin 0 -> 6482 bytes Connections/Shear/Finplate/drawing_2D.py | 789 +- Connections/Shear/Finplate/fin.log | 8239 +------------------- Connections/Shear/Finplate/finPlate.ui | 7 +- Connections/Shear/Finplate/finPlateMain.py | 37 +- Connections/Shear/Finplate/icons_rc.py | 7705 ++++++++++-------- Connections/Shear/Finplate/ui_finPlate.py | 14 +- finfront.svg | 2 +- saveINPUT.txt | 10 +- test.svg | 2 + utilities/__init__.py | 2 +- 13 files changed, 5159 insertions(+), 11650 deletions(-) create mode 100644 Connections/Shear/Finplate/ResourceFiles/images/colF2.png create mode 100644 Connections/Shear/Finplate/ResourceFiles/images/colW3.png create mode 100644 test.svg diff --git a/Connections/Shear/Finplate/ResourceFiles/icons.qrc b/Connections/Shear/Finplate/ResourceFiles/icons.qrc index 89acb9f..a1f386d 100644 --- a/Connections/Shear/Finplate/ResourceFiles/icons.qrc +++ b/Connections/Shear/Finplate/ResourceFiles/icons.qrc @@ -16,5 +16,7 @@ images/X-Y.png images/Z-X.png images/Z-Y.png + images/colF2.png + images/colW3.png diff --git a/Connections/Shear/Finplate/ResourceFiles/images/colF2.png b/Connections/Shear/Finplate/ResourceFiles/images/colF2.png new file mode 100644 index 0000000..2a21750 Binary files /dev/null and b/Connections/Shear/Finplate/ResourceFiles/images/colF2.png differ diff --git a/Connections/Shear/Finplate/ResourceFiles/images/colW3.png b/Connections/Shear/Finplate/ResourceFiles/images/colW3.png new file mode 100644 index 0000000..6e04994 Binary files /dev/null and b/Connections/Shear/Finplate/ResourceFiles/images/colW3.png differ diff --git a/Connections/Shear/Finplate/drawing_2D.py b/Connections/Shear/Finplate/drawing_2D.py index 0b1ee80..83fb8a7 100644 --- a/Connections/Shear/Finplate/drawing_2D.py +++ b/Connections/Shear/Finplate/drawing_2D.py @@ -7,152 +7,769 @@ import svgwrite from svgwrite import mm from PyQt4.QtCore import QString import numpy as np +from numpy import math class Fin2DCreatorFront(object): def __init__(self, inputObj,ouputObj,dictBeamdata,dictColumndata): - - beam_T = float(dictBeamdata[QString("T")]) - D = int (dictBeamdata[QString("D")]) - col_B = int(dictColumndata[QString("B")]) - col_tw = float(dictColumndata[QString("tw")]) - col_R1 = float(dictColumndata[QString("R1")]) + self.beam_T = float(dictBeamdata[QString("T")]) + self.col_T = float(dictColumndata[QString("T")]) + self.D_beam = int (dictBeamdata[QString("D")]) + self.D_col = int (dictColumndata[QString("D")]) + self.col_B = int(dictColumndata[QString("B")]) + self.col_tw = float(dictColumndata[QString("tw")]) + self.col_Designation = dictColumndata[QString("Designation")] + self.beam_Designation = dictBeamdata[QString("Designation")] + beam_R1 = float(dictBeamdata[QString("R1")]) + self.R1 = beam_R1 plate_ht= ouputObj['Plate']['height'] plate_width = ouputObj['Plate']['width'] weld_len = ouputObj['Plate']['height'] weld_thick = ouputObj['Weld']['thickness'] self.bolt_dia = inputObj["Bolt"]["Diameter (mm)"] + self.connectivity = inputObj['Member']['Connectivity'] self.pitch = ouputObj['Bolt']["pitch"] self.gauge = ouputObj['Bolt']["gauge"] self.end_dist = ouputObj['Bolt']["enddist"] self.edge_dist = ouputObj['Bolt']["edge"] self.no_of_rows = ouputObj['Bolt']["numofrow"] self.no_of_col = ouputObj['Bolt']["numofcol"] + self.plate_thick = inputObj['Plate']["Thickness (mm)"] self.col_L = 1000 self.beam_L = 500 + print inputObj - self.A2 =(col_B,(self.col_L-D)/2) - self.B = (col_B,0) + + self.A2 =(self.col_B,(self.col_L-self.D_beam)/2) + self.B = (self.col_B,0) self.A = (0,0) self.D = (0,self.col_L) - self.C = (col_B,self.col_L) - self.B2 = (col_B,(D + self.col_L)/2) + self.C = (self.col_B,self.col_L) + self.B2 = (self.col_B,(self.D_beam + self.col_L)/2) - ptEx = (col_B-col_tw)/2 + ptEx = (self.col_B-self.col_tw)/2 ptEy = 0.0 self.E = (ptEx,ptEy) - ptHx = (col_B-col_tw)/2 + + ptHx = (self.col_B-self.col_tw)/2 ptHy = self.col_L self.H = (ptHx,ptHy) - ptFx = (col_B + col_tw)/2 + + ptFx = (self.col_B + self.col_tw)/2 ptFy = 0 self.F = (ptFx,ptFy) - ptGx = (col_B + col_tw)/2 + + ptGx = (self.col_B + self.col_tw)/2 ptGy = self.col_L self.G = (ptGx,ptGy) #Draw rectangle for finPlate PRSU - ptPx = (col_B + col_tw)/2 - ptPy = ((self.col_L - D)/2) + (beam_T + col_R1 + 3) + ptPx = (self.col_B + self.col_tw)/2 + ptPy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) self.P = (ptPx,ptPy) self.ptP = np.array([ptPx,ptPy]) + self.U = self.ptP + plate_ht* np.array([0,1]) + + ptRx = (self.col_B + self.col_tw)/2 + plate_width + ptRy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.R = (ptRx,ptRy) + + ptSx = ptRx + ptSy = ptPy + plate_ht + self.S = (ptSx,ptSy) + self.plate_ht = plate_ht self.plate_width = plate_width self.weld_thick = weld_thick self.weld_len = weld_len # Draw Rectangle for weld - ptCx1 = ((col_B + col_tw)/2 + 20) - ptCy1 = ((self.col_L - D)/2) + (beam_T + col_R1 + 3) - self.C1 =(ptCx1,ptCy1) - ptAx1 = ptCx1 - ptAy1 = ((self.col_L - D)/2) - self.A1 = (ptAx1,ptAy1) + ptC1x = ((self.col_B + self.col_tw)/2 + 20) + ptC1y = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.C1 =(ptC1x,ptC1y) - ptAx3 = ptCx1 + self.beam_L - ptAy3 = ptAy1 - self.A3 = (ptAx3,ptAy3) + ptA1x = ((self.col_B + self.col_tw)/2 + 20) + ptA1y = ((self.col_L - self.D_beam)/2) + self.A1 = (ptA1x,ptA1y) - ptBx3 = ptAx3 - ptBy3 = ((self.col_L + D)/2 ) - self.B3 = (ptBx3,ptBy3) + ptA3x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptA3y = ((self.col_L - self.D_beam)/2) + self.A3 = (ptA3x,ptA3y) - ptBx1 = ptCx1 - ptBy1 = ptBy3 - self.B1 = (ptBx1,ptBy1) + ptB3x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptB3y = ((self.col_L + self.D_beam)/2 ) + self.B3 = (ptB3x,ptB3y) - ptC2x= ptCx1 - ptC2y = ptCy1 + plate_ht + ptB1x = ((self.col_B + self.col_tw)/2 + 20) + ptB1y = ((self.col_L + self.D_beam)/2 ) + self.B1 = (ptB1x,ptB1y) + + ptC2x= ((self.col_B + self.col_tw)/2 + 20) + ptC2y = ptC1y + plate_ht self.C2 = (ptC2x,ptC2y) - ptAx5 = ptAx1 - ptAy5 = ptAy1 + beam_T - self.A5 = ptAx5,ptAy5 + ptA5x = ((self.col_B + self.col_tw)/2 + 20) + ptA5y = ((self.col_L - self.D_beam)/2) + self.beam_T + self.A5 = ptA5x,ptA5y - ptAx4 = ptAx3 - ptAy4 = ptAy3 + beam_T - self.A4 = (ptAx4,ptAy4) + ptA4x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptA4y = ((self.col_L - self.D_beam)/2) + self.beam_T + self.A4 = (ptA4x,ptA4y) - ptBx4 = ptBx3 - ptBy4 = ptBy3 - beam_T - self.B4 = (ptBx4,ptBy4) + ptB4x = ((self.col_B + self.col_tw)/2 + 20) + self.beam_L + ptB4y = ((self.col_L + self.D_beam)/2 ) - self.beam_T + self.B4 = (ptB4x,ptB4y) - ptBx5 = ((col_B + col_tw)/2) + 20 - ptBy5 = ptBy3 - beam_T + ptBx5 = ((self.col_B + self.col_tw)/2) + 20 + ptBy5 = ((self.col_L + self.D_beam)/2 ) - self.beam_T self.B5 = (ptBx5,ptBy5) - ptP1x = ((col_B + col_tw)/2 + self.edge_dist) - ptP1y = ((self.col_L - D)/2 +(col_tw + col_R1 + 3)+ self.end_dist) + ptP1x = ((self.col_B + self.col_tw)/2 + self.edge_dist) + ptP1y = ((self.col_L - self.D_beam)/2 +(self.col_tw + self.R1 + 3)+ self.end_dist) self.P1 = (ptP1x,ptP1y) - ptP2x = ptP1x - ptP2y = ptP1y + self.pitch - self.P2 = (ptP1x,ptP1y) + + #### Column flange points for column flange beam web connectivity ##### + + fromPlate_pt = self.D_col + 20 # 20 mm clear distance between colume and beam + ptFAx = 0 + ptFAy = 0 + self.FA = (ptFAx,ptFAy) + + ptFEx = self.col_T + ptFEy = 0.0 + self.FE =(ptFEx,ptFEy) + + ptFFx = self.D_col - self.col_T + ptFFy = 0.0 + self.FF =(ptFFx,ptFFy) + + ptFBx = self.D_col + ptFBy = 0.0 + self.FB =(ptFBx,ptFBy) + + ptFCx = self.D_col + ptFCy = self.col_L + self.FC = (ptFBx,ptFCy) + + ptFGx = self.D_col - self.col_T + ptFGy = self.col_L + self.FG =(ptFGx,ptFGy) + + ptFHx = self.col_T + ptFHy = self.col_L + self.FH =(ptFHx,ptFHy) + + ptFDx = 0.0 + ptFDy = self.col_L + self.FD =(ptFDx,ptFDy) - ptP3x = ptP1x - ptP3y = ptP2y + self.pitch - self.P3 = (ptP1x,ptP1y) - # points for diamension + ptFPx = self.D_col + ptFPy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.FP = (ptFPx,ptFPy) + self.ptFP = np.array([ptFPx,ptFPy]) + + ptFUx = self.D_col + ptFUy = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.plate_ht + self.FU = (ptFUx,ptFUy) + + ptFC1x = ptFPx + 20 + ptFC1y = ptFPy + self.FC1 = (ptFC1x,ptFC1y) + + #FC1 + ptFC1x = fromPlate_pt + ptFC1y = ((self.col_L - self.D_beam)/2) + (self.beam_T + beam_R1 + 3) + self.FC1 = (ptFC1x, ptFC1y) + #FC2 + ptFC2x = fromPlate_pt + ptFC2y = ((self.col_L - self.D_beam)/2) +( self.beam_T + beam_R1 + 3) + self.plate_ht + self.FC2 = (ptFC2x, ptFC2y) + #FA1 + ptFA1x = fromPlate_pt + ptFA1y = (self.col_L - self.D_beam)/2 + self.FA1 = ptFA1x, ptFA1y + + #FA4 + ptFA4x = fromPlate_pt + ptFA4y = (self.col_L - self.D_beam)/2 + self.beam_T + self.FA4 = ptFA4x, ptFA4y + + #FA2 + ptFA2x = ptFC1x + self.beam_L + ptFA2y = ptFA1y + self.FA2 = ptFA2x, ptFA2y + + #FA3 + ptFA3x = fromPlate_pt + self.beam_L + ptFA3y = (((self.col_L - self.D_beam)/2 ) + self.beam_T) + self.FA3 = ptFA3x, ptFA3y + + #FB3 + ptFB3x = fromPlate_pt + self.beam_L + ptFB3y = ((self.col_L - self.D_beam)/2 + self.D_beam) - self.beam_T + self.FB3 = (ptFB3x, ptFB3y) + + + #FB2 + ptFB2x = fromPlate_pt + self.beam_L + ptFB2y = (self.col_L -self.D_beam)/2 + self.D_beam + self.FB2 = ptFB2x, ptFB2y + + #FB1 + ptFB1x = self.D_col + 20 + ptFB1y = (self.col_L - self.D_beam)/2 + self.D_beam + self.FB1 = ptFB1x, ptFB1y + + #FB4 + ptFB4x = fromPlate_pt + ptFB4y = ((self.col_L - self.D_beam)/2 + self.D_beam) - self.beam_T + self.FB4 = ptFB4x, ptFB4y + + # points for diamension + + + def callBWBWfront(self): + pass + + def saveToSvg(self): - dwg = svgwrite.Drawing('finfront.svg', profile='tiny') - dwg.add(dwg.polyline(points=[(self.A2),(self.B),(self.A),(self.D),(self.C) ,(self.B2)], stroke='blue', fill='none', stroke_width=2.5)) - dwg.add(dwg.line((self.E),(self.H)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.line((self.F),(self.G)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.rect(insert=(self.P), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) - dwg.add(dwg.rect(insert=(self.P), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) - #C1,A1,A3,B3,B1,C2 - dwg.add(dwg.polyline(points=[(self.C1),(self.A1),(self.A3),(self.B3),(self.B1),(self.C2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) - #C1,C2 - dwg.add(dwg.line((self.C1),(self.C2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) - #A2,B2 - dwg.add(dwg.line((self.A2),(self.B2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) - dwg.add(dwg.line((self.A5),(self.A4)).stroke('blue',width = 2.5,linecap = 'square')) - dwg.add(dwg.line((self.B5),(self.B4)).stroke('blue',width = 2.5,linecap = 'square')) - nr = self.no_of_rows - nc = self.no_of_col - bolt_r = self.bolt_dia/2 - for i in range(1,(nr+1)): - for j in range (1,(nc+1)): - pt = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ - (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) - dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill ='black',stroke_width=1.5)) - ptA = pt - (bolt_r + 4) * np.array([0,1]) - ptB = pt + (bolt_r + 4) * np.array([0,1]) - #dwg.add(dwg.line((ptA),(ptB)).stroke('blue',width = 2.0,linecap = 'square')) - ptC = pt - (bolt_r + 4) * np.array([1,0]) - PtD = pt + (bolt_r + 4) * np.array([1,0]) - dwg.add(dwg.line((ptC),(PtD)).stroke('blue',width = 2.0,linecap = 'square')) - ptE = self.ptP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) - ptF = ptE + self.plate_ht * np.array([0,1]) - dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + ''' It returns the svg drawing depending upon connectivity + CFBW = Column Flange Beam Web + CWBW = Column Web Beam Web + BWBW = Beam Web Beam Web + ''' + if self.connectivity == 'Column flange-Beam web': + self.callCFBWfront() + + elif self.connectivity == 'Column web-Beam web': + self.callCWBWfront() + + else: + self.callBWBWfront() + + def callCFBWfront(self): + + dwg = svgwrite.Drawing('finfront.svg', profile='full') + smarker = dwg.marker(insert=(-2.5,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-10,0), (0,-3)], fill='black')) + + emarker = dwg.marker(insert=(2.5,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (10,0), (0,-3)], fill='black')) + dwg.add(dwg.polyline(points = [(self.FA),(self.FB),(self.FC),(self.FD),(self.FA)],stroke = 'blue',fill = 'none',stroke_width = 2.5)) + dwg.add(dwg.line((self.FE),(self.FH)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.FF),(self.FG)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.polyline(points=[(self.FC1),(self.FA1),(self.FA2),(self.FB2),(self.FB1),(self.FC2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) + dwg.add(dwg.line((self.FC1),(self.FC2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + dwg.add(dwg.line((self.FA4),(self.FA3)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.FB4),(self.FB3)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.rect(insert=(self.FP), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.FP), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.FP), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) + nr = self.no_of_rows + nc = self.no_of_col + bolt_r = self.bolt_dia/2 + ptList = [] + + for i in range(1,(nr+1)): + colList = [] + for j in range (1,(nc+1)): + pt = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) + dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill = 'none',stroke_width=1.5)) + ptC = pt - (bolt_r + 4) * np.array([1,0]) + PtD = pt + (bolt_r + 4) * np.array([1,0]) + dwg.add(dwg.line((ptC),(PtD)).stroke('red',width = 2.0,linecap = 'square')) + ptE = self.ptFP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) + ptF = ptE + self.plate_ht * np.array([0,1]) + dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + colList.append(pt) + ptList.append(colList) + + pitchPts =[] + for row in ptList: + if len(row) > 0: + pitchPts.append(row[0]) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 105, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array(pitchPts[len( pitchPts)-1]), str(len(pitchPts)-1)+ u' \u0040'+ str(self.pitch) + "mm c/c", params) + + # End Distance from the starting point of plate Information + edgPtx = (self.D_col) + self.edge_dist + edgPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + edgPt = (edgPtx,edgPty) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array([edgPtx,edgPty]), str(self.end_dist) + "mm", params) + + # End Distance from plate end point. + edgPt1x = edgPtx + edgPt1y = edgPty + self.plate_ht + edgPt1 = (edgPt1x,edgPt1y) + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[len( pitchPts)-1]), np.array([edgPt1x,edgPt1y]), str(self.end_dist) + "mm", params) + + # Edge Distance information + pt1A = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col)* self.gauge * np.array([1,0]) + pt1B = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col)* self.gauge * np.array([1,0]) + self.edge_dist * np.array([0,1]) + offset = self.end_dist + self.beam_T + self.R1 +3 + params = {"offset": self.D_col + self.edge_dist + 50, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, pt1A, pt1B, str(self.edge_dist) + "mm", params) + + # Draws faint line to show dimensions + ptA = self.FP + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + ptB = (ptBx,ptBy) + self.drawFaintLine(ptA, ptB, dwg) + + pt1 = np.array(pitchPts[0]) + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + pt2 = (ptBx,ptBy) + self.drawFaintLine(pt1, pt2, dwg) + + ptOne = np.array(pitchPts[len( pitchPts)-1]) + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + (self.plate_ht -self.end_dist) + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + ptOne = self.FU + ptBx = -30 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + # Beam Information + beam_ptx = self.D_col + 20 + (self.beam_L* 3/4) + beam_py = ((self.col_L - self.D_beam)/2) + self.D_beam + beam_pt = np.array([beam_ptx,beam_py]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = "Beam " + self.beam_Designation + textDown = "" + self.drawOrientedArrow(dwg, beam_pt, theta, "SE", offset, textUp, textDown) + + # Column Designation + ptx = self.D_col /2 + pty = 0 + pt = np.array([ptx,pty]) + theta = 30 + offset = self.col_L /10 + textUp = "Column " + self.col_Designation + textDown = "" + self.drawOrientedArrow(dwg, pt, theta, "NW", offset, textUp,textDown) + + # Weld Information + weldPtx = (self.D_col) + weldPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + weldPt = np.array([weldPtx,weldPty]) + theta = 45 + offset = self.col_B + textUp = " z " + str(self.weld_thick) + " mm" + textDown = u"\u25C1" + self.drawOrientedArrow(dwg, weldPt, theta, "NW", offset, textUp, textDown) + + # Bolt Information + bltPtx = self.FP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) +(self.no_of_col-1) * self.gauge * np.array([1,0]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = str(self.no_of_rows) + " nos " + str(self.bolt_dia) + u'\u00d8' + " holes" + textDown = "for M20 bolts (grade 8.8)" + self.drawOrientedArrow(dwg, bltPtx, theta, "NE", offset, textUp,textDown) + + # Plate Information + pltPtx = self.D_col + self.plate_width /2 + pltPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + pltPt = np.array([pltPtx,pltPty]) + theta = 45 + offset = (self.D_beam)/2 + textUp = "PLT. " + str(self.plate_ht) +"X" + str(self.plate_width) +"X" + str(self.plate_thick) + textDown = "" + self.drawOrientedArrow(dwg, pltPt, theta, "SE", offset, textUp, textDown) + + dwg.save() + print"Saved CFBWfront" + + + + def callCWBWfront(self): + + dwg = svgwrite.Drawing('finfront.svg', profile='full') + smarker = dwg.marker(insert=(-2.5,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-10,0), (0,-3)], fill='black')) + + emarker = dwg.marker(insert=(2.5,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (10,0), (0,-3)], fill='black')) + + dwg.add(dwg.polyline(points=[(self.A2),(self.B),(self.A),(self.D),(self.C) ,(self.B2)], stroke='blue', fill='none', stroke_width=2.5)) + dwg.add(dwg.line((self.E),(self.H)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.F),(self.G)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.rect(insert=(self.P), size=(self.plate_width, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.5)) + dwg.add(dwg.rect(insert=(self.P), size=(self.weld_thick, self.plate_ht),fill = 'none', stroke='blue', stroke_width=2.0)) + #C1,A1,A3,B3,B1,C2 + dwg.add(dwg.polyline(points=[(self.C1),(self.A1),(self.A3),(self.B3),(self.B1),(self.C2)],stroke = 'blue',fill= 'none',stroke_width =2.5)) + #C1,C2 + dwg.add(dwg.line((self.C1),(self.C2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + #A2,B2 + dwg.add(dwg.line((self.A2),(self.B2)).stroke('red',width = 2.5,linecap = 'square').dasharray(dasharray = ([5,5]))) + dwg.add(dwg.line((self.A5),(self.A4)).stroke('blue',width = 2.5,linecap = 'square')) + dwg.add(dwg.line((self.B5),(self.B4)).stroke('blue',width = 2.5,linecap = 'square')) + nr = self.no_of_rows + nc = self.no_of_col + bolt_r = self.bolt_dia/2 + ptList = [] + + for i in range(1,(nr+1)): + colList = [] + for j in range (1,(nc+1)): + pt = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (i-1) * self.pitch * np.array([0,1]) + (j-1) * self.gauge * np.array([1,0]) + dwg.add(dwg.circle(center=(pt), r = bolt_r, stroke='blue',fill = 'none',stroke_width=1.5)) + ptC = pt - (bolt_r + 4) * np.array([1,0]) + PtD = pt + (bolt_r + 4) * np.array([1,0]) + dwg.add(dwg.line((ptC),(PtD)).stroke('red',width = 2.0,linecap = 'square')) + ptE = self.ptP + self.edge_dist * np.array([1,0]) +(j-1) * self.gauge * np.array([1,0]) + ptF = ptE + self.plate_ht * np.array([0,1]) + dwg.add(dwg.line((ptE),(ptF)).stroke('blue',width = 1.5,linecap = 'square').dasharray(dasharray = ([20, 5, 1, 5]))) + colList.append(pt) + ptList.append(colList) + + pitchPts =[] + for row in ptList: + if len(row) > 0: + pitchPts.append(row[0]) + +# for i in range (len( pitchPts)-1): +# params = {"offset": self.col_B + 10, "textoffset": 35, "lineori": "right", "endlinedim":10} +# self.draw_dimension_outerArrow(dwg, np.array(pitchPts[i]), np.array(pitchPts[i + 1]), str(self.pitch) + "mm", params) + params = {"offset": self.col_B + 30, "textoffset": 105, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array(pitchPts[len( pitchPts)-1]), str(len(pitchPts)-1)+ u' \u0040'+ str(self.pitch) + "mm c/c", params) + + # End Distance from the starting point of plate Information + edgPtx = (self.col_B + self.col_tw)/2 + self.edge_dist + edgPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + edgPt = (edgPtx,edgPty) + params = {"offset": self.col_B + 30, "textoffset": 75, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[0]), np.array([edgPtx,edgPty]), str(self.end_dist) + "mm", params) + + # Draw Faint line for dimenssions + ptOne = self.P + ptTwox = -45 + ptTwoy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + ptTwo = (ptTwox,ptTwoy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + pt1 = np.array(pitchPts[0]) + ptTwox = -45 + ptTwoy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + pt2 = (ptTwox,ptTwoy) + self.drawFaintLine(pt1, pt2, dwg) + + ptA = np.array(pitchPts[len( pitchPts)-1]) + ptBx = -45 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + (self.plate_ht -self.end_dist) + ptB = (ptBx,ptBy) + self.drawFaintLine(ptA, ptB, dwg) + + ptOne = self.U + ptBx = -45 + ptBy = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + ptTwo = (ptBx,ptBy) + self.drawFaintLine(ptOne, ptTwo, dwg) + + # End Distance from plate end point. + edgPt1x = edgPtx + edgPt1y = edgPty + self.plate_ht + edgPt1 = (edgPt1x,edgPt1y) + params = {"offset": self.col_B + 30, "textoffset": 75, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(pitchPts[len( pitchPts)-1]), np.array([edgPt1x,edgPt1y]), str(self.end_dist) + "mm", params) + + # Gauge Distance Information + gaugePts = ptList[0] + for i in range (len( gaugePts)-1): + offset_dist = self.D_beam + 300 + params = {"offset": offset_dist, "textoffset": 35, "lineori": "right", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array(gaugePts[i]), np.array(gaugePts[i + 1]), str(int(self.gauge)) + "mm", params) + + if len(ptList[(len(ptList)-1)]) > 1: + ptA = self.ptP + self.edge_dist * np.array([1,0]) + self.plate_ht * np.array([0,1]) + ptB = ptA + (self.D_beam + 80)* np.array([0,1]) + self.drawFaintLine(ptA, ptB, dwg) + + ptC = self.ptP + self.edge_dist * np.array([1,0]) + self.plate_ht * np.array([0,1]) +self.gauge * np.array([1,0]) + ptD = ptC + (self.D_beam + 80)* np.array([0,1]) + self.drawFaintLine(ptC, ptD, dwg) + + # End Distance Information + boltPt = self.ptFP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) + \ + (self.no_of_col-1) * self.gauge * np.array([1,0]) + endPtx = (self.col_B + self.col_tw)/2 + self.plate_width + engPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.end_dist + params = {"offset": 1, "textoffset": 50, "lineori": "left", "endlinedim":10} + self.draw_dimension_outerArrow(dwg, np.array([endPtx,engPty]),boltPt, str(int(self.edge_dist)) + "mm", params) + + # Plate Width Information + pltPtx = (self.col_B + self.col_tw)/2 + self.plate_width /2 + pltPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + self.plate_ht + pltPt = np.array([pltPtx,pltPty]) + theta = 45 + offset = (self.D_beam)/2 + textUp = "PLT. " + str(int(self.plate_ht)) +"X" + str(int(self.plate_width)) +"X" + str(int(self.plate_thick)) + textDown = "" + self.drawOrientedArrow(dwg, pltPt, theta, "SE", offset, textUp, textDown) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) + +# params["lineori"] = "left" +# params["offset"] = self.col_B + 80 +# params["textoffset"] = 60 +# self.draw_dimension_outerArrow(dwg, np.array(self.S), np.array(self.R), str(self.plate_ht) + "mm", params) + + params = {"offset": 20, "textoffset": 10, "lineori": "right", "endlinedim":10,"arrowlen":50} + ptA = (np.array(self.B1) + np.array(self.B3)) * 0.5 + ptB = (np.array(self.B5) + np.array(self.B4)) * 0.5 + #self.draw_dimension_innerArrow(dwg, ptA, ptB, str(self.beam_T), params) + + # Column Designation + ptx = self.col_B /2 + pty = 0 + pt = np.array([ptx,pty]) + theta = 30 + offset = self.col_L /10 + textUp = "Column " + self.col_Designation + textDown = "" + self.drawOrientedArrow(dwg, pt, theta, "NW", offset, textUp,textDown) + + # Bolt Information + bltPtx = self.ptP + self.edge_dist * np.array([1,0]) + self.end_dist * np.array ([0,1]) +(self.no_of_col-1) * self.gauge * np.array([1,0]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = str(self.no_of_rows) + " nos " + str(self.bolt_dia) + u'\u00d8' + " holes" + textDown = "for M20 bolts (grade 8.8)" + self.drawOrientedArrow(dwg, bltPtx, theta, "NE", offset, textUp,textDown) + + # Beam Information + beam_ptx = self.col_B + 20 + (self.beam_L/2) + beam_py = ((self.col_L - self.D_beam)/2) + self.D_beam + beam_pt = np.array([beam_ptx,beam_py]) + theta = 45 + offset = (self.D_beam * 3)/8 + textUp = "Beam " + self.beam_Designation + textDown = "" + self.drawOrientedArrow(dwg, beam_pt, theta, "SE", offset, textUp, textDown) + + # Weld Information + weldPtx = (self.col_B + self.col_tw)/2 + weldPty = ((self.col_L - self.D_beam)/2) + (self.beam_T + self.R1 + 3) + weldPt = np.array([weldPtx,weldPty]) + theta = 45 + offset = self.col_B + textUp = " z " + str(self.weld_thick) + " mm" + textDown = "" + + self.drawOrientedArrow(dwg, weldPt, theta, "NW", offset, textUp, textDown) + + + dwg.save() + print"Saved" + + + #,dimelinePt1,dimelinePt2,orient,s_arrow,e_arrow + def draw_dimension_outerArrow(self, dwg, pt1, pt2, text, params): + ''' + :param dwg + :type + :param: pt1 + :type NumPy Array + :param pt2 + :type NumPy Array + :param text + :type + + params["offset"] : offset of the dimension line + params["textoffset"]: offset of text from dimension line + params["lineori"]: "right"/"left" + params["endlinedim"]:dimension line at the end of the outer arrow. + ''' + #defParams = {"offset": 10, "textoffset": 10, "lineori": "right"}defParams = {} + + + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + emarker = dwg.marker(insert=(8,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (8,0), (0,-3)], fill='black')) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) - dwg.save() - print"Saved" + lineVec = pt2 - pt1 # [a, b] + normalVec = np.array([-lineVec[1], lineVec[0]]) # [-b, a] + normalUnitVec = self.normalize(normalVec) + if(params["lineori"] == "left"): + normalUnitVec = -normalUnitVec + # Q1 = pt1 + params["offset"] * normalUnitVec + # Q2 = pt2 + params["offset"] * normalUnitVec + Q1 = pt1 + params["offset"] * normalUnitVec + Q2 = pt2 + params["offset"] * normalUnitVec + line = dwg.add(dwg.line(Q1, Q2).stroke('black', width = 2.5, linecap = 'square')) + line['marker-start'] = smarker.get_funciri() + line['marker-end'] = emarker.get_funciri() + + Q12mid = 0.5 * (Q1 + Q2) + txtPt = Q12mid + params["textoffset"] * normalUnitVec + dwg.add(dwg.text(text, insert=(txtPt), fill='black',)) + + L1 = Q1 + params["endlinedim"] * normalUnitVec + L2 = Q1 + params["endlinedim"]* (-normalUnitVec) + dwg.add(dwg.line(L1,L2).stroke('black',width = 2.5,linecap = 'square')) + L3 = Q2 + params["endlinedim"] * normalUnitVec + L4 = Q2 + params["endlinedim"]* (-normalUnitVec) + dwg.add(dwg.line(L3,L4).stroke('black',width = 2.5,linecap = 'square')) + + def normalize(self, vec): + a = vec[0] + b = vec[1] + mag = math.sqrt(a * a + b * b) + return vec / mag + + def draw_dimension_innerArrow(self, dwg, ptA, ptB, text, params): + + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + emarker = dwg.marker(insert=(8,0), size=(10,10), orient="auto") + emarker.add(dwg.polyline([(2.5,0), (0,3), (8,0), (0,-3)], fill='black')) + + dwg.defs.add(emarker) + dwg.defs.add(smarker) + + u = ptB - ptA # [a, b] + uUnit = self.normalize(u) + + vUnit = np.array([-uUnit[1], uUnit[0]]) # [-b, a] + + A1 = ptA + params["endlinedim"] * vUnit + A2 = ptA - params["endlinedim"]* (-vUnit) + dwg.add(dwg.line(A1,A2).stroke('black',width = 2.5,linecap = 'square')) + B1 = ptB + params["endlinedim"] * vUnit + B2 = ptB - params["endlinedim"]* (-vUnit) + dwg.add(dwg.line(B1,B2).stroke('black',width = 2.5,linecap = 'square')) + A3 = ptA - params["arrowlen"]* uUnit + B3 = ptB + params["arrowlen"]* uUnit + + line = dwg.add(dwg.line(A3, ptA).stroke('black', width = 2.5, linecap = 'square')) + line['marker-end'] = emarker.get_funciri() + line = dwg.add(dwg.line(B3, ptB).stroke('black', width = 2.5, linecap = 'square')) + + line['marker-end'] = emarker.get_funciri() + txtPt = A3 + params["textoffset"] * vUnit + dwg.add(dwg.text(text, insert=(txtPt), fill='black',)) + + pass + + def drawArrow(self,line,s_arrow,e_arrow): + line['marker-start'] = s_arrow.get_funciri() + line['marker-end'] = e_arrow.get_funciri() + + def drawStartArrow(self,line,s_arrow): + line['marker-start'] = s_arrow.get_funciri() + + def drawEndArrow(self,line,e_arrow): + line['marker-end'] = e_arrow.get_funciri() + + + def drawOrientedArrow(self, dwg, pt, theta, orientation, offset, textUp,textDown): + ''' + Drawing an arrow on given direction + ''' + #Right Up. + theta = math.radians(theta) + charWidth = 10 + xVec = np.array([1, 0]) + yVec = np.array([0, 1]) + + p1 = pt + lengthA = offset / math.sin(theta) + + arrowVec = None + if(orientation == "NE"): + arrowVec = np.array([-math.cos(theta), math.sin(theta)]) + elif(orientation == "NW"): + arrowVec = np.array([math.cos(theta), math.sin(theta)]) + elif(orientation == "SE"): + arrowVec = np.array([-math.cos(theta), -math.sin(theta)]) + elif(orientation == "SW"): + arrowVec = np.array([math.cos(theta), -math.sin(theta)]) + + p2 = p1 - lengthA * arrowVec + + text = textDown if len(textDown) > len(textUp) else textUp + lengthB = len(text) * charWidth + + labelVec = None + if(orientation == "NE"): + labelVec = -xVec + elif(orientation == "NW"): + labelVec = xVec + elif(orientation == "SE"): + labelVec = -xVec + elif(orientation == "SW"): + labelVec = xVec + + + p3 = p2 + lengthB * (-labelVec) + +# if case == "weld": +# pt = lengthB /2 (-labelVec) + + txtOffset = 15 + offsetVec = - yVec + + txtPtUp = None + if(orientation == "NE"): + txtPtUp = p2 + 0.1 * lengthB * (-labelVec) + txtOffset * offsetVec + txtPtDwn = p2 -0.1 * lengthB * (labelVec) - txtOffset * offsetVec + elif(orientation == "NW"): + txtPtUp = p3 + 0.1 * lengthB * labelVec + txtOffset * offsetVec + txtPtDwn = p3 - 0.1 * lengthB * labelVec - txtOffset * offsetVec + elif(orientation == "SE"): + txtPtUp = p2 + 0.1 * lengthB * (-labelVec) + txtOffset * offsetVec + txtPtDwn = p2 - 0.1 * lengthB * (labelVec) - txtOffset * offsetVec + elif(orientation == "SW"): + txtPtUp = p3 + 0.1 * lengthB * labelVec + txtOffset * offsetVec + txtPtDwn = p3 - 0.1 * lengthB * labelVec - txtOffset * offsetVec + + #line = dwg.add(dwg.line(p1, p2, p3).stroke('black', width = 2.5, linecap = 'square')) + line = dwg.add(dwg.polyline(points=[p1, p2, p3], fill= 'none', stroke='black', stroke_width = 2.5)) + smarker = self.addSMarker(dwg) + line['marker-start'] = smarker.get_funciri() + + dwg.add(dwg.text(textUp, insert=(txtPtUp), fill='black',font_family = "sans-serif",font_size = 12)) + dwg.add(dwg.text(textDown, insert=(txtPtDwn), fill='black',font_family = "sans-serif",font_size = 16)) + + def addSMarker(self, dwg): + ''' + Draws start arrow to given line + ''' + smarker = dwg.marker(insert=(-8,0), size=(10,10), orient="auto") + smarker.add(dwg.polyline([(-2.5,0), (0,3), (-8,0), (0,-3)], fill='black')) + dwg.defs.add(smarker) + return smarker + + def drawFaintLine(self,ptOne,ptTwo,dwg): + ''' + Draw faint line to show dimensions. + ''' + dwg.add(dwg.line(ptOne,ptTwo).stroke('#D8D8D8',width = 2.5,linecap = 'square')) + + diff --git a/Connections/Shear/Finplate/fin.log b/Connections/Shear/Finplate/fin.log index 2cfbd93..6b8c338 100644 --- a/Connections/Shear/Finplate/fin.log +++ b/Connections/Shear/Finplate/fin.log @@ -1,8897 +1,950 @@
- Tue, 07 Jul 2015 16:15:26 + Thu, 01 Oct 2015 15:37:28 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:26 + Thu, 01 Oct 2015 15:37:28 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:15:26 + Thu, 01 Oct 2015 15:37:28 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:26 + Thu, 01 Oct 2015 15:37:28 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:15:38 + Thu, 01 Oct 2015 15:39:26 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:38 + Thu, 01 Oct 2015 15:39:26 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:15:38 + Thu, 01 Oct 2015 15:39:26 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:38 + Thu, 01 Oct 2015 15:39:26 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:15:43 + Thu, 01 Oct 2015 15:40:31 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:43 + Thu, 01 Oct 2015 15:40:31 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:15:43 + Mon, 12 Oct 2015 16:22:07 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:15:43 + Mon, 12 Oct 2015 16:22:07 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:16:28 + Mon, 12 Oct 2015 16:22:07 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:16:28 + Mon, 12 Oct 2015 16:22:07 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:23:49 + Mon, 12 Oct 2015 17:37:55 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:23:49 + Mon, 12 Oct 2015 17:37:55 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:23:49 + Mon, 12 Oct 2015 17:37:55 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:23:49 + Mon, 12 Oct 2015 17:37:55 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:24:01 + Mon, 12 Oct 2015 17:39:46 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:24:01 + Mon, 12 Oct 2015 17:39:46 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:25:45 + Mon, 12 Oct 2015 17:39:46 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:25:45 + Mon, 12 Oct 2015 17:39:46 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:26:02 + Mon, 12 Oct 2015 17:40:35 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:26:02 + Mon, 12 Oct 2015 17:40:35 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:26:02 + Mon, 12 Oct 2015 17:40:35 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:26:02 + Mon, 12 Oct 2015 17:40:35 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:39:03 + Mon, 12 Oct 2015 17:41:15 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:39:03 + Mon, 12 Oct 2015 17:41:15 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:39:03 + Mon, 12 Oct 2015 17:41:15 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:39:03 + Mon, 12 Oct 2015 17:41:15 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 16:39:34 + Mon, 12 Oct 2015 17:41:19 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 16:39:34 + Mon, 12 Oct 2015 17:41:19 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:04:15 + Mon, 12 Oct 2015 17:42:10 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:04:15 + Mon, 12 Oct 2015 17:42:10 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:04:15 + Mon, 12 Oct 2015 17:42:10 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:04:15 + Mon, 12 Oct 2015 17:42:10 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:05:35 + Mon, 12 Oct 2015 17:42:14 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:05:35 + Mon, 12 Oct 2015 17:42:14 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:05:35 + Mon, 12 Oct 2015 17:43:50 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:05:35 + Mon, 12 Oct 2015 17:43:50 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:06:58 + Mon, 12 Oct 2015 17:43:50 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:06:58 + Mon, 12 Oct 2015 17:43:50 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:06:58 + Mon, 12 Oct 2015 17:43:53 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:06:58 + Mon, 12 Oct 2015 17:43:53 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:08:06 + Mon, 12 Oct 2015 17:46:15 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:08:06 + Mon, 12 Oct 2015 17:46:15 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:08:06 + Mon, 12 Oct 2015 17:46:15 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:08:06 + Mon, 12 Oct 2015 17:46:15 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:09:28 + Mon, 12 Oct 2015 17:47:24 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:09:28 + Mon, 12 Oct 2015 17:47:24 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:09:28 + Mon, 12 Oct 2015 17:47:24 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:09:28 + Mon, 12 Oct 2015 17:47:24 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:11:12 + Mon, 12 Oct 2015 17:48:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:11:12 + Mon, 12 Oct 2015 17:48:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:11:12 + Mon, 12 Oct 2015 17:48:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:11:12 + Mon, 12 Oct 2015 17:48:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:11:44 + Mon, 12 Oct 2015 17:48:32 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:11:44 + Mon, 12 Oct 2015 17:48:32 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:11:44 + Mon, 12 Oct 2015 17:51:05 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:11:44 + Mon, 12 Oct 2015 17:51:05 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:14:51 + Mon, 12 Oct 2015 17:51:05 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:14:51 + Mon, 12 Oct 2015 17:51:05 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:14:51 + Mon, 12 Oct 2015 17:51:12 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:14:51 + Mon, 12 Oct 2015 17:51:12 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:15:48 + Mon, 12 Oct 2015 17:51:12 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:15:48 + Mon, 12 Oct 2015 17:51:12 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:15:48 + Mon, 12 Oct 2015 17:51:16 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:15:48 + Mon, 12 Oct 2015 17:51:16 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:39:50 + Mon, 12 Oct 2015 17:52:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:39:50 + Mon, 12 Oct 2015 17:52:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:39:50 + Mon, 12 Oct 2015 17:52:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:39:50 + Mon, 12 Oct 2015 17:52:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:41:15 + Mon, 12 Oct 2015 17:52:31 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:41:15 + Mon, 12 Oct 2015 17:52:31 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:41:15 + Mon, 12 Oct 2015 17:54:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:41:15 + Mon, 12 Oct 2015 17:54:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:48:29 + Mon, 12 Oct 2015 17:54:27 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:48:29 + Mon, 12 Oct 2015 17:54:27 DEBUG :=========End Of design===========
- Tue, 07 Jul 2015 17:48:29 + Mon, 12 Oct 2015 17:54:30 INFO : Overall finplate connection design is safe
- Tue, 07 Jul 2015 17:48:29 + Mon, 12 Oct 2015 17:54:30 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 10:03:54 + Mon, 12 Oct 2015 18:08:42 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 10:03:54 + Mon, 12 Oct 2015 18:08:42 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 10:03:54 + Mon, 12 Oct 2015 18:08:42 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 10:03:54 + Mon, 12 Oct 2015 18:08:42 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 10:43:43 + Mon, 12 Oct 2015 18:08:45 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 10:43:43 + Mon, 12 Oct 2015 18:08:45 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 10:43:43 + Mon, 12 Oct 2015 18:14:00 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 10:43:43 + Mon, 12 Oct 2015 18:14:00 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 10:44:33 + Mon, 12 Oct 2015 18:14:00 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 10:44:33 + Mon, 12 Oct 2015 18:14:00 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 11:26:05 + Mon, 12 Oct 2015 18:14:04 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 11:26:05 + Mon, 12 Oct 2015 18:14:04 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 11:52:27 + Mon, 12 Oct 2015 18:28:12 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 11:52:27 + Mon, 12 Oct 2015 18:28:12 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 11:52:27 + Mon, 12 Oct 2015 18:28:12 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 11:52:27 + Mon, 12 Oct 2015 18:28:12 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 11:55:10 + Mon, 12 Oct 2015 18:28:16 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 11:55:10 + Mon, 12 Oct 2015 18:28:16 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 11:55:10 + Mon, 12 Oct 2015 18:31:01 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 11:55:10 + Mon, 12 Oct 2015 18:31:01 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:05:32 + Mon, 12 Oct 2015 18:31:01 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:05:32 + Mon, 12 Oct 2015 18:31:01 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:05:32 + Mon, 12 Oct 2015 18:31:05 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:05:32 + Mon, 12 Oct 2015 18:31:05 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:09:10 + Mon, 12 Oct 2015 18:32:12 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:09:10 + Mon, 12 Oct 2015 18:32:12 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:09:10 + Mon, 12 Oct 2015 18:32:12 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:09:10 + Mon, 12 Oct 2015 18:32:12 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:09:52 + Mon, 12 Oct 2015 18:32:15 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:09:52 + Mon, 12 Oct 2015 18:32:15 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:09:52 + Mon, 12 Oct 2015 18:33:07 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:09:52 + Mon, 12 Oct 2015 18:33:07 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:10:52 + Mon, 12 Oct 2015 18:33:07 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:10:52 + Mon, 12 Oct 2015 18:33:07 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:10:52 + Mon, 12 Oct 2015 18:33:12 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:10:52 + Mon, 12 Oct 2015 18:33:12 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:12:42 + Mon, 12 Oct 2015 18:35:16 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:12:42 + Mon, 12 Oct 2015 18:35:16 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:12:42 + Mon, 12 Oct 2015 18:35:16 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:12:42 + Mon, 12 Oct 2015 18:35:16 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:12:59 + Mon, 12 Oct 2015 18:35:19 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:12:59 + Mon, 12 Oct 2015 18:35:19 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:12:59 + Mon, 12 Oct 2015 18:38:33 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:12:59 + Mon, 12 Oct 2015 18:38:33 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:13:40 + Mon, 12 Oct 2015 18:38:33 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:13:40 + Mon, 12 Oct 2015 18:38:33 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:13:40 + Mon, 12 Oct 2015 18:38:37 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:13:40 + Mon, 12 Oct 2015 18:38:37 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:14:29 + Mon, 12 Oct 2015 18:39:15 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:14:29 + Mon, 12 Oct 2015 18:39:15 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:14:29 + Mon, 12 Oct 2015 18:39:15 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:14:29 + Mon, 12 Oct 2015 18:39:15 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:17:10 + Mon, 12 Oct 2015 18:39:17 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:17:10 + Mon, 12 Oct 2015 18:39:17 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:17:10 + Mon, 12 Oct 2015 18:39:53 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:17:10 + Mon, 12 Oct 2015 18:39:53 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:17:41 + Mon, 12 Oct 2015 18:39:53 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:17:41 + Mon, 12 Oct 2015 18:39:53 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 12:17:41 + Mon, 12 Oct 2015 18:39:56 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 12:17:41 + Mon, 12 Oct 2015 18:39:56 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 14:31:35 + Tue, 20 Oct 2015 17:38:46 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 14:31:35 + Tue, 20 Oct 2015 17:38:46 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 14:31:35 + Tue, 20 Oct 2015 17:38:46 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 14:31:35 + Tue, 20 Oct 2015 17:38:46 DEBUG :=========End Of design===========
- Wed, 08 Jul 2015 14:31:51 + Tue, 20 Oct 2015 17:38:50 INFO : Overall finplate connection design is safe
- Wed, 08 Jul 2015 14:31:51 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 14:31:51 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 14:31:51 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 14:47:10 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 14:47:10 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 14:47:10 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 14:47:10 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 14:51:47 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 14:51:47 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 14:51:47 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 14:51:47 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 15:37:59 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 15:37:59 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 15:37:59 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 15:37:59 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:31:05 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:31:05 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:31:05 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:31:05 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:49:26 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:49:26 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:49:26 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:49:26 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:50:16 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:50:16 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:50:16 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:50:16 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:52:18 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:52:18 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:52:18 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:52:18 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:58:41 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:58:41 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:58:41 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:58:41 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:59:31 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:59:31 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 17:59:31 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 17:59:31 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 18:00:14 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 18:00:14 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 18:00:14 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 18:00:14 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 18:01:06 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 18:01:06 - DEBUG - :=========End Of design=========== -
- -
- Wed, 08 Jul 2015 18:01:06 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 08 Jul 2015 18:01:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 10:21:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 10:21:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 10:21:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 10:21:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:17:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:17:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:17:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:17:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:33:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:33:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:33:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:33:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:35:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:35:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:35:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:35:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:38:46 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:38:46 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:38:46 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:38:46 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:39:33 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:39:33 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:39:33 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:39:33 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:40:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:40:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:40:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:40:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:51:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:51:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:51:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:51:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:51:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:51:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:51:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:51:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:52:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:52:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:52:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:52:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:59:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:59:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 11:59:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 11:59:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:01:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:01:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:01:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:01:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:03:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:03:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:03:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:03:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:03:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:03:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:03:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:03:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:08:22 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:08:22 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:08:22 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:08:22 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:08:41 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:08:41 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:08:41 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:08:41 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:11:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:11:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:11:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:11:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:11:23 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:11:23 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:11:23 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:11:23 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:12:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:12:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:12:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:12:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:12:55 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:12:55 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:12:55 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:12:55 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:14:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:14:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:14:05 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:14:05 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:33:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:33:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:33:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:33:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:34:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:34:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 12:34:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 12:34:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:07:08 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:07:08 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:07:08 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:07:08 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:07:59 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:07:59 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:07:59 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:07:59 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:15:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:15:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:15:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:15:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:17:58 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:17:58 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:17:58 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:17:58 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:11 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:11 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:11 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:11 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:18:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:18:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:19:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:19:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:19:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:19:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:46:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:46:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:46:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:46:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:46:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:46:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:46:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:46:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:47:24 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:47:24 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:47:24 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:47:24 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:47:49 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:47:49 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:47:49 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:47:49 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:52:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:52:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:52:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:52:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:53:04 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:53:04 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:53:04 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:53:04 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:55:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:55:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:55:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:55:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:56:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:56:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:56:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:56:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:56:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:56:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:56:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:56:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:58:53 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:58:53 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 15:58:53 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 15:58:53 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:00:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:00:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:00:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:00:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:02:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:02:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:02:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:02:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:07:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:07:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:07:08 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:07:08 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:08:28 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:08:28 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:08:28 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:08:28 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:09:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:09:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:09:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:09:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:10:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:10:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:10:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:10:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:11:53 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:11:53 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:11:53 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:11:53 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:14:18 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:14:18 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:14:18 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:14:18 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:14:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:14:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:14:54 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:14:54 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:16:18 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:16:18 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:16:18 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:16:18 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:21:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:21:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:21:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:21:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:23:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:23:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:23:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:23:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:25:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:25:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:25:57 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:25:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:28:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:28:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:28:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:28:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:28:03 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:28:03 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:28:03 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:28:03 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:33:22 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:33:22 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:33:22 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:33:22 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:34:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:34:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:34:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:34:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:35:40 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:35:40 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:35:40 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:35:40 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:36:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:36:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:36:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:36:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:36:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:36:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:36:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:36:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:37:30 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:37:30 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:37:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:37:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:40:10 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:40:10 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:40:10 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:40:10 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:41:19 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:41:19 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:41:20 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:41:20 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:42:10 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:42:10 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:42:10 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:42:10 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:43:19 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:43:19 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:43:19 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:43:19 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:44:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:44:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:44:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:44:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:46:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:46:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:46:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:46:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:47:42 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:47:42 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:47:42 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:47:42 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:50:12 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:50:12 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:50:12 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:50:12 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:50:44 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:50:44 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:50:44 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:50:44 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:51:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:51:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:51:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:51:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:52:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:52:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:52:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:52:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:56:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:56:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:56:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:56:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:57:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:57:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:57:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:57:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:58:48 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:58:48 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 16:58:48 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 16:58:48 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:11:47 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:11:47 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:11:47 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:11:47 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:12:23 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:12:23 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:12:23 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:12:23 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:20:24 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:20:24 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:20:24 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:20:24 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:21:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:21:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:21:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:21:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:55:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:55:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:55:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:55:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:57:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:57:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 09 Jul 2015 17:57:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 09 Jul 2015 17:57:07 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:47:20 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:47:20 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:47:20 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:47:20 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:48:37 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:48:37 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:48:37 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:48:37 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:49:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:49:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:49:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:49:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:50:19 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:50:19 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:50:19 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:50:19 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:53:04 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:53:04 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:53:04 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:53:04 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:53:39 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:53:39 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:53:39 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:53:39 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:54:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:54:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:54:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:54:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:59:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:59:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 10:59:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 10:59:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:01:02 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:01:02 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:01:02 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:01:02 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:01:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:01:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:01:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:01:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:02:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:02:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:02:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:02:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:03:27 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:03:27 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:03:27 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:03:27 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:04:00 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:04:00 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:04:00 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:04:00 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:05:55 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:05:55 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:05:55 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:05:55 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:07:35 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:07:35 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:07:35 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:07:35 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:08:07 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:08:07 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:08:07 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:08:07 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:09:09 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:09:09 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:09:09 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:09:09 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:10:28 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:10:28 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:10:28 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:10:28 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:11:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:11:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:11:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:11:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:13:03 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:13:03 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:13:03 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:13:03 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:15:30 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:15:30 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:15:30 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:15:30 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:23:11 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:23:11 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:23:11 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:23:11 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:29:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:29:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:29:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:29:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:30:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:30:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:30:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:30:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:33:40 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:33:40 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:33:40 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:33:40 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:36:43 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:36:43 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:36:43 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:36:43 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:44:49 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:44:49 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:44:49 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:44:49 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:45:52 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:45:52 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:45:52 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:45:52 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:48:07 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:48:07 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:48:07 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:48:07 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:55:25 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:55:25 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:55:25 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:55:25 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:56:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:56:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:56:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:56:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:57:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:57:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:57:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:57:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:58:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:58:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:58:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:58:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:58:54 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:58:54 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 11:58:54 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 11:58:54 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:00:23 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:00:23 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:00:23 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:00:23 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:02:08 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:02:08 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:02:08 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:02:08 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:03:25 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:03:25 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:03:26 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:03:26 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:04:12 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:04:12 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:04:12 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:04:12 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:04:39 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:04:39 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:04:39 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:04:39 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:05:45 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:05:45 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:05:45 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:05:45 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:07:41 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:07:41 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:07:41 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:07:41 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:08:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:08:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:08:17 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:08:17 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:09:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:09:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:09:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:09:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:10:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:10:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:10:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:10:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:11:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:11:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:11:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:11:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:20:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:20:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:20:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:20:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:25:26 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:25:26 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:25:26 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:25:26 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:26:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:26:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:26:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:26:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:32:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:32:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:32:47 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:32:47 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:33:13 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:33:13 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:33:13 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:33:13 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:36:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:36:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:36:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:36:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:38:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:38:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:38:16 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:38:16 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:38:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:38:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:38:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:38:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:39:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:39:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:39:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:39:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:39:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:39:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:39:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:39:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:40:41 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:40:41 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 12:40:41 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 12:40:41 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:34:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:34:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:34:48 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:34:48 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:45:42 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:45:42 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:45:42 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:45:42 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:46:50 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:46:50 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:46:50 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:46:50 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:47:21 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:47:21 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:47:21 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:47:21 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:48:14 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:48:14 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:48:14 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:48:14 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:52:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:52:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:52:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:52:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:52:31 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:52:31 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 14:52:31 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 14:52:31 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:16:15 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:16:15 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:16:15 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:16:15 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:35:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:35:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:35:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:35:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:56:55 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:56:55 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:56:55 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:56:55 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:57:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:57:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 15:57:33 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 15:57:33 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:00:20 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:00:20 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:00:20 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:00:20 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:00:40 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:00:40 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:00:40 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:00:40 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:19 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:19 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:19 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:19 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:30 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:30 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:30 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:30 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:36 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:36 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:03:36 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:03:36 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:26:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:26:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:26:05 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:26:05 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:27:56 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:27:56 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:27:56 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:27:56 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:28:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:28:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:28:24 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:28:24 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:29:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:29:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:29:22 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:29:22 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:31:50 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:31:50 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:31:50 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:31:50 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:32:14 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:32:14 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:32:14 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:32:14 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:32:51 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:32:51 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:32:51 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:32:51 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:52:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:52:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:52:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:52:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:53:26 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:53:26 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 16:53:26 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 16:53:26 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 17:37:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 17:37:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 17:37:58 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 17:37:58 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 17:44:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 17:44:44 - DEBUG - :=========End Of design=========== -
- -
- Fri, 10 Jul 2015 17:44:44 - INFO - : Overall finplate connection design is safe - -
- -
- Fri, 10 Jul 2015 17:44:44 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 10:08:14 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 10:08:14 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 10:08:15 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 10:08:15 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 12:02:12 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 12:02:12 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 12:02:12 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 12:02:12 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:08:05 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:08:05 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:08:05 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:08:05 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:12:21 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:12:21 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:12:21 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:12:21 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:12:38 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:12:38 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:12:38 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:12:38 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:13:13 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:13:13 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:13:13 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:13:13 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:14:03 - ERROR - : Minimum required plate height is more than the clear depth of the beam -
- -
- Mon, 13 Jul 2015 17:14:03 - WARNING - : Plate height required should be more than 410.00 mm -
- -
- Mon, 13 Jul 2015 17:14:03 - WARNING - : Maximum plate height allowed is 328.00 mm -
- -
- Mon, 13 Jul 2015 17:14:03 - INFO - : Increase the plate thickness -
- -
- Mon, 13 Jul 2015 17:14:03 - ERROR - : Design is not safe - -
- -
- Mon, 13 Jul 2015 17:14:03 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:14:54 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:14:54 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:14:54 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:14:54 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:15:07 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Mon, 13 Jul 2015 17:15:07 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Mon, 13 Jul 2015 17:15:07 - ERROR - : Design is not safe - -
- -
- Mon, 13 Jul 2015 17:15:07 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:15:51 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:15:51 - DEBUG - :=========End Of design=========== -
- -
- Mon, 13 Jul 2015 17:15:51 - INFO - : Overall finplate connection design is safe - -
- -
- Mon, 13 Jul 2015 17:15:51 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 15:48:46 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 15:48:46 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 15:48:47 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 15:48:47 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 15:51:23 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 15:51:23 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 15:51:23 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 15:51:23 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:23:09 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:23:09 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:23:09 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:23:09 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:06 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:06 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:06 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:06 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:12 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:12 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:12 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:12 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:21 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:21 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:24:21 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:24:21 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:34:55 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:34:55 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:34:55 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:34:55 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:02 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:02 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:02 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:02 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:10 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:10 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:10 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:10 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:19 - ERROR - : Plate width provided is less than the minimum required -
- -
- Tue, 14 Jul 2015 17:35:19 - WARNING - : Minimum plate width required is 100.00 mm -
- -
- Tue, 14 Jul 2015 17:35:19 - ERROR - : Design is not safe - -
- -
- Tue, 14 Jul 2015 17:35:19 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:25 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:25 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:35:25 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:35:25 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:40:16 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:40:16 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:40:16 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:40:16 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:40:26 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:40:26 - DEBUG - :=========End Of design=========== -
- -
- Tue, 14 Jul 2015 17:40:26 - INFO - : Overall finplate connection design is safe - -
- -
- Tue, 14 Jul 2015 17:40:26 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:16:48 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:16:48 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:16:49 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:16:49 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:17:36 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:17:36 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:17:36 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:17:36 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:18:11 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 11:18:11 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Wed, 15 Jul 2015 11:18:11 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 11:18:11 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:18:17 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:18:17 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:18:17 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:18:17 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:19:35 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:19:35 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:19:35 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:19:35 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:19:52 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:19:52 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:19:53 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:19:53 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:20:35 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:20:35 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 11:20:35 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 11:20:35 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:07 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 12:21:07 - WARNING - : Maximum plate height allowed is 161.40 mm -
- -
- Wed, 15 Jul 2015 12:21:07 - ERROR - : Plate moment capacity is less than the moment demand -
- -
- Wed, 15 Jul 2015 12:21:07 - WARNING - : Re-design with increased plate dimensions -
- -
- Wed, 15 Jul 2015 12:21:07 - ERROR - : Plate width provided is less than the minimum required -
- -
- Wed, 15 Jul 2015 12:21:07 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Wed, 15 Jul 2015 12:21:07 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 12:21:07 - WARNING - : Minimum weld thickness is required is 15.00 mm -
- -
- Wed, 15 Jul 2015 12:21:07 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 12:21:07 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:21 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 12:21:21 - WARNING - : Maximum plate height allowed is 233.80 mm -
- -
- Wed, 15 Jul 2015 12:21:21 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 12:21:21 - WARNING - : Minimum weld thickness is required is 7.00 mm -
- -
- Wed, 15 Jul 2015 12:21:21 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 12:21:21 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:26 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 12:21:26 - WARNING - : Maximum plate height allowed is 281.60 mm -
- -
- Wed, 15 Jul 2015 12:21:26 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 12:21:26 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:33 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 12:21:33 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:33 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 12:21:33 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:53 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 12:21:53 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 12:21:53 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 12:21:53 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:02:21 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:02:21 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:02:22 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:02:22 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:02:54 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:02:54 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:02:54 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:02:54 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:08:43 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:08:43 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Wed, 15 Jul 2015 16:08:43 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:08:43 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:08:52 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:08:52 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:08:52 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:08:52 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:11:36 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 16:11:36 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Wed, 15 Jul 2015 16:11:36 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Wed, 15 Jul 2015 16:11:36 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Wed, 15 Jul 2015 16:11:36 - ERROR - : Plate width provided is less than the minimum required -
- -
- Wed, 15 Jul 2015 16:11:36 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Wed, 15 Jul 2015 16:11:36 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:11:36 - WARNING - : Minimum weld thickness is required is 18.00 mm -
- -
- Wed, 15 Jul 2015 16:11:36 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:11:36 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:12:00 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 16:12:00 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Wed, 15 Jul 2015 16:12:00 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Wed, 15 Jul 2015 16:12:00 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Wed, 15 Jul 2015 16:12:00 - ERROR - : Plate width provided is less than the minimum required -
- -
- Wed, 15 Jul 2015 16:12:00 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Wed, 15 Jul 2015 16:12:00 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:12:00 - WARNING - : Minimum weld thickness is required is 38.00 mm -
- -
- Wed, 15 Jul 2015 16:12:00 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:12:00 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:24:14 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:24:14 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Wed, 15 Jul 2015 16:24:14 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:24:14 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:24:22 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:24:22 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:24:22 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:24:22 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:34:37 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 16:34:37 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Wed, 15 Jul 2015 16:34:37 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Wed, 15 Jul 2015 16:34:37 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Wed, 15 Jul 2015 16:34:37 - ERROR - : Plate width provided is less than the minimum required -
- -
- Wed, 15 Jul 2015 16:34:37 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Wed, 15 Jul 2015 16:34:37 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:34:37 - WARNING - : Minimum weld thickness is required is 12.00 mm -
- -
- Wed, 15 Jul 2015 16:34:37 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:34:37 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:34:41 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Wed, 15 Jul 2015 16:34:41 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Wed, 15 Jul 2015 16:34:41 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Wed, 15 Jul 2015 16:34:41 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Wed, 15 Jul 2015 16:34:41 - ERROR - : Plate width provided is less than the minimum required -
- -
- Wed, 15 Jul 2015 16:34:41 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Wed, 15 Jul 2015 16:34:41 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:34:41 - WARNING - : Minimum weld thickness is required is 12.00 mm -
- -
- Wed, 15 Jul 2015 16:34:41 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:34:41 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:34:55 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 16:34:55 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Wed, 15 Jul 2015 16:34:55 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 16:34:55 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:35:02 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:35:02 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 16:35:02 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 16:35:02 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:07 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 17:41:07 - WARNING - : Minimum weld thickness is required is 4.00 mm -
- -
- Wed, 15 Jul 2015 17:41:07 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 17:41:07 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:15 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 17:41:15 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:15 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 17:41:15 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:50 - ERROR - : Weld thickness is not sufficient -
- -
- Wed, 15 Jul 2015 17:41:50 - WARNING - : Minimum weld thickness is required is 6.00 mm -
- -
- Wed, 15 Jul 2015 17:41:50 - ERROR - : Design is not safe - -
- -
- Wed, 15 Jul 2015 17:41:50 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:56 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 17:41:56 - DEBUG - :=========End Of design=========== -
- -
- Wed, 15 Jul 2015 17:41:56 - INFO - : Overall finplate connection design is safe - -
- -
- Wed, 15 Jul 2015 17:41:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 10:37:26 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 10:37:26 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Thu, 16 Jul 2015 10:37:26 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 10:37:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 10:37:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 10:37:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 10:37:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 10:37:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 10:37:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 10:37:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 10:37:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 10:37:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:04:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:04:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:04:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:04:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:05:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:05:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:05:26 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:05:26 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:06:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:06:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:06:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:06:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:24:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:24:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:24:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:24:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:26:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:26:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:26:34 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:26:34 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:29:01 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:29:01 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:29:01 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:29:01 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:31:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:31:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:31:21 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:31:21 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:53:40 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:53:40 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:53:40 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:53:40 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:54:29 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:54:29 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 11:54:29 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 11:54:29 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:00:25 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 12:00:25 - WARNING - : Maximum plate height allowed is 281.60 mm -
- -
- Thu, 16 Jul 2015 12:00:25 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 12:00:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:00:46 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 12:00:46 - WARNING - : Maximum plate height allowed is 281.60 mm -
- -
- Thu, 16 Jul 2015 12:00:46 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 12:00:46 - WARNING - : Minimum weld thickness is required is 6.00 mm -
- -
- Thu, 16 Jul 2015 12:00:46 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 12:00:46 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:00:49 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 12:00:49 - WARNING - : Maximum plate height allowed is 281.60 mm -
- -
- Thu, 16 Jul 2015 12:00:49 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 12:00:49 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:01:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:01:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:01:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:01:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:39:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:39:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:39:25 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:39:25 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:40:11 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:40:11 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 12:40:12 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 12:40:12 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 14:18:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 14:18:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 14:18:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 14:18:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:11:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:11:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:11:43 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:11:43 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:12:04 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:12:04 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:12:04 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:12:04 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:33:48 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:33:48 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:33:48 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:33:48 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:15 - ERROR - : Chosen web plate thickness is not sufficient -
- -
- Thu, 16 Jul 2015 15:48:15 - WARNING - : Minimum required thickness 8.90 mm -
- -
- Thu, 16 Jul 2015 15:48:15 - ERROR - : Plate height provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 15:48:15 - WARNING - : Plate height required should be more than 320.00 mm -
- -
- Thu, 16 Jul 2015 15:48:15 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 15:48:15 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:23 - ERROR - : Chosen web plate thickness is not sufficient -
- -
- Thu, 16 Jul 2015 15:48:23 - WARNING - : Minimum required thickness 8.90 mm -
- -
- Thu, 16 Jul 2015 15:48:23 - ERROR - : Plate height provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 15:48:23 - WARNING - : Plate height required should be more than 320.00 mm -
- -
- Thu, 16 Jul 2015 15:48:23 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 15:48:23 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:36 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 15:48:36 - WARNING - : Minimum weld thickness is required is 4.00 mm -
- -
- Thu, 16 Jul 2015 15:48:36 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 15:48:36 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:48:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:48:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:47 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:48:47 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:48:47 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:48:47 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:52:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:52:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:52:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:52:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:58:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:58:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 15:58:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 15:58:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:01:14 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:01:14 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:01:15 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:01:15 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:09:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:09:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:09:32 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:09:32 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:12:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:12:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:12:06 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:12:06 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:15:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:15:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:15:39 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:15:39 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:00 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:00 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:00 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:00 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:20 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:20 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:20 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:20 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:30 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:30 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:36 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:36 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:16:36 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:16:36 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:19:19 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:19:19 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:19:19 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:19:19 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:19:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:19:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:19:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:19:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:20:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:20:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:20:37 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:20:37 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:21:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:21:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:21:02 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:21:02 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:22:15 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:22:15 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:23:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:23:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:23:35 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:23:35 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:24:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:24:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:24:38 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:24:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:24:56 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:24:56 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:25:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:25:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 16:25:07 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 16:25:07 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:11 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:11 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:11 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:11 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:24 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:07:24 - WARNING - : Minimum weld thickness is required is 6.00 mm -
- -
- Thu, 16 Jul 2015 17:07:24 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:07:24 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:30 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:30 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:30 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:30 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:46 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:46 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:07:47 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:07:47 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:08:04 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:08:04 - WARNING - : Minimum weld thickness is required is 5.00 mm -
- -
- Thu, 16 Jul 2015 17:08:04 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:08:04 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:08:12 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:08:12 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:08:12 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:08:12 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:09:45 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:09:45 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:09:45 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:09:45 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:09:45 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:09:45 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:09:45 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:09:45 - WARNING - : Minimum weld thickness is required is 15.00 mm -
- -
- Thu, 16 Jul 2015 17:09:45 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:09:45 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:09:53 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:09:53 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:09:53 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:09:53 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:09:53 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:09:53 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:09:53 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:09:53 - WARNING - : Minimum weld thickness is required is 15.00 mm -
- -
- Thu, 16 Jul 2015 17:09:53 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:09:53 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:09:57 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:09:57 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:09:57 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:09:57 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:09:57 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:09:57 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:09:57 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:09:57 - WARNING - : Minimum weld thickness is required is 15.00 mm -
- -
- Thu, 16 Jul 2015 17:09:57 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:09:57 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:10:10 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:10:10 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:10:10 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:10:10 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:10:10 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:10:10 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:10:10 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:10:10 - WARNING - : Minimum weld thickness is required is 12.00 mm -
- -
- Thu, 16 Jul 2015 17:10:10 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:10:10 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:10:20 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:10:20 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:10:20 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:10:20 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:10:20 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:10:20 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:10:20 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:10:20 - WARNING - : Minimum weld thickness is required is 25.00 mm -
- -
- Thu, 16 Jul 2015 17:10:20 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:10:20 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:10:38 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:10:38 - WARNING - : Maximum plate height allowed is 46.00 mm -
- -
- Thu, 16 Jul 2015 17:10:38 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:10:38 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:10:38 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:10:38 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:10:38 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:10:38 - WARNING - : Minimum weld thickness is required is 25.00 mm -
- -
- Thu, 16 Jul 2015 17:10:38 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:10:38 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:10:49 - ERROR - : Height of plate is more than the clear depth of the beam -
- -
- Thu, 16 Jul 2015 17:10:49 - WARNING - : Maximum plate height allowed is 94.00 mm -
- -
- Thu, 16 Jul 2015 17:10:49 - ERROR - : Bolt strength is insufficient to carry the shear force -
- -
- Thu, 16 Jul 2015 17:10:49 - WARNING - : Increase bolt diameter and/or bolt grade -
- -
- Thu, 16 Jul 2015 17:10:49 - ERROR - : Plate width provided is less than the minimum required -
- -
- Thu, 16 Jul 2015 17:10:49 - WARNING - : Minimum plate width required is 150.00 mm -
- -
- Thu, 16 Jul 2015 17:10:49 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:10:49 - WARNING - : Minimum weld thickness is required is 6.00 mm -
- -
- Thu, 16 Jul 2015 17:10:49 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:10:49 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:11:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:11:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:11:13 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:11:13 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:11:27 - ERROR - : Weld thickness is not sufficient -
- -
- Thu, 16 Jul 2015 17:11:27 - WARNING - : Minimum weld thickness is required is 6.00 mm -
- -
- Thu, 16 Jul 2015 17:11:27 - ERROR - : Design is not safe - -
- -
- Thu, 16 Jul 2015 17:11:27 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:11:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:11:31 - DEBUG - :=========End Of design=========== -
- -
- Thu, 16 Jul 2015 17:11:31 - INFO - : Overall finplate connection design is safe - -
- -
- Thu, 16 Jul 2015 17:11:31 + Tue, 20 Oct 2015 17:38:50 DEBUG :=========End Of design===========
diff --git a/Connections/Shear/Finplate/finPlate.ui b/Connections/Shear/Finplate/finPlate.ui index 97ea6f2..d27e2c0 100644 --- a/Connections/Shear/Finplate/finPlate.ui +++ b/Connections/Shear/Finplate/finPlate.ui @@ -691,7 +691,7 @@ 000.0 - + 6 @@ -742,6 +742,11 @@ Column web-Beam web + + + Beam-Beam + + diff --git a/Connections/Shear/Finplate/finPlateMain.py b/Connections/Shear/Finplate/finPlateMain.py index 063fc73..d42cf3b 100644 --- a/Connections/Shear/Finplate/finPlateMain.py +++ b/Connections/Shear/Finplate/finPlateMain.py @@ -45,6 +45,8 @@ class MainController(QtGui.QMainWindow): self.ui = Ui_MainWindow() self.ui.setupUi(self) + self.ui.comboConnLoc.currentIndexChanged[str].connect(self.setimage_connection) + #self.ui.comboConnLoc.currentIndexChanged[str].connect(self.changeColtoBeamSection) self.ui.combo_Beam.addItems(get_beamcombolist()) self.ui.comboColSec.addItems(get_columncombolist()) @@ -58,7 +60,7 @@ class MainController(QtGui.QMainWindow): self.ui.comboType.setCurrentIndex(0) - self.ui.comboConnLoc.currentIndexChanged[str].connect(self.setimage_connection) + self.retrieve_prevstate() self.ui.btnInput.clicked.connect(lambda: self.dockbtn_clicked(self.ui.inputDock)) self.ui.btnOutput.clicked.connect(lambda: self.dockbtn_clicked(self.ui.outputDock)) @@ -143,6 +145,16 @@ class MainController(QtGui.QMainWindow): self.fuse_model = None self.disableViewButtons() + def changeColtoBeamSection(self): + if self.ui.comboConnLoc.currentText() == "Beam-Beam": + self.ui.lbl_ISsection.setText("Beam section") + self.ui.comboColSec.clear() + self.ui.comboColSec.addItems(get_beamcombolist()) + else: + self.ui.lbl_ISsection.setText("Column section") + self.ui.comboColSec.clear() + self.ui.comboColSec.addItems(get_beamcombolist()) + def showFontDialogue(self): font, ok = QtGui.QFontDialog.getFont() @@ -152,7 +164,7 @@ class MainController(QtGui.QMainWindow): self.ui.textEdit.setFont(font) def callZoomin(self): - self.display.ZoomFactor(2) + self.display.ZoomFactor(1.5) def callZoomout(self): self.display.ZoomFactor(0.5) @@ -294,15 +306,15 @@ class MainController(QtGui.QMainWindow): loc = self.ui.comboConnLoc.currentText() if loc == "Column flange-Beam web": - pixmap = QtGui.QPixmap(":/newPrefix/images/beam2.jpg") - pixmap.scaledToHeight(50) - pixmap.scaledToWidth(60) + pixmap = QtGui.QPixmap(":/newPrefix/images/colF2.png") + pixmap.scaledToHeight(600) + pixmap.scaledToWidth(55) self.ui.lbl_connectivity.setPixmap(pixmap) #self.ui.lbl_connectivity.show() elif(loc == "Column web-Beam web"): - picmap = QtGui.QPixmap(":/newPrefix/images/beam.jpg") - picmap.scaledToHeight(50) - picmap.scaledToWidth(60) + picmap = QtGui.QPixmap(":/newPrefix/images/colW3.png") + picmap.scaledToHeight(60) + picmap.scaledToWidth(55) self.ui.lbl_connectivity.setPixmap(picmap) else: self.ui.lbl_connectivity.hide() @@ -695,7 +707,7 @@ class MainController(QtGui.QMainWindow): # background gradient display.set_bg_gradient_color(23,1,32,23,1,32) - #display_2d.set_bg_gradient_color(255,255,255,255,255,255) + #display.set_bg_gradient_color(255,255,255,255,255,255) # display black trihedron display.display_trihedron() display.View.SetProj(1, 1, 1) @@ -716,6 +728,7 @@ class MainController(QtGui.QMainWindow): self.display.SetModeShaded() display.DisableAntiAliasing() self.display.set_bg_gradient_color(23,1,32,23,1,32) + #self.display.set_bg_gradient_color(186,195,201,255,255,255) self.display.View_Front() self.display.View_Iso() self.display.FitAll() @@ -1003,7 +1016,10 @@ class MainController(QtGui.QMainWindow): final_model = cadlist[0] for model in cadlist[1:]: final_model = BRepAlgoAPI_Fuse(model,final_model).Shape() - return final_model + return final_model + + + # Export to IGS,STEP,STL,BREP def save3DcadImages(self): @@ -1145,6 +1161,7 @@ class MainController(QtGui.QMainWindow): def call2D_Drawing(self): uiObj = self.getuser_inputs() + resultObj = finConn(uiObj) dictbeamdata = self.fetchBeamPara() dictcoldata = self.fetchColumnPara() diff --git a/Connections/Shear/Finplate/icons_rc.py b/Connections/Shear/Finplate/icons_rc.py index 6b093ff..9a81679 100644 --- a/Connections/Shear/Finplate/icons_rc.py +++ b/Connections/Shear/Finplate/icons_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Wed Jun 17 12:21:53 2015 +# Created: Thu Oct 1 12:21:41 2015 # by: The Resource Compiler for PyQt (Qt v4.8.6) # # WARNING! All changes made in this file will be lost! @@ -10,3345 +10,1339 @@ from PyQt4 import QtCore qt_resource_data = "\ -\x00\x00\x27\xbc\ +\x00\x00\x2b\x43\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x01\x4e\x00\x00\x01\x62\x08\x06\x00\x00\x00\x99\x3d\x31\x24\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xdd\x79\x78\ -\x0d\x77\xdf\x06\xf0\xfb\x24\x91\x1d\x29\xad\x44\x13\xfb\x2e\x48\ -\x1b\x54\x13\x7d\x14\x45\xb5\x25\x89\x0a\x8d\x25\x41\x14\x41\xc5\ -\xd6\xa2\xda\x3e\xa5\x96\x8a\x2e\x04\x0f\x82\xaa\xad\x4d\xd4\x1e\ -\xc1\x43\x6c\xa1\x96\x44\xea\x4d\x65\x11\xfb\x2e\x96\xd8\x45\xd6\ -\x73\xce\xfb\x87\x97\x97\x12\x32\xc9\xcc\x6f\xe6\x9c\xdc\x9f\xeb\ -\xf2\x47\x93\x9c\xdf\xfd\x6d\xae\xf6\x36\xbf\x33\x73\x66\x74\x46\ -\xa3\xd1\x08\x00\x2e\x2e\x2e\xb8\x7a\xf5\x2a\x48\x19\xab\x56\xad\ -\x82\xbf\xbf\xbf\xda\x63\x10\x51\xc9\xc5\x59\xa8\x3d\x01\x11\x91\ -\xa9\x61\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\ -\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\ -\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\ -\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ -\x27\x11\x91\x44\x2c\x4e\x41\x74\x3a\x9d\xda\x23\x10\x91\x4c\x58\ -\x9c\x02\x34\x6d\xda\x14\x1f\x7e\xf8\xa1\xda\x63\x10\x91\x4c\x58\ -\x9c\x0a\x73\x71\x71\xc1\xfa\xf5\xeb\x61\x67\x67\xa7\xf6\x28\x44\ -\x24\x13\x16\xa7\x82\x6c\x6c\x6c\xb0\x76\xed\x5a\xb8\xb9\xb9\xa9\ -\x3d\x0a\x11\xc9\x88\xc5\xa9\xa0\xf9\xf3\xe7\xc3\xcb\xcb\x4b\xed\ -\x31\x88\x48\x66\x8f\x8b\xf3\xca\x95\x2b\x30\x1a\x8d\x66\xf7\x27\ -\x38\x38\x58\x95\x5f\xec\xa8\x51\xa3\xd0\xb7\x6f\x5f\x55\xb2\x89\ -\x48\x59\xba\x47\x0f\x6b\x33\x47\x33\x67\xce\xc4\xc8\x91\x23\x85\ -\xe7\x76\xec\xd8\x11\x31\x31\x31\xb0\xb4\xb4\x14\x9e\x4d\x44\x8a\ -\x8b\x33\xdb\xe2\x8c\x8d\x8d\xc5\x07\x1f\x7c\x00\xbd\x5e\x2f\x34\ -\xb7\x6e\xdd\xba\x88\x8f\x8f\x87\x93\x93\x93\xd0\x5c\x22\x12\xc6\ -\x3c\x9f\x72\x79\xe2\xc4\x09\x74\xef\xde\x5d\x78\x69\x3a\x39\x39\ -\x21\x3a\x3a\x9a\xa5\x49\x64\xe6\xcc\xae\x38\xef\xdc\xb9\x03\x1f\ -\x1f\x1f\xdc\xbe\x7d\x5b\x68\xae\xa5\xa5\x25\xa2\xa2\xa2\x50\xaf\ -\x5e\x3d\xa1\xb9\x44\x24\x9e\x59\x15\xa7\xc1\x60\x40\x8f\x1e\x3d\ -\x90\x9e\x9e\x2e\x3c\x7b\xfa\xf4\xe9\x78\xff\xfd\xf7\x85\xe7\x12\ -\x91\x78\x66\x55\x9c\x63\xc6\x8c\xc1\x96\x2d\x5b\x84\xe7\xf6\xed\ -\xdb\x17\xa3\x46\x8d\x12\x9e\x4b\x44\xea\x30\x9b\x93\x43\xcb\x96\ -\x2d\x43\x9f\x3e\x7d\x84\xe7\x7a\x79\x79\x61\xf7\xee\xdd\xb0\xb6\ -\xb6\x16\x9e\x4d\x44\xaa\x30\x8f\xb3\xea\xf1\xf1\xf1\x78\xf7\xdd\ -\x77\x91\x9b\x9b\x2b\x34\xd7\xcd\xcd\x0d\x89\x89\x89\x70\x76\x76\ -\x16\x9a\x4b\x44\xaa\x32\xfd\xb3\xea\x97\x2e\x5d\x82\x9f\x9f\x9f\ -\xf0\xd2\xb4\xb3\xb3\xc3\x86\x0d\x1b\x58\x9a\x44\xa5\x90\x49\x17\ -\x67\x76\x76\x36\xfc\xfc\xfc\x70\xe5\xca\x15\xe1\xd9\x4b\x96\x2c\ -\x81\xa7\xa7\xa7\xf0\x5c\x22\x52\x9f\x49\x17\x67\x70\x70\x30\x12\ -\x13\x13\x85\xe7\x7e\xf5\xd5\x57\xe8\xde\xbd\xbb\xf0\x5c\x22\xd2\ -\x06\x93\x2d\xce\xa9\x53\xa7\x22\x2a\x2a\x4a\x78\xae\xaf\xaf\x2f\ -\x26\x4d\x9a\x24\x3c\x97\x88\xb4\xc3\x24\x4f\x0e\x45\x47\x47\xa3\ -\x4b\x97\x2e\x30\x18\x0c\x42\x73\x1b\x37\x6e\x8c\xfd\xfb\xf7\xc3\ -\xd1\xd1\x51\x68\x2e\x11\x69\x8a\xe9\x9d\x55\x4f\x4d\x4d\x85\x97\ -\x97\x17\xee\xdd\xbb\x27\x34\xf7\xd5\x57\x5f\x45\x42\x42\x02\x6a\ -\xd4\xa8\x21\x34\x97\x88\x34\xc7\xb4\xce\xaa\xdf\xb8\x71\x03\x3e\ -\x3e\x3e\xc2\x4b\xb3\x4c\x99\x32\x58\xb5\x6a\x15\x4b\x93\x88\x00\ -\x98\xd0\x7b\x9c\x05\x05\x05\xe8\xd6\xad\x1b\x4e\x9f\x3e\x2d\x3c\ -\x7b\xd6\xac\x59\x68\xdd\xba\xb5\xf0\x5c\x22\xd2\x26\x93\x29\xce\ -\xd0\xd0\x50\xec\xda\xb5\x4b\x78\xee\xe0\xc1\x83\x11\x12\x12\x22\ -\x3c\x97\x88\xb4\xcb\x24\xde\xe3\x8c\x88\x88\x50\xa5\xbc\x5a\xb7\ -\x6e\x8d\xd8\xd8\x58\x58\x59\x59\x09\xcf\x26\x22\xcd\xd2\xfe\xc9\ -\xa1\xb8\xb8\x38\xb4\x6f\xdf\x1e\xf9\xf9\xf9\x42\x73\x6b\xd4\xa8\ -\x81\x43\x87\x0e\xa1\x62\xc5\x8a\x42\x73\x89\x48\xf3\xb4\x7d\x72\ -\xe8\xec\xd9\xb3\xf0\xf7\xf7\x17\x5e\x9a\x65\xcb\x96\x45\x74\x74\ -\x34\x4b\x93\x88\x9e\x4b\xb3\xc5\x79\xff\xfe\x7d\xf8\xf8\xf8\x20\ -\x33\x33\x53\x68\xae\x4e\xa7\xc3\x8a\x15\x2b\xd0\xa8\x51\x23\xa1\ -\xb9\x44\x64\x3a\x34\x59\x9c\x46\xa3\x11\x81\x81\x81\x48\x4e\x4e\ -\x16\x9e\x3d\x79\xf2\x64\xf8\xf8\xf8\x08\xcf\x25\x22\xd3\xa1\xc9\ -\xe2\xfc\xe6\x9b\x6f\xb0\x7e\xfd\x7a\xe1\xb9\x01\x01\x01\x18\x3f\ -\x7e\xbc\xf0\x5c\x22\x32\x2d\x9a\x3b\x39\xb4\x72\xe5\x4a\x04\x04\ -\x04\x08\xcf\x6d\xda\xb4\x29\xf6\xee\xdd\x0b\x3b\x3b\x3b\xe1\xd9\ -\x44\x64\x52\xb4\x75\x56\xfd\xf0\xe1\xc3\x78\xe7\x9d\x77\x90\x9d\ -\x9d\x2d\x34\xd7\xc5\xc5\x05\x87\x0e\x1d\x82\x9b\x9b\x9b\xd0\x5c\ -\x22\x32\x49\xda\x39\xab\x7e\xf5\xea\x55\xf8\xf9\xf9\x09\x2f\x4d\ -\x1b\x1b\x1b\xac\x5d\xbb\x96\xa5\x49\x44\x45\xa6\x89\xe2\xcc\xcd\ -\xcd\x45\x97\x2e\x5d\x70\xe1\xc2\x05\xe1\xd9\x11\x11\x11\xf0\xf2\ -\xf2\x12\x9e\x4b\x44\xa6\x4b\x13\xc5\x19\x12\x12\x82\x03\x07\x0e\ -\x08\xcf\x1d\x35\x6a\x94\x2a\x0f\x78\x23\x22\xd3\xa6\x7a\x71\xfe\ -\xfc\xf3\xcf\x58\xb2\x64\x89\xf0\xdc\x8e\x1d\x3b\x62\xfa\xf4\xe9\ -\xc2\x73\x89\xc8\xf4\xa9\x7a\x72\xe8\xbf\xff\xfd\x2f\x3a\x75\xea\ -\x04\xbd\x5e\x2f\x34\xb7\x5e\xbd\x7a\x88\x8f\x8f\x47\xf9\xf2\xe5\ -\x85\xe6\x12\x91\x59\x50\xef\xe4\xd0\xb1\x63\xc7\xd0\xa3\x47\x0f\ -\xe1\xa5\xe9\xe4\xe4\x84\xe8\xe8\x68\x96\x26\x11\x15\x9b\x2a\xc5\ -\x79\xfb\xf6\x6d\xf8\xf8\xf8\xe0\xf6\xed\xdb\x42\x73\x2d\x2d\x2d\ -\xb1\x72\xe5\x4a\xd4\xad\x5b\x57\x68\x2e\x11\x99\x17\xe1\xc5\xa9\ -\xd7\xeb\x11\x10\x10\x80\xe3\xc7\x8f\x8b\x8e\xc6\x0f\x3f\xfc\x80\ -\x0e\x1d\x3a\x08\xcf\x25\x22\xf3\x22\xbc\x38\xbf\xf8\xe2\x0b\x6c\ -\xdd\xba\x55\x74\x2c\xfa\xf5\xeb\x87\x91\x23\x47\x0a\xcf\x25\x22\ -\xf3\x23\xf4\xe4\xd0\x92\x25\x4b\xd0\xaf\x5f\x3f\x51\x71\x8f\x79\ -\x7b\x7b\x63\xd7\xae\x5d\xb0\xb6\xb6\x16\x9e\x4d\x44\x66\x47\xdc\ -\x47\x2e\x0f\x1c\x38\x80\xd6\xad\x5b\x23\x2f\x2f\x4f\x44\xdc\x63\ -\x55\xaa\x54\xc1\xa1\x43\x87\xe0\xec\xec\x2c\x34\x97\x88\xcc\x96\ -\x98\xb3\xea\x17\x2f\x5e\x44\x97\x2e\x5d\x84\x97\xa6\xbd\xbd\x3d\ -\xd6\xaf\x5f\xcf\xd2\x24\x22\x59\x29\x5e\x9c\xd9\xd9\xd9\xf0\xf5\ -\xf5\xc5\xd5\xab\x57\x95\x8e\x7a\xc6\xaf\xbf\xfe\x0a\x4f\x4f\x4f\ -\xe1\xb9\x44\x64\xde\x14\x2f\xce\xbe\x7d\xfb\xe2\xf0\xe1\xc3\x4a\ -\xc7\x3c\xe3\xeb\xaf\xbf\x46\xf7\xee\xdd\x85\xe7\x12\x91\xf9\x53\ -\xb4\x38\x27\x4f\x9e\x8c\x3f\xfe\xf8\x43\xc9\x88\xe7\xf2\xf3\xf3\ -\xc3\x77\xdf\x7d\x27\x3c\x97\x88\x4a\x07\xc5\x4e\x0e\xad\x5f\xbf\ -\x1e\x1f\x7f\xfc\x31\x44\x7f\xa2\xb3\x71\xe3\xc6\xd8\xbf\x7f\x3f\ -\x1c\x1d\x1d\x85\xe6\x12\x51\xa9\xa1\xcc\x59\xf5\xe4\xe4\x64\x78\ -\x7b\x7b\xe3\xfe\xfd\xfb\x72\x2f\xfd\x42\xaf\xbe\xfa\x2a\x12\x12\ -\x12\x50\xa3\x46\x0d\xa1\xb9\x44\x54\xaa\xc8\x7f\x56\x3d\x33\x33\ -\x13\xbe\xbe\xbe\xc2\x4b\xb3\x4c\x99\x32\x58\xbd\x7a\x35\x4b\x93\ -\x88\x14\x27\x6b\x71\xe6\xe7\xe7\xc3\xdf\xdf\x1f\x67\xce\x9c\x91\ -\x73\xd9\x22\x99\x35\x6b\x16\xde\x7d\xf7\x5d\xe1\xb9\x44\x54\xfa\ -\xc8\x5a\x9c\xa1\xa1\xa1\x88\x8b\x8b\x93\x73\xc9\x22\x19\x32\x64\ -\x08\x42\x42\x42\x84\xe7\x12\x51\xe9\x24\xdb\x7b\x9c\x73\xe7\xce\ -\xc5\xd0\xa1\x43\xe5\x58\x4a\x92\x36\x6d\xda\x60\xdb\xb6\x6d\xb0\ -\xb2\xb2\x12\x9e\x4d\x44\xa5\x92\x3c\x27\x87\x76\xed\xda\x85\x0e\ -\x1d\x3a\xa0\xa0\xa0\x40\x8e\xa1\x8a\xac\x66\xcd\x9a\x48\x48\x48\ -\x40\xc5\x8a\x15\x85\xe6\x12\x51\xa9\x56\xf2\x93\x43\xa7\x4f\x9f\ -\x46\xb7\x6e\xdd\x84\x97\x66\xd9\xb2\x65\xb1\x61\xc3\x06\x96\x26\ -\x11\x09\x57\xa2\xe2\xbc\x77\xef\x1e\x7c\x7d\x7d\x71\xe3\xc6\x0d\ -\xb9\xe6\x29\x12\x9d\x4e\x87\x15\x2b\x56\xa0\x51\xa3\x46\x42\x73\ -\x89\x88\x80\x12\x14\xa7\xd1\x68\x44\xef\xde\xbd\x91\x92\x92\x22\ -\xe7\x3c\x45\x32\x79\xf2\x64\xf8\xf8\xf8\x08\xcf\x25\x22\x02\x4a\ -\x50\x9c\x5f\x7d\xf5\x15\xa2\xa3\xa3\xe5\x9c\xa5\x48\x7a\xf4\xe8\ -\x81\xf1\xe3\xc7\x0b\xcf\x25\x22\x7a\xa4\x58\x27\x87\x22\x23\x23\ -\xd1\xb3\x67\x4f\x25\xe6\x79\xa1\x66\xcd\x9a\x61\xcf\x9e\x3d\xb0\ -\xb3\xb3\x13\x9e\x4d\x44\xf4\x7f\xa4\x9f\x55\x4f\x4c\x4c\x44\xab\ -\x56\xad\x90\x9d\x9d\xad\xd4\x50\xcf\xe5\xe2\xe2\x82\xc4\xc4\x44\ -\xb8\xba\xba\x0a\xcd\x25\x22\xfa\x07\x69\x67\xd5\xaf\x5c\xb9\x02\ -\x3f\x3f\x3f\xe1\xa5\x69\x63\x63\x83\x75\xeb\xd6\xb1\x34\x89\x48\ -\x13\x8a\x5c\x9c\xb9\xb9\xb9\xf0\xf3\xf3\xc3\xa5\x4b\x97\x94\x9c\ -\xe7\xb9\x16\x2c\x58\x80\xb7\xdf\x7e\x5b\x78\x2e\x11\xd1\xf3\x14\ -\xb9\x38\x07\x0e\x1c\x88\xf8\xf8\x78\x25\x67\x79\xae\xd1\xa3\x47\ -\x23\x28\x28\x48\x78\x2e\x11\x51\x61\x8a\x54\x9c\x3f\xfe\xf8\x23\ -\x96\x2d\x5b\xa6\xf4\x2c\xcf\xe8\xd8\xb1\x23\xa6\x4f\x9f\x2e\x3c\ -\x97\x88\xe8\x45\x5e\x7a\x72\x68\xcb\x96\x2d\xe8\xd4\xa9\x13\x0c\ -\x06\x83\xa8\x99\x00\x00\xf5\xea\xd5\x43\x7c\x7c\x3c\xca\x97\x2f\ -\x2f\x34\x97\x88\xe8\x25\x5e\x7c\x72\x28\x3d\x3d\x1d\x3d\x7a\xf4\ -\x10\x5e\x9a\x4e\x4e\x4e\xd8\xb8\x71\x23\x4b\x93\x88\x34\xa9\xd0\ -\xe2\xbc\x75\xeb\x16\x7c\x7c\x7c\x70\xe7\xce\x1d\x91\xf3\xc0\xd2\ -\xd2\x12\x2b\x57\xae\x44\x9d\x3a\x75\x84\xe6\x12\x11\x15\xd5\x73\ -\x8b\x53\xaf\xd7\xe3\x93\x4f\x3e\xc1\x89\x13\x27\x44\xcf\x83\x1f\ -\x7f\xfc\x11\x1d\x3a\x74\x10\x9e\x4b\x44\x54\x54\xcf\x2d\xce\xd1\ -\xa3\x47\x23\x36\x36\x56\xf4\x2c\xe8\xd7\xaf\x1f\x46\x8c\x18\x21\ -\x3c\x97\x88\x48\x8a\x67\x4e\x0e\x2d\x5e\xbc\x18\xfd\xfb\xf7\x17\ -\x3e\x88\xb7\xb7\x37\x76\xed\xda\x05\x6b\x6b\x6b\xe1\xd9\x44\x44\ -\x12\x3c\xfd\x91\xcb\x7d\xfb\xf6\xa1\x6d\xdb\xb6\xc8\xcb\xcb\x13\ -\x3e\x49\xef\xde\xbd\xe1\xec\xec\x2c\x3c\x57\x24\x1b\x1b\x1b\x4c\ -\x99\x32\x45\xed\x31\x88\xa8\x64\xfe\xbf\x38\xcf\x9f\x3f\x8f\xe6\ -\xcd\x9b\xe3\xda\xb5\x6b\x6a\x0f\x65\xb6\x1c\x1c\x1c\x84\x3f\xfd\ -\x93\x88\x64\xf7\xf0\x72\xa4\x07\x0f\x1e\xc0\xd7\xd7\x97\xa5\x49\ -\x44\x54\x04\x16\x46\xa3\x11\x7d\xfb\xf6\x45\x52\x52\x92\xda\xb3\ -\x10\x11\x99\x04\x8b\x88\x88\x08\xac\x5a\xb5\x4a\xed\x39\x88\x88\ -\x4c\x86\xc5\xd9\xb3\x67\xd5\x9e\x81\x88\xc8\xa4\x94\xf8\x29\x97\ -\x44\x44\xa5\x0d\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\ -\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\ -\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\ -\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\ -\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xf4\xcc\x53\x2e\x89\ -\x88\xe8\x85\xe2\x78\xc4\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ -\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\x99\x54\ -\x71\xa6\xa4\xa4\x20\x2b\x2b\x4b\xed\x31\x88\xa8\x94\x33\xa9\xe2\ -\x8c\x88\x88\xc0\x1f\x7f\xfc\xa1\xf6\x18\x44\x54\xca\x99\xcc\x75\ -\x9c\xb9\xb9\xb9\x78\xfd\xf5\xd7\xe1\xe1\xe1\x81\x9d\x3b\x77\xaa\ -\x3d\x0e\x11\x95\x5e\xa6\x73\x1d\xe7\x96\x2d\x5b\x70\xf3\xe6\x4d\ -\xec\xde\xbd\x1b\x67\xce\x9c\x51\x7b\x1c\x22\x2a\xc5\x4c\xa6\x38\ -\x97\x2f\x5f\x0e\x00\x30\x1a\x8d\xf8\xfd\xf7\xdf\x55\x9e\x86\x88\ -\x4a\x33\x93\xd8\xaa\x67\x66\x66\xc2\xd5\xd5\x15\x79\x79\x79\x00\ -\x80\x3a\x75\xea\xe0\xd8\xb1\x63\xd0\xe9\x74\x2a\x4f\x46\x44\xa5\ -\x90\x69\x6c\xd5\xff\xf8\xe3\x8f\xc7\xa5\x09\x00\x27\x4e\x9c\x40\ -\x42\x42\x82\x8a\x13\x11\x51\x69\x66\x12\xc5\xf9\x68\x9b\xfe\xb2\ -\xaf\x11\x11\x89\xa0\xf9\xad\x7a\x7a\x7a\x3a\x1a\x34\x68\xf0\xcc\ -\xd7\x2b\x54\xa8\x80\xcb\x97\x2f\xc3\xc6\xc6\x46\x85\xa9\x88\xa8\ -\x14\xd3\xfe\x56\x7d\xc5\x8a\x15\xcf\xfd\xfa\xcd\x9b\x37\xb1\x69\ -\xd3\x26\xc1\xd3\x10\x11\x69\x7c\xab\x6e\x30\x18\x5e\xb8\x25\xe7\ -\x76\x9d\x88\xd4\xa0\xe9\xe2\x8c\x8b\x8b\xc3\xf9\xf3\xe7\x0b\xfd\ -\xfe\xa6\x4d\x9b\x90\x99\x99\x29\x70\x22\x22\x22\x8d\x17\xe7\xcb\ -\x8e\x28\xf3\xf3\xf3\x11\x15\x15\x25\x68\x1a\x22\xa2\x87\x34\x7b\ -\x72\xe8\xfe\xfd\xfb\xa8\x5c\xb9\x32\xee\xdf\xbf\xff\xc2\x9f\x7b\ -\xeb\xad\xb7\x10\x1f\x1f\x2f\x68\x2a\x22\x22\x0d\x9f\x1c\xda\xb0\ -\x61\xc3\x4b\x4b\x13\x00\x12\x12\x12\x90\x9e\x9e\x2e\x60\x22\x22\ -\xa2\x87\x34\x5b\x9c\x52\x4e\xfc\xf0\x24\x11\x11\x89\xa4\xc9\xad\ -\xfa\xc5\x8b\x17\x51\xad\x5a\x35\x18\x0c\x86\x22\xfd\xbc\xab\xab\ -\x2b\xce\x9d\x3b\x07\x4b\x4b\x4b\x85\x27\x23\x22\xd2\xe8\x56\x3d\ -\x32\x32\xb2\xc8\xa5\x09\x00\x97\x2e\x5d\x42\x5c\x5c\x9c\x82\x13\ -\x11\x11\xfd\x3f\x4d\x16\xe7\xd2\xa5\x4b\x25\xbf\x86\xdb\x75\x22\ -\x12\x45\x73\x5b\xf5\xff\xf9\x9f\xff\x81\xa7\xa7\xa7\xe4\xd7\x39\ -\x38\x38\xe0\xca\x95\x2b\x70\x74\x74\x54\x60\x2a\x22\xa2\xc7\xb4\ -\xb7\x55\x5f\xb6\x6c\x59\xb1\x5e\x97\x95\x95\x85\x75\xeb\xd6\xc9\ -\x3c\x0d\x11\xd1\xb3\x34\x55\x9c\xf9\xf9\xf9\x25\xba\x49\x31\xb7\ -\xeb\x44\x24\x82\xa6\x8a\x73\xeb\xd6\xad\xb8\x76\xed\x5a\xb1\x5f\ -\xbf\x63\xc7\x0e\x5c\xb8\x70\x41\xc6\x89\x88\x88\x9e\xa5\xa9\xe2\ -\x2c\xe9\x11\xa3\xc1\x60\xe0\x63\x35\x88\x48\x71\x9a\x39\x39\x74\ -\xfb\xf6\x6d\x54\x76\x71\x41\x4e\x6e\x6e\x89\xd6\x69\x58\xa7\x0e\ -\x52\x8f\x1f\x97\x69\x2a\x22\xa2\x67\x68\xe7\xe4\xd0\xca\xf9\xf3\ -\x4b\x5c\x9a\x00\x90\x76\xe2\x04\x0e\x45\x47\xcb\x30\x11\x11\xd1\ -\xf3\x69\xe2\x88\xd3\x98\x9d\x8d\x96\x2e\x2e\x38\x70\xf7\xae\x2c\ -\xeb\x0d\x76\x76\xc6\x7f\x4e\x9d\x82\xce\xc1\x41\x96\xf5\x88\x88\ -\x9e\xa0\x8d\x23\xce\xd4\x11\x23\x70\x50\xa6\xd2\x04\x80\x55\xd7\ -\xae\xe1\xee\xd8\xb1\xb2\xad\x47\x44\xf4\x24\xd5\x8b\x53\x7f\xf2\ -\x24\x56\x2c\x5b\x06\x39\x0f\x7b\x33\x8d\x46\x6c\xfe\xf5\x57\xe8\ -\x53\x53\x65\x5c\x95\x88\xe8\x21\xd5\x8b\x33\x67\xe6\x4c\x44\x3e\ -\xf1\xe8\x5f\xb9\x44\xe5\xe5\x21\x67\xc6\x0c\xd9\xd7\x25\x22\x52\ -\xf5\x3d\x4e\x63\x4e\x0e\xfe\xeb\xea\x8a\x0f\x6f\xde\x94\x7d\x6d\ -\x6b\x00\x47\x2b\x56\x44\x8d\xf3\xe7\xa1\xb3\xb7\x97\x7d\x7d\x22\ -\x2a\xb5\xd4\x7d\x8f\x53\x9f\x94\x84\xa8\x7b\xf7\x14\x59\x3b\x0f\ -\xc0\xfa\xfb\xf7\x51\xc0\xbb\xc3\x13\x91\xcc\x54\x2d\xce\xfb\x89\ -\x89\x58\x57\x50\xa0\xd8\xfa\x2b\x0b\x0a\xa0\x3f\x72\x44\xb1\xf5\ -\x89\xa8\x74\x52\xb5\x38\x37\xee\xd9\x83\x7b\x0a\xbe\x53\x90\xa0\ -\xd7\xe3\x58\x5a\x9a\x62\xeb\x13\x51\xe9\xa4\x6a\x71\xfe\x7e\xf8\ -\xb0\xe2\x19\x2b\x93\x92\x14\xcf\x20\xa2\xd2\x45\xb5\x93\x43\x57\ -\xae\x5c\x41\x15\x57\x57\x14\x48\xb8\xd3\x7b\x71\x54\x2d\x5b\x16\ -\x67\xef\xdc\x81\x4e\xa7\x53\x34\x87\x88\x4a\x0d\xf5\x4e\x0e\x45\ -\x46\x46\x2a\x5e\x9a\x00\x70\xfe\xde\x3d\xec\xdd\xbb\x57\xf1\x1c\ -\x22\x2a\x3d\x54\x2b\x4e\x91\xf7\xce\xe4\x7d\x3a\x89\x48\x4e\xaa\ -\x6c\xd5\x8f\x1c\x39\x02\x0f\x0f\x0f\x61\x79\xe5\xca\x95\x43\x46\ -\x46\x06\xec\x79\x3d\x27\x11\x95\x9c\x3a\x5b\xf5\x15\x2b\x56\x08\ -\xcd\xbb\x7b\xf7\x2e\xa2\x79\xc7\x24\x22\x92\x89\xf0\xe2\xd4\xeb\ -\xf5\xf8\xed\xb7\xdf\x44\xc7\x16\xfb\x59\x46\x44\x44\xff\x24\xbc\ -\x38\x63\x63\x63\x71\xf9\xf2\x65\xd1\xb1\xd8\xb6\x6d\x1b\x32\x32\ -\x32\x84\xe7\x12\x91\xf9\x11\x5e\x9c\x6a\x9d\xa8\xd1\xeb\xf5\x7c\ -\xac\x06\x11\xc9\x42\xe8\xc9\xa1\x3b\x77\xee\xa0\x72\xe5\xca\xc8\ -\xce\xce\x16\x15\xf9\x14\x0f\x0f\x0f\x24\xf1\x82\x78\x22\x2a\x19\ -\xb1\x27\x87\xd6\xac\x59\xa3\x5a\x69\x02\xc0\xdf\x7f\xff\x8d\xbf\ -\xff\xfe\x5b\xb5\x7c\x22\x32\x0f\x42\x8b\x53\x0b\xd7\x53\x6a\x61\ -\x06\x22\x32\x6d\xc2\xb6\xea\x67\xce\x9c\x41\xad\x5a\xb5\xa0\xf6\ -\x23\x8e\x9c\x9d\x9d\x71\xf1\xe2\x45\x58\x59\x59\xa9\x3a\x07\x11\ -\x99\x2c\x71\x5b\xf5\xdf\x7e\xfb\x4d\xf5\xd2\x04\x80\xab\x57\xaf\ -\x22\x36\x36\x56\xed\x31\x88\xc8\x84\x09\x29\x4e\xa3\xd1\xa8\xa9\ -\xeb\x28\xb9\x5d\x27\xa2\x92\x10\xb2\x55\x3f\x78\xf0\x20\xbc\xbc\ -\xbc\x94\x8e\x29\x32\x5b\x5b\x5b\x64\x64\x64\xc0\xc9\xc9\x49\xed\ -\x51\x88\xc8\xf4\x88\xd9\xaa\x6b\xe9\x68\x13\x00\x72\x72\x72\xb0\ -\x66\xcd\x1a\xb5\xc7\x20\x22\x13\xa5\x78\x71\xe6\xe6\xe6\x22\x2a\ -\x2a\x4a\xe9\x18\xc9\xb4\x56\xe6\x44\x64\x3a\x14\x2f\xce\x98\x98\ -\x18\xdc\xba\x75\x4b\xe9\x18\xc9\xf6\xee\xdd\x8b\xd3\xa7\x4f\xab\ -\x3d\x06\x11\x99\x20\xc5\x8b\x53\xab\x27\x62\x8c\x46\xa3\xf0\xbb\ -\x34\x11\x91\x79\x50\xf4\xe4\xd0\xf5\xeb\xd7\xe1\xea\xea\x8a\xfc\ -\xfc\x7c\xa5\x22\x4a\xa4\x76\xed\xda\x38\x7e\xfc\x38\x1f\xab\x41\ -\x44\x52\x28\x7b\x72\x28\x2a\x2a\x4a\xb3\xa5\x09\x00\x27\x4f\x9e\ -\xc4\x81\x03\x07\xd4\x1e\x83\x88\x4c\x8c\xa2\xc5\xa9\xd5\x6d\xfa\ -\x93\x4c\x61\x46\x22\xd2\x16\xc5\xb6\xea\x29\x29\x29\x68\xdc\xb8\ -\xb1\x12\x4b\xcb\xea\x95\x57\x5e\x41\x46\x46\x06\x6c\x6c\x6c\xd4\ -\x1e\x85\x88\x4c\x83\x72\x5b\x75\x53\xb9\xf7\xe5\xad\x5b\xb7\xb0\ -\x71\xe3\x46\xb5\xc7\x20\x22\x13\xa2\x48\x71\xea\xf5\x7a\x93\xba\ -\x4e\x92\xdb\x75\x22\x92\x42\x91\xe2\xdc\xbd\x7b\x37\x2e\x5d\xba\ -\xa4\xc4\xd2\x8a\xd8\xbc\x79\x33\xae\x5e\xbd\xaa\xf6\x18\x44\x64\ -\x22\x14\x29\x4e\x53\x3a\xda\x04\x80\x82\x82\x02\xac\x5c\xb9\x52\ -\xed\x31\x88\xc8\x44\xc8\x7e\x72\xe8\xfe\xfd\xfb\x70\x71\x71\x41\ -\x56\x56\x96\x9c\xcb\x2a\xae\x69\xd3\xa6\x48\x4c\x4c\x54\x7b\x0c\ -\x22\xd2\x3e\xf9\x4f\x0e\xad\x5d\xbb\xd6\xe4\x4a\x13\x00\xfe\xfa\ -\xeb\x2f\x24\x27\x27\xab\x3d\x06\x11\x99\x00\xd9\x8b\xd3\x94\x4f\ -\xb4\xa8\xf1\xbc\x77\x22\x32\x3d\xb2\x6e\xd5\x2f\x5c\xb8\x80\xea\ -\xd5\xab\xc3\x60\x30\xc8\xb5\xa4\x50\xaf\xbf\xfe\x3a\xce\x9f\x3f\ -\x0f\x4b\x4b\x4b\xb5\x47\x21\x22\xed\x92\x77\xab\xfe\xdb\x6f\xbf\ -\x99\x6c\x69\x02\xc0\xe5\xcb\x97\xb1\x73\xe7\x4e\xb5\xc7\x20\x22\ -\x8d\x93\xb5\x38\x4d\xed\x6c\xfa\xf3\x98\xf2\x5b\x0d\x44\x24\x86\ -\x6c\x5b\xf5\xc4\xc4\x44\x34\x6f\xde\x5c\x8e\xa5\x54\xe5\xe0\xe0\ -\x80\x8c\x8c\x0c\x94\x2d\x5b\x56\xed\x51\x88\x48\x9b\xe4\xdb\xaa\ -\x9b\xcb\x91\x5a\x56\x56\x16\xd6\xae\x5d\xab\xf6\x18\x44\xa4\x61\ -\xb2\x14\x67\x7e\x7e\x3e\x22\x23\x23\xe5\x58\x4a\x13\xcc\xe5\x2f\ -\x01\x22\x52\x86\x2c\xc5\xb9\x65\xcb\x16\x5c\xbf\x7e\x5d\x8e\xa5\ -\x34\x61\xd7\xae\x5d\x38\x7f\xfe\xbc\xda\x63\x10\x91\x46\xc9\x52\ -\x9c\x22\xae\x7f\x74\xd2\xe9\x9e\xfa\xa3\x24\x83\xc1\xa0\xc9\x07\ -\xcc\x11\x91\x36\x94\xf8\xe4\xd0\xed\xdb\xb7\x51\xb9\x72\x65\xe4\ -\xe4\xe4\x14\x7b\x0d\x2b\x00\xf5\x2d\x2c\xf0\x86\xa5\x25\x1a\x58\ -\x58\xc0\x55\xa7\x83\xab\x4e\x07\x37\x0b\x0b\x54\xd2\xe9\xf0\xa2\ -\x9a\xbc\x66\x34\xe2\xa2\xc1\x80\x4b\x46\x23\x2e\x1a\x8d\x38\x6e\ -\x30\x20\xd9\x60\xc0\x51\xbd\x1e\xd9\xc5\x9e\x08\x70\x77\x77\x47\ -\x4a\x4a\x4a\x09\x56\x20\x22\x33\x15\x67\x55\xd2\x15\x56\xad\x5a\ -\x25\xb9\x34\x6d\x6c\x6c\xd0\xb2\x65\x4b\xb4\xd1\xeb\xd1\x22\x21\ -\x01\x8d\x2c\x2d\x61\x5b\xcc\xfc\x4a\x3a\x1d\x2a\x59\x5a\xc2\xf3\ -\x1f\x5f\xd7\x03\x38\x6d\x30\x20\xa1\x45\x0b\xec\xae\x50\x01\x3b\ -\x76\xec\xc0\xed\xdb\xb7\x8b\xbc\x6e\x6a\x6a\x2a\x0e\x1f\x3e\x0c\ -\x4f\xcf\x7f\xae\x4c\x44\xa5\x5d\x89\xb7\xea\x45\xbd\x76\xd3\xd1\ -\xd1\x11\x41\x41\x41\x88\x89\x89\xc1\x8d\x1b\x37\xb0\x63\xc7\x0e\ -\x8c\x6a\xd1\x02\xcd\x4a\x50\x9a\x2f\x62\x09\xa0\x8e\x85\x05\x82\ -\xdd\xdd\xb1\x7a\xf5\x6a\x64\x66\x66\xe2\xcf\x3f\xff\xc4\xb0\x61\ -\xc3\xf0\xea\xab\xaf\x16\x69\x0d\x73\xb8\x2e\x95\x88\xe4\x57\xa2\ -\xe2\x3c\x75\xea\x14\xf6\xed\xdb\x57\xe8\xf7\x75\x3a\x1d\xde\x7b\ -\xef\x3d\x2c\x5b\xb6\x0c\x57\xae\x5c\xc1\xd2\xa5\x4b\xf1\xd1\x47\ -\x1f\xc1\xc1\xc1\xa1\x24\xb1\xc5\x62\x69\x69\x89\x96\x2d\x5b\x62\ -\xd6\xac\x59\xb8\x74\xe9\x12\xd6\xad\x5b\x87\xce\x9d\x3b\xc3\xc2\ -\xa2\xf0\x5f\x41\x64\x64\xa4\xa6\x1f\x36\x47\x44\xea\x28\x51\x71\ -\x2e\x5d\xba\x14\xcf\x7b\x8b\xd4\xc1\xc1\x01\xa1\xa1\xa1\x38\x79\ -\xf2\x24\xb6\x6f\xdf\x8e\xc0\xc0\x40\x55\xca\xb2\x30\xd6\xd6\xd6\ -\xf0\xf3\xf3\x43\x74\x74\x34\x4e\x9d\x3a\x85\xd0\xd0\x50\xd8\xdb\ -\xdb\x3f\xf3\x73\xd7\xae\x5d\xc3\xa6\x4d\x9b\x54\x98\x90\x88\xb4\ -\xac\xd8\xc5\x69\x34\x1a\x9f\x79\xae\x90\x9d\x9d\x1d\xc6\x8c\x19\ -\x83\x53\xa7\x4e\x21\x3c\x3c\x1c\x35\x6b\xd6\x2c\xf1\x80\x4a\xab\ -\x5e\xbd\x3a\xc2\xc3\xc3\x91\x9e\x9e\x8e\xc1\x83\x07\xc3\xca\xea\ -\xe9\xb7\x7d\x4d\xe5\xd9\x49\x44\x24\x4e\xb1\x8b\x73\xcf\x9e\x3d\ -\x38\x75\xea\x14\x00\xc0\xca\xca\x0a\xa1\xa1\xa1\x38\x7f\xfe\x3c\ -\xc2\xc2\xc2\xe0\xec\xec\x2c\xdb\x80\xa2\x54\xa9\x52\x05\x73\xe7\ -\xce\xc5\xa9\x53\xa7\x10\x18\x18\x08\xdd\xff\x5d\xf2\xb4\x61\xc3\ -\x06\x64\x66\x66\xaa\x3c\x1d\x11\x69\x49\xb1\x8b\xf3\xd1\xb5\x9b\ -\x6f\xbd\xf5\x16\x12\x12\x12\x10\x1e\x1e\x5e\xe4\x93\x2e\x5a\x56\ -\xb5\x6a\x55\x2c\x5b\xb6\x0c\xdb\xb6\x6d\x43\xad\x5a\xb5\x90\x97\ -\x97\x87\x35\x6b\xd6\xa8\x3d\x16\x11\x69\x48\xb1\x8a\xf3\xc1\x83\ -\x07\x88\x89\x89\x41\x44\x44\x04\x0e\x1e\x3c\x88\x37\xdf\x7c\x53\ -\xee\xb9\x54\xd7\xae\x5d\x3b\xa4\xa4\xa4\x60\xec\xd8\xb1\x3c\xbb\ -\x4e\x44\x4f\x29\xd6\x75\x9c\xe7\xce\x9d\x43\x6c\x6c\x2c\xdc\xdd\ -\xdd\xe5\x9e\x47\x53\x6c\x6d\x6d\x31\x6d\xda\x34\x6c\xdf\xbe\x1d\ -\x77\xef\xde\x45\xb9\x72\xe5\xd4\x1e\x89\x88\x34\xa0\x58\xc5\xd9\ -\xa0\x41\x03\xb9\xe7\xd0\xb4\x76\xed\xda\xa9\x3d\x02\x11\x69\x88\ -\x22\x8f\x07\x26\x22\x32\x67\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\ -\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\ -\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\ -\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\ -\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\ -\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\ -\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\ -\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\ -\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\ -\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\ -\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\ -\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\ -\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ -\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\ -\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\ -\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\ -\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\ -\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\ -\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\ -\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\xc8\ -\x4a\xed\x01\x88\x48\x3a\xbd\x5e\x8f\x81\x03\x07\xe2\xc6\x8d\x1b\ -\xc2\x32\xdd\xdd\xdd\x31\x65\xca\x14\x61\x79\x2f\x32\x6e\xdc\x38\ -\xa4\xa7\xa7\x0b\xcb\x7b\xed\xb5\xd7\x30\x7f\xfe\x7c\x58\x5a\x5a\ -\x02\x60\x71\x12\x99\x24\x4b\x4b\x4b\xb4\x6e\xdd\x1a\x41\x41\x41\ -\xc2\x32\x37\x6c\xd8\x80\xd6\xad\x5b\xa3\x7d\xfb\xf6\xc2\x32\x9f\ -\x27\x26\x26\x06\x61\x61\x61\x42\x33\x23\x23\x23\x1f\x97\x26\xc0\ -\xad\x3a\x91\xc9\x0a\x0c\x0c\xc4\x87\x1f\x7e\x28\x34\x73\xe8\xd0\ -\xa1\xc8\xcd\xcd\x15\x9a\xf9\xa4\x07\x0f\x1e\xe0\xb3\xcf\x3e\x13\ -\x9a\xe9\xeb\xeb\x8b\x80\x80\x80\xa7\xbe\xc6\xe2\x24\x32\x61\x11\ -\x11\x11\x28\x57\xae\x9c\xb0\xbc\x13\x27\x4e\x08\x3f\xda\x7b\xd2\ -\x84\x09\x13\x70\xee\xdc\x39\x61\x79\xaf\xbc\xf2\x0a\xe6\xcd\x9b\ -\xf7\xcc\xd7\x59\x9c\x44\x26\xcc\xcd\xcd\x0d\xd3\xa7\x4f\x17\x9a\ -\xf9\xfd\xf7\xdf\xe3\xd4\xa9\x53\x42\x33\x01\x20\x39\x39\x19\x33\ -\x66\xcc\x10\x9a\x39\x63\xc6\x0c\x54\xae\x5c\xf9\x99\xaf\xb3\x38\ -\x89\x4c\xdc\xc0\x81\x03\xd1\xa6\x4d\x1b\x61\x79\x39\x39\x39\x18\ -\x36\x6c\x98\xb0\x3c\x00\x30\x1a\x8d\x08\x09\x09\x41\x41\x41\x81\ -\xb0\xcc\x0f\x3e\xf8\x00\x7d\xfa\xf4\x79\xee\xf7\x58\x9c\x44\x26\ -\x4e\xa7\xd3\x61\xd1\xa2\x45\xb0\xb7\xb7\x17\x96\xb9\x65\xcb\x16\ -\xac\x59\xb3\x46\x58\xde\xa2\x45\x8b\xb0\x7f\xff\x7e\x61\x79\xe5\ -\xca\x95\x43\x44\x44\x44\xa1\xdf\x67\x71\x12\x99\x81\x9a\x35\x6b\ -\x0a\xbf\x54\x68\xc4\x88\x11\xb8\x7f\xff\xbe\xe2\x39\xd7\xaf\x5f\ -\xc7\xd8\xb1\x63\x15\xcf\x79\xd2\xf4\xe9\xd3\x51\xa5\x4a\x95\x42\ -\xbf\xcf\xe2\x24\x32\x13\xa1\xa1\xa1\xf0\xf2\xf2\x12\x96\x77\xf1\ -\xe2\x45\x4c\x98\x30\x41\xf1\x9c\xd1\xa3\x47\xe3\xd6\xad\x5b\x8a\ -\xe7\x3c\xd2\xb6\x6d\x5b\x0c\x1c\x38\xf0\x85\x3f\xc3\xe2\x24\x32\ -\x13\x16\x16\x16\xf8\xe5\x97\x5f\x60\x63\x63\x23\x2c\x33\x3c\x3c\ -\x1c\xc9\xc9\xc9\x8a\xad\xbf\x6b\xd7\x2e\x2c\x5f\xbe\x5c\xb1\xf5\ -\xff\xc9\xde\xde\x1e\x0b\x17\x2e\x84\x4e\xa7\x7b\xe1\xcf\xb1\x38\ -\x89\xcc\x48\x83\x06\x0d\xf0\xef\x7f\xff\x5b\x58\x5e\x41\x41\x01\ -\x86\x0c\x19\x02\xa3\xd1\x28\xfb\xda\x79\x79\x79\x18\x3c\x78\xb0\ -\xec\xeb\xbe\xc8\xd4\xa9\x53\x51\xb3\x66\xcd\x97\xfe\x1c\x8b\x93\ -\xc8\xcc\x8c\x19\x33\x06\x6f\xbe\xf9\xa6\xb0\xbc\x3f\xff\xfc\x13\ -\x4b\x96\x2c\x91\x7d\xdd\x69\xd3\xa6\xe1\xd8\xb1\x63\xb2\xaf\x5b\ -\x18\x6f\x6f\xef\x22\x5f\x2d\xc0\xe2\x24\x32\x33\x56\x56\x56\x58\ -\xbc\x78\x31\xac\xac\xc4\x7d\xa2\x7a\xcc\x98\x31\xb8\x79\xf3\xa6\ -\x6c\xeb\x9d\x3c\x79\x12\xdf\x7f\xff\xbd\x6c\xeb\xbd\x8c\xad\xad\ -\x2d\x16\x2f\x5e\x0c\x0b\x8b\xa2\x55\x22\x8b\x93\xc8\x0c\xbd\xf1\ -\xc6\x1b\x18\x37\x6e\x9c\xb0\xbc\xcc\xcc\x4c\x59\xf3\x86\x0c\x19\ -\x82\x9c\x9c\x1c\xd9\xd6\x7b\x99\x89\x13\x27\xa2\x5e\xbd\x7a\x45\ -\xfe\x79\x16\x27\x91\x99\xfa\xe6\x9b\x6f\xd0\xb0\x61\x43\x61\x79\ -\x8b\x16\x2d\xc2\xc1\x83\x07\x4b\xbc\x4e\x64\x64\x24\x62\x63\x63\ -\x65\x98\xa8\x68\x9a\x37\x6f\x8e\xd1\xa3\x47\x4b\x7a\x0d\x8b\x93\ -\xc8\x4c\x59\x5b\x5b\x4b\xda\x7e\x96\x94\xd1\x68\xc4\xe0\xc1\x83\ -\xa1\xd7\xeb\x8b\xbd\xc6\xed\xdb\xb7\x31\x72\xe4\x48\x19\xa7\x7a\ -\xb1\x47\xbf\xa3\x27\xef\x7c\x54\x14\x2c\x4e\x22\x33\xd6\xa2\x45\ -\x0b\x8c\x18\x31\x42\x58\x5e\x52\x52\x12\xe6\xcc\x99\x53\xec\xd7\ -\x7f\xf9\xe5\x97\xb8\x7a\xf5\xaa\x8c\x13\xbd\xd8\x57\x5f\x7d\x85\ -\x46\x8d\x1a\x49\x7e\x1d\x8b\x93\x84\x51\xf3\x76\x64\xa5\xd9\xe4\ -\xc9\x93\x51\xbb\x76\x6d\x61\x79\xff\xfe\xf7\xbf\x91\x91\x91\x21\ -\xf9\x75\xf1\xf1\xf1\x58\xb0\x60\x81\x02\x13\x3d\x9f\x87\x87\x07\ -\xbe\xfc\xf2\xcb\x62\xbd\x96\xc5\x49\xc2\x64\x67\x67\xa3\x65\xcb\ -\x96\x18\x37\x6e\x9c\x2a\x77\xd7\x29\xad\xec\xec\xec\xb0\x68\xd1\ -\xa2\x97\x5e\xd4\x2d\x97\xbb\x77\xef\x4a\xde\x6e\xeb\xf5\x7a\x84\ -\x84\x84\xc0\x60\x30\x28\x34\xd5\xd3\x1e\x5d\x79\x50\xa6\x4c\x99\ -\x62\xbd\x9e\xc5\x49\xc2\x38\x39\x39\xe1\xcb\x2f\xbf\x44\x58\x58\ -\x18\x6a\xd7\xae\x8d\x66\xcd\x9a\x21\x3c\x3c\x5c\xe8\xe3\x1f\x4a\ -\xab\x77\xdf\x7d\x17\x21\x21\x21\xc2\xf2\x56\xae\x5c\x29\xe9\x04\ -\x4f\x78\x78\x38\x92\x92\x92\x14\x9c\xe8\x69\x5f\x7c\xf1\x05\x3c\ -\x3d\x3d\x8b\xfd\x7a\x16\x27\x09\xd5\xa9\x53\x27\xf4\xec\xd9\x13\ -\x00\xf0\xd7\x5f\x7f\x61\xc4\x88\x11\x70\x73\x73\x43\xf7\xee\xdd\ -\xb1\x71\xe3\x46\xe4\xe7\xe7\xab\x3c\xa1\xf9\x0a\x0b\x0b\x43\xd5\ -\xaa\x55\x85\xe5\x7d\xf6\xd9\x67\x45\x7a\x7b\xe6\xc2\x85\x0b\xf8\ -\xf6\xdb\x6f\x05\x4c\xf4\x50\x83\x06\x0d\x4a\x9c\xc7\xe2\x24\xe1\ -\x7e\xfe\xf9\xe7\xa7\xee\x5a\x9e\x93\x93\x83\x55\xab\x56\xc1\xc7\ -\xc7\x07\x75\xea\xd4\xc1\x37\xdf\x7c\x83\xe3\xc7\x8f\xab\x38\xa1\ -\x79\x2a\x5b\xb6\xec\x0b\x6f\x95\x26\xb7\xe3\xc7\x8f\x17\xe9\x26\ -\xcb\xa1\xa1\xa1\x42\xee\xb2\x04\x3c\xfc\x3c\xff\xe2\xc5\x8b\x4b\ -\xfc\x79\x7e\x16\x27\x09\xe7\xec\xec\x8c\x6f\xbe\xf9\xe6\xb9\xdf\ -\x3b\x77\xee\x1c\x26\x4f\x9e\x8c\x7a\xf5\xea\xc1\xdd\xdd\x1d\x61\ -\x61\x61\xb8\x72\xe5\x8a\xe0\x09\xcd\x57\xc7\x8e\x1d\x0b\xbd\x39\ -\xaf\x12\xa6\x4e\x9d\x8a\xd3\xa7\x4f\x17\xfa\xfd\x8d\x1b\x37\x62\ -\xfd\xfa\xf5\xc2\xe6\x19\x31\x62\x04\xde\x7e\xfb\xed\x12\xaf\xc3\ -\xe2\x24\x55\x84\x86\x86\xa2\x56\xad\x5a\x2f\xfc\x99\xb4\xb4\x34\ -\x8c\x1b\x37\x0e\xae\xae\xae\x68\xdf\xbe\x3d\x96\x2d\x5b\x86\xac\ -\xac\x2c\x41\x13\x9a\xaf\x19\x33\x66\xc0\xc5\xc5\x45\x48\x56\x4e\ -\x4e\x4e\xa1\x0f\x57\xcb\xca\xca\x12\xfa\xe0\xb5\xda\xb5\x6b\x63\ -\xf2\xe4\xc9\xb2\xac\xc5\xe2\x24\x55\x58\x5b\x5b\x17\xf9\x7d\x26\ -\x83\xc1\x80\xed\xdb\xb7\xa3\x4f\x9f\x3e\xa8\x51\xa3\x06\x42\x43\ -\x43\x91\x98\x98\xa8\xf0\x84\xe6\xeb\x95\x57\x5e\xc1\xdc\xb9\x73\ -\x85\xe5\x15\x76\xb7\xf8\x09\x13\x26\xe0\xfc\xf9\xf3\x42\x66\xd0\ -\xe9\x74\xf8\xe5\x97\x5f\x60\x67\x67\x27\xcb\x7a\x2c\x4e\x52\x4d\ -\xef\xde\xbd\xd1\xa0\x41\x03\x49\xaf\xb9\x7e\xfd\x3a\x66\xcf\x9e\ -\x8d\xe6\xcd\x9b\xa3\x6a\xd5\xaa\x18\x37\x6e\x1c\x4e\x9c\x38\xa1\ -\xd0\x84\xe6\xab\x4b\x97\x2e\xe8\xde\xbd\xbb\xb0\xbc\x7f\xde\x2d\ -\x3e\x39\x39\x19\x33\x67\xce\x14\x96\x3f\x78\xf0\x60\xb4\x6a\xd5\ -\x4a\xb6\xf5\x58\x9c\xa4\x1a\x9d\x4e\x87\xe1\xc3\x87\x17\xfb\xf5\ -\x17\x2e\x5c\x40\x58\x58\x18\xea\xd6\xad\xfb\xf8\xd2\xa6\xcc\xcc\ -\x4c\x19\x27\x34\x6f\xb3\x67\xcf\x46\xc5\x8a\x15\x85\x64\x3d\x79\ -\xb7\x78\xa3\xd1\x88\x41\x83\x06\x09\x7b\xf0\x5a\xb5\x6a\xd5\x64\ -\x7f\xa4\x31\x8b\x93\x54\xd5\xa7\x4f\x1f\x38\x3b\x3b\x97\x78\x9d\ -\x27\x2f\x6d\xea\xdc\xb9\x33\x56\xad\x5a\xc5\x4b\x9b\x5e\xa2\x52\ -\xa5\x4a\x98\x35\x6b\x96\xb0\xbc\xf0\xf0\x70\xa4\xa4\xa4\x60\xe1\ -\xc2\x85\x38\x70\xe0\x80\xb0\xdc\x85\x0b\x17\xc2\xd1\xd1\x51\xd6\ -\x35\x59\x9c\xa4\x2a\x5b\x5b\x5b\xf4\xef\xdf\x5f\xb6\xf5\x72\x73\ -\x73\x11\x13\x13\x83\xee\xdd\xbb\xa3\x56\xad\x5a\x18\x3f\x7e\x3c\ -\x8e\x1e\x3d\x2a\xdb\xfa\xe6\xa6\x67\xcf\x9e\xe8\xdc\xb9\xb3\x90\ -\xac\x82\x82\x02\x04\x07\x07\x0b\xbd\xdd\x5d\x70\x70\x30\xda\xb7\ -\x6f\x2f\xfb\xba\x3a\xa3\x12\xf7\xbc\x2f\xa2\x07\x63\xc7\x22\x57\ -\xe1\x37\xa9\x6d\xfa\xf6\x85\xfd\xec\xd9\x8a\x66\x50\xc9\x9c\x3a\ -\x75\x0a\x75\xea\xd4\x51\xe4\xf1\x0b\x8f\x34\x6c\xd8\x10\xdd\xba\ -\x75\x43\xdf\xbe\x7d\x51\xbd\x7a\x75\xc5\x72\x4c\xd1\xa5\x4b\x97\ -\xe0\xee\xee\x8e\x3b\x77\xee\xa8\x3d\x8a\xac\x5c\x5d\x5d\x91\x9a\ -\x9a\x8a\xf2\xe5\xcb\xcb\xbd\x74\x1c\x8f\x38\x49\x75\xb5\x6a\xd5\ -\x52\xfc\xe9\x8c\x69\x69\x69\x98\x38\x71\x22\x6a\xd5\xaa\x85\x77\ -\xde\x79\x07\x0b\x16\x2c\x10\x76\xd1\xb5\xd6\xb9\xba\xba\xe2\xc7\ -\x1f\x7f\x54\x7b\x0c\xd9\xcd\x9f\x3f\x5f\x89\xd2\x04\xc0\xad\x3a\ -\x69\x44\xef\xde\xbd\x85\xe4\x18\x0c\x06\xec\xdb\xb7\x0f\x83\x06\ -\x0d\x42\xa5\x4a\x95\x1e\x7f\xd4\xb3\x24\xf7\x90\x34\x07\x9f\x7e\ -\xfa\x29\xda\xb5\x6b\xa7\xf6\x18\xb2\xe9\xd5\xab\x17\x3a\x75\xea\ -\xa4\xd8\xfa\x2c\x4e\xd2\x84\xae\x5d\xbb\x4a\xbe\x99\x6c\x49\x65\ -\x67\x67\x3f\xfe\xa8\xa7\xbb\xbb\x3b\xa6\x4c\x99\x82\x73\xe7\xce\ -\x09\x9d\x41\x4b\x16\x2e\x5c\x08\x07\x07\x07\xb5\xc7\x28\x31\x67\ -\x67\x67\x84\x87\x87\x2b\x9a\xc1\xe2\x24\x4d\xa8\x54\xa9\x12\xde\ -\x7a\xeb\x2d\xd5\xf2\x8f\x1d\x3b\x86\xaf\xbf\xfe\x1a\xd5\xab\x57\ -\x7f\x7c\x69\xd3\xf5\xeb\xd7\x55\x9b\x47\x0d\xd5\xab\x57\x17\xfa\ -\x80\x34\xa5\xcc\x99\x33\x47\xf1\xcb\xac\x58\x9c\xa4\x19\xef\xbf\ -\xff\xbe\xda\x23\x00\x78\xfe\xa5\x4d\x79\x79\x79\x6a\x8f\x25\xc4\ -\xd0\xa1\x43\xd1\xb2\x65\x4b\xb5\xc7\x28\xb6\xae\x5d\xbb\xc2\xdf\ -\xdf\x5f\xf1\x1c\x71\xcf\x0f\x55\x89\xfe\xec\x59\xe4\xad\x5b\xa7\ -\xf6\x18\x54\x04\x6d\x6d\x6d\x31\x41\xed\x21\x9e\x90\x97\x97\x87\ -\x98\x98\x18\xc4\xc4\xc4\xe0\x15\x47\x47\x74\xf5\xf6\x46\xaf\x36\ -\x6d\xd0\xb2\x5d\x3b\x58\xd5\xae\x0d\x9d\x93\x93\xda\x23\xca\xee\ -\xd1\xdd\x83\x3c\x3c\x3c\x84\x3e\x65\x52\x0e\x15\x2a\x54\xc0\x7f\ -\xfe\xf3\x1f\x21\x59\x66\x7f\x39\x12\x99\x8e\x02\x00\x35\xb2\xb2\ -\x90\xa5\xde\x7f\x92\x45\xd2\xc4\xc2\x02\x9f\x58\x5b\xe3\x93\x26\ -\x4d\xe0\xda\xb3\x27\x6c\x7a\xf7\x86\x4e\xd0\x27\x70\x44\x09\x0b\ -\x0b\x13\x7a\xbd\xa5\x1c\x96\x2f\x5f\x2e\xea\x24\x23\x2f\x47\x22\ -\xed\xb0\x02\xe0\x21\xe8\x89\x8c\x25\x71\xc4\x60\xc0\x57\x39\x39\ -\xa8\x9b\x90\x80\xd6\xa3\x47\x23\xbc\x66\x4d\x5c\xfb\xf6\x5b\xc0\ -\x8c\x9e\xa9\xf4\xf9\xe7\x9f\xa3\x59\xb3\x66\x6a\x8f\x51\x64\x1f\ -\x7d\xf4\x91\xb0\x2b\x33\x00\xbe\xc7\x49\x1a\x63\x0a\xc5\xf9\x88\ -\x01\x40\xbc\x5e\x8f\x91\x77\xef\xa2\xea\x77\xdf\xa1\x8b\x9b\x1b\ -\xa2\x17\x2f\x16\xf6\x19\x6c\x25\x59\x5a\x5a\x96\xe8\x99\x3c\x22\ -\x95\x2f\x5f\x5e\xe8\x0d\x9a\x01\x16\x27\x69\x4c\x13\xc1\x97\x24\ -\xc9\x25\x17\xc0\xfa\xcc\x4c\xf8\xf6\xef\x8f\x6a\x6e\x6e\x18\x3e\ -\x7c\xb8\xd0\x67\xe8\x28\xa1\x71\xe3\xc6\x18\x3f\x7e\xbc\xda\x63\ -\xbc\xd4\x4f\x3f\xfd\x04\x57\x57\x57\xa1\x99\x2c\x4e\xd2\x94\xfa\ -\x26\x74\xc4\x59\x98\xcb\x57\xaf\x62\xd6\xac\x59\xf0\xf4\xf4\x44\ -\xab\x56\xad\xb0\x68\xd1\x22\x93\xfd\x38\xe3\xf8\xf1\xe3\x8b\xf5\ -\xdc\x71\x51\xda\xb7\x6f\x2f\xeb\xbd\x0e\x8a\xca\xf4\xff\x2b\x25\ -\xb3\x52\x55\xd0\x23\x6c\x45\x30\x1a\x8d\xd8\xbb\x77\x2f\x06\x0c\ -\x18\x80\x8a\x15\x2b\x3e\xbe\x8b\xfd\x83\x07\x0f\xd4\x1e\xad\xc8\ -\xac\xad\xad\xf1\xeb\xaf\xbf\x0a\xff\x70\x42\x51\x38\x3a\x3a\x62\ -\xe1\xc2\x85\xaa\x64\xb3\x38\x49\x53\x5e\xd1\xe9\xe0\x68\x46\xe5\ -\xf9\x88\x5e\xaf\x7f\x7c\x17\x7b\x57\x57\x57\x04\x05\x05\x61\xfb\ -\xf6\xed\x8a\xde\xd8\x44\x2e\xcd\x9a\x35\xc3\xa8\x51\xa3\xd4\x1e\ -\xe3\x19\xd3\xa6\x4d\x43\xb5\x6a\xd5\x54\xc9\xe6\xe5\x48\xa4\x39\ -\x5e\x0f\x1e\xe0\x98\xc1\xa0\xf6\x18\x42\x54\xab\x56\x0d\x01\x01\ -\x01\x18\x30\x60\xc0\x4b\x9f\xc1\xa4\xa6\x9c\x9c\x1c\x78\x78\x78\ -\x68\xe6\xe9\xa3\xad\x5a\xb5\xc2\xee\xdd\xbb\xa1\x53\xe7\x2f\x59\ -\x5e\x8e\x44\xda\xe3\x6c\x86\x47\x9c\x85\x39\x77\xee\x1c\xc2\xc2\ -\xc2\x50\xaf\x5e\x3d\x7c\xf8\xe1\x87\x88\x8c\x8c\x44\x76\x76\xb6\ -\xda\x63\x3d\xc3\xd6\xd6\x16\xbf\xfc\xf2\x8b\x5a\x45\xf5\x14\x3b\ -\x3b\x3b\xd5\x67\x61\x71\x92\xe6\xd8\x6b\xe0\x7f\x4e\xd1\xf4\x7a\ -\x3d\xb6\x6c\xd9\x82\x9e\x3d\x7b\xa2\x42\x85\x0a\x8f\xef\xda\xa4\ -\xa5\x4b\x9b\xde\x79\xe7\x1d\x0c\x1d\x3a\x54\xed\x31\x30\x69\xd2\ -\x24\xd4\xae\x5d\x5b\xd5\x19\x58\x9c\xa4\x39\xf6\x6a\x0f\xa0\xb2\ -\x9c\x9c\x9c\xc7\x77\x6d\xaa\x5a\xb5\x2a\x86\x0f\x1f\x8e\xc3\x87\ -\x0f\xab\x3d\x16\x00\xe0\xfb\xef\xbf\x57\xf5\x46\xd0\xcd\x9b\x37\ -\xc7\xc8\x91\x23\x55\xcb\x7f\x84\xc5\x49\x9a\x63\x57\x0a\x8f\x38\ -\x0b\x93\x91\x91\x81\x59\xb3\x66\xa1\x69\xd3\xa6\x70\x77\x77\x47\ -\x58\x58\x18\xae\x5c\xb9\xa2\xda\x3c\xd6\xd6\xd6\xb0\xb7\x57\xef\ -\xaf\xb6\xcb\x97\x2f\xe3\xde\xbd\x7b\xaa\xe5\x3f\xc2\xe2\x24\xcd\ -\xd1\xfe\x67\x55\xd4\x91\x9e\x9e\x8e\x6d\xdb\xb6\x61\xf7\xee\xdd\ -\xaa\x9d\x8d\xff\xee\xbb\xef\x90\x96\x96\xa6\x4a\x36\xf0\xf0\x31\ -\x1f\x9f\x7f\xfe\xb9\x6a\xf9\x8f\xb0\x38\x49\x73\x72\x4c\xe0\x12\ -\x1d\x91\x5a\xb6\x6c\x89\x88\x88\x08\x5c\xbf\x7e\x1d\x3b\x76\xec\ -\x40\x40\x40\x80\x2a\x27\x46\x92\x92\x92\x64\x7f\xcc\x6e\x71\x2c\ -\x5a\xb4\x08\x3b\x76\xec\x50\x75\x06\xb3\xbf\xad\x1c\x99\x1e\xd3\ -\xb9\x3c\x5c\x39\xd5\xaa\x55\x43\xdf\xbe\x7d\xd1\xbd\x7b\x77\x34\ -\x6c\xd8\x50\xed\x71\x50\x50\x50\x80\x7e\xfd\xfa\x69\xe6\x64\xd5\ -\x80\x01\x03\x90\x9c\x9c\xac\xda\x1d\xeb\x59\x9c\xa4\x39\xd9\xa5\ -\xf4\x88\xd3\xd1\xd1\x11\x3d\x7b\xf6\x44\x60\x60\x20\xbc\xbd\xbd\ -\x61\xa1\xa1\x8f\x9f\x4e\x9b\x36\x4d\x53\x9f\xbd\x3f\x73\xe6\x0c\ -\xc6\x8f\x1f\xaf\xf8\x23\x32\x0a\xc3\xe2\x24\xcd\x31\xcd\x4f\x75\ -\x17\x5f\x8b\x16\x2d\x10\x18\x18\x88\x80\x80\x00\xc5\x1f\xf9\x50\ -\x1c\x69\x69\x69\x98\x34\x69\x92\xda\x63\x3c\x63\xce\x9c\x39\xf8\ -\xe4\x93\x4f\xe0\xed\xed\x2d\x3c\x9b\xc5\x49\x9a\x73\xb1\x14\x7c\ -\x6a\xa8\x6e\xdd\xba\x08\x0e\x0e\x46\xaf\x5e\xbd\xe0\xe6\xe6\xa6\ -\xf6\x38\x85\x32\x18\x0c\x08\x0e\x0e\xd6\xe4\xa3\x43\x0c\x06\x03\ -\xfa\xf7\xef\x8f\xa4\xa4\x24\xd8\xd8\xd8\x08\xcd\xd6\xce\x5e\x80\ -\x08\x0f\xef\x02\x7f\xd5\x4c\xb7\xea\xaf\xbd\xf6\x1a\x42\x43\x43\ -\x91\x98\x98\x88\x63\xc7\x8e\x61\xec\xd8\xb1\x9a\x2e\x4d\x00\x98\ -\x31\x63\x06\xe2\xe3\xe3\xd5\x1e\xa3\x50\xe9\xe9\xe9\x98\x38\x71\ -\xa2\xf0\x5c\x7e\x56\x9d\x34\xe5\xa2\xd1\x88\x26\x59\x59\x6a\x8f\ -\x21\x1b\x6b\x6b\x6b\xf8\xfa\xfa\x22\x30\x30\x10\x1d\x3a\x74\x10\ -\x7e\x64\x54\x12\x27\x4f\x9e\x44\x93\x26\x4d\x34\xf9\x11\xd0\x27\ -\x59\x59\x59\x21\x3e\x3e\x1e\x9e\x9e\x9e\xa2\x22\xe3\xb8\x55\x27\ -\x4d\x39\x6b\x26\xdb\x74\x77\x77\x77\x04\x05\x05\xa1\x57\xaf\x5e\ -\xc2\x6f\xb2\x2b\x07\xa3\xd1\x88\xfe\xfd\xfb\x6b\xbe\x34\x81\x87\ -\x67\xfc\x83\x83\x83\x91\x98\x98\x08\x2b\x2b\x31\x95\xc6\xad\x3a\ -\x69\x4a\x92\x09\x17\x67\x35\x0b\x0b\x7c\xf5\xaf\x7f\xe1\x68\x5a\ -\x1a\x52\x52\x52\x30\x66\xcc\x18\x93\x2c\x4d\x00\x98\x3b\x77\x2e\ -\xf6\xec\xd9\xa3\xf6\x18\x45\xf6\xf7\xdf\x7f\x63\xda\xb4\x69\xc2\ -\xf2\x58\x9c\xa4\x29\x47\xf4\x7a\xb5\x47\x90\xc4\x51\xa7\x43\x9f\ -\x32\x65\xb0\xa5\x62\x45\xa4\x2f\x5f\x8e\xc9\x7b\xf6\xa0\x7e\x83\ -\x06\x6a\x8f\x55\x22\xe7\xce\x9d\x33\xb9\x27\x5c\x02\x0f\x6f\xfe\ -\x21\xea\x53\x4d\xdc\xaa\x93\xa6\xfc\x6d\x02\x47\x9c\x56\x00\xde\ -\xb3\xb2\x42\x80\x95\x15\x3a\x3a\x39\xa1\x5c\x9f\x3e\xb0\x1b\x3d\ -\x1a\xba\xd7\x5e\x53\x7b\x34\x59\x0c\x1c\x38\x10\xf7\xef\xdf\x57\ -\x7b\x0c\xc9\xf2\xf2\xf2\x10\x1c\x1c\x8c\xfd\xfb\xf7\x2b\x7e\x0d\ -\xac\xaa\xc5\x69\xf1\xfa\xeb\xb0\x7c\xf3\x4d\x35\x47\x20\x0d\xb9\ -\x55\x50\x80\xd3\x07\x0f\xaa\x3d\x46\xa1\xaa\xd9\xda\x22\xa0\x52\ -\x25\xf4\xa8\x59\x13\x75\x3c\x3c\x60\xf5\xaf\x7f\xa1\x4c\xc7\x8e\ -\xd0\xa9\xf4\xe9\x15\x25\x2c\x5e\xbc\x18\xae\x3a\x84\x6f\x00\x00\ -\x07\x65\x49\x44\x41\x54\xdb\xb6\x6d\x53\x7b\x8c\x62\x8b\x8f\x8f\ -\xc7\xcc\x99\x33\x15\xbf\x63\xbd\xaa\x67\xd5\x89\x9e\x14\x15\x15\ -\x85\x1e\x3d\x7a\xa8\x3d\xc6\x53\x2a\x55\xaa\x84\x7e\xfd\xfa\x21\ -\x30\x30\x10\xee\xee\xee\x6a\x8f\xa3\xa8\xcb\x97\x2f\xc3\xdd\xdd\ -\x1d\xb7\x6f\xdf\x56\x7b\x94\x12\xb1\xb7\xb7\xc7\x91\x23\x47\x94\ -\xbc\xa3\x3e\xcf\xaa\x93\x76\x6c\xdd\xba\x55\xed\x11\x00\x3c\xbc\ -\xc3\xb8\xbf\xbf\x3f\x82\x82\x82\xd0\xa6\x4d\x1b\x4d\x3e\xa8\x4c\ -\x09\x83\x07\x0f\x36\xf9\xd2\x04\x80\x07\x0f\x1e\xe0\xd3\x4f\x3f\ -\xc5\xce\x9d\x3b\x15\xbb\x19\x0a\x8f\x38\x49\x13\x8c\x46\x23\xdc\ -\xdc\xdc\x70\xf9\xf2\x65\x55\xf2\x75\x3a\x1d\xde\x7b\xef\x3d\x04\ -\x06\x06\xc2\xc7\xc7\x07\x4e\x4e\x4e\xaa\xcc\xa1\x96\xdf\x7f\xff\ -\x1d\xbd\x7a\xf5\x52\x7b\x0c\x59\xcd\x9b\x37\x0f\x21\x21\x21\x4a\ -\x2c\x1d\xc7\xe2\x24\x4d\x48\x48\x48\x40\x8b\x16\x2d\x84\xe7\xba\ -\xb8\xb8\xa0\x67\xcf\x9e\xe8\xd3\xa7\x0f\x9a\x34\x69\x22\x3c\x5f\ -\x0b\xae\x5d\xbb\x06\x77\x77\x77\x64\x66\x66\xaa\x3d\x8a\xac\xca\ -\x96\x2d\x8b\xd4\xd4\x54\x54\xa9\x52\x45\xee\xa5\xb9\x55\x27\x6d\ -\x58\xbc\x78\xb1\xb0\xac\x72\xe5\xca\x21\x20\x20\x40\x93\x77\x21\ -\x52\xc3\xb0\x61\xc3\x84\x95\xa6\x9d\x9d\x9d\xb0\x8b\xea\xef\xdd\ -\xbb\x87\x41\x83\x06\x61\xf3\xe6\xcd\xb2\xaf\xcd\x23\x4e\x52\x5d\ -\x76\x76\x36\x2a\x57\xae\x8c\x3b\x77\x94\xbb\x2f\x92\x95\x95\x15\ -\x3a\x76\xec\x88\xa0\xa0\x20\x74\xee\xdc\x19\xb6\xb6\xb6\x8a\x65\ -\x99\x92\xf5\xeb\xd7\xa3\x4b\x97\x2e\xc2\xf2\xe6\xcd\x9b\x87\xb8\ -\xb8\x38\x44\x45\x45\x09\xcb\x5c\xb6\x6c\x19\x02\x03\x03\xe5\x5c\ -\x92\x5b\x75\x52\xdf\xea\xd5\xab\xd1\xad\x5b\x37\x45\xd6\xae\x5d\ -\xbb\x36\x02\x03\x03\x11\x18\x18\x88\x1a\x35\x6a\x28\x92\x61\xaa\ -\x6e\xdd\xba\x85\x86\x0d\x1b\x0a\x7b\x86\x91\x97\x97\x17\xf6\xed\ -\xdb\x87\x6b\xd7\xae\xa1\x41\x83\x06\xb8\x75\xeb\x96\x90\xdc\x0a\ -\x15\x2a\x20\x2d\x2d\x0d\xce\xce\xce\x72\x2d\x19\x07\x23\x91\xca\ -\xbc\xbd\xbd\x8d\x00\x64\xfb\xe3\xe2\xe2\x62\x1c\x3b\x76\xac\x31\ -\x25\x25\x45\xed\x7f\x35\x4d\x0b\x0a\x0a\x92\xf5\xf7\xfe\xa2\x3f\ -\x56\x56\x56\xc6\x23\x47\x8e\x3c\xce\x5e\xb8\x70\xa1\xb0\x6c\x00\ -\xc6\xae\x5d\xbb\xca\xf9\xab\xdb\xcd\xe2\x24\x55\xed\xdb\xb7\x4f\ -\x96\xff\x31\xec\xed\xed\x8d\x81\x81\x81\xc6\xd8\xd8\x58\x63\x41\ -\x41\x81\xda\xff\x5a\x9a\xb7\x79\xf3\x66\xa1\xc5\x35\x66\xcc\x98\ -\xa7\xf2\x0d\x06\x83\xb1\x55\xab\x56\x42\x67\x58\xbd\x7a\xb5\x5c\ -\xbf\xbe\xdd\xdc\xaa\x93\xaa\xba\x76\xed\x8a\xb5\x6b\xd7\x16\xeb\ -\xb5\x4f\x5e\x42\xe4\xeb\xeb\x8b\xf2\xe5\xcb\xcb\x3c\x9d\x79\xba\ -\x7b\xf7\x2e\x1a\x35\x6a\x84\x0b\x17\x2e\x08\xc9\xab\x5e\xbd\x3a\ -\x52\x53\x53\x9f\x79\xac\x70\x7a\x7a\x3a\x3c\x3c\x3c\x84\xdd\x24\ -\xd9\xd9\xd9\x19\x69\x69\x69\xa8\x50\xa1\x42\x49\x97\xe2\x56\x9d\ -\xd4\x73\xfc\xf8\x71\xa3\xa5\xa5\xa5\xe4\x23\x07\x57\x57\x57\xe3\ -\x98\x31\x63\xb8\x15\x2f\xa6\x41\x83\x06\x09\x3d\xd2\xdb\xb4\x69\ -\x53\xa1\xb3\x7c\xfb\xed\xb7\x42\x67\x09\x0c\x0c\x94\xe3\x57\xb8\ -\x9b\xc5\x49\xaa\xf9\xe8\xa3\x8f\x8a\xfc\x1f\x7c\xc5\x8a\x15\x8d\ -\xa1\xa1\xa1\xc6\xc4\xc4\x44\xb5\xc7\x36\x69\x3b\x77\xee\x34\xea\ -\x74\x3a\x61\x45\xe5\xef\xef\xff\xc2\x79\x72\x73\x73\x8d\xf5\xeb\ -\xd7\x17\x5a\x9e\x9b\x37\x6f\x2e\xe9\xaf\x91\x5b\x75\x52\xc7\xd6\ -\xad\x5b\xd1\xb1\x63\xc7\x17\xfe\x4c\x99\x32\x65\xe0\xe7\xe7\x67\ -\x92\x77\x4f\xd7\xa2\x07\x0f\x1e\xa0\x71\xe3\xc6\x38\x7d\xfa\xb4\ -\x90\xbc\x72\xe5\xca\xe1\xe8\xd1\xa3\x78\xfd\xf5\xd7\x5f\xf8\x73\ -\x7b\xf6\xec\x41\xeb\xd6\xad\x21\xaa\x8a\xaa\x54\xa9\x82\xd4\xd4\ -\x54\x94\x2d\x5b\xb6\xb8\x4b\x70\xab\x4e\xe2\xe5\xe7\xe7\x1b\x1b\ -\x34\x68\x50\xe8\x11\x41\xcb\x96\x2d\x8d\x11\x11\x11\xc6\x1b\x37\ -\x6e\xa8\x3d\xaa\x59\x19\x3e\x7c\xb8\xd0\x23\xbb\xd9\xb3\x67\x17\ -\x79\xb6\x4f\x3f\xfd\x54\xe8\x6c\x21\x21\x21\x25\xf9\x55\x72\xab\ -\x4e\xe2\xcd\x98\x31\xe3\xb9\x5b\xf1\xa1\x43\x87\x1a\x0f\x1e\x3c\ -\xa8\xf6\x78\x66\x69\xdf\xbe\x7d\x46\x0b\x0b\x0b\x61\xc5\xd4\xbc\ -\x79\x73\xa3\x5e\xaf\x2f\xf2\x7c\x37\x6f\xde\x34\x56\xaa\x54\x49\ -\xd8\x7c\x3a\x9d\xce\xb8\x6b\xd7\xae\xe2\xfe\x3a\xb9\x55\x27\xb1\ -\x52\x53\x53\xd1\xb4\x69\x53\xe4\xe6\xe6\xc2\xc1\xc1\x01\x1f\x7f\ -\xfc\x31\x82\x82\x82\xd0\xb6\x6d\xdb\x52\xff\xd1\x47\xa5\xe4\xe4\ -\xe4\xe0\xcd\x37\xdf\x44\x7a\x7a\xba\x90\x3c\x4b\x4b\x4b\x24\x26\ -\x26\xe2\x8d\x37\xde\x90\xf4\xba\xc8\xc8\x48\xf4\xec\xd9\x53\xa1\ -\xa9\x9e\x55\xab\x56\x2d\x24\x27\x27\xc3\xce\xce\x4e\xea\x4b\xb9\ -\x55\x27\x71\x0a\x0a\x0a\x8c\x5e\x5e\x5e\xc6\x76\xed\xda\x19\x97\ -\x2e\x5d\x6a\xbc\x73\xe7\x8e\xda\x23\x95\x0a\xe3\xc6\x8d\x13\xba\ -\x0d\x1e\x35\x6a\x54\xb1\x67\xed\xd8\xb1\xa3\x29\xcc\xca\x23\x4e\ -\x12\x27\x23\x23\x03\x77\xee\xdc\x41\xfd\xfa\xf5\xd5\x1e\xa5\xd4\ -\x38\x7c\xf8\x30\x5a\xb4\x68\x81\x82\x82\x02\x21\x79\x55\xaa\x54\ -\x41\x5a\x5a\x1a\x1c\x1d\x1d\x8b\xf5\xfa\xb3\x67\xcf\xc2\xdd\xdd\ -\x1d\x0f\x1e\x3c\x90\x79\xb2\xe7\xb3\xb0\xb0\xc0\xfe\xfd\xfb\xa5\ -\xde\x99\x2b\x8e\x7b\x23\x12\xa6\x72\xe5\xca\x2c\x4d\x81\xf2\xf3\ -\xf3\xd1\xaf\x5f\x3f\x61\xa5\x09\x00\xb3\x67\xcf\x2e\x76\x69\x02\ -\x0f\x2f\x96\x9f\x38\x71\xa2\x8c\x13\xbd\x98\xc1\x60\x40\x70\x70\ -\xb0\xe4\x8b\xf0\x59\x9c\x44\x66\x6a\xea\xd4\xa9\x38\x72\xe4\x88\ -\xb0\x3c\x3f\x3f\x3f\xf8\xfa\xfa\x96\x78\x9d\x11\x23\x46\x48\x7e\ -\x7f\xb4\x24\xd2\xd2\xd2\x30\x69\xd2\x24\x49\xaf\xe1\x56\x9d\xc8\ -\x0c\xa5\xa4\xa4\xa0\x69\xd3\xa6\xc2\x3e\xce\xe8\xe8\xe8\x88\xa3\ -\x47\x8f\xc2\xcd\xcd\x4d\x96\xf5\x12\x13\x13\xd1\xa2\x45\x0b\x18\ -\x04\x3d\xf5\xb4\x4c\x99\x32\x38\x74\xe8\x10\x3c\x3c\x3c\x8a\xf2\ -\xe3\xdc\xaa\x13\x99\x1b\xbd\x5e\x8f\x7e\xfd\xfa\x09\x2b\x4d\xe0\ -\xe1\x33\xcd\xe5\x2a\x4d\x00\x68\xd6\xac\x19\x86\x0d\x1b\x26\xdb\ -\x7a\x2f\x93\x9f\x9f\x8f\xe0\xe0\xe0\x22\xbf\xad\xc1\xe2\x24\x32\ -\x33\x3f\xfd\xf4\x13\x12\x13\x13\x85\xe5\x79\x7a\x7a\x2a\x52\x72\ -\x93\x27\x4f\x56\xe2\xb1\x17\x85\x3a\x7c\xf8\x30\x7e\xf8\xe1\x87\ -\x22\xfd\x2c\xb7\xea\x44\x66\xe4\xf8\xf1\xe3\xf0\xf0\xf0\x40\x4e\ -\x4e\x8e\x90\x3c\x0b\x0b\x0b\xc4\xc7\xc7\xa3\x59\xb3\x66\x8a\xac\ -\xbf\x71\xe3\x46\xf8\xf8\xf8\x28\xb2\xf6\xf3\xd8\xd8\xd8\x20\x29\ -\x29\xe9\x65\x27\x31\xb9\x55\x27\x32\x17\x46\xa3\x11\xfd\xfb\xf7\ -\x17\x56\x9a\x00\x30\x74\xe8\x50\xc5\x4a\x13\x00\x3a\x77\xee\x0c\ -\x7f\x7f\x7f\xc5\xd6\xff\xa7\xdc\xdc\x5c\xf4\xef\xdf\xff\xa5\xef\ -\xad\xb2\x38\x89\xcc\xc4\xec\xd9\xb3\xf1\xe7\x9f\x7f\x0a\xcb\x73\ -\x75\x75\xc5\x94\x29\x53\x14\xcf\x99\x35\x6b\x96\xd0\x7b\xad\xee\ -\xdf\xbf\x1f\x73\xe6\xcc\x79\xe1\xcf\x70\xab\x4e\x64\x06\xce\x9c\ -\x39\x83\xc6\x8d\x1b\x23\x2b\x2b\x4b\x58\xe6\xea\xd5\xab\xd1\xb5\ -\x6b\x57\x21\x59\xf3\xe6\xcd\xc3\x90\x21\x43\x84\x64\x01\x80\x83\ -\x83\x03\x92\x93\x93\x0b\x7b\x4e\x15\xb7\xea\x44\xe6\x60\xc0\x80\ -\x01\x42\x4b\xb3\x53\xa7\x4e\xc2\x4a\x13\x00\x42\x42\x42\xe0\xed\ -\xed\x2d\x2c\x2f\x2b\x2b\x0b\x03\x06\x0c\x28\xf4\xfb\x2c\x4e\x22\ -\x13\xb7\x70\xe1\x42\xec\xd8\xb1\x43\x58\x9e\x83\x83\xc3\x4b\xb7\ -\xb2\x72\xd3\xe9\x74\x58\xb0\x60\x01\xca\x94\x29\x23\x2c\x73\xc7\ -\x8e\x1d\x58\xb4\x68\xd1\x73\xbf\xc7\xe2\x24\x32\x61\x97\x2e\x5d\ -\xc2\x17\x5f\x7c\x21\x34\x73\xc2\x84\x09\xa8\x56\xad\x9a\xd0\x4c\ -\x00\x70\x77\x77\xc7\x98\x31\x63\x84\x66\x7e\xfe\xf9\xe7\xb8\x7c\ -\xf9\xf2\x33\x5f\xe7\x7b\x9c\x44\x26\xac\x53\xa7\x4e\xd8\xb4\x69\ -\x93\xb0\x3c\x0f\x0f\x0f\x24\x26\x26\xc2\xca\xca\x4a\x58\xe6\x93\ -\x72\x72\x72\xd0\xa4\x49\x13\x9c\x38\x71\x42\x58\x66\xe7\xce\x9d\ -\x11\x1d\x1d\xfd\xe4\x97\xf8\x1e\x27\x91\xa9\x5a\xbe\x7c\xb9\xd0\ -\xd2\xb4\xb0\xb0\x40\x44\x44\x84\x6a\xa5\x09\x00\xb6\xb6\xb6\x98\ -\x3f\x7f\xbe\xd0\xcc\x8d\x1b\x37\xe2\xf7\xdf\x7f\x7f\xea\x6b\x2c\ -\x4e\x22\x13\x74\xf5\xea\x55\x8c\x18\x31\x42\x68\xe6\xa0\x41\x83\ -\xa4\xde\x7e\x4d\x11\x6d\xdb\xb6\x45\x9f\x3e\x7d\x84\x66\x0e\x1f\ -\x3e\x1c\xd7\xaf\x5f\x7f\xfc\xcf\xdc\xaa\x13\x99\x20\x7f\x7f\x7f\ -\xac\x59\xb3\x46\x58\x9e\x8b\x8b\x0b\xd2\xd3\xd3\x35\xf3\xec\xfa\ -\x1b\x37\x6e\xa0\x7e\xfd\xfa\xc8\xcc\xcc\x14\x96\xf9\xc9\x27\x9f\ -\x20\x2a\x2a\x0a\xe0\x56\x9d\xc8\xf4\xac\x5e\xbd\x5a\x68\x69\x02\ -\xc0\xcc\x99\x33\x35\x53\x9a\x00\x50\xb1\x62\x45\xfc\xfc\xf3\xcf\ -\x42\x33\x57\xae\x5c\x89\x0d\x1b\x36\x00\x78\x78\xc4\xb9\x5b\x68\ -\x3a\x11\x91\x69\x4b\xfa\x5f\x5f\xdd\xb6\x9d\x4d\x12\x53\x9f\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x23\xb4\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x01\x5c\x00\x00\x01\x62\x08\x06\x00\x00\x00\xba\x66\x60\xf1\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xdd\x79\x54\ -\x55\xe5\xfe\x06\xf0\xe7\x00\x32\x69\x86\x60\xa2\x81\x0a\x39\x65\ -\xa8\xa4\x56\x5e\x35\x15\xb1\xcc\xdb\x2d\x40\x45\x44\x13\x1c\xba\ -\x8e\x77\x5d\x4c\x48\x24\xcb\x9b\x03\x56\x38\x54\x50\xd7\xa2\x55\ -\x66\xa4\x17\x8c\x52\x40\x8c\xeb\x94\x9a\xa5\x62\x64\xe6\x90\x38\ -\xe0\x80\xa2\x80\xa8\xa8\x20\xe3\x39\xe7\xf7\x47\x3f\xbd\x99\x82\ -\x0c\x7b\xbf\xef\x3e\xe7\x3c\x9f\xb5\x5a\x2b\x81\xf3\x3e\xdf\x5a\ -\xf6\x78\xda\xfb\x3d\xef\xd6\x19\x8d\x46\x23\x00\xb4\x6e\xdd\x1a\ -\x05\x05\x05\x20\x75\x24\x27\x27\x23\x30\x30\x50\xf6\x18\x44\x24\ -\xcf\x02\x2b\xd9\x13\x10\x11\x59\x0a\x16\x2e\x11\x91\x20\x2c\x5c\ -\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\ -\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\ -\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\ -\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x15\x44\xa7\ -\xd3\xc9\x1e\x81\x88\x24\x63\xe1\x0a\xd0\xbb\x77\x6f\x3c\xff\xfc\ -\xf3\xb2\xc7\x20\x22\xc9\x58\xb8\x2a\x6b\xdd\xba\x35\x52\x52\x52\ -\xe0\xe0\xe0\x20\x7b\x14\x22\x92\x8c\x85\xab\x22\x3b\x3b\x3b\xac\ -\x5b\xb7\x0e\xee\xee\xee\xb2\x47\x21\x22\x0d\x60\xe1\xaa\xe8\xe3\ -\x8f\x3f\x46\xdf\xbe\x7d\x65\x8f\x41\x44\x1a\x71\xbb\x70\xf3\xf3\ -\xf3\x61\x34\x1a\xcd\xee\xaf\x49\x93\x26\x49\xf9\x17\x1b\x1e\x1e\ -\x8e\x09\x13\x26\x48\xc9\x26\x22\x6d\x32\xeb\x77\xb8\xef\xbf\xff\ -\x3e\x56\xae\x5c\x29\x3c\x77\xd8\xb0\x61\x58\xb2\x64\x89\xf0\x5c\ -\x22\xd2\x36\xdd\xad\xa7\xf6\x9a\x9b\x2d\x5b\xb6\xe0\xaf\x7f\xfd\ -\x2b\xf4\x7a\xbd\xd0\xdc\xce\x9d\x3b\x23\x33\x33\x13\x4e\x4e\x4e\ -\x42\x73\x89\x48\xf3\xcc\xf3\xa9\xbd\x27\x4e\x9c\x40\x50\x50\x90\ -\xf0\xb2\x75\x72\x72\x42\x5a\x5a\x1a\xcb\x96\x88\xee\xc9\xec\x0a\ -\xf7\xda\xb5\x6b\xf0\xf3\xf3\x43\x71\x71\xb1\xd0\x5c\x6b\x6b\x6b\ -\x24\x25\x25\xa1\x4b\x97\x2e\x42\x73\x89\xc8\x74\x98\x55\xe1\x1a\ -\x0c\x06\x8c\x19\x33\x06\xd9\xd9\xd9\xc2\xb3\x97\x2c\x59\x82\xe7\ -\x9e\x7b\x4e\x78\x2e\x11\x99\x0e\xb3\x2a\xdc\xc8\xc8\x48\x64\x64\ -\x64\x08\xcf\x9d\x30\x61\x02\xc2\xc3\xc3\x85\xe7\x12\x91\x69\x31\ -\x9b\x9b\x66\x09\x09\x09\x18\x3f\x7e\xbc\xf0\xdc\xbe\x7d\xfb\x62\ -\xc7\x8e\x1d\xb0\xb5\xb5\x15\x9e\x4d\x44\x26\x65\x81\x59\x14\x6e\ -\x66\x66\x26\x06\x0d\x1a\x84\x8a\x8a\x0a\xa1\xb9\xee\xee\xee\xc8\ -\xca\xca\x82\xab\xab\xab\xd0\x5c\x22\x32\x49\xa6\xbf\x4b\x21\x2f\ -\x2f\x0f\x01\x01\x01\xc2\xcb\xd6\xc1\xc1\x01\xa9\xa9\xa9\x2c\x5b\ -\x22\xaa\x33\x93\x2e\xdc\xb2\xb2\x32\x04\x04\x04\x20\x3f\x3f\x5f\ -\x78\xf6\xaa\x55\xab\xd0\xab\x57\x2f\xe1\xb9\x44\x64\xba\x4c\xba\ -\x70\x27\x4d\x9a\x84\xac\xac\x2c\xe1\xb9\xaf\xbf\xfe\x3a\x82\x82\ -\x82\x84\xe7\x12\x91\x69\x33\xd9\xc2\x7d\xeb\xad\xb7\x90\x94\x94\ -\x24\x3c\xd7\xdf\xdf\x1f\x8b\x16\x2d\x12\x9e\x4b\x44\xa6\xcf\x24\ -\x6f\x9a\xa5\xa5\xa5\x61\xf8\xf0\xe1\x30\x18\x0c\x42\x73\xbb\x77\ -\xef\x8e\xdd\xbb\x77\xa3\x59\xb3\x66\x42\x73\x89\xc8\x2c\x98\xde\ -\x4d\xb3\x23\x47\x8e\x60\xdc\xb8\x71\xc2\xcb\xb6\x65\xcb\x96\x48\ -\x4d\x4d\x65\xd9\x12\x51\x83\x99\x54\xe1\x5e\xbe\x7c\x19\x7e\x7e\ -\x7e\xb8\x71\xe3\x86\xd0\xdc\x26\x4d\x9a\x20\x39\x39\x19\x9e\x9e\ -\x9e\x42\x73\x89\xc8\xbc\x98\x4c\xe1\x56\x57\x57\x63\xd4\xa8\x51\ -\x38\x75\xea\x94\xf0\xec\xb8\xb8\x38\xf8\xf8\xf8\x08\xcf\x25\x22\ -\xf3\x62\x32\x85\x1b\x16\x16\x86\xed\xdb\xb7\x0b\xcf\x9d\x3e\x7d\ -\x3a\xa6\x4d\x9b\x26\x3c\x97\x88\xcc\x8f\x49\x14\x6e\x7c\x7c\x3c\ -\x3e\xfa\xe8\x23\xe1\xb9\x3e\x3e\x3e\x88\x8b\x8b\x13\x9e\x4b\x44\ -\xe6\x49\xf3\xbb\x14\x76\xee\xdc\x89\x67\x9f\x7d\x16\x55\x55\x55\ -\x42\x73\x3d\x3d\x3d\xf1\xd3\x4f\x3f\xc1\xc5\xc5\x45\x68\x2e\x11\ -\x99\x2d\x6d\xef\x52\x38\x73\xe6\x0c\x02\x03\x03\x85\x97\xed\x03\ -\x0f\x3c\x80\xb4\xb4\x34\x96\x2d\x11\x29\x4a\xb3\x85\x5b\x52\x52\ -\x02\x3f\x3f\x3f\x14\x15\x15\x09\xcd\xd5\xe9\x74\x58\xbd\x7a\x35\ -\xba\x75\xeb\x26\x34\x97\x88\xcc\x9f\x26\x0b\xd7\x68\x34\x22\x24\ -\x24\x04\x87\x0e\x1d\x12\x9e\x1d\x1d\x1d\x0d\x3f\x3f\x3f\xe1\xb9\ -\x44\x64\xfe\x34\x59\xb8\xf3\xe6\xcd\x43\x4a\x4a\x8a\xf0\xdc\xe0\ -\xe0\x60\xcc\x9d\x3b\x57\x78\x2e\x11\x59\x06\xcd\xdd\x34\x5b\xbb\ -\x76\x2d\x82\x83\x83\x85\xe7\xf6\xee\xdd\x1b\xbb\x76\xed\x82\x83\ -\x83\x83\xf0\x6c\x22\xb2\x08\xda\xba\x69\xb6\x7f\xff\x7e\x4c\x9c\ -\x38\x51\x78\x6e\xeb\xd6\xad\x91\x92\x92\xc2\xb2\x25\x22\x55\x69\ -\xa6\x70\x0b\x0a\x0a\x10\x10\x10\x80\xb2\xb2\x32\xa1\xb9\x76\x76\ -\x76\x58\xb7\x6e\x1d\xdc\xdd\xdd\x85\xe6\x12\x91\xe5\xd1\x44\xe1\ -\x56\x54\x54\x60\xf8\xf0\xe1\x38\x77\xee\x9c\xf0\xec\xf8\xf8\x78\ -\xf4\xed\xdb\x57\x78\x2e\x11\x59\x1e\x4d\x14\xee\xb4\x69\xd3\xb0\ -\x67\xcf\x1e\xe1\xb9\xe1\xe1\xe1\x52\x1e\x3c\x49\x44\x96\x49\x7a\ -\xe1\xbe\xfb\xee\xbb\x58\xb5\x6a\x95\xf0\xdc\x61\xc3\x86\x61\xc9\ -\x92\x25\xc2\x73\x89\xc8\x72\x49\xdd\xa5\xf0\xdf\xff\xfe\x17\x2f\ -\xbc\xf0\x02\xf4\x7a\xbd\xd0\xdc\x2e\x5d\xba\x20\x33\x33\x13\x0f\ -\x3e\xf8\xa0\xd0\x5c\x22\xb2\x68\xf2\x76\x29\x1c\x3b\x76\x0c\x63\ -\xc6\x8c\x11\x5e\xb6\x4e\x4e\x4e\x48\x4b\x4b\x63\xd9\x12\x91\x70\ -\x52\x0a\xb7\xb8\xb8\x18\x7e\x7e\x7e\x28\x2e\x2e\x16\x9a\x6b\x6d\ -\x6d\x8d\xb5\x6b\xd7\xa2\x73\xe7\xce\x42\x73\x89\x88\x00\x09\x85\ -\xab\xd7\xeb\x11\x1c\x1c\x8c\xe3\xc7\x8f\x8b\x8e\xc6\xd2\xa5\x4b\ -\x31\x74\xe8\x50\xe1\xb9\x44\x44\x80\x84\xc2\x9d\x3d\x7b\x36\x36\ -\x6d\xda\x24\x3a\x16\x13\x27\x4e\xc4\xac\x59\xb3\x84\xe7\x12\x11\ -\xdd\x22\xf4\xa6\xd9\xaa\x55\xab\xa4\x7c\x92\xac\x5f\xbf\x7e\xd8\ -\xbe\x7d\x3b\x6c\x6d\x6d\x85\x67\x13\x11\xfd\xbf\x05\xc2\x0a\x77\ -\xcf\x9e\x3d\xf0\xf1\xf1\x41\x65\x65\xa5\x88\xb8\xdb\xda\xb6\x6d\ -\x8b\x9f\x7e\xfa\x09\xae\xae\xae\x42\x73\x89\x88\xfe\x44\xcc\x2e\ -\x85\xf3\xe7\xcf\x63\xf8\xf0\xe1\xc2\xcb\xd6\xd1\xd1\x11\x29\x29\ -\x29\x2c\x5b\x22\xd2\x04\xd5\x0b\xb7\xac\xac\x0c\xfe\xfe\xfe\x28\ -\x28\x28\x50\x3b\xea\x2e\x9f\x7f\xfe\x39\x7a\xf5\xea\x25\x3c\x97\ -\x88\xe8\x5e\x54\x2f\xdc\x09\x13\x26\x60\xff\xfe\xfd\x6a\xc7\xdc\ -\xe5\x8d\x37\xde\x40\x50\x50\x90\xf0\x5c\x22\xa2\x9a\xa8\x5a\xb8\ -\xd1\xd1\xd1\xf8\xea\xab\xaf\xd4\x8c\xb8\xa7\x80\x80\x00\x2c\x5c\ -\xb8\x50\x78\x2e\x11\x51\x6d\x54\xbb\x69\x96\x92\x92\x82\x11\x23\ -\x46\x40\xf4\x27\x87\xbb\x77\xef\x8e\xdd\xbb\x77\xa3\x59\xb3\x66\ -\x42\x73\x89\x88\xee\x43\x9d\x9b\x66\x87\x0e\x1d\x42\x48\x48\x88\ -\xf0\xb2\x6d\xd9\xb2\x25\x52\x53\x53\x59\xb6\x44\xa4\x49\x8a\x17\ -\x6e\x51\x51\x11\xfc\xfd\xfd\x51\x52\x52\xa2\xf4\xd2\xb5\x6a\xd2\ -\xa4\x09\xbe\xfe\xfa\x6b\x78\x7a\x7a\x0a\xcd\x25\x22\xaa\x2b\x45\ -\x0b\xb7\xaa\xaa\x0a\x81\x81\x81\x38\x7d\xfa\xb4\x92\xcb\xd6\x49\ -\x5c\x5c\x1c\x06\x0d\x1a\x24\x3c\x97\x88\xa8\xae\x14\x2d\xdc\xb0\ -\xb0\x30\xec\xdc\xb9\x53\xc9\x25\xeb\x64\xc6\x8c\x19\x98\x36\x6d\ -\x9a\xf0\x5c\x22\xa2\xfa\x50\xac\x70\x57\xac\x58\x81\x8f\x3f\xfe\ -\x58\xa9\xe5\xea\x6c\xf0\xe0\xc1\x88\x8d\x8d\x15\x9e\x4b\x44\x54\ -\x5f\x8a\xec\x52\xd8\xbe\x7d\x3b\x86\x0e\x1d\x8a\xea\xea\x6a\x25\ -\x66\xaa\xb3\x47\x1e\x79\x04\xfb\xf6\xed\x83\x8b\x8b\x8b\xd0\x5c\ -\x22\xa2\x06\x68\xfc\x2e\x85\x53\xa7\x4e\x61\xd4\xa8\x51\xc2\xcb\ -\xf6\x81\x07\x1e\x40\x6a\x6a\x2a\xcb\x96\x88\x4c\x46\xa3\x0a\xf7\ -\xc6\x8d\x1b\xf0\xf7\xf7\xc7\xe5\xcb\x97\x95\x9a\xa7\x4e\x74\x3a\ -\x1d\x56\xaf\x5e\x8d\x6e\xdd\xba\x09\xcd\x25\x22\x6a\x8c\x06\x17\ -\xae\xd1\x68\xc4\xb8\x71\xe3\x70\xf8\xf0\x61\x25\xe7\xa9\x93\xe8\ -\xe8\x68\xf8\xf9\xf9\x09\xcf\x25\x22\x6a\x8c\x06\x17\xee\xeb\xaf\ -\xbf\x8e\xb4\xb4\x34\x25\x67\xa9\x93\x31\x63\xc6\x60\xee\xdc\xb9\ -\xc2\x73\x89\x88\x1a\xab\x41\x37\xcd\x12\x13\x13\x31\x76\xec\x58\ -\x35\xe6\xa9\xd5\x13\x4f\x3c\x81\xef\xbf\xff\x1e\x0e\x0e\x0e\xc2\ -\xb3\x89\x88\x1a\xa9\xfe\x37\xcd\xb2\xb2\xb2\xf0\xf2\xcb\x2f\xab\ -\x31\x4c\xad\x5a\xb7\x6e\x8d\x94\x94\x14\x96\x2d\x11\x99\xac\x7a\ -\x15\x6e\x7e\x7e\x3e\x02\x02\x02\x50\x56\x56\xa6\xd6\x3c\xf7\x64\ -\x67\x67\x87\xf5\xeb\xd7\xc3\xcd\xcd\x4d\x68\x2e\x11\x91\x92\xea\ -\x5c\xb8\x15\x15\x15\x08\x08\x08\x40\x5e\x5e\x9e\x9a\xf3\xdc\xd3\ -\x27\x9f\x7c\x82\xbf\xfc\xe5\x2f\xc2\x73\x89\x88\x94\x54\xe7\xc2\ -\x9d\x32\x65\x0a\x32\x33\x33\xd5\x9c\xe5\x9e\x22\x22\x22\x10\x1a\ -\x1a\x2a\x3c\x97\x88\x48\x69\x75\x2a\xdc\x65\xcb\x96\x21\x21\x21\ -\x41\xed\x59\xee\x32\x6c\xd8\x30\x2c\x59\xb2\x44\x78\x2e\x11\x91\ -\x1a\xee\xbb\x4b\x21\x23\x23\x03\x2f\xbc\xf0\x02\x0c\x06\x83\xa8\ -\x99\x00\x00\x5d\xba\x74\x41\x66\x66\x26\x1e\x7c\xf0\x41\xa1\xb9\ -\x44\x44\x2a\xa9\x7d\x97\x42\x76\x76\x36\xc6\x8c\x19\x23\xbc\x6c\ -\x9d\x9c\x9c\xb0\x61\xc3\x06\x96\x2d\x11\x99\x95\x1a\x0b\xf7\xea\ -\xd5\xab\xf0\xf3\xf3\xc3\xb5\x6b\xd7\x44\xce\x03\x6b\x6b\x6b\xac\ -\x5d\xbb\x16\x9d\x3a\x75\x12\x9a\x4b\x44\xa4\xb6\x7b\x16\xae\x5e\ -\xaf\xc7\xe8\xd1\xa3\x71\xe2\xc4\x09\xd1\xf3\x60\xd9\xb2\x65\x18\ -\x3a\x74\xa8\xf0\x5c\x22\x22\xb5\xdd\xb3\x70\x23\x22\x22\xb0\x65\ -\xcb\x16\xd1\xb3\x60\xe2\xc4\x89\x78\xe5\x95\x57\x84\xe7\x12\x11\ -\x89\x70\xd7\x4d\xb3\x95\x2b\x57\x4a\xf9\x24\x59\xbf\x7e\xfd\xb0\ -\x7d\xfb\x76\xd8\xda\xda\x0a\xcf\x26\x22\x12\x60\xc1\x1d\x85\xfb\ -\xe3\x8f\x3f\xc2\xd7\xd7\x17\x95\x95\x95\xc2\x27\x19\x37\x6e\x1c\ -\x5c\x5d\x5d\x85\xe7\x8a\x64\x67\x67\x87\xc5\x8b\x17\xcb\x1e\x83\ -\x88\xe4\xf8\x5f\xe1\xe6\xe6\xe6\xe2\xc9\x27\x9f\x44\x61\x61\xa1\ -\xec\xa1\xcc\x56\xd3\xa6\x4d\x85\x3f\xcd\x98\x88\x34\xe3\xf7\x6d\ -\x61\x37\x6f\xde\x84\xbf\xbf\x3f\xcb\x96\x88\x48\x45\x56\x46\xa3\ -\x11\x13\x26\x4c\xc0\x81\x03\x07\x64\xcf\x42\x44\x64\xd6\xac\xe2\ -\xe3\xe3\x91\x9c\x9c\x2c\x7b\x0e\x22\x22\xb3\x67\x75\xe6\xcc\x19\ -\xd9\x33\x10\x11\x59\x84\x46\x3f\xb5\x97\x88\x88\xea\x86\x85\x4b\ -\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\ -\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\ -\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\ -\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\ -\xb0\x70\x89\x88\x04\xb9\xeb\xa9\xbd\x44\x44\xa4\x8a\x05\x7c\x87\ -\x4b\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\ -\x22\x22\x41\x58\xb8\x44\x44\x82\x98\x54\xe1\x1e\x3e\x7c\x18\xa5\ -\xa5\xa5\xb2\xc7\x20\x22\x6a\x10\x93\x2a\xdc\xf8\xf8\x78\x7c\xf5\ -\xd5\x57\xb2\xc7\x20\x22\x6a\x10\x93\xd9\x87\x5b\x51\x51\x81\x87\ -\x1f\x7e\x18\xde\xde\xde\xf8\xee\xbb\xef\x64\x8f\x43\x44\x54\x5f\ -\xa6\xb3\x0f\x37\x23\x23\x03\x57\xae\x5c\xc1\x8e\x1d\x3b\x70\xfa\ -\xf4\x69\xd9\xe3\x10\x11\xd5\x9b\xc9\x14\xee\x97\x5f\x7e\x09\x00\ -\x30\x1a\x8d\xf8\xcf\x7f\xfe\x23\x79\x1a\x22\xa2\xfa\x33\x89\x4b\ -\x0a\x45\x45\x45\x70\x73\x73\x43\x65\x65\x25\x00\xa0\x53\xa7\x4e\ -\x38\x76\xec\x18\x74\x3a\x9d\xe4\xc9\x88\x88\xea\xcc\x34\x2e\x29\ -\x7c\xf5\xd5\x57\xb7\xcb\x16\x00\x4e\x9c\x38\x81\x7d\xfb\xf6\x49\ -\x9c\x88\x88\xa8\xfe\x4c\xa2\x70\x6f\x5d\x4e\xb8\xdf\xd7\x88\x88\ -\xb4\x4c\xf3\x97\x14\xb2\xb3\xb3\xd1\xb5\x6b\xd7\xbb\xbe\xee\xec\ -\xec\x8c\x0b\x17\x2e\xc0\xce\xce\x4e\xc2\x54\x44\x44\xf5\xa6\xfd\ -\x4b\x0a\xab\x57\xaf\xbe\xe7\xd7\xaf\x5c\xb9\x82\x8d\x1b\x37\x0a\ -\x9e\x86\x88\xa8\xe1\x34\x5d\xb8\x06\x83\xa1\xd6\x4b\x07\xbc\xac\ -\x40\x44\xa6\x44\xd3\x85\xbb\x73\xe7\x4e\xe4\xe6\xe6\xd6\xf8\xfd\ -\x8d\x1b\x37\xa2\xa8\xa8\x48\xe0\x44\x44\x44\x0d\xa7\xe9\xc2\xbd\ -\xdf\x3b\xd8\xaa\xaa\x2a\x24\x25\x25\x09\x9a\x86\x88\xa8\x71\x34\ -\x5b\xb8\x25\x25\x25\x48\x4e\x4e\xbe\xef\xcf\xf1\xb2\x02\x11\x99\ -\x0a\xcd\x16\x6e\x6a\x6a\x2a\x4a\x4a\x4a\xee\xfb\x73\xfb\xf6\xed\ -\x43\x76\x76\xb6\x80\x89\x88\x88\x1a\x47\xb3\x85\x5b\x9f\x77\xae\ -\x7c\x97\x4b\x44\xa6\x40\x93\xfb\x70\xcf\x9f\x3f\x8f\xf6\xed\xdb\ -\xc3\x60\x30\xd4\xe9\xe7\xdd\xdc\xdc\x70\xf6\xec\x59\x58\x5b\x5b\ -\xab\x3c\x19\x11\x51\x83\x69\x73\x1f\x6e\x62\x62\x62\x9d\xcb\x16\ -\x00\xf2\xf2\xf2\xb0\x73\xe7\x4e\x15\x27\x22\x22\x6a\x3c\x4d\x16\ -\xee\x17\x5f\x7c\x51\xef\xd7\xf0\xb2\x02\x11\x69\x9d\xe6\x0a\xf7\ -\x97\x5f\x7e\xc1\x91\x23\x47\xea\xfd\xba\xe4\xe4\xe4\x3a\xdd\x64\ -\x23\x22\x92\x45\x73\x85\x9b\x90\x90\xd0\xa0\xd7\x95\x96\x96\x62\ -\xfd\xfa\xf5\x0a\x4f\x43\x44\xa4\x1c\x4d\x15\x6e\x55\x55\x55\xa3\ -\x0e\x17\xe7\x65\x05\x22\xd2\x32\x4d\x15\xee\xa6\x4d\x9b\x50\x58\ -\x58\xd8\xe0\xd7\x6f\xdb\xb6\x0d\xe7\xce\x9d\x53\x70\x22\x22\x22\ -\xe5\x68\xaa\x70\x1b\xfb\x0e\xd5\x60\x30\xf0\xf1\x3b\x44\xa4\x59\ -\x9a\xd9\x87\x5b\x5c\x5c\x8c\x36\xad\x5b\xa3\xbc\xa2\xa2\x51\xeb\ -\x3c\xd6\xa9\x13\x8e\x1c\x3f\xae\xd0\x54\x44\x44\x8a\xd1\xce\x3e\ -\xdc\xb5\x1f\x7f\xdc\xe8\xb2\x05\x80\xdf\x4e\x9c\xc0\x4f\x69\x69\ -\x0a\x4c\x44\x44\xa4\x2c\x4d\x14\xae\xb1\xac\x0c\x5f\xbc\xfd\xb6\ -\x62\xeb\x7d\x3e\x65\x0a\x8c\xa5\xa5\x8a\xad\x47\x44\xa4\x04\x4d\ -\x14\xee\x91\x57\x5e\xc1\xde\xeb\xd7\x15\x5b\x2f\xb9\xb0\x10\xd7\ -\xe7\xcc\x51\x6c\x3d\x22\x22\x25\x48\x2f\x5c\xfd\xc9\x93\x58\x9d\ -\x90\x00\x25\x2f\x24\x17\x19\x8d\xf8\xf6\xf3\xcf\xa1\x6f\xc0\x07\ -\x28\x88\x88\xd4\x22\xbd\x70\xcb\xdf\x7f\x1f\x89\x7f\x78\x04\xba\ -\x52\x92\x2a\x2b\x51\xfe\xde\x7b\x8a\xaf\x4b\x44\xd4\x50\x52\x0b\ -\xd7\x58\x5e\x8e\xef\x13\x13\x91\x5b\x8f\x83\x6a\xea\xea\xbf\xd5\ -\xd5\x28\x48\x49\x81\xf1\xe6\x4d\xc5\xd7\x26\x22\x6a\x08\xa9\x85\ -\xab\x3f\x70\x00\x49\x37\x6e\xa8\xb2\x76\x25\x80\x94\x92\x12\x54\ -\x67\x66\xaa\xb2\x3e\x11\x51\x7d\x49\x2d\xdc\x92\xac\x2c\xac\xaf\ -\xae\x56\x6d\xfd\xb5\xd5\xd5\xd0\x1f\x3c\xa8\xda\xfa\x44\x44\xf5\ -\x21\xb5\x70\x37\x7c\xff\x3d\x6e\xa8\xf8\xb9\x8b\x7d\x7a\x3d\x8e\ -\xfd\xf6\x9b\x6a\xeb\x13\x11\xd5\x87\xd4\xc2\xfd\xcf\xfe\xfd\xaa\ -\x67\xac\x3d\x70\x40\xf5\x0c\x22\xa2\xba\x90\x56\xb8\xf9\xf9\xf9\ -\xd8\x7a\xfa\xb4\xea\x39\x6b\x8e\x1e\x85\x46\x3e\xbd\x4c\x44\x16\ -\x4e\x5a\xe1\x26\x26\x26\xa2\x5a\x85\xdd\x09\x7f\x96\x7b\xe3\x06\ -\x76\xed\xda\xa5\x7a\x0e\x11\xd1\xfd\x48\x2b\x5c\x91\x67\xd7\xf2\ -\x9c\x5c\x22\xd2\x02\x29\xa7\x85\x1d\x3c\x78\x10\xde\xde\xde\xc2\ -\xf2\x9a\x37\x6f\x8e\x8b\x17\x2f\xc2\xd1\xd1\x51\x58\x26\x11\xd1\ -\x9f\xc8\x39\x2d\x6c\xf5\xea\xd5\x42\xf3\xae\x5f\xbf\x8e\x34\x9e\ -\x20\x46\x44\x92\x09\x2f\x5c\xbd\x5e\x8f\x35\x6b\xd6\x88\x8e\x6d\ -\xf0\xb3\xd2\x88\x88\x94\x22\xbc\x70\xb7\x6c\xd9\x82\x0b\x17\x2e\ -\x88\x8e\xc5\xe6\xcd\x9b\x71\xf1\xe2\x45\xe1\xb9\x44\x44\xb7\x08\ -\x2f\x5c\x59\x37\xb0\xf4\x7a\x3d\x1f\xbf\x43\x44\x52\x09\xbd\x69\ -\x76\xed\xda\x35\xb4\x69\xd3\x06\x65\x65\x65\xa2\x22\xef\xe0\xed\ -\xed\x8d\x03\xfc\x20\x04\x11\xc9\x21\xf6\xa6\xd9\x37\xdf\x7c\x23\ -\xad\x6c\x01\xe0\xd7\x5f\x7f\xc5\xaf\xbf\xfe\x2a\x2d\x9f\x88\x2c\ -\x9b\xd0\xc2\xd5\xc2\x7e\x58\x2d\xcc\x40\x44\x96\x49\xd8\x25\x85\ -\xd3\xa7\x4f\xa3\x43\x87\x0e\xd2\x3f\x66\xeb\xea\xea\x8a\xf3\xe7\ -\xcf\xc3\xc6\xc6\x46\xea\x1c\x44\x64\x71\xc4\x5d\x52\x58\xb3\x66\ -\x8d\xf4\xb2\x05\x80\x82\x82\x02\x6c\xd9\xb2\x45\xf6\x18\x44\x64\ -\x81\x84\x14\xae\xd1\x68\xd4\xd4\x3e\x58\x5e\x56\x20\x22\x19\x84\ -\x14\x6e\x66\x66\x26\x4e\x9c\x38\x21\x22\xaa\x4e\xd6\xaf\x5f\x8f\ -\xe2\xe2\x62\xd9\x63\x10\x91\x85\x11\x52\xb8\x5a\x7a\x77\x0b\x00\ -\xe5\xe5\xe5\xf8\xe6\x9b\x6f\x64\x8f\x41\x44\x16\x46\xf5\xc2\xad\ -\xa8\xa8\x40\x52\x52\x92\xda\x31\xf5\xa6\xb5\x3f\x04\x88\xc8\xfc\ -\xa9\x5e\xb8\xe9\xe9\xe9\xb8\x7a\xf5\xaa\xda\x31\xf5\xb6\x6b\xd7\ -\x2e\x9c\x3a\x75\x4a\xf6\x18\x44\x64\x41\x54\x2f\x5c\xad\xde\xa0\ -\x32\x1a\x8d\xc2\x4f\x2d\x23\x22\xcb\xa6\xea\x3e\xdc\x4b\x97\x2e\ -\xc1\xcd\xcd\x0d\x55\x55\x55\x6a\x45\x34\x4a\xc7\x8e\x1d\x71\xfc\ -\xf8\x71\xe8\x74\x3a\xd9\xa3\x10\x91\xf9\x53\x77\x1f\x6e\x52\x52\ -\x92\x66\xcb\x16\x00\x4e\x9e\x3c\x89\x3d\x7b\xf6\xc8\x1e\x83\x88\ -\x2c\x84\xaa\x85\xab\xd5\xcb\x09\x7f\x64\x0a\x33\x12\x91\x79\x50\ -\xed\x92\xc2\xe1\xc3\x87\xd1\xbd\x7b\x77\x35\x96\x56\x54\x8b\x16\ -\x2d\x70\xf1\xe2\x45\xd8\xd9\xd9\xc9\x1e\x85\x88\xcc\x9b\x7a\x97\ -\x14\x4c\xe5\xec\xd9\xab\x57\xaf\x62\xc3\x86\x0d\xb2\xc7\x20\x22\ -\x0b\xa0\x4a\xe1\xea\xf5\x7a\x93\xda\xe7\xca\xcb\x0a\x44\x24\x82\ -\x2a\x85\xbb\x63\xc7\x0e\xe4\xe5\xe5\xa9\xb1\xb4\x2a\xbe\xfd\xf6\ -\x5b\x14\x14\x14\xc8\x1e\x83\x88\xcc\x9c\x2a\x85\x6b\x4a\xef\x6e\ -\x01\xa0\xba\xba\x1a\x6b\xd7\xae\x95\x3d\x06\x11\x99\x39\xc5\x0b\ -\xb7\xa4\xa4\xc4\x24\xcf\x29\x30\xb5\x3f\x24\x88\xc8\xf4\x28\x5e\ -\xb8\xeb\xd6\xad\x43\x69\x69\xa9\xd2\xcb\xaa\xee\xe7\x9f\x7f\xc6\ -\xa1\x43\x87\x64\x8f\x41\x44\x66\x4c\xf1\xc2\x35\xe5\x1b\x50\x6b\ -\xd6\xac\x91\x3d\x02\x11\x99\x31\x45\xf7\xe1\x9e\x3b\x77\x0e\x1e\ -\x1e\x1e\x30\x18\x0c\x4a\x2d\x29\xd4\xc3\x0f\x3f\x8c\xdc\xdc\x5c\ -\x58\x5b\x5b\xcb\x1e\x85\x88\xcc\x8f\xb2\xfb\x70\xd7\xac\x59\x63\ -\xb2\x65\x0b\x00\x17\x2e\x5c\xc0\x77\xdf\x7d\x27\x7b\x0c\x22\x32\ -\x53\x8a\x16\xae\x39\xdc\x78\x32\xe5\x4b\x22\x44\xa4\x6d\x8a\x15\ -\x6e\x56\x56\x16\x8e\x1e\x3d\xaa\xd4\x72\xd2\xac\x5b\xb7\x0e\x37\ -\x6e\xdc\x90\x3d\x06\x11\x99\x21\xc5\x0a\xd7\x5c\xde\x19\x96\x96\ -\x96\x62\xdd\xba\x75\xb2\xc7\x20\x22\x33\xa4\x48\xe1\x56\x55\x55\ -\x21\x31\x31\x51\x89\xa5\x34\xc1\x5c\xfe\xf0\x20\x22\x6d\x51\xa4\ -\x70\x33\x32\x32\x70\xe9\xd2\x25\x25\x96\xd2\x84\xed\xdb\xb7\x23\ -\x37\x37\x57\xf6\x18\x44\x64\x66\x14\x29\x5c\x11\xfb\x57\x9d\x74\ -\xba\x3b\xfe\x52\x93\xc1\x60\xd0\xe4\x83\x2f\x89\xc8\xb4\x35\x7a\ -\x1f\x6e\x71\x71\x31\xda\xb4\x69\x83\xf2\xf2\xf2\x06\xaf\x61\x03\ -\xe0\x51\x2b\x2b\x3c\x6e\x6d\x8d\xae\x56\x56\x70\xd3\xe9\xe0\xa6\ -\xd3\xc1\xdd\xca\x0a\xad\x74\x3a\xd4\x56\xaf\x85\x46\x23\xce\x1b\ -\x0c\xc8\x33\x1a\x71\xde\x68\xc4\x71\x83\x01\x87\x0c\x06\x1c\xd5\ -\xeb\x51\xd6\xe0\x89\x00\x2f\x2f\x2f\x1c\x3e\x7c\xb8\x11\x2b\x10\ -\x11\xdd\x61\x81\x4d\x63\x57\x48\x4e\x4e\xae\x77\xd9\xda\xd9\xd9\ -\xa1\x7f\xff\xfe\x18\xac\xd7\xa3\xcf\xbe\x7d\xe8\x66\x6d\x0d\xfb\ -\x06\xe6\xb7\xd2\xe9\xd0\xca\xda\x1a\xbd\xfe\xf4\x75\x3d\x80\x53\ -\x06\x03\xf6\xf5\xe9\x83\x1d\xce\xce\xd8\xb6\x6d\x1b\x8a\x8b\x8b\ -\xeb\xbc\xee\x91\x23\x47\xb0\x7f\xff\x7e\xf4\xea\xf5\xe7\x95\x89\ -\x88\x1a\xa6\xd1\x97\x14\xea\xba\xf7\xb6\x59\xb3\x66\x08\x0d\x0d\ -\x45\x7a\x7a\x3a\x2e\x5f\xbe\x8c\x6d\xdb\xb6\x21\xbc\x4f\x1f\x3c\ -\xd1\x88\xb2\xad\x8d\x35\x80\x4e\x56\x56\x98\xe4\xe5\x85\xaf\xbf\ -\xfe\x1a\x45\x45\x45\xf8\xe1\x87\x1f\xf0\xcf\x7f\xfe\x13\x2d\x5b\ -\xb6\xac\xd3\x1a\xe6\xb0\xaf\x98\x88\xb4\xa3\x51\x85\x9b\x93\x93\ -\x83\x1f\x7f\xfc\xb1\xc6\xef\xeb\x74\x3a\x0c\x19\x32\x04\x09\x09\ -\x09\xc8\xcf\xcf\xc7\x17\x5f\x7c\x81\xbf\xfd\xed\x6f\x68\xda\xb4\ -\x69\x63\x62\x1b\xc4\xda\xda\x1a\xfd\xfb\xf7\x47\x5c\x5c\x1c\xf2\ -\xf2\xf2\xb0\x7e\xfd\x7a\xbc\xf8\xe2\x8b\xb0\xb2\xaa\xf9\x5f\x41\ -\x62\x62\xa2\xa6\x1f\x82\x49\x44\xa6\xa5\x51\x85\xfb\xc5\x17\x5f\ -\xe0\x5e\x97\x80\x9b\x36\x6d\x8a\xb0\xb0\x30\x9c\x3c\x79\x12\x5b\ -\xb7\x6e\x45\x48\x48\x88\x94\x92\xad\x89\xad\xad\x2d\x02\x02\x02\ -\x90\x96\x96\x86\x9c\x9c\x1c\x84\x85\x85\xc1\xd1\xd1\xf1\xae\x9f\ -\x2b\x2c\x2c\xc4\xc6\x8d\x1b\x25\x4c\x48\x44\xe6\xa8\xc1\x85\x6b\ -\x34\x1a\xef\x7a\x6e\x99\x83\x83\x03\x22\x23\x23\x91\x93\x93\x83\ -\xd8\xd8\x58\x3c\xf2\xc8\x23\x8d\x1e\x50\x6d\x1e\x1e\x1e\x88\x8d\ -\x8d\x45\x76\x76\x36\xa6\x4f\x9f\x0e\x1b\x9b\x3b\x2f\x6b\x9b\xca\ -\xb3\xd9\x88\x48\xfb\x1a\x5c\xb8\xdf\x7f\xff\x3d\x72\x72\x72\x00\ -\x00\x36\x36\x36\x08\x0b\x0b\x43\x6e\x6e\x2e\x62\x62\x62\xe0\xea\ -\xea\xaa\xd8\x80\xa2\xb4\x6d\xdb\x16\x2b\x56\xac\x40\x4e\x4e\x0e\ -\x42\x42\x42\xa0\xfb\xff\xad\x67\xa9\xa9\xa9\x28\x2a\x2a\x92\x3c\ -\x1d\x11\x99\x83\x06\x17\xee\xad\xbd\xb7\x4f\x3d\xf5\x14\xf6\xed\ -\xdb\x87\xd8\xd8\xd8\x3a\xdf\x8c\xd2\xb2\x76\xed\xda\x21\x21\x21\ -\x01\x9b\x37\x6f\x46\x87\x0e\x1d\x50\x59\x59\x69\x92\x4f\xb0\x20\ -\x22\xed\x69\x50\xe1\xde\xbc\x79\x13\xe9\xe9\xe9\x88\x8f\x8f\xc7\ -\xde\xbd\x7b\xd1\xb3\x67\x4f\xa5\xe7\x92\xee\x99\x67\x9e\xc1\xe1\ -\xc3\x87\x31\x67\xce\x1c\xee\x56\x20\x22\x45\x34\x68\x1f\xee\xd9\ -\xb3\x67\xb1\x65\xcb\x16\x78\x79\x79\x29\x3d\x8f\xa6\xd8\xdb\xdb\ -\xe3\x9d\x77\xde\xc1\xd6\xad\x5b\x71\xfd\xfa\x75\x34\x6f\xde\x5c\ -\xf6\x48\x44\x64\xc2\x1a\x54\xb8\x5d\xbb\x76\x55\x7a\x0e\x4d\x7b\ -\xe6\x99\x67\x64\x8f\x40\x44\x66\x40\x95\xc7\xa4\x13\x11\xd1\xdd\ -\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\ -\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\x10\x16\ -\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\ -\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\ -\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\ -\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\ -\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\ -\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\ -\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\ -\x85\x4b\x44\x24\x88\x8d\xec\x01\x88\xe8\xde\x7e\xfd\xf5\x57\xac\ -\x5f\xbf\x5e\x5a\xbe\x8f\x8f\x0f\x7c\x7c\x7c\xa4\xe5\x2b\x29\x3b\ -\x3b\x1b\x49\x49\x49\xd2\xf2\x7b\xf6\xec\x09\x7f\x7f\x7f\x16\x2e\ -\x91\x56\x75\xec\xd8\x11\x9f\x7d\xf6\x19\xce\x9f\x3f\x2f\x25\x7f\ -\xe5\xca\x95\x38\x76\xec\x18\x1c\x1c\x1c\xa4\xe4\x2b\xe9\x1f\xff\ -\xf8\x07\xbe\xfb\xee\x3b\x29\xd9\x56\x56\x56\xf8\xf9\xe7\x9f\x7f\ -\xff\x7b\x29\x13\x10\xd1\x7d\x35\x6d\xda\x14\x4b\x96\x2c\x91\x96\ -\x7f\xee\xdc\x39\x2c\x5b\xb6\x4c\x5a\xbe\x52\xd2\xd2\xd2\xa4\x95\ -\x2d\x00\x4c\x9e\x3c\x19\x8f\x3f\xfe\x38\x00\x16\x2e\x91\xa6\x8d\ -\x19\x33\x06\x4f\x3f\xfd\xb4\xb4\xfc\x98\x98\x18\x5c\xbc\x78\x51\ -\x5a\x7e\x63\x55\x55\x55\x61\xf6\xec\xd9\xd2\xf2\x9d\x9c\x9c\x10\ -\x1d\x1d\x7d\xfb\xd7\x2c\x5c\x22\x8d\x8b\x8b\x8b\x83\x95\x95\x9c\ -\xff\x54\x4b\x4b\x4b\x31\x77\xee\x5c\x29\xd9\x4a\xf8\xf7\xbf\xff\ -\x8d\xe3\xc7\x8f\x4b\xcb\x5f\xb0\x60\x01\x5a\xb6\x6c\x79\xfb\xd7\ -\x2c\x5c\x22\x8d\xeb\xd9\xb3\x27\xfe\xfe\xf7\xbf\x4b\xcb\x4f\x48\ -\x48\xc0\xfe\xfd\xfb\xa5\xe5\x37\xd4\x95\x2b\x57\xb0\x70\xe1\x42\ -\x69\xf9\x5e\x5e\x5e\x98\x31\x63\xc6\x1d\x5f\x63\xe1\x12\x99\x80\ -\xc5\x8b\x17\xc3\xc9\xc9\x49\x4a\xb6\xc1\x60\x40\x78\x78\xb8\x94\ -\xec\xc6\x98\x3f\x7f\x3e\xae\x5e\xbd\x2a\x2d\x3f\x36\x36\x16\x36\ -\x36\x77\xee\x4b\x60\xe1\x12\x99\x80\x96\x2d\x5b\x62\xc1\x82\x05\ -\xd2\xf2\x77\xee\xdc\x89\x75\xeb\xd6\x49\xcb\xaf\xaf\xec\xec\x6c\ -\x7c\xf4\xd1\x47\xd2\xf2\x47\x8c\x18\x81\x21\x43\x86\xdc\xf5\x75\ -\x16\x2e\x91\x89\x98\x31\x63\x06\xbc\xbc\xbc\xa4\xe5\x47\x46\x46\ -\xa2\xb2\xb2\x52\x5a\x7e\x7d\xbc\xfa\xea\xab\xa8\xae\xae\x96\x92\ -\x6d\x6f\x6f\x8f\xe5\xcb\x97\xdf\xf3\x7b\x2c\x5c\x22\x13\x61\x63\ -\x63\x83\xd8\xd8\x58\x69\xf9\x39\x39\x39\x88\x8b\x8b\x93\x96\x5f\ -\x57\x5b\xb6\x6c\xc1\xc6\x8d\x1b\xa5\xe5\xcf\x9e\x3d\x1b\x1e\x1e\ -\x1e\xf7\xfc\x1e\x0b\x97\xc8\x84\x0c\x19\x32\x04\xc3\x87\x0f\x97\ -\x96\x1f\x1d\x1d\x8d\xa2\xa2\x22\x69\xf9\xf7\xa3\xd7\xeb\xa5\x5e\ -\x6f\x76\x77\x77\x47\x54\x54\x54\x8d\xdf\x67\xe1\x12\x99\x98\xe5\ -\xcb\x97\xc3\xde\xde\x5e\x4a\xf6\xb5\x6b\xd7\xf0\xaf\x7f\xfd\x4b\ -\x4a\x76\x5d\x7c\xfa\xe9\xa7\x38\x7c\xf8\xb0\xb4\xfc\xa5\x4b\x97\ -\xc2\xd1\xd1\xb1\xc6\xef\xb3\x70\x89\x4c\x8c\xa7\xa7\x27\x5e\x7d\ -\xf5\x55\x69\xf9\x9f\x7c\xf2\x09\x8e\x1c\x39\x22\x2d\xbf\x26\xd7\ -\xaf\x5f\x97\xfa\x87\xc1\x80\x01\x03\x10\x1c\x1c\x5c\xeb\xcf\xb0\ -\x70\x89\x4c\xd0\x6b\xaf\xbd\x06\x77\x77\x77\x29\xd9\x7a\xbd\x1e\ -\x11\x11\x11\x52\xb2\x6b\xb3\x78\xf1\x62\x14\x16\x16\x4a\xc9\xb6\ -\xb2\xb2\xaa\xd3\xf5\x6d\x16\x2e\x91\x09\x72\x74\x74\xc4\xd2\xa5\ -\x4b\xa5\xe5\x6f\xda\xb4\x09\x19\x19\x19\xd2\xf2\xff\xec\xf4\xe9\ -\xd3\x52\x6f\x28\x4e\x99\x32\xe5\xf6\x79\x09\xb5\x61\xe1\x12\x99\ -\xa8\xe0\xe0\x60\xa9\xe7\x2c\x44\x44\x44\x48\xdb\x7a\xf5\x67\x91\ -\x91\x91\xa8\xa8\xa8\x90\x92\xdd\xa2\x45\x0b\x2c\x5a\xb4\xa8\x4e\ -\x3f\xcb\xc2\x25\x32\x61\x1f\x7c\xf0\x81\xb4\x73\x16\x8e\x1e\x3d\ -\x8a\xf8\xf8\x78\x29\xd9\x7f\xf4\xc3\x0f\x3f\xe0\xeb\xaf\xbf\x96\ -\x96\xff\xe7\xf3\x12\x6a\xc3\xc2\x25\x32\x61\x8f\x3f\xfe\x38\x26\ -\x4f\x9e\x2c\x2d\x7f\xfe\xfc\xf9\x28\x2e\x2e\x96\x96\x6f\x34\x1a\ -\x31\x6b\xd6\x2c\x69\xf9\xdd\xba\x75\xbb\xeb\xbc\x84\xda\xb0\x70\ -\x89\x4c\x5c\x74\x74\x34\x5a\xb4\x68\x21\x25\xbb\xa8\xa8\xa8\xce\ -\xff\x3b\xad\x86\x2f\xbf\xfc\x12\x59\x59\x59\xd2\xf2\x63\x63\x63\ -\x61\x6d\x6d\x5d\xe7\x9f\x67\xe1\x12\x99\x38\xd9\xe7\x2c\x7c\xf8\ -\xe1\x87\x38\x79\xf2\xa4\xf0\xdc\x9b\x37\x6f\x4a\x3d\x3a\x72\xe4\ -\xc8\x91\xf0\xf5\xf5\xad\xd7\x6b\x58\xb8\x44\x66\x60\xfa\xf4\xe9\ -\xe8\xd6\xad\x9b\x94\xec\xca\xca\x4a\x29\x87\x7c\x2f\x59\xb2\x04\ -\x79\x79\x79\xc2\x73\x81\xdf\xcf\x4b\x68\xc8\xd3\x30\x58\xb8\x44\ -\x66\x40\xf6\x39\x0b\x29\x29\x29\xd8\xb1\x63\x87\xb0\xbc\xbc\xbc\ -\x3c\xa9\xdb\xe2\x22\x23\x23\x6b\x3c\x2f\xa1\x36\x2c\x5c\x22\x33\ -\xe1\xeb\xeb\x8b\x11\x23\x46\x48\xcb\x0f\x0f\x0f\x87\xc1\x60\x10\ -\x92\xf5\xda\x6b\xaf\xe1\xe6\xcd\x9b\x42\xb2\xfe\xac\x6d\xdb\xb6\ -\x98\x33\x67\x4e\x83\x5e\xcb\xc2\x25\x32\x23\x32\xcf\x59\xf8\xe5\ -\x97\x5f\xb0\x6a\xd5\x2a\xd5\x73\xb2\xb2\xb2\xb0\x7a\xf5\x6a\xd5\ -\x73\x6a\x72\xbf\xf3\x12\x6a\xc3\xc2\x25\x32\x23\x1e\x1e\x1e\x52\ -\x1f\x9a\xf8\xc6\x1b\x6f\xa0\xa4\xa4\x44\xd5\x8c\x59\xb3\x66\xc1\ -\x68\x34\xaa\x9a\x51\x93\x81\x03\x07\x62\xf4\xe8\xd1\x0d\x7e\x3d\ -\x0b\x97\xc8\xcc\x44\x45\x45\xa1\x6d\xdb\xb6\x52\xb2\x2f\x5e\xbc\ -\x88\x77\xde\x79\x47\xb5\xf5\x93\x93\x93\xf1\xc3\x0f\x3f\xa8\xb6\ -\x7e\x6d\xac\xad\xad\x1b\x7d\x1e\x30\x0b\x97\xc8\xcc\xc8\x3e\x67\ -\xe1\xdd\x77\xdf\x45\x6e\x6e\xae\xe2\xeb\x56\x54\x54\x34\xf8\xda\ -\xa9\x12\xa6\x4c\x99\x02\x6f\x6f\xef\x46\xad\xc1\xc2\x25\x32\x43\ -\xa3\x47\x8f\xc6\x80\x01\x03\xa4\x64\x97\x95\x95\xd5\x7a\x08\x77\ -\x43\xbd\xff\xfe\xfb\x38\x7d\xfa\xb4\xe2\xeb\xd6\x45\x7d\xce\x4b\ -\xa8\x0d\x0b\x97\xc8\x4c\xc5\xc5\xc5\x49\x3b\x67\x21\x29\x29\x09\ -\x7b\xf7\xee\x55\x6c\xbd\xc2\xc2\x42\xbc\xf5\xd6\x5b\x8a\xad\x57\ -\x5f\x0b\x17\x2e\x84\x8b\x8b\x4b\xa3\xd7\x61\xe1\x12\x99\xa9\xc7\ -\x1f\x7f\x1c\x53\xa6\x4c\x91\x92\xad\xf4\x19\x07\xf3\xe6\xcd\xc3\ -\xf5\xeb\xd7\x15\x5b\xaf\x3e\xba\x77\xef\x8e\xe9\xd3\xa7\x2b\xb2\ -\x16\x0b\x97\xc8\x8c\xc9\x3c\x67\x61\xef\xde\xbd\x48\x4c\x4c\x6c\ -\xf4\x3a\x87\x0e\x1d\xc2\x67\x9f\x7d\xa6\xc0\x44\x0d\x53\xdf\xf3\ -\x12\x6a\xc3\xc2\x25\x32\x63\x2e\x2e\x2e\x58\xb8\x70\xa1\xb4\xfc\ -\xa8\xa8\x28\x94\x97\x97\x37\x6a\x8d\xf0\xf0\x70\xe8\xf5\x7a\x85\ -\x26\xaa\x9f\xc0\xc0\x40\x0c\x1e\x3c\x58\xb1\xf5\x58\xb8\x44\x66\ -\x4e\xe6\x39\x0b\xb9\xb9\xb9\x58\xbe\x7c\x79\x83\x5f\x9f\x9e\x9e\ -\x8e\xad\x5b\xb7\x2a\x38\x51\xdd\x39\x38\x38\x34\xe8\xbc\x84\xda\ -\xb0\x70\x89\xcc\x9c\xb5\xb5\xb5\xd4\x73\x16\xde\x79\xe7\x1d\xe4\ -\xe7\xe7\xd7\xfb\x75\xd5\xd5\xd5\x52\x1f\x96\x39\x7b\xf6\x6c\xb4\ -\x6f\xdf\x5e\xd1\x35\x59\xb8\x44\x16\xc0\xd7\xd7\x17\x23\x47\x8e\ -\x94\x92\x5d\x52\x52\x82\xd7\x5f\x7f\xbd\xde\xaf\x5b\xb1\x62\x05\ -\x8e\x1d\x3b\xa6\xc2\x44\xf7\xd7\xae\x5d\x3b\x55\xb6\xb6\xb1\x70\ -\x89\x2c\xc4\xb2\x65\xcb\xa4\x9d\xb3\xb0\x6a\xd5\x2a\x1c\x38\x70\ -\xa0\xce\x3f\x7f\xf5\xea\x55\xa9\x67\xfc\x2e\x5d\xba\x14\x0e\x0e\ -\x0e\x8a\xaf\xcb\xc2\x25\xb2\x10\x1e\x1e\x1e\x88\x8c\x8c\x94\x92\ -\x6d\x30\x18\xea\xb5\x4d\x6c\xc1\x82\x05\xb8\x72\xe5\x8a\x8a\x13\ -\xd5\x6c\xd0\xa0\x41\x08\x0a\x0a\x52\x65\x6d\x16\x2e\x91\x05\x99\ -\x33\x67\x0e\xda\xb5\x6b\x27\x25\x7b\xc7\x8e\x1d\x48\x49\x49\xb9\ -\xef\xcf\x1d\x3f\x7e\x1c\x2b\x56\xac\x10\x30\xd1\xdd\x94\x38\x2f\ -\xa1\x36\x2c\x5c\x22\x0b\x22\xfb\x9c\x85\xd9\xb3\x67\xa3\xb2\xb2\ -\xb2\xd6\x9f\x79\xf5\xd5\x57\x51\x55\x55\x25\x68\xa2\x3b\x4d\x9d\ -\x3a\x15\x3d\x7a\xf4\x50\x6d\x7d\x16\x2e\x91\x85\x09\x0a\x0a\xc2\ -\xc0\x81\x03\xa5\x64\x9f\x3c\x79\x12\x1f\x7e\xf8\x61\x8d\xdf\xdf\ -\xb6\x6d\x1b\x36\x6c\xd8\x20\x70\xa2\xff\x71\x76\x76\x56\xfd\x81\ -\x98\x2c\x5c\x22\x0b\x14\x17\x17\xa7\xd8\xa7\xa7\xea\x6b\xd1\xa2\ -\x45\xb8\x7c\xf9\xf2\x5d\x5f\x37\x18\x0c\x08\x0f\x0f\x97\x30\xd1\ -\xef\x16\x2e\x5c\x08\x67\x67\x67\x55\x33\x58\xb8\x44\x16\xc8\xdb\ -\xdb\x5b\xda\x39\x0b\xc5\xc5\xc5\x78\xf3\xcd\x37\xef\xfa\xfa\x67\ -\x9f\x7d\x86\x83\x07\x0f\x4a\x98\xe8\xf7\xf3\x12\xa6\x4d\x9b\xa6\ -\x7a\x0e\x0b\x97\xc8\x42\x2d\x5a\xb4\x48\xf5\x77\x74\x35\x89\x8f\ -\x8f\xc7\xd1\xa3\x47\x6f\xff\xfa\xc6\x8d\x1b\x98\x37\x6f\x9e\x94\ -\x59\x00\x71\xef\xf8\x59\xb8\x44\x16\x4a\xe6\x39\x0b\xd5\xd5\xd5\ -\x88\x88\x88\xb8\xfd\xeb\xb7\xde\x7a\x0b\x05\x05\x05\x52\x66\x19\ -\x35\x6a\x14\x7c\x7c\x7c\x84\x64\xb1\x70\x89\x2c\xd8\xb4\x69\xd3\ -\xd0\xbd\x7b\x77\x29\xd9\x19\x19\x19\xd8\xb4\x69\x13\xce\x9c\x39\ -\x83\xf7\xde\x7b\x4f\xca\x0c\x6a\x9c\x97\x50\x1b\x1b\x61\x49\x44\ -\xa4\x39\xb7\xce\x59\xf0\xf5\xf5\x95\x92\x1f\x11\x11\x81\x47\x1f\ -\x7d\x14\x15\x15\x15\x52\xf2\x23\x23\x23\x85\xee\x4b\xe6\x3b\x5c\ -\x22\x0b\x37\x78\xf0\x60\x04\x06\x06\x4a\xc9\x3e\x72\xe4\x08\xbe\ -\xf9\xe6\x1b\x29\xd9\xed\xda\xb5\x13\xfe\x8c\x34\x16\x2e\x11\x61\ -\xd9\xb2\x65\xaa\x9c\x1d\xa0\x65\x32\xfe\x99\x59\xb8\x44\x84\xf6\ -\xed\xdb\x4b\x3b\x67\x41\x06\x1f\x1f\x1f\x8c\x1a\x35\x4a\x78\x2e\ -\x0b\x97\x84\x91\x75\x9d\x8e\xea\x46\xe6\x39\x0b\x22\xa9\x7d\x5e\ -\x42\x6d\x58\xb8\x24\x4c\x59\x59\x19\xfa\xf7\xef\x8f\xa8\xa8\x28\ -\xe4\xe4\xe4\xc8\x1e\x87\xfe\x44\xf4\x1d\x7b\x59\x64\xee\xcc\x60\ -\xe1\x92\x30\x4e\x4e\x4e\x78\xed\xb5\xd7\x10\x13\x13\x83\x8e\x1d\ -\x3b\xe2\x89\x27\x9e\x40\x6c\x6c\xec\x3d\x3f\xe6\x49\x72\x8c\x1a\ -\x35\x0a\x83\x06\x0d\x92\x3d\x86\x6a\x9c\x9d\x9d\xa5\x3e\xe3\x8d\ -\x85\x4b\x42\xbd\xf0\xc2\x0b\x18\x3b\x76\x2c\x00\xe0\xe7\x9f\x7f\ -\xc6\x2b\xaf\xbc\x02\x77\x77\x77\x04\x05\x05\x61\xc3\x86\x0d\xd2\ -\x4e\x89\xa2\xff\x91\x79\xce\x82\xda\x64\x7e\xba\x0e\x60\xe1\x92\ -\x04\xef\xbe\xfb\x2e\x9a\x37\x6f\x7e\xfb\xd7\xe5\xe5\xe5\x48\x4e\ -\x4e\x86\x9f\x9f\x1f\x3a\x75\xea\x84\x79\xf3\xe6\xe1\xf8\xf1\xe3\ -\x12\x27\xb4\x6c\x3d\x7a\xf4\xc0\xd4\xa9\x53\x65\x8f\xa1\x38\x2d\ -\xfc\x73\xb1\x70\x49\x38\x57\x57\xd7\x1a\x3f\x37\x7f\xf6\xec\x59\ -\x44\x47\x47\xa3\x4b\x97\x2e\xf0\xf2\xf2\x42\x4c\x4c\x4c\x83\x1e\ -\x40\x48\x8d\x23\xfb\x9d\xa0\x1a\xb4\xf0\xce\x9d\x85\x4b\x52\x84\ -\x85\x85\xa1\x43\x87\x0e\xb5\xfe\xcc\x6f\xbf\xfd\x86\xa8\xa8\x28\ -\xb8\xb9\xb9\xe1\xd9\x67\x9f\x45\x42\x42\x02\x4a\x4b\x4b\x05\x4d\ -\x68\xd9\x44\x9c\x0d\x2b\x52\x50\x50\x90\x26\xae\x4d\xb3\x70\x49\ -\x0a\x5b\x5b\xdb\x7b\x1e\xd1\x77\x2f\x06\x83\x01\x5b\xb7\x6e\xc5\ -\xf8\xf1\xe3\xe1\xe9\xe9\x89\xb0\xb0\x30\x64\x65\x65\xa9\x3c\x21\ -\x4d\x9d\x3a\x55\xda\xdd\x7c\x25\x39\x38\x38\x48\x7d\xca\xc5\x1f\ -\xb1\x70\x49\x9a\x71\xe3\xc6\xa1\x6b\xd7\xae\xf5\x7a\xcd\xa5\x4b\ -\x97\xf0\xc1\x07\x1f\xe0\xc9\x27\x9f\xbc\xfd\x28\xeb\x13\x27\x4e\ -\xa8\x34\xa1\x65\x93\xb9\x5f\x55\x49\x5a\xda\x5f\xcc\xc2\x25\x69\ -\x74\x3a\x1d\x66\xce\x9c\xd9\xe0\xd7\x9f\x3b\x77\x0e\x31\x31\x31\ -\xe8\xdc\xb9\xf3\xed\x2d\x66\x45\x45\x45\x0a\x4e\x48\xb2\x3e\x91\ -\xa5\x14\xad\x7d\x82\x8e\x85\x4b\x52\x8d\x1f\x3f\x1e\xae\xae\xae\ -\x8d\x5e\xe7\x8f\x5b\xcc\x5e\x7c\xf1\x45\x24\x27\x27\x73\x8b\x99\ -\x42\x4c\xf9\x9c\x05\xad\xcd\xce\xc2\x25\xa9\xec\xed\xed\xf1\xf2\ -\xcb\x2f\x2b\xb6\x5e\x45\x45\x05\xd2\xd3\xd3\x11\x14\x14\x84\x0e\ -\x1d\x3a\x60\xee\xdc\xb9\x77\x3c\x59\x80\xea\x4f\xc6\xa9\x5a\x4a\ -\x90\x79\x0a\x5a\x4d\x58\xb8\x24\xdd\xa4\x49\x93\xa0\xd3\xe9\x14\ -\x5f\xf7\xdc\xb9\x73\x78\xfb\xed\xb7\xf1\xd8\x63\x8f\xc1\xcb\xcb\ -\x0b\xf3\xe7\xcf\xc7\x99\x33\x67\x14\xcf\xb1\x04\x91\x91\x91\x68\ -\xdf\xbe\xbd\xec\x31\xea\x4c\xab\xd7\x9f\x59\xb8\x24\x5d\x87\x0e\ -\x1d\xd0\xb7\x6f\x5f\x55\x33\x7e\xfb\xed\x37\x2c\x58\xb0\x00\x1d\ -\x3a\x74\xc0\xd3\x4f\x3f\x8d\x4f\x3e\xf9\x04\x25\x25\x25\xaa\x66\ -\x9a\x13\x53\x3b\x67\x61\xfa\xf4\xe9\xe8\xd6\xad\x9b\xec\x31\xee\ -\xc2\xc2\x25\x4d\x18\x37\x6e\x9c\x90\x1c\x83\xc1\x80\x1f\x7f\xfc\ -\x11\x53\xa7\x4e\x45\xab\x56\xad\x6e\x7f\xa4\x58\xaf\xd7\x0b\xc9\ -\x37\x65\x81\x81\x81\xc2\x9e\xfd\xd5\x18\x32\x9f\xd5\x76\x3f\x2c\ -\x5c\xd2\x84\x91\x23\x47\x0a\xff\x14\x50\x59\x59\xd9\xed\x8f\x14\ -\x7b\x79\x79\x61\xf1\xe2\xc5\x38\x7b\xf6\xac\xd0\x19\x4c\x8d\x16\ -\x3e\xad\x75\x3f\x8b\x16\x2d\x42\x8b\x16\x2d\x64\x8f\x71\x4f\x2c\ -\x5c\xd2\x84\x56\xad\x5a\xe1\xa9\xa7\x9e\x92\x96\x7f\xec\xd8\x31\ -\xbc\xf1\xc6\x1b\xf0\xf0\xf0\xb8\xbd\xc5\xec\xd2\xa5\x4b\xd2\xe6\ -\xd1\xaa\xee\xdd\xbb\x63\xda\xb4\x69\xb2\xc7\xa8\x91\xb7\xb7\x37\ -\xa6\x4c\x99\x22\x7b\x8c\x1a\xb1\x70\x49\x33\x9e\x7b\xee\x39\xd9\ -\x23\x00\xb8\xf7\x16\xb3\xca\xca\x4a\xd9\x63\x69\xc6\xc2\x85\x0b\ -\xe1\xe2\xe2\x22\x7b\x8c\x7b\xd2\xfa\x3b\x70\xb3\x7f\x6a\xaf\xfe\ -\xcc\x19\x54\xae\x5f\x2f\x7b\x0c\xaa\x03\x5f\x7b\x7b\xcc\x97\x3d\ -\xc4\x1f\x54\x56\x56\x22\x3d\x3d\x1d\xe9\xe9\xe9\x68\xd1\xac\x19\ -\x46\xf6\xeb\x87\x97\x06\x0f\x46\xff\x67\x9e\x81\x4d\xc7\x8e\xd0\ -\x39\x39\xc9\x1e\x51\x8a\x5b\xe7\x2c\xcc\x98\x31\x43\xf6\x28\x77\ -\x18\x3d\x7a\x34\x06\x0e\x1c\x28\x7b\x8c\x5a\xe9\x8c\x46\xa3\x51\ -\x56\xf8\xcd\x39\x73\x50\xb1\x62\x85\xac\x78\xd2\x98\x6a\x00\x9e\ -\xa5\xa5\x28\x95\xf7\x5b\xb2\x4e\x7a\x58\x59\x61\xb4\xad\x2d\x46\ -\xf7\xe8\x01\xb7\xb1\x63\x61\x37\x6e\x1c\x74\x1a\x7d\xc7\xa7\x16\ -\xbd\x5e\x8f\x5e\xbd\x7a\xe1\xe0\xc1\x83\xb2\x47\x01\x00\x38\x3a\ -\x3a\x22\x3b\x3b\x1b\x6d\xdb\xb6\x95\x3d\x4a\x6d\x16\xf0\x92\x02\ -\x69\x86\x0d\x00\x6f\x2b\xed\xff\x96\x3c\x68\x30\xe0\xf5\xf2\x72\ -\x74\xde\xb7\x0f\x3e\x11\x11\x88\x7d\xe4\x11\x14\xbe\xf9\x26\x60\ -\x41\xcf\x6c\xd3\xda\x3e\xd7\x39\x73\xe6\x68\xbd\x6c\x01\xf0\x1a\ -\x2e\x69\x8c\x29\x14\xee\x2d\x06\x00\x99\x7a\x3d\x66\x5d\xbf\x8e\ -\x76\x0b\x17\x62\xb8\xbb\x3b\xd2\x56\xae\x44\x75\x75\xb5\xec\xd1\ -\x84\x18\x34\x68\x10\x82\x82\x82\x64\x8f\x01\x0f\x0f\x0f\x4d\x9d\ -\x97\x50\x1b\xd3\xf9\xdd\x4d\x16\xa1\x87\x86\x6f\x78\xd4\xa6\x02\ -\x40\x4a\x51\x11\xfc\x5f\x7e\x19\xed\xdd\xdd\x31\x73\xe6\x4c\x1c\ -\x38\x70\x40\xf6\x58\xaa\x5b\xba\x74\xa9\xf4\xb3\x0a\x96\x2d\x5b\ -\x06\x7b\x7b\x7b\xa9\x33\xd4\x15\x0b\x97\x34\xe5\x51\x13\x7a\x87\ -\x5b\x93\x0b\x05\x05\x88\x8b\x8b\x43\xaf\x5e\xbd\x30\x70\xe0\x40\ -\x7c\xfa\xe9\xa7\xb8\x76\xed\x9a\xec\xb1\x54\x71\xeb\x88\x4c\x59\ -\x7c\x7d\x7d\x31\x72\xe4\x48\x69\xf9\xf5\x65\xfa\xbf\xbb\xc9\xac\ -\xb4\x53\xe1\x4c\x05\x59\x8c\x46\x23\x76\xed\xda\x85\xc9\x93\x27\ -\xc3\xc5\xc5\xe5\xf6\x53\x2b\x6e\xde\xbc\x29\x7b\x34\x45\xcd\x9e\ -\x3d\x5b\xca\x39\x0b\xd6\xd6\xd6\x88\x8d\x8d\x15\x9e\xdb\x18\x2c\ -\x5c\xd2\x94\x16\x3a\x1d\x9a\x99\x51\xe9\xde\xa2\xd7\xeb\x6f\x3f\ -\xb5\xc2\xcd\xcd\x0d\xa1\xa1\xa1\xd8\xba\x75\x2b\x24\x6e\x12\x52\ -\x8c\x83\x83\x83\x94\x0f\x1b\x0c\x19\x32\x44\x93\xe7\x25\xd4\x86\ -\x85\x4b\x9a\xe3\x66\x86\x85\xfb\x47\xc5\xc5\xc5\xf8\xf2\xcb\x2f\ -\xf1\xec\xb3\xcf\xc2\xd3\xd3\x13\x51\x51\x51\xc8\xc9\xc9\x91\x3d\ -\x56\xa3\xd8\xda\xda\x0a\xcf\x6c\xd2\xa4\x89\xf0\xcc\xc6\x62\xe1\ -\x92\xe6\xb8\x9a\x79\xe1\xfe\xd1\xd9\xb3\x67\x11\x13\x13\x83\x2e\ -\x5d\xba\xe0\xf9\xe7\x9f\x47\x62\x62\x22\xca\xca\xca\x64\x8f\x45\ -\x2a\x61\xe1\x92\xe6\x38\x5a\x50\xe1\xde\xa2\xd7\xeb\x91\x91\x91\ -\x81\xb1\x63\xc7\xc2\xd9\xd9\xf9\xf6\x29\x66\x96\xb2\xc5\xcc\x52\ -\xb0\x70\x49\x73\x1c\x65\x0f\x20\x59\x79\x79\xf9\xed\x53\xcc\xda\ -\xb5\x6b\x87\x99\x33\x67\x62\xff\xfe\xfd\xb2\xc7\x22\x05\xb0\x70\ -\x49\x73\x1c\x2c\xf0\x1d\x6e\x4d\x2e\x5e\xbc\x88\xb8\xb8\x38\xf4\ -\xee\xdd\x1b\x5e\x5e\x5e\x88\x89\x89\x41\x7e\x7e\xbe\xec\xb1\xa8\ -\x81\x58\xb8\xa4\x39\xa6\x77\x2b\x44\x8c\xec\xec\x6c\x6c\xde\xbc\ -\x19\x3b\x76\xec\x30\x8b\xdd\x0d\x96\xc8\xec\x4f\x0b\x23\xd3\x53\ -\xce\x32\xb9\x43\xff\xfe\xfd\x11\x1a\x1a\x8a\xc0\xc0\x40\x38\x3b\ -\x3b\xcb\x1e\x87\x1a\x81\x85\x4b\x9a\x63\x5e\x1f\x0b\x68\x98\xf6\ -\xed\xdb\x63\xc2\x84\x09\x08\x0a\x0a\xc2\x63\x8f\x3d\x26\x7b\x1c\ -\x52\x08\x0b\x97\x34\xa7\xcc\x42\xdf\xe1\x36\x6b\xd6\x0c\x63\xc7\ -\x8e\x45\x48\x48\x08\xfa\xf5\xeb\x07\x2b\x33\xf8\x98\x33\xdd\x89\ -\x85\x4b\x9a\x63\x9e\xa7\x0e\xd4\xac\x4f\x9f\x3e\x08\x09\x09\x41\ -\x70\x70\xb0\x66\x9f\xa4\x40\xca\x60\xe1\x92\xe6\x9c\x37\x18\x64\ -\x8f\xa0\xba\xce\x9d\x3b\x63\xd2\xa4\x49\x78\xe9\xa5\x97\xe0\xee\ -\xee\x2e\x7b\x1c\x12\x84\x85\x4b\x9a\x52\x1b\x39\x74\xbf\x00\x00\ -\x03\x5d\x49\x44\x41\x54\x0d\xa0\xc0\x4c\x2f\x29\x3c\xf4\xd0\x43\ -\x18\x33\x66\x0c\x42\x43\x43\xd1\xbb\x77\x6f\xd9\xe3\x90\x04\x2c\ -\x5c\xd2\x94\x7c\xa3\x11\x7a\xd9\x43\x28\xc8\xd6\xd6\x16\xfe\xfe\ -\xfe\x08\x09\x09\xc1\xd0\xa1\x43\x61\x67\x67\x27\x7b\x24\x92\x88\ -\x85\x4b\x9a\x72\xc6\x4c\x2e\x27\x78\x79\x79\x21\x34\x34\x14\x2f\ -\xbd\xf4\x12\xdc\xdc\xdc\x64\x8f\x43\x1a\xc1\xc2\x25\x4d\x39\x60\ -\xc2\x85\xdb\xde\xca\x0a\xe3\xfa\xf7\xc7\xb8\xf8\x78\x3c\xda\xb5\ -\xab\xec\x71\x48\x83\x58\xb8\xa4\x29\x07\xf5\xa6\x75\x41\xa1\x99\ -\x4e\x87\x91\x36\x36\x08\x6e\xde\x1c\x3e\x71\x71\xb0\x1f\x3b\x56\ -\xf6\x48\xa4\x61\x2c\x5c\xd2\x94\x5f\x4d\xe0\x1d\xae\x0d\x80\x21\ -\x36\x36\x08\xb6\xb1\xc1\x30\x27\x27\x34\x1f\x3f\x1e\x0e\x11\x11\ -\xd0\x3d\xf4\x90\xec\xd1\x48\xe3\xa4\x16\xae\xd5\xc3\x0f\xc3\xba\ -\x67\x4f\x99\x23\x90\x86\x5c\xad\xae\xc6\xa9\xbd\x7b\x65\x8f\x51\ -\xa3\xf6\xf6\xf6\x08\x6e\xd5\x0a\x63\x1e\x79\x04\x9d\xbc\xbd\x61\ -\x33\x60\x00\x9a\x0c\x1b\x06\x5d\xd3\xa6\xb2\x47\x23\x13\x21\xb5\ -\x70\xed\x67\xce\x84\xfd\xcc\x99\x32\x47\x20\x0d\xf9\x36\x29\x09\ -\xfa\x3d\x7b\x64\x8f\x71\x87\x56\xad\x5a\x61\xe2\xc4\x89\x08\x09\ -\x09\x81\x97\x97\x97\xec\x71\xc8\xc4\xf1\x92\x02\x69\xc6\xa6\x4d\ -\x9b\x64\x8f\x00\xe0\xf7\x67\x74\x05\x06\x06\x22\x34\x34\x14\x83\ -\x07\x0f\x86\xb5\x89\x3e\xba\x9d\xb4\x87\x85\x4b\x9a\x60\x34\x1a\ -\xb1\x79\xf3\x66\x69\xf9\x3a\x9d\x0e\x43\x86\x0c\x41\x48\x48\x08\ -\xfc\xfc\xfc\xe0\xe4\xe4\x24\x6d\x16\x32\x5f\x2c\x5c\xd2\x84\x9f\ -\x7e\xfa\x09\x17\x2e\x5c\x10\x9e\xdb\xba\x75\x6b\x8c\x1d\x3b\x16\ -\xe3\xc7\x8f\x47\x8f\x1e\x3d\x84\xe7\x93\x65\x61\xe1\x92\x26\xac\ -\x5c\xb9\x52\x58\x56\xf3\xe6\xcd\x11\x1c\x1c\xcc\x53\xb9\x48\x38\ -\x16\x2e\x49\x57\x56\x56\x86\xa4\xa4\x24\x55\x33\x6c\x6c\x6c\x30\ -\x6c\xd8\x30\x84\x86\x86\xe2\xc5\x17\x5f\x84\xbd\xbd\xbd\xaa\x79\ -\x44\xf7\xc2\xc2\x25\xe9\x36\x6e\xdc\x88\x6b\xd7\xd4\x39\x94\xb1\ -\x63\xc7\x8e\x08\x09\x09\x41\x48\x48\x08\x3c\x3d\x3d\x55\xc9\x20\ -\xaa\x2b\x16\x2e\x49\xf7\xde\x7b\xef\x29\xba\x5e\xeb\xd6\xad\x31\ -\x7e\xfc\x78\x6e\xe5\x22\xcd\x61\xe1\x92\x54\xbb\x77\xef\xc6\xee\ -\xdd\xbb\x1b\xbd\x8e\xa3\xa3\x23\x46\x8e\x1c\xc9\xad\x5c\xa4\x69\ -\x2c\x5c\x92\x6a\xf9\xf2\xe5\x0d\x7e\xed\x1f\xb7\x72\xf9\xfb\xfb\ -\xe3\xc1\x07\x1f\x54\x70\x32\x22\xe5\xb1\x70\x49\x9a\x13\x27\x4e\ -\x20\x35\x35\xb5\xde\xaf\x73\x73\x73\xc3\x4b\x2f\xbd\x84\xd0\xd0\ -\x50\x5e\x32\x20\x93\xc2\xc2\x25\x69\x66\xcd\x9a\x05\x7d\x1d\x4f\ -\x07\x73\x71\x71\xb9\x5d\xb2\x7c\x5a\x02\x99\x2a\x16\x2e\x49\xb1\ -\x69\xd3\x26\x6c\xdc\xb8\xb1\xd6\x9f\x69\xd2\xa4\x09\x02\x02\x02\ -\xf8\xb4\x04\x32\x1b\x2c\x5c\x12\xae\xba\xba\x1a\xb3\x66\xcd\xaa\ -\xf1\xfb\xfd\xfb\xf7\x47\x68\x68\x28\x02\x03\x03\xe1\xec\xec\x2c\ -\x70\x32\x22\x75\xb1\x70\x49\xb8\x0f\x3f\xfc\x10\x47\x8f\x1e\xbd\ -\xe3\x6b\x2e\x2e\x2e\xb7\x3f\xfd\xd5\xa7\x4f\x1f\x49\x93\x11\xa9\ -\x8b\x85\x4b\x42\x1d\x39\x72\x04\x51\x51\x51\x00\x80\xa6\x4d\x9b\ -\x62\xc4\x88\x11\x08\x0d\x0d\x85\xaf\xaf\x2f\x3f\x62\x4b\x66\x8f\ -\x85\x4b\xc2\xe8\xf5\x7a\x4c\x9e\x3c\x19\x03\x06\x0c\x40\x48\x48\ -\x08\x02\x02\x02\xd0\xbc\x79\x73\xd9\x63\x11\x09\xc3\xc2\x25\x61\ -\x0a\x0b\x0b\xb1\x72\xe5\x4a\x3c\xfa\xe8\xa3\xb2\x47\x21\x92\x82\ -\x85\x4b\xc2\xb4\x69\xd3\x06\x6d\xda\xb4\x91\x3d\x06\x91\x34\xbc\ -\x68\x46\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\ -\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\ -\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\ -\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\ -\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\ -\x12\x44\x67\x34\x1a\x77\xc8\x1e\x82\x88\xc8\x02\xac\xfa\x3f\xda\ -\x1e\x33\xf5\x9c\x7d\xbd\xea\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ -\x00\x00\x02\xe0\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ -\x00\x00\x02\xa7\x49\x44\x41\x54\x78\x9c\x8d\x93\x4d\x48\x54\x51\ -\x18\x86\x9f\x3b\x1e\x1d\xa7\x71\x9c\xc9\x1f\xcc\x30\x1b\x49\x92\ -\x7e\xa0\xcc\xdc\x44\x45\x8b\xa0\x8d\x19\x2a\x6e\x62\x6a\x17\x35\ -\x54\x0b\x5d\xe9\xae\x9d\xb4\xa9\x85\x82\x41\xd0\xa2\xda\xd9\x18\ -\xe8\x2a\x08\x8a\x90\x20\x2a\xfa\x0f\x86\x0a\xad\x66\x94\x69\x9a\ -\x69\x9c\x99\xeb\xbd\xd7\x7b\xee\x3d\x2d\x46\x4b\x29\xa2\x77\xf7\ -\x9d\x73\xde\xe7\xfb\xbe\x17\x8e\xc6\xf0\x43\x05\x0c\x31\x72\xe4\ -\x32\x00\x17\xa7\x87\x11\xa2\x0f\x51\xde\x86\x10\x7e\x00\xa4\xd4\ -\x91\x76\x1c\x29\x63\x8c\x1e\x1f\x61\x8d\xb4\x15\x00\xd8\xf6\x20\ -\x8e\x3c\x89\xcf\xd7\x11\xae\xaf\xd6\x1a\x82\x3e\x0e\xb7\x35\x02\ -\xf0\x28\xbe\x40\x6a\xd1\x60\x2e\x9d\x57\x18\xc6\x73\x6c\x7b\x80\ -\xb1\xee\x99\x12\x60\xe8\x81\xea\x6f\x6f\x62\xe2\x45\x82\x70\x43\ -\x90\xce\xcd\x01\xc2\x4d\xf5\x00\xcc\x25\xd2\x00\xeb\xea\x89\xd7\ -\x0b\x60\x18\xb3\x2c\x5b\xa7\x19\xeb\x9e\x11\x28\x97\xcd\x8d\xb5\ -\xf4\x38\x2e\xcd\x4d\x75\x7c\x49\x66\x98\x78\xf2\x89\xb9\x74\x01\ -\x34\x0d\x94\x82\x57\x49\xc2\x75\xd5\x9c\xe8\xd8\x4a\x8f\xe3\x72\ -\xf7\xcd\x42\x0b\xca\xb9\x0a\x74\x96\x71\xe0\xf4\xa5\xbd\x2d\xf5\ -\xf8\xfd\x3e\x66\x13\x19\xa6\x5f\x7e\x25\xb7\xa8\xe7\x30\x8d\x3b\ -\x98\x46\x14\xcb\xba\x81\x2d\xbd\x39\xdd\x6c\x4e\x15\xac\xca\x3d\ -\xad\x9b\xd8\x54\x59\xc6\x87\xef\x7a\x23\xed\xfd\xcb\x02\xd7\x65\ -\xc9\x76\xd0\x80\xda\xda\x20\x47\x77\x38\xdc\x7f\x3f\x1f\xa2\x2a\ -\xf0\x96\x91\x23\x8f\x57\xb2\x7a\xcc\xf9\xa9\xc8\x5c\x32\x3d\x7a\ -\xcf\x75\x42\x87\x76\x37\xd3\xba\x21\xa9\x7d\xb4\xb4\x3e\x8d\xc1\ -\x7b\x0a\x05\x68\x6b\xa2\x5d\xad\xaf\x1c\x5b\x7b\x0a\x17\xa6\x6e\ -\x51\x51\x11\xe9\x3d\xbc\x8b\x6f\xa9\x2c\x33\xef\x12\x45\xf1\xc7\ -\xa3\x7f\xc9\x75\xc7\x91\x32\xa2\x9b\x36\xfe\x60\x00\x50\x7e\xf1\ -\xdf\xe6\x55\x39\x0e\x45\x4b\xa2\x94\x02\x29\x11\x9c\x9b\x2c\xa0\ -\xdc\xaa\x5f\x3b\x78\x3c\xb7\x19\xef\x39\xf5\x57\xb3\x52\x51\x1c\ -\x87\x82\x69\x53\xcc\xe5\x41\xb9\xba\x07\xa5\xe2\x48\x97\x6d\x3b\ -\x5b\x69\xdc\xd2\x00\x8e\xd3\x45\xf4\x6e\xe4\x0f\x73\x74\x32\x82\ -\x74\xba\xc2\x0d\x21\x8a\x96\x4d\x3a\x95\x05\x57\xc5\x05\x9a\x16\ -\x43\x39\xfb\x8a\xcb\xb6\xa6\x79\x2b\xc1\xe3\x09\x61\xdb\xa3\x9c\ -\x8d\x1d\xc3\xe3\x19\x5f\xd9\x3d\x8a\x2d\xbb\x70\x64\xc8\x0c\x04\ -\x59\xce\x2c\x52\xc8\xe5\x15\x5e\x6f\xac\x34\xf7\x99\x89\xa7\x58\ -\xe6\xfe\xea\xb6\xed\x00\xf8\x32\xdf\x48\x7d\xcf\xad\x69\xaf\x11\ -\x6e\xaa\x23\xeb\x0f\x21\xf5\x25\x96\x12\x49\xf0\x56\x3e\xe3\x7a\ -\x7f\x67\x29\x44\x21\x06\x70\x2b\x6e\xe6\x67\x3f\xb7\x88\xda\x1a\ -\xcc\xea\x1a\x2a\x02\x35\xb8\xa6\x51\x8a\xc5\xe7\x63\x5e\x81\x9b\ -\xd7\x91\xc9\x04\x78\xbd\xb3\x08\x31\x50\x42\xaf\xea\xdc\xe4\x41\ -\xa4\x7d\x15\xc3\xe8\x20\x18\xd2\x36\x7a\xcb\xf8\xe1\x0f\x95\xee\ -\xb2\x19\xb0\x2c\x30\x0d\x85\x6f\xc3\x73\xca\xc5\x00\xe3\xbd\x33\ -\xeb\x01\xbf\x41\xc3\x48\xd9\x87\xb4\xdb\x90\xd2\xbf\x32\xa1\x8e\ -\x28\x8f\x23\x44\x8c\x6b\xbd\xeb\xbe\xf3\x4f\x57\xf9\x31\xd1\xb0\ -\x87\x00\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x2a\xaf\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ -\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ -\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ -\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x29\xd8\ -\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x9c\x1c\xd5\x99\xe7\x57\xd5\ -\x71\xba\x67\x7a\x72\xce\x1a\xcd\x28\x6b\x84\x32\x20\x59\x88\x8c\ -\x31\x02\x0c\xf6\x12\x4c\xb0\xe1\x6c\x6e\xd7\x5e\x73\xd8\xdc\x1a\ -\x9f\xf7\xd6\xbb\xe7\xb0\xbe\xb3\xd7\x61\xd7\xbb\x78\x77\xbd\x0b\ -\x36\xb6\x31\xc6\x5e\xc0\x60\x44\x30\x42\x08\xac\x41\x39\x80\xc2\ -\x04\x4d\xce\x79\xa6\x7b\x3a\x77\xdd\xf7\xbd\xaa\xea\xae\xaa\xae\ -\xea\x09\x0a\xdd\x23\xcd\xd3\xef\x53\x85\xee\xa9\xae\xf7\xbe\xff\ -\xfb\xd2\xfb\xde\x7b\x1c\x2c\x14\xa3\x62\x43\xaa\x42\x2a\x93\xa8\ -\x08\xc9\x6e\xf0\xdd\x31\x89\xda\x90\xba\xa4\x63\x78\x3e\x54\x92\ -\x5b\xe0\x33\x2b\x4e\xa4\xf5\x48\x5b\xa4\xe3\x52\x89\xe6\x5a\x42\ -\x48\xa7\x24\x6a\x40\x7a\x17\xe9\xc0\x7c\x01\xc5\xa5\x52\x6a\x90\ -\xfe\x0a\x69\x17\x92\x17\x49\x38\xcf\x34\x89\xf4\x2a\xd2\xe7\x90\ -\x4a\x17\x9a\x3f\x39\x25\x17\xe9\x4b\x48\x87\x2f\x00\xc3\xa7\xa3\ -\x3d\x48\x0f\x49\xd2\x67\xa1\x9c\xe7\xb2\x0e\xe9\x57\x17\xa8\xa7\ -\xcf\x45\x32\xfc\x0b\xd2\x92\x05\x1b\xe0\xdc\x97\x6d\x48\x5f\x47\ -\xba\x6a\x4e\xe2\x22\x37\x0f\x2a\x2a\x2b\xa1\xa4\xb4\x0c\x72\x72\ -\x72\xc0\xe5\x72\x61\x8b\x71\x60\xb3\xd9\x20\xe0\x0f\xd0\x29\x2b\ -\xa3\xa3\x23\x30\x3a\x32\x0a\xdd\x5d\x9d\xd0\xde\xde\x86\xd7\xa3\ -\x73\x7d\xdf\x17\xa4\xf7\x3d\xba\x00\x80\xb3\x2b\xf5\x48\x3f\x98\ -\x0d\xe3\x73\x72\x73\x61\xfd\xfa\x8d\xb0\xaa\x7e\x0d\xac\x46\xaa\ -\xad\x5b\x02\x4e\xa7\x13\x99\xcc\x69\x08\x62\xe7\xa0\xb9\x96\x3e\ -\x9f\x9c\x98\x80\xe3\xc7\x8e\xc1\xc9\x13\x1f\xc2\xfe\xfd\xfb\x60\ -\xef\xde\x3f\xb1\x7b\xb3\x28\xcf\x22\x7d\x0d\xa9\x65\x01\x00\xb3\ -\x2b\x99\x48\xdf\x45\x7a\x10\xc9\x3c\xdd\x97\x17\x23\x93\xaf\xbe\ -\xf6\x7a\xd8\xbe\xfd\x1a\x76\x1e\x65\x26\xe8\x30\x7b\x96\x20\xd0\ -\x7e\x7e\xf8\xd0\x41\xf8\xe3\x9b\x6f\xc0\x8b\x2f\xbe\x00\xed\x6d\ -\x6d\x33\xa9\x8b\x4f\xaa\xcb\x37\x90\xfc\x0b\x00\x98\xbe\xdc\x81\ -\xf4\x24\x52\x5e\x42\x84\x64\x66\xc1\x4d\x1f\xdb\x01\x3b\x6e\xbf\ -\x03\xaa\xab\x17\x19\x32\xd7\x62\x36\x83\xc5\x82\x64\x36\x81\x89\ -\x47\x32\xf1\x12\x43\x01\x78\x3a\x27\x9f\x2e\x22\xb0\xa3\x20\x08\ -\xc0\xfe\xa1\x46\x8f\xd0\x79\x44\xbc\x36\x02\xc9\xb1\xa3\x47\xe0\ -\x57\xbf\xfc\x05\xfc\xf6\xf9\xdf\xc0\xd4\xd4\xd4\x74\xf5\x6a\x93\ -\x00\xbd\x7b\x01\x00\xc6\xbd\x9e\x18\x7f\x57\xa2\x2f\x95\xa2\x1e\ -\xbf\xe7\xfe\xcf\xc0\x0d\x1f\xbd\x19\x6c\x76\x7b\x94\x31\x3c\x31\ -\x86\xe7\xc1\x6e\xb3\x42\x9a\xdd\x06\x36\xab\x05\xac\xc8\x78\x8e\ -\x3b\xfb\xa6\x89\x44\x22\x48\x82\x08\x10\x01\xe2\x24\xc5\xe4\xc4\ -\x38\x3c\xf7\xeb\x67\xe1\x1f\x7f\xf4\x43\x18\x1c\x1c\x9c\xee\x71\ -\xa4\xd2\xbe\x72\xae\xa5\xc1\x7c\x07\x00\x59\xf7\xcf\x4b\x11\x3b\ -\xdd\x42\x06\xdc\x7d\x0f\x3e\x04\xd7\xdd\xf4\x31\x30\x9b\xcd\x8a\ -\x5e\xce\x83\x13\x19\x9e\xee\x4c\x03\x67\x1a\x02\x82\x3f\xcf\x4d\ -\x21\x4b\x07\x42\x02\x80\x4a\xe2\x90\x41\xf9\xb3\xa7\x9f\x92\x80\ -\x30\x90\xe8\x29\x47\xf0\x6f\xee\xc4\x67\xb4\x2c\x00\x00\xe0\x01\ -\xa9\xe7\xeb\x86\x67\x9d\xce\x74\xb8\xf7\x81\xcf\xc0\x1d\x7f\x76\ -\x0f\x32\xde\xa2\x10\xed\x26\x70\xa5\x3b\x21\x33\xc3\x09\x66\x93\ -\x29\x29\x2f\x2e\x28\x1b\x5f\xa1\x76\xa6\x3c\x1e\x06\x82\x7f\xf9\ -\xe7\x1f\x83\xdf\x6f\xd8\xd1\xc7\x24\x69\xf7\xda\xa5\x0c\x80\x6f\ -\x4b\xe2\x50\xb7\x6c\xf9\xc8\x76\xf8\xef\x7f\xf9\x18\xe4\x17\x14\ -\x46\x7b\x1a\x31\x3e\x27\xcb\xc5\x18\x7f\x2e\xc4\xfb\xb9\x2c\x3c\ -\xaf\xb6\x43\x9a\x9b\x9a\xe0\xb1\x47\xbf\x08\xfb\xf6\xbd\x6f\xf4\ -\x27\x14\x6a\x7e\x14\xe9\xc7\x67\xfb\xdb\xa6\x79\xc6\x78\x7a\xdf\ -\x5f\x22\x3d\x62\xd4\xeb\xbf\xf8\xf8\x13\xf0\xc0\x43\x8f\x80\x03\ -\xcf\x09\xdf\x26\xd4\xef\x79\xd9\x2e\x28\x2e\xc8\x65\x7a\x3e\x15\ -\x8b\x52\x2d\x88\xf1\x87\x5c\xb8\xe7\xde\x4f\x61\x7d\x1c\xd0\xb0\ -\x77\x2f\x84\xc3\x71\x43\x08\x3c\xd2\x47\x25\xe9\xf7\xc7\x4b\x45\ -\x02\x98\x24\xff\xf8\x4e\x23\x97\xee\xab\x7f\xf3\x4d\x28\x2c\x2e\ -\x65\x95\xa2\xc6\xa4\xde\x5e\x98\x97\x8d\x2a\xe0\xec\x70\xee\xf5\ -\x05\xc0\x33\xe5\x05\x7f\x20\x08\x53\x3e\x1f\x84\x43\x61\x26\xc6\ -\xc9\x53\x20\x50\xd9\xed\x56\xb4\x25\x1c\x60\x47\x03\xf2\x6c\x05\ -\xb2\xd9\xcc\xa3\x44\xe0\xa3\x46\xea\x87\x1f\x1e\x87\xcf\x7c\xfa\ -\x41\x68\x6b\x6d\x4d\x64\x1c\xfe\x8f\x8b\x1d\x00\x09\x99\xbf\xfd\ -\xba\x1b\xe1\x2f\x1e\x7d\x9c\x45\xe8\xa8\xe1\xc8\xd8\x2b\x2d\xcc\ -\x63\x06\xde\xec\x99\xed\x87\xfe\x81\x61\xe8\x1b\x1e\x85\xa1\xe1\ -\x31\x18\x9d\x70\xa3\x3e\x0e\x48\x96\xbc\x44\xb2\xeb\x27\xc4\x2c\ -\x7c\x3a\x12\x18\x48\xcd\xe4\xe5\x66\x41\x19\xfe\x7e\x59\x71\x01\ -\xbe\xd3\xec\xa5\x0e\x49\x2d\x02\x17\x19\xa6\xf4\x6f\x02\xbd\x05\ -\x02\xc1\x9e\x77\x76\x9f\x73\x10\xcc\x17\x00\xfc\xc6\x88\xf9\xf7\ -\xdc\xff\x10\x7c\xf2\xde\xfb\xa3\xfa\x33\xc3\xe1\x80\xd2\xe2\xfc\ -\x59\x19\x78\x1e\xaf\x17\xda\x3a\xfb\xa0\xa3\xa7\x1f\x86\x47\xc7\ -\xa3\xd6\xba\xcc\xdc\x40\x30\x08\x3e\x34\xca\x48\x14\xfb\x08\x0c\ -\x51\x33\x4e\x94\x02\xd4\x63\xad\x16\x0b\xba\x94\x7c\x34\x1e\x40\ -\xff\xd1\xfb\x14\xe6\xe7\x40\x6d\x55\x19\xd4\x2d\xaa\x60\xde\xc6\ -\x8c\x19\x43\x21\x67\x94\x28\x62\xcc\x81\x43\x77\x32\x0c\x5f\xf9\ -\x9f\x8f\xc3\xd3\xe8\x2d\x18\x94\xbf\x47\x7a\xe2\x62\x04\xc0\xff\ -\x43\xfa\x72\xbc\xe1\x64\x82\x87\xff\xfc\x2f\xe1\xc6\x9b\x6f\x8d\ -\xba\x53\xf9\xb9\xd9\x28\xf2\x73\x60\xa6\x36\x5e\x77\xdf\x10\x9c\ -\x69\xef\x86\x9e\x81\xa1\x28\xc3\x43\xc8\xe4\x91\xf1\x09\x18\x9b\ -\x98\x84\x09\xb7\x1b\xc1\xe1\xd3\xd3\xc1\xfa\x3d\x17\x41\xe7\xb0\ -\xdb\x19\x39\xd3\xd2\xc0\x81\x44\xef\x26\x48\x60\xa8\xa9\x28\x81\ -\xd5\xcb\x6b\xa1\x1c\x01\x3a\xd3\x62\x45\x10\x30\x69\x20\x05\x93\ -\xfe\xcf\xdf\xfd\x2d\xf3\x14\x0c\xca\xe7\x67\x6b\x18\xa6\x3a\x00\ -\x68\xb8\xf4\xdf\xe3\x99\xcf\xc3\xa3\x7f\xf5\xd7\x70\xc5\x96\x6d\ -\xac\x61\xe9\xba\xb4\x28\x1f\xb2\x33\x33\x66\xc8\xf8\x41\x38\xd5\ -\xd2\x0e\x13\x93\x1e\xc6\x9c\x20\xea\xf4\xbe\xa1\x21\xe8\x1d\x1c\ -\x82\x71\x64\x7c\x44\x88\xf5\xf0\x00\x58\x60\x8a\x73\x82\x97\x4b\ -\x83\x20\xd8\x20\xcc\xa9\x23\xcc\x66\x21\x08\x56\xc1\x8f\xd6\x98\ -\x17\x1c\x82\x07\xbf\x1d\x8a\xbd\x27\xbe\x1b\xd9\x06\x59\x19\x2e\ -\x3c\x3a\x99\xe5\x46\x4f\x26\xa9\x70\xe5\xfa\x55\x50\x56\x54\x30\ -\x33\x10\x58\xcc\x4c\x95\xc8\x20\xf8\xc9\x93\x4f\xc2\x5f\x7f\xed\ -\xab\x46\xde\xc1\xc7\x66\xe3\x22\xa6\x32\x00\x36\x81\x98\x49\x13\ -\x17\xd3\xff\xdc\x17\x1e\x83\x6b\x6e\xb8\x99\x35\x08\x85\x68\x2b\ -\x4a\x0b\x99\x6f\x3f\x5d\x19\x1b\x9f\x84\x0f\x1a\x5b\x59\xef\x26\ -\xc6\xbb\xd1\xb0\x6b\xed\xec\x86\xee\xfe\x01\x08\x47\x22\xa2\x0d\ -\x00\x69\x30\xcc\xe7\xc1\x28\x97\x0b\xe3\x7c\x16\x04\x38\xfb\xac\ -\x5e\x3a\x2d\xe2\x81\x4c\x61\x0c\xb2\x85\x11\xc8\x8d\x0c\x80\x15\ -\x61\x23\xeb\xf5\x9c\xac\x4c\xc8\xc9\xcc\x8a\xaa\x27\xb2\x11\xb6\ -\x6d\x5a\xc3\xec\x86\xe9\x0a\x85\xa5\xd3\x24\x1b\x67\x1a\x49\x30\ -\x86\xdf\x59\x3f\xd3\x60\x51\xaa\x02\x80\x12\x37\x8e\x80\x98\x8b\ -\xa7\x2a\x77\xdd\xf7\x10\xdc\xf6\x89\xbb\x58\x43\x50\x8c\xbe\xba\ -\xa2\x18\x9c\x8e\xc4\xc6\x5e\x38\x1c\x81\xa6\xd6\x4e\x68\xef\xee\ -\x63\x8c\xf7\xa2\x25\x7f\xb2\xa5\x95\x31\x9e\x3a\x7b\x10\x31\xd6\ -\xc7\x97\x20\x95\xc2\x24\x9f\x79\x4e\x2b\x92\x15\x19\x86\xe2\x48\ -\x37\x14\x44\xfa\xd0\x92\x8d\xb0\xf7\xce\x71\xb9\x20\x3f\x27\x87\ -\xa9\x0c\x02\xc6\xda\x55\x4b\x60\xc3\xea\x65\xd3\x46\x23\x49\x15\ -\xb0\xa8\xa5\x04\x82\xc7\xbf\xf4\x98\x91\x4d\x40\x6d\xb7\x19\x66\ -\x10\x36\x4e\x55\x00\xfc\x5e\x12\x65\xaa\x72\xd5\xb5\x37\xc0\x67\ -\x3f\xff\x25\x49\xec\x73\x50\x5d\x5e\x02\x19\xe9\x8e\x84\x0f\x72\ -\x7b\xa6\xe0\xf8\xe9\x33\x30\x85\xba\x3c\x84\xa2\xbe\xa9\xad\x03\ -\x4e\xb7\xb6\xb3\x38\xbd\x1f\xfb\x67\xbb\x69\x11\xf4\xf0\xe5\x10\ -\xe1\xe2\x8d\xc6\xd2\x6c\x3b\xac\xaf\xca\x82\xa5\xc5\xe9\x50\x53\ -\xe0\x80\xa2\x4c\x3b\xa4\xdb\xd5\x02\xa9\x6f\xdc\x07\xfd\xe3\x7e\ -\x68\x1e\xf0\xc0\x91\xf6\x09\x38\xd2\x39\x0e\x1e\x7f\xbc\xcd\x40\ -\xaa\xa2\x2c\xdc\x0e\xe5\x91\x36\xa6\x26\x48\x6d\x15\xa2\xbf\x9f\ -\x93\x29\x02\x2e\x3f\x27\x0b\x6e\xbc\x6a\x13\xd6\x27\xb1\x24\x23\ -\xc3\xd0\x41\x20\x90\x0c\xc3\x4f\x7e\xe2\x4e\x23\xef\x60\x46\x9e\ -\x41\x2a\x02\x80\x42\xbc\x71\xb0\xae\xa9\x5b\x0a\xff\xfb\x5b\xdf\ -\x43\xf1\x29\xc6\xf3\x2b\x4b\x8b\xa6\xd5\xf9\xfd\xc3\x23\xac\xe7\ -\x93\x04\x18\x45\xc3\xae\xe1\xe8\x07\x0c\x10\xd4\xe3\xdb\x4c\x35\ -\xd0\xcd\x57\xa8\x18\x6f\x42\x50\x6d\xa9\xcb\x81\xdb\xd7\x16\xc1\ -\x0d\x2b\xf3\xa1\x2a\xcf\x31\xeb\x97\x0f\x85\x05\x38\xd0\x36\x06\ -\x7f\x38\x36\x00\xcf\xef\xef\x85\xd6\xa1\xa9\x38\x20\x94\x87\x5b\ -\xa1\x02\x81\x40\x12\x21\x0d\x0d\xc6\xb2\xc2\x42\xe6\x45\x10\x5d\ -\xb7\x75\x03\x54\x94\x14\x26\xfc\x0d\x8a\x3b\xc8\x20\x20\x17\xf1\ -\xba\x6b\xaf\x36\x8a\x13\x5c\x05\xd3\x8c\x22\xa6\x1a\x00\xa8\xe6\ -\x94\x49\x9b\xa5\xbc\x99\x8e\x46\xd4\x37\xbe\xfb\x4f\x90\x9b\x97\ -\xcf\x98\x5f\x54\x90\x0b\x45\xf9\xb9\x09\x1f\x44\x2e\x5d\x77\xef\ -\x00\x33\xe8\x1a\xb1\xc7\x1f\x39\xd9\xc8\xc4\xff\x00\x57\x08\x8d\ -\xe6\xe5\xa8\xdb\x6d\xd1\xef\xe6\x65\x58\xe1\xbf\x7d\xa4\x02\xee\ -\xda\x54\x0a\x85\x2e\xdb\x39\xad\xd0\xe1\x8e\x71\xf8\xe9\x9e\x0e\ -\x78\xe9\x70\x3f\x04\x42\x91\x98\xad\x80\x06\xe3\xd2\xd0\x07\x68\ -\x2b\x8c\x32\x63\xb1\x04\x41\x90\x99\x9e\xce\xea\xb7\x65\xc3\x6a\ -\x58\x5e\x5b\x9d\xf0\xb9\x14\xe3\xb0\x4b\x86\x21\x05\x8b\x6e\xba\ -\xe1\x7a\xbd\xf1\x83\x36\x10\xb3\x9b\xfd\xf3\x25\x14\x4c\x16\xff\ -\xfa\x38\xa3\xef\x8b\x8f\x43\x4d\xed\x12\x36\x70\x42\x22\xb2\x7c\ -\x9a\x1e\xd2\x89\xcc\xef\x1d\x1c\x66\x0c\x7f\x1f\x7b\xfd\xc9\x96\ -\x36\x14\xba\x26\x38\x61\x5a\x0d\xad\xe6\xda\xa8\x25\x9f\x9b\x6e\ -\x85\xc7\x6e\x58\x04\xff\xf7\x93\xcb\x99\xa8\x37\x9b\x38\xf0\x23\ -\x93\xce\x25\x65\x3b\x2d\x70\xcd\xb2\x3c\xb8\x73\x43\x09\xf8\x02\ -\x11\x38\xd9\x3b\xc9\xec\x8e\x10\x67\x85\x3e\x53\x19\x7b\x2f\xb2\ -\x13\x26\xd1\xe5\xa4\xf7\x25\xf7\xb1\xa3\xbb\x9f\x59\xfe\x05\x79\ -\xd9\x86\x75\x0c\x06\x83\x68\x13\x50\x9c\x80\x83\x82\x82\x42\x16\ -\x04\xdb\xfd\xf6\xdb\x71\x26\x88\x74\xdc\x35\x1f\x24\xc0\x95\x92\ -\xd5\xaf\xbe\xb9\xed\x6a\x78\xf8\x2f\x1e\x63\x3d\x83\x44\xe4\xd2\ -\x9a\xca\x84\xa1\xdd\x2e\x74\xf1\x06\x86\x46\x58\xf0\xe6\xed\x86\ -\x83\xe8\xde\x0d\x83\x07\x9c\x70\xdc\x72\x19\xba\x73\xe9\x22\xea\ -\xb1\xd6\x77\x6f\x2e\x83\x87\xb7\x55\x80\xc3\x6a\x3a\x7f\xad\x22\ -\xc4\xdf\x6a\x1d\x9c\x82\x6f\xbf\xd2\x04\x47\x3a\x62\x29\x62\xae\ -\xc8\x18\xac\x0a\x1d\x42\x27\x33\xc0\xa4\x40\x69\xa1\x38\x88\xb5\ -\xf9\xb2\x15\xb0\x6a\x69\x4d\xc2\x88\x61\x36\x7a\x10\xbc\x14\x31\ -\xbc\xe5\xe6\x9b\xf4\x06\x90\x28\xb3\x68\x25\x18\xa4\x97\xa5\x12\ -\x00\xf6\x6b\x7b\x7f\x7a\x7a\x06\x7c\xf3\xfb\x4f\x42\x86\x2b\x93\ -\x59\xbd\x8b\xab\xca\x12\x1a\x49\x7d\x03\xc3\x30\x38\x32\x0a\x81\ -\x40\x08\x5e\x7f\xaf\x01\x06\x87\x47\xd1\x27\xca\x82\x63\xe6\xb5\ -\xac\xc7\x31\xd7\x0b\x0d\xbb\xaf\xde\x52\x0b\x8b\x0b\xd3\x8d\x6b\ -\xcf\xcd\xb5\x99\x84\x69\x01\x20\x97\x17\x0e\xf4\xc2\x7f\xa0\x6a\ -\xf0\x05\x45\xb5\x60\x17\xbc\x50\x1f\x3c\x80\x50\xf5\x80\xcb\xe9\ -\x84\xb2\xa2\x22\x06\x82\x2b\xd6\xad\x82\x65\xb5\x55\xc6\x6e\x27\ -\xaa\x01\x97\x34\xc2\x49\xa3\x88\xd7\x6c\xdf\xa6\xa7\x0a\x28\x8c\ -\x7e\x77\x2a\xab\x80\x5b\x91\x1e\x8b\x73\xf9\x1e\xf8\x2c\xd4\x2e\ -\x59\x2e\x8a\xeb\xec\x4c\xb4\x94\xb3\x0d\x93\xab\xc9\xb7\x27\x86\ -\x53\x3a\xd6\xeb\xef\x36\xc0\x00\x1a\x80\xc4\xfc\xa3\xe6\xf5\x28\ -\xf2\xc5\x41\x1a\x32\xf0\x9e\xf8\x58\x2d\x64\xa1\xe8\x0f\xa0\x61\ -\x48\x3a\x59\x24\x01\xaf\x15\x14\xd2\x92\xf4\xbd\xb0\x01\x29\x9f\ -\xa3\xa4\xb8\x67\xc6\xbe\xbb\xa8\xc0\x09\xeb\xab\xb3\x98\x24\x20\ -\xaf\x21\x84\xef\x38\xc8\x17\x41\x6e\x64\x10\x84\xa0\x87\x49\x30\ -\x17\x4a\x03\x92\x68\x79\x39\x99\x0c\x14\x7a\xf5\xa6\x20\x16\xb9\ -\x87\x14\x0f\xa1\x51\x44\x3f\xba\xb8\x0d\x0d\x7b\xb5\x4d\x49\x12\ -\x80\x32\x8e\xfb\x53\x55\x02\xd0\x44\x8d\x35\xca\x1b\x65\x15\x55\ -\xf0\xbf\xbe\xf9\x0f\x2c\x68\x42\x41\x10\x32\x8a\x8c\xe2\xfb\xbe\ -\x40\x80\xe9\x7d\x4a\xbf\x7a\xab\x61\x3f\xb4\xb4\x77\x29\x98\x6f\ -\x66\xb5\xdc\x71\x59\x31\x7c\x7c\x5d\x91\xa6\xc6\x9c\xfa\x5a\xa7\ -\x35\xee\x58\x53\x08\xe9\x36\xf3\xac\x2a\xf3\x6e\xcb\x28\xb4\x28\ -\xad\x7f\xad\x24\x50\x44\x1a\x27\xbd\x21\xf8\xe1\x9b\xad\xd0\xdc\ -\xe7\x66\xdf\xa3\xa8\xe2\x65\xc1\x7d\x4c\x12\xe4\x65\x67\x33\x57\ -\x91\xec\x81\x1d\xd7\x6d\x85\x0c\xa7\xc3\x20\x04\xcd\x33\x37\x92\ -\xe2\x08\x94\x54\xb2\x79\xe3\x06\xbd\xcc\x22\x02\xc0\xed\xa9\x28\ -\x01\x6e\xd6\xeb\xfd\xf7\x7c\xfa\x11\x28\x29\x2b\x67\x86\x1f\x85\ -\x79\x29\xd8\xa3\xd7\xf9\x29\x82\x47\xa2\x9f\xac\xfd\x63\xa7\x9a\ -\xd0\xe7\x6f\x06\x0f\xe7\x84\xc3\x96\xcd\x10\x46\x97\x91\x92\xfe\ -\x6e\x5f\x57\x02\xd7\xae\xc8\x8f\xf5\xc4\x68\xcf\x8c\xc4\xf7\xd2\ -\xb0\x9a\x56\x97\x66\x80\xcd\xcc\xcf\xaa\x42\x8d\xa8\xe7\x7b\xc6\ -\xfd\xfa\xcf\x0c\x45\x54\xbf\x47\xf5\x5b\x53\xe1\x82\xe6\x41\x2f\ -\x8c\x79\x83\x0c\xb0\xc3\x7c\x3e\x14\x84\x7b\x21\xe0\xf3\xa0\xdf\ -\x6f\x65\x3d\xbc\x1f\xed\x9a\x9a\xaa\x32\x86\x52\x6d\x1b\x10\xf0\ -\x81\xd9\x48\x66\xb0\xe2\xf7\x69\x34\x74\xd7\xae\xb7\xb4\xaf\xb5\ -\x54\x52\x05\xc3\xaa\xb0\x7a\x0a\x00\xe0\xf3\xda\x1b\xd4\xfb\xeb\ -\xd7\x6d\x64\x56\x31\x55\x8a\x42\xa5\xea\xe1\xd7\x18\x8d\x8e\x4f\ -\x32\x10\x90\xc8\x27\x8b\x9f\x7c\xfc\x63\xd6\x75\x12\xf3\x79\xf8\ -\x68\x7d\x21\x6c\x5c\x94\x0d\xee\x40\x58\xa4\x20\x1d\x23\x0a\x52\ -\xdc\x0f\x4a\xe7\x74\x3f\x28\x92\x20\x08\xb3\xae\x90\x3f\xac\x78\ -\xb6\xea\xb9\x61\xf1\xb9\xf2\x6f\x4b\xf7\x09\x07\x0f\x5c\x59\x0e\ -\x15\xf9\x0e\x06\x58\x9f\xc9\x01\xc7\xb1\x0e\x11\x64\x76\x4f\x7f\ -\x3f\x53\x07\xc3\xa3\x13\x70\xf4\x44\xb3\x61\x3b\xb8\xdd\x53\x10\ -\x09\x8b\xef\x7b\xff\x03\x0f\x42\x7e\xbe\xee\x80\xd3\xa3\xa9\x26\ -\x01\x96\x48\x11\xab\x38\xdd\x5f\x54\x22\x46\x81\x69\xc0\xc4\x61\ -\x30\x8c\x4a\x09\x1a\x34\x62\x17\x0c\x85\xe0\xc5\x37\x76\xb3\xeb\ -\x0f\xad\x6b\x60\xc2\x9c\xc3\x4c\x7d\x62\xfc\x95\xb5\x39\x62\x6f\ -\x8b\x08\xf1\x47\xd5\x3d\x88\xbf\x8f\x74\x79\x55\x26\xa4\x59\x66\ -\xd7\x4c\xc7\x7b\x3d\xd0\x31\xe6\xd3\xfc\x46\x24\xfe\x1d\x14\x12\ -\x88\x3a\xf1\xb2\xe2\x0c\x38\x35\xe0\x01\x2f\xea\x75\x3f\x9f\x06\ -\x61\x64\x4f\x4e\x78\x08\xbc\x68\xd4\x65\xbb\x5c\x08\xf2\x51\xa8\ -\x2c\x2d\x64\x52\x21\xce\xfc\x94\xd2\x8e\x6d\x4c\x02\x98\x98\xd4\ -\x30\x90\x02\x3f\x22\x2f\x32\x55\x24\xc0\x83\xda\x1b\x39\xb9\xf9\ -\xb0\xb2\x7e\x9d\xd4\xfb\x2d\x90\x95\x99\xc1\xc4\x7b\x1c\x61\x83\ -\x4e\xba\x3d\xcc\xfa\x3d\x70\xfc\x04\x4c\x7a\x50\xec\x9a\x4b\x61\ -\xc8\x5a\xc4\x98\x5f\x96\xeb\x80\x4d\x35\xd9\x52\x4f\x96\x7b\x62\ -\x44\x73\x8d\x14\x92\xee\x85\xc2\x22\xb1\xf3\x18\xcd\x41\x00\xa0\ -\x04\x10\x62\xcf\x0d\x2a\x9e\xab\xfd\x6d\xcd\xbd\x00\xfe\xd8\x2d\ -\x28\xb1\xac\x56\x51\x75\x75\xda\x16\xc1\xa8\x29\x87\x8d\x5d\x8c\ -\x8c\x8f\x8b\x71\x8d\x23\x27\xf4\xdb\x03\x69\x92\x49\x81\x30\x7b\ -\xe7\x4f\xfe\xd9\x5d\xe0\x70\xc4\xd9\x0c\xe4\x07\xdf\x95\x4a\x2a\ -\xe0\x53\x71\x7e\xff\xf6\xeb\x58\x9e\x3e\x55\x96\xac\x5f\x60\x13\ -\x2d\x22\x71\x44\x89\x19\x54\x69\xb2\xfe\x0f\x7d\x78\x1a\x02\x68\ -\x45\x37\xdb\x57\xb0\x86\xb3\xd9\x4c\xb0\x6d\x49\x2e\xf8\x90\x09\ -\x53\xd8\xc0\x53\x7a\xc7\x90\xce\x7d\x9d\xef\x44\xe6\x02\x80\x88\ -\xe6\x77\x66\xf2\xdb\xd2\xd1\x6a\xe1\x61\x6b\x9d\x28\xc1\x48\x85\ -\x9d\xb2\xaf\x46\x49\xc0\x43\xff\xf0\x30\xcb\x4b\xe8\x1f\x1c\x41\ -\x9b\x67\x48\xb7\x4d\xe8\x73\xf7\x94\x8f\xb5\x1d\xb9\xce\x77\xdc\ -\xf9\x89\x69\x3b\x5d\x32\x01\x70\xa5\x76\xb4\x8f\x06\x48\x36\x5e\ -\xb1\x4d\x4a\xa0\x00\xec\xfd\x2e\x08\xe3\xb9\x1e\xf9\xfc\x41\x96\ -\xdb\xff\xee\xc1\xa3\xec\xfb\x2d\xb6\x65\x10\x32\x59\x29\x3a\x02\ -\x1b\xaa\xb2\x41\xc0\x07\x78\xb0\x51\x3d\xd8\xfb\x3c\xc1\x88\x74\ -\x3e\x0d\x85\x35\x47\x92\x00\x30\x7b\x04\x90\x48\x57\x3e\x43\x4d\ -\x82\xfe\xfd\xa0\xf4\xae\x78\x5e\x98\x69\x67\x12\x8c\x40\xe0\x35\ -\xa7\x43\x07\x4a\x02\x92\x78\x83\x23\x23\xe2\x50\xdf\x87\x4d\x86\ -\xed\x32\x81\x92\x50\xb6\x0b\xee\xbe\xe7\x5e\xbd\xd7\xa3\x45\x30\ -\xa2\xeb\x13\x98\x93\x08\x80\xdb\xe2\x06\x7c\xd0\xe7\xcf\x70\x65\ -\xb1\x97\xcf\x74\x65\x30\x40\xe8\x89\x60\x42\x3a\x01\x64\x68\x64\ -\x94\xb9\x7c\x53\xbc\x03\xfa\xec\xe5\xac\xf7\x53\x2c\x3f\xcf\x65\ -\x65\x3d\x4a\xca\x0e\x15\x6d\xe5\xe8\xb9\x74\x94\x5d\x3e\x4e\x50\ -\xbb\x83\x9c\xa0\x72\x11\xe7\x20\x00\x98\x28\x9f\x92\xe3\xfe\x82\ -\xc6\xfd\x13\x94\xae\xa1\x74\xad\xba\x2f\x9e\xaf\x44\xef\xa3\x6f\ -\xd2\x0f\x21\x7c\x4e\xa7\x7d\x31\x94\x05\xda\x60\x64\x62\x02\xa5\ -\x62\x0e\x0c\x8f\x4d\x30\x49\x50\x90\x97\x13\xff\xdb\xc1\x10\x93\ -\x8e\x34\x4e\x40\x93\x5c\x2b\xab\xaa\xf4\xe6\x22\xd2\x48\xeb\x4f\ -\x92\x2d\x01\xe2\x86\x7b\x2f\xdb\x70\x79\x34\xa7\x2e\xdb\x95\x8e\ -\xc7\x88\x2e\x51\x56\x2e\xe9\xfe\x7d\x68\xf5\xb3\x11\x8f\xb4\x3a\ -\x10\x4c\x26\xa6\x3a\x6a\x8b\xd2\xd1\x88\x12\x90\x22\xb1\x63\x98\ -\x48\xd0\x1c\xe5\x73\xe5\xb5\xe2\x5e\x44\xbc\x9e\x9b\x0a\x10\x14\ -\xcf\x96\x9e\x1f\xd2\xf9\xbd\x90\xe6\x9d\x14\xef\x4c\x12\xac\x3a\ -\xcf\xc9\x40\x1d\x32\x5b\x11\x04\x8b\x58\xc7\x18\x1e\x1b\x63\x58\ -\x6d\x6e\xed\x34\x6c\x9f\x49\x85\x14\xb8\xf5\xd6\xdb\x12\x76\xbe\ -\x64\x01\xa0\x12\x74\xd6\xe0\x59\xbe\x6a\x2d\x7b\x69\x8a\x6d\x3b\ -\x9d\x69\xba\xee\x4e\x44\xe2\x08\x8d\xef\x9f\x3a\xd3\x0e\x3e\xde\ -\x0e\xfd\x52\xef\xcf\xcf\xb4\x31\xa9\x11\xcf\x70\x05\x29\x99\x13\ -\x89\xa8\xef\x61\xa7\xd5\x7e\x67\x2e\x12\x80\xa2\xbb\xb1\x67\x6a\ -\x8f\x11\xfd\x77\x51\xbe\x13\xdd\x47\x20\x14\x62\x7d\x2c\x34\x56\ -\x81\x75\xeb\x4a\xab\x61\xb6\xc0\x28\x1a\x83\x24\x5b\x7a\x06\x86\ -\xc1\xeb\xf5\xeb\xb6\x11\xe5\x31\xca\x99\xca\xd7\x5c\x7b\x9d\x91\ -\x1a\x30\x25\x53\x05\x6c\xd1\xde\x28\x2e\xab\x80\x74\x34\x5c\x98\ -\x01\xc3\x92\x3c\x38\x5d\xf1\xcf\x66\xdd\x62\x83\x7c\xd8\xd4\xc2\ -\xbe\xdb\x93\x56\x89\xbd\x9f\x67\x62\x7d\xd8\x17\x82\x63\xfd\x6e\ -\x96\xb4\x91\x6e\x37\x81\xd3\x66\x21\x93\x40\x12\xff\x32\x29\x44\ -\x3e\xa7\x89\x00\xca\xf7\x84\xb3\x53\x01\x41\xb2\x51\x64\xd1\xa1\ -\x14\xf5\x4a\x35\xa0\x52\x01\xca\xfb\xca\x23\x82\xc0\x65\x87\xae\ -\x51\x2f\x1b\xcb\x18\xb0\x95\x42\xb1\xbf\x13\xdc\x1e\x0f\x0b\x13\ -\xd3\x90\x77\x6d\x75\xb9\x8e\x8a\x8c\xb0\x54\x76\xca\x23\xbc\x6c\ -\xed\x3a\x54\xab\x2e\xed\xfa\x04\xe9\xd2\xb8\xcb\xfb\xc9\x02\xc0\ -\xe6\x38\xfd\x5f\xb7\x4c\x0a\xba\x88\x89\x94\x91\x48\xc4\x30\xec\ -\x29\x20\x00\x3e\x68\x14\x07\xb7\xfa\x1c\x95\xac\x87\x10\x51\x1e\ -\xce\x98\x3f\x04\x63\xe8\x52\x81\x9b\xee\x79\x21\xcd\x4a\x40\x30\ -\xb3\x51\x3f\x3a\x8f\x46\xf5\x64\x9b\x80\x93\x1a\x9c\xce\x05\x41\ -\x6d\x37\x08\x73\x05\x00\x80\x4f\x4f\xb7\x83\x86\xd9\x33\x00\x80\ -\xcb\x61\x01\x6e\x02\x7b\x34\x36\x47\x2f\xd6\x95\x00\x30\x36\x39\ -\x01\x99\x19\x19\xd0\xd3\x37\x08\x35\x95\xfa\xeb\x4d\x91\x14\xb0\ -\x62\x07\x40\x5d\x02\x97\x5f\x7e\x05\xbc\xfe\xda\x4e\xbd\x4e\x98\ -\x3a\x00\xa8\xac\xa9\x8b\x46\xdd\x28\xef\x4d\xd0\x51\xbe\xd4\xf3\ -\x49\xc4\x8f\x90\x11\x34\x34\x02\xe3\x96\x6c\xf0\x59\x9c\x22\xd3\ -\xd8\x3c\x6f\x4e\x54\x6a\x1c\x27\x5d\x4b\x22\xdd\x1b\x42\xc5\x1c\ -\x62\xf7\x4d\x68\x59\xa7\x51\x82\x25\xba\x5b\x76\x8b\x09\x89\x97\ -\xa6\x64\x29\xa7\x6c\x0a\x33\x19\xd0\x4b\x2c\x01\x8c\x98\x0c\x89\ -\x18\xae\x73\x64\xed\x61\x06\x37\x4a\xb7\x31\x7b\x3e\xf8\x79\x1b\ -\xcb\x6a\x62\x51\x50\x74\x81\x03\x81\x20\x0b\xfa\x68\x0b\x4d\x70\ -\xc9\x12\xc4\x11\xcf\x0d\x1b\x36\xea\x01\x60\x73\x32\x55\xc0\xca\ -\xb8\xf0\x6f\x79\x35\xab\x14\x8b\x62\x59\x2c\xaa\xd4\x6c\xb9\x58\ -\x78\x13\xcb\x9e\x69\xe9\xe8\x62\xd7\xc3\xb6\x42\xa9\xf7\x2b\x99\ -\xae\xb8\x56\x9d\x8b\x47\x34\x1f\xc5\xc0\x0c\x8a\x49\xa0\xdc\x3d\ -\x8a\x1b\xa0\x54\xb1\x21\x10\x48\x3a\x58\x11\x20\x94\x18\x12\xd5\ -\x0b\x73\x40\x00\xe5\x66\xfb\xf5\x18\x3e\x53\xe6\x47\x04\xd5\x3d\ -\xbb\xd5\xcc\x42\xc6\x54\x46\xb0\xce\xc5\xde\x0e\xb4\x81\xbc\x90\ -\xee\x70\xa0\x6b\x38\xa6\x9b\x1d\x45\xd1\x43\xb9\x43\x2d\x5b\xbe\ -\x42\xef\x35\x97\x26\x0b\x00\x94\xe1\xa0\x8a\xed\xda\xd3\xd2\x20\ -\x2b\x37\x8f\xd5\x97\x16\x69\x30\x8a\xbf\x9b\xb1\xf7\x13\x00\xda\ -\xbb\x7a\x44\x00\x38\x8a\x12\x03\x80\x8f\x31\x5e\x75\x1e\x25\xf1\ -\x1a\x9b\x8a\x65\xef\x80\xe4\x3a\x92\x11\x6a\x25\x50\x98\x09\x30\ -\xc2\x9c\x00\x10\x00\x25\xc3\x61\xf6\x3d\x5f\x71\x6e\x46\x70\x52\ -\x50\x88\x2e\x46\x51\x0a\x10\x00\x68\x36\x13\xcd\x35\xa0\x99\x4c\ -\x85\x3a\xee\x60\x98\x42\xcc\x28\x1d\x68\x62\xc9\xaa\xd5\xab\x8d\ -\x00\x60\x4a\x06\x00\x16\x6b\x6f\xe4\x15\x14\x47\x99\x4e\xb1\x6c\ -\x43\x00\xa0\x74\x20\xbe\x75\xf7\x0f\xb2\x81\x12\x8f\x2d\x2b\x06\ -\x80\x28\xf3\xd5\x20\xa8\xc9\x49\x83\x2d\xe5\x2e\x35\xf3\x95\x36\ -\x40\xd4\x08\xe4\xe2\x8d\x42\x2c\x0e\xf3\xec\x1d\xa5\x75\x85\x4e\ -\x71\x49\x50\x3d\xfd\x0f\x9a\x58\x80\x4e\x3c\xe0\xd9\x0f\x07\xe3\ -\x00\x43\x93\x46\x43\x28\xb5\xc6\xd3\xf2\x00\x46\xc5\xe9\x6c\xf4\ -\xfa\x13\x6e\x8f\x61\x7b\xf9\x83\x21\x26\x4d\xc9\x08\xcc\xce\xce\ -\xd6\xae\x5e\x46\xbc\xaf\x4a\x06\x00\xe2\x72\xfd\x73\xf3\x0b\xa3\ -\x95\xa0\xb1\xff\x88\x9e\xfe\xa7\x49\x9f\xe8\xeb\x93\x68\x23\x1b\ -\xc0\x63\xc9\x84\x88\x34\xdc\x1b\xd7\xeb\x15\xbd\x7d\x4b\x85\x0b\ -\x9e\xba\xb9\xf6\x82\x56\xf0\xbe\x25\xb9\x8c\xe6\x5a\x9e\x21\x00\ -\x68\x02\x46\xbc\x99\x63\x06\x9d\xd7\x9a\x01\x41\xde\xc2\xda\x81\ -\xd2\xc0\x3c\x1e\x9f\x6e\x7b\xb1\xa0\x10\x4a\x00\x81\x0d\xa4\x71\ -\x50\x59\x59\xa5\xb7\x7c\x5d\x19\x9f\x0a\x00\x70\x65\x65\x47\x7d\ -\x58\x32\x68\xf4\x7c\x5b\x96\xf7\x86\x44\xf3\xf6\x58\x1c\xc0\xea\ -\x8a\x31\x5b\x26\x93\xf6\x5a\x16\x9d\xf3\xab\x04\xb5\x24\x80\xaa\ -\x5e\x53\x96\x0c\x16\x0d\x8d\xa0\x6b\x40\x23\xa1\x41\xec\xe9\x7a\ -\x6d\xa6\xbc\x5f\x5a\x56\xae\xf7\x53\x55\xc9\x68\x9d\xb8\x55\xbc\ -\x68\x31\x07\x39\x70\x61\x36\xf1\xba\x95\x21\xf7\x8f\xf4\x3f\x0d\ -\xfe\x30\x23\xc7\x92\x1e\x0f\x00\x15\xf3\x4d\x31\x49\x30\xcf\x4a\ -\x08\x5f\x3a\xc4\x89\xb6\x04\x23\x9a\x60\xaa\x90\x6e\xcc\xf3\x01\ -\x71\xd6\x32\x49\x46\xd9\xe0\x8b\x03\x40\x28\x06\x80\xec\x1c\xdd\ -\x0c\xe3\xac\x64\xa8\x80\x74\xed\x8d\x34\x47\x7a\x34\x06\x40\x15\ -\x22\x64\x6b\x0b\x2f\x4d\xff\xa6\x00\x07\xd3\x6f\x16\xbb\x9a\xe1\ -\xb2\x2b\xc8\xf3\xf1\x46\xdf\x3c\x2b\x61\x6d\x60\x0a\x14\x12\x80\ -\x18\x6f\x16\xa7\xc2\x51\xac\x84\x2d\x32\x15\xa4\x91\xd1\xf8\xf9\ -\x0c\x22\x00\x44\x15\x92\x9d\x9d\x93\x32\x00\xd0\x8d\xee\x29\x0d\ -\x19\x3d\xa3\x86\x52\xa0\x29\x06\x30\x2a\x49\x80\x30\xea\xc1\x78\ -\x00\xf0\x8a\x6b\x85\x71\x38\x2f\x01\xa0\x8d\x56\x0a\xd1\xba\xb0\ -\x51\x4f\x89\xc1\xd4\x29\x82\xc1\xb0\x6e\x9b\x89\xf6\xa3\xc0\x6c\ -\x07\xa3\x92\x0c\x00\x54\xc5\xa9\x00\x92\x00\x20\x5b\xbb\x26\xdd\ -\xca\xb0\xf9\x80\xd2\xb2\x29\xaa\x1e\xa1\x02\x81\xce\xf9\x3c\x54\ -\x01\x14\xe9\x64\xb1\x00\x4e\x1a\xad\x89\x28\x00\xad\xf1\x52\xa8\ -\x5d\x42\x61\x7d\x00\x90\x8a\x10\xa4\xe8\xa6\xc9\x20\xa1\x36\x25\ -\x24\x00\x27\x0f\xfb\x72\x82\xa1\x45\x2b\x57\x96\x53\x8a\xc7\x28\ -\xf3\xf9\x78\x2f\x40\x09\x82\xf9\x56\x94\xef\x1c\x6d\x0e\x86\x04\ -\x5d\x00\x80\xa0\xdf\x6e\x42\x24\x26\x59\x0d\x3d\xeb\x24\x54\xaf\ -\x4b\x7b\x83\x56\xcc\x94\x6d\x00\xb2\x5c\xf5\x66\xfe\x30\x43\x98\ -\xe7\xd4\x63\xfa\x51\xe6\xeb\xc4\x02\x78\x4e\x3d\xee\x3f\x1f\x01\ -\xc0\xc5\x78\xae\x02\x81\xd4\x06\xb2\x3c\x94\x57\x21\xd1\x1d\x37\ -\x91\x6c\x80\x50\x38\xa4\x6b\x6f\x26\x03\x00\x21\x3d\x65\x25\x57\ -\x20\x1c\x09\x83\x49\xe0\x75\x0d\x1a\xca\x00\xca\x76\x65\x48\x4d\ -\x11\x51\xeb\x7c\x3d\x00\xc8\x00\x99\xaf\x00\xd0\xed\xb5\x3c\xb6\ -\x8f\xd8\x84\x6c\x72\xa8\xb4\xae\xb1\xae\x0d\x10\xb5\xad\x38\x63\ -\x11\x90\x84\xea\xf9\xe2\x6e\xf8\xa6\xa2\x15\x20\x7d\x66\xd6\x11\ -\x4c\x64\xf1\x92\x04\x90\x33\x84\x6d\x61\x9f\x82\xf1\xa0\x6f\x07\ -\xf0\xf3\x58\x02\xa8\x7a\xbf\xa0\x92\xfb\x96\x90\x4f\xea\xe1\xa6\ -\xe8\x5a\x09\x11\x03\xbb\x49\x6e\xd7\x09\xfd\xe5\xea\xdd\xc9\x00\ -\x40\x9f\xf6\xc6\x14\x9b\x19\x2b\x56\x94\x2c\x5a\x9b\x35\xbe\x32\ -\x7e\xbf\xe8\xf3\xd2\x0c\x18\x86\xfe\xc0\xa4\x9a\xf1\x89\x8c\xc1\ -\xf9\x08\x00\x41\x4f\x09\x8a\x82\x3f\x2d\xe0\x96\x24\x40\x6c\x59\ -\x3c\x7d\xcf\x29\x66\x50\x8f\x48\xf9\x84\x9a\x32\x94\x12\x00\x98\ -\x18\x1f\x8d\x8a\x2a\x7f\x20\xa0\x3b\x0f\x80\xa6\x7f\x11\xd2\xe5\ -\x81\x0f\xa7\x6f\x42\x31\xe2\xc7\x19\x4b\x00\x1e\x2e\x12\x00\xc4\ -\x80\xe0\xf0\x4f\xb0\xde\xcf\x96\xa6\x93\x86\xc8\xf5\x8c\x40\x5a\ -\xf0\x42\x06\x40\x4f\x77\x97\xae\x3d\x96\x12\x46\xe0\xe8\xd0\x60\ -\xf4\x45\x7d\xd2\xa2\x8c\x71\x36\x00\x1a\x87\x94\xe9\x42\x53\xc4\ -\xb2\xd0\x0e\x08\xb9\xc7\xc5\x1c\x0e\x9e\x53\x8f\xf0\x69\xa4\x41\ -\x9f\x3f\x0c\xbb\xfa\x3d\x0a\x7f\x5a\x69\x42\x2b\x8f\x3a\xf7\xb1\ -\x5c\x9e\x69\x03\xbb\x69\x76\x28\x3a\xe9\x0e\x40\x1f\x0d\xdf\x0a\ -\x9a\x1e\x2c\xe8\x74\x68\xd5\x40\x91\xcc\x39\x4e\x63\xfc\xc5\x8a\ -\xd5\xef\x01\x6b\xc8\x0f\xce\x74\x27\xab\x4a\xa2\xc1\x33\x1a\x08\ -\x92\x3f\xeb\x68\x6f\x4f\x19\x00\x34\x6b\x6f\x0c\x0f\xf6\x45\xe3\ -\x00\x46\x00\x60\x0a\x6b\xca\x8b\xcc\x4f\x87\xaa\xb2\x62\x18\x3b\ -\xd1\x88\x52\x60\x14\xdc\x19\x79\x09\x43\xc2\xaf\xf5\x79\xe0\xb5\ -\x81\xa9\x69\x86\x8c\x95\x43\xc5\xca\x23\xc0\x99\xad\xe5\x50\x9d\ -\x36\x3b\x00\x7c\xa7\x75\x0c\x9e\xee\x76\x1b\x66\xf9\x30\xe6\x8a\ -\xbb\x4b\xc4\xc6\xfe\xe9\x9e\x7c\xad\x75\x5d\x85\x58\x54\x30\xd3\ -\x33\xc4\x6e\xb9\xa4\xd5\x44\xd2\xec\x09\x00\xc0\x54\x03\xaa\xd8\ -\x29\x0f\x0c\x0f\x0f\xe9\x7d\xa5\x8d\x4f\x12\x00\x54\x9e\x80\x17\ -\x5f\xd0\x43\x76\x00\xfe\x9b\xf2\xfa\x0d\x67\xbe\x4c\xb8\xa7\xd8\ -\x6a\x9c\x4b\x17\x55\xb2\xbf\xcb\x19\xef\x4e\x3c\x1e\xa0\xf5\x10\ -\x54\x83\x46\xbc\x7a\xf0\xc8\xa4\x47\x3c\xcc\xc9\x8a\x34\x7a\x9e\ -\xee\x98\x85\x81\x0d\x63\x20\xd5\xb2\x27\xc4\x5c\x08\x92\x82\x22\ -\x00\x6c\xba\x6d\x45\xff\x68\x64\x95\xc0\xd1\xd4\x78\x5a\xef\x2d\ -\x69\x29\x1e\x7f\x32\x00\x40\x43\xe5\x1f\x68\x6f\x76\xb6\x36\x4b\ -\x03\x18\x41\xb6\xfc\x89\xde\xe0\xc6\xf8\x84\x9b\x55\x7a\xd5\x12\ -\x31\xa5\x20\x77\xac\x5b\x57\xec\x1b\x0f\x10\xcd\xe4\x3e\xaf\x3e\ -\x72\x70\x16\x00\xd0\x3c\x4b\x0f\x78\xb3\xa4\xdc\xd1\x6e\x16\x11\ -\xcd\xc9\x74\xb1\x23\xb9\x82\x7a\x6d\x25\xce\x1f\x14\x81\x40\x5b\ -\xd4\x18\x00\x20\x69\x26\xd2\x01\xed\x8d\x9e\xce\xd6\xe8\xf6\x2a\ -\x24\xea\x75\x01\x30\xe9\x66\xc3\xa0\x25\x85\xf9\x50\x90\x9b\x0d\ -\x99\xe3\xfd\x60\x26\x77\x90\xd3\x46\x06\x13\xf4\x7e\x23\x29\x60\ -\xe2\xf5\x7b\xed\x9c\x42\x9b\x3a\x92\x65\x36\x80\x34\xf0\x6c\x32\ -\xdc\x43\x90\xe6\x77\xb3\x49\x33\x94\x1b\x61\xb3\x59\xa4\xc9\x33\ -\xf1\x6d\x25\x02\x43\x1c\x57\x39\xae\x0f\x80\x03\xc9\x04\x40\x43\ -\x9c\x04\x38\xd3\x18\x9d\xeb\xee\xf6\x78\xd9\x51\x8f\x06\x47\xc7\ -\x98\xe5\x7b\xf9\xda\x55\x40\x4b\x33\x17\xf7\x37\x69\x92\x40\x40\ -\x11\x1b\x80\x99\x49\x04\xbd\x3c\x02\xd3\x59\x04\x91\x54\xcf\x98\ -\xe6\xb7\xa6\x03\xaa\xa2\x4e\x45\xfd\x8d\xec\xf1\xc5\xf9\x79\x4c\ -\x12\xd2\x9a\xc4\x46\xed\xc4\x12\x6b\xa5\xc5\xae\x0f\x1c\xd8\xa7\ -\xf7\x96\xef\x26\x13\x00\x71\x8b\x41\xf5\xf5\x74\x82\x6f\x6a\x8a\ -\x81\x40\x4c\x73\xd2\x9f\xf5\xd2\xd7\x3f\xcc\x00\xf0\x91\x0d\x97\ -\xb1\xbf\x2b\xe9\x39\xa5\xef\x0a\x72\x73\xe8\x75\x4a\xa6\xd1\xd1\ -\x3c\x57\x15\x00\x06\xcf\xe4\xa7\x79\x0f\x0d\x78\x15\x52\x8d\xc7\ -\xba\x17\xf5\x35\xb3\x51\xd1\xa2\xbc\xbc\xa8\xfe\xd7\x6b\x23\xaa\ -\xba\x5d\xca\xad\x6c\x46\xfd\x3f\x32\x3c\xac\x17\x8c\x6b\x48\x26\ -\x00\xc8\x2a\x69\x53\x0f\x5c\x44\xa0\xe5\xf4\xf1\xe8\xe2\xcd\xb1\ -\xd9\x2d\x6a\xa2\x79\x71\x94\xf2\x4c\x4b\xa8\xd5\x2f\xab\x05\xe7\ -\xd4\x38\xe4\x0d\xb6\x19\xc7\x04\x38\x6e\x76\x52\x40\x66\xbc\xcc\ -\xb8\xb9\x4a\x00\x33\x37\x77\x5d\xcf\xc5\x07\xb3\x4a\xba\x4f\x80\ -\x25\x14\x80\xd2\xc2\x02\xb6\xfd\x0d\x89\x78\x79\xee\xa4\x96\xd8\ -\xd2\xb9\x92\x2a\xd8\xb5\xeb\x8f\x46\x12\xd8\x9f\x4c\x00\x50\x89\ -\x4b\x54\x6f\xfc\xe0\x88\xc2\xe0\xf3\x18\x7a\x03\xed\xdd\xfd\xac\ -\x07\xdc\xbc\xfd\x4a\xf6\x77\xd5\x2d\x07\xd4\x63\x01\x3a\x40\x90\ -\x43\xa6\x8c\x4c\x8a\x73\xca\x33\xa0\x6c\x23\xba\x67\xe6\xc4\x73\ -\xf9\x3b\xca\xf4\xf0\xd9\x98\x00\xd1\xbf\xe7\x63\xcf\x94\x9f\xab\ -\xf3\xfb\x5c\xd4\xe0\xd4\x1b\xcc\x12\x7b\x7f\xe5\x99\xc3\xec\xb2\ -\xba\xbc\x94\xd5\x85\xa2\x80\x46\xed\x43\x6b\x09\x45\x24\xfd\xff\ -\xd6\x9b\xaf\x27\x6c\xfb\x64\x02\xe0\xf9\x38\xa7\xb4\xf9\x24\xf8\ -\xbc\x53\x51\x83\x8f\x2d\x76\xa0\x33\x0f\xbe\xa3\xab\x8f\x05\x85\ -\x68\xe1\xa8\xa5\x35\x55\x90\x31\x39\x0c\xf9\x7d\x67\x14\xfa\x3f\ -\x1e\x04\x56\x33\x0f\x0e\xec\x39\x51\xb2\xe0\xb5\x55\x22\x3a\xb7\ -\x98\x58\x06\xb0\x78\xce\x8b\xe7\xb4\x7d\xcb\x1c\x84\x80\x95\xc6\ -\x2c\xe4\xdf\x50\x3e\x53\xfe\x3d\xf9\x5d\xa4\xdf\xa4\xb9\x08\xc6\ -\x11\x4d\x80\xd2\x8e\xe3\x60\x0b\x78\x59\xef\x4f\xc7\xde\x2d\xae\ -\x00\x62\xd2\x6d\x1b\x52\x11\x69\xa4\xff\xf1\x5f\x6b\xeb\x19\xa6\ -\x02\x12\xb5\x7d\x32\x01\xf0\x36\xc5\xa2\x55\xfe\x61\x28\x04\xa7\ -\x8e\x1d\x8c\x6e\xdc\x30\x4e\xb6\x00\xc4\x2f\x0c\x15\xc4\xcf\x5a\ -\xda\xbb\x59\x4c\xe0\xae\x5b\xc4\xc9\x8f\x8b\x4f\xfc\x89\xf5\x94\ -\x68\x10\x27\x3a\x27\x50\x6c\x48\x15\x23\x34\x4c\x56\x9d\x2b\xef\ -\x21\x83\xe6\xa2\x04\x68\xa2\x49\xdc\xb3\xb5\xbf\x67\x55\xdf\x8f\ -\x1b\xc2\x96\xde\xdf\xea\xf7\x42\x55\xe3\x01\x26\x29\x96\xd5\x54\ -\x4b\x3b\x89\x58\x0d\xb7\x22\xcf\xcc\x48\x17\xdd\x3f\x6c\xc3\x97\ -\xfe\xeb\xb7\x7a\xaf\x47\x2e\x41\x4b\x2a\x00\x80\xe2\x01\xcf\x6a\ -\x6f\x1e\xdd\xb7\x27\xea\xbe\x8c\x8c\x4d\x4a\xbb\x6f\xc6\x13\x2d\ -\x02\x4d\xe3\x06\x75\x55\x15\xb0\x75\xc3\x1a\x48\xf3\x4e\x42\xf5\ -\xc9\x06\x4d\x74\x8f\x8b\x36\x24\x4d\x09\x8b\x63\xbc\x4c\x8c\x61\ -\x9c\xe2\x33\x93\x78\xcf\x34\x37\x09\x60\x33\x71\x06\xbf\xa1\x03\ -\x0a\x24\x93\x49\xcb\xf8\x98\x04\xa8\x3b\xb6\x9b\xe9\xfe\x25\xd5\ -\x95\x6c\x61\x69\xb6\xc4\xbc\x89\xd7\x6d\x13\x71\x5d\x05\x27\x6b\ -\x3f\x5a\x2f\xf0\xd5\x97\x5f\xd2\x7b\xbd\xa7\xb4\xf6\x6a\x32\xcb\ -\x53\x71\x61\xe1\x81\x3e\x68\x6f\x39\xc5\x2a\x41\xfb\xf4\xb8\x15\ -\x73\xdd\x95\x44\x12\xe2\xd8\xa9\x16\xa6\x47\x3f\x75\xdb\x8d\x6c\ -\x42\x69\x79\xcb\x11\xc8\x1c\xe9\x51\xeb\x52\xe9\x18\xc1\xa3\x13\ -\x1b\xdd\x89\x8c\x76\x5a\xe4\x73\x0d\x99\xf8\xd8\x77\xa4\x23\x37\ -\x07\x19\x40\x2a\x20\xf6\x0c\x5e\x73\x1e\x4f\x02\xa7\x3f\xb9\xa5\ -\xa0\xab\x11\x0a\x7a\x5a\x58\xdd\x6a\x11\xe8\xe2\xc8\x9f\xc9\x70\ -\xa5\x30\xea\xfd\x72\x5c\xe0\xb5\x3f\xbc\x02\xe3\xe3\x63\x7a\xd6\ -\xff\x33\xa9\x04\x80\x83\x7a\x31\x81\x7d\xbb\x5f\x8f\xfa\xb0\x43\ -\xa3\xe3\x86\x15\x96\x17\x85\xa6\x8a\x3f\x72\xef\xc7\x51\x05\x08\ -\xb0\xa2\x61\x27\x1b\x30\xd1\xc6\xfa\xdd\x68\x15\x51\x2f\x67\x4c\ -\x36\x29\x99\x2e\x31\xcb\xa4\xb8\x56\x7c\x3e\x97\xd1\x64\x1b\xcf\ -\xa9\x9f\x65\x92\x40\x60\xe2\x62\x40\x93\x7e\x97\x24\xc1\x64\x44\ -\x88\x9b\xb2\xe6\x70\x8f\xc2\xd2\x03\x7f\x14\xd7\x0c\xae\x5f\xc9\ -\x18\x6f\x92\x36\xad\xd6\x6b\x0b\x16\x1a\xcf\xcc\x10\x3b\x07\xaa\ -\xd2\x5f\xfe\xec\x3f\xf4\x5e\x8d\x16\x8b\x4c\xb9\x75\x02\xe3\x96\ -\x89\xeb\x6e\x6f\x81\xae\xd6\x26\x56\x19\x5a\x0b\x88\x56\xbf\x32\ -\x02\xc1\xc1\x63\xa7\xd8\xb2\x28\xeb\x57\x2e\x85\x1b\xb7\x5d\x0e\ -\x76\xaf\x1b\x56\xbe\xfb\x0a\x70\xd1\xa9\xde\x22\x51\x32\xf9\x44\ -\x58\x50\x88\x64\x4e\x24\xa5\x0a\x50\x8a\x6e\xe9\xf3\xb9\x34\x10\ -\x01\x20\x2a\xf2\x55\xbf\xc1\x6b\x7e\x83\xc7\x77\x8a\xb0\x77\x8b\ -\x65\x36\xa3\x07\x19\xf0\xc1\xaa\x3d\x2f\x81\x39\x14\x84\x35\xcb\ -\xea\x20\x3b\xd3\x15\x4d\xff\x32\x6a\x07\x1a\x24\xe3\x4d\x26\xd6\ -\x69\xde\x78\xf5\x65\xe8\xd6\x1f\xfe\xfd\xae\x5e\xc8\x22\xd9\xe5\ -\x79\xbd\x11\xc2\x86\xb7\x77\x46\x2b\x47\x52\x80\x16\x83\xd4\x73\ -\x79\x28\x5e\xd0\x70\xe8\x03\xd6\x53\xee\xbb\xed\x26\x58\x59\xb7\ -\x08\xb2\x86\x7a\x60\x05\x81\x00\x04\x55\xaf\x3a\xe3\x0f\xb3\x31\ -\x72\x75\x4f\xd4\xf4\x54\x13\xa7\xba\xe6\xe6\xe8\x05\xa8\x9f\xc3\ -\xa9\x25\x8b\x74\x4d\xef\x42\xef\x14\x03\x2a\xde\x43\xa6\xaf\x7e\ -\xfb\x25\x70\x4e\x8c\x42\x75\x59\x09\xd4\xa1\xee\x97\x33\x7b\x8c\ -\xdc\x3e\x12\xfb\x04\x12\xb1\xf7\x07\xe1\xe7\x4f\xfd\xd4\xc8\xe8\ -\x3e\x18\x97\x33\x90\x02\x00\x60\xc1\x3f\xd0\x2c\x1a\x35\x39\x3e\ -\x0a\x39\x05\xc5\x90\x93\x5f\x18\x4d\x76\xa0\x95\xb1\xf5\x4c\x5f\ -\x5a\x13\x47\xde\x48\x62\x63\xfd\x0a\xd8\x77\xf4\x43\x88\xf4\x74\ -\x81\x73\x6c\x08\x06\x17\xd5\x45\x67\x09\x45\x90\xc6\xb1\x91\x6a\ -\xd2\xcc\xcc\x50\xb3\xe0\xb5\x85\x1d\x79\xe9\x48\xd7\xbc\x78\xe4\ -\xc5\xfb\x2d\xd8\x43\xf7\x04\xc2\xb0\x1b\x19\xb5\x9b\x8e\x81\x88\ -\x74\x94\x29\x24\x1e\xe9\x73\x1f\x51\x08\xce\x84\x22\xcc\xc2\xb5\ -\x50\xbe\x1e\x07\x22\xf1\xd2\xb9\x74\x9f\xfe\xbd\xef\x0e\x8a\xd3\ -\xd4\xa5\xd1\x5c\x53\x30\x00\xf5\xaf\x3d\x0f\x59\x83\xdd\x50\x94\ -\x97\x0b\x5b\xd7\x5f\x26\xa6\x7d\xa3\x48\x67\x0b\x66\x18\x98\xfe\ -\x94\x24\x43\x71\x01\x2a\xbf\xfd\xf5\x2f\xe0\xed\xb7\xde\xd0\x6b\ -\xe7\x07\x91\xda\x53\x11\x00\x20\x8d\x0e\xde\x43\x6a\x4c\x79\xb3\ -\xbf\xbb\x1d\x56\xac\xdd\xcc\x2c\x5f\xb2\xf8\xd3\xd2\x6c\xcc\xcf\ -\xd5\x2b\xb4\x60\x04\x2d\x9b\x9e\x97\x93\x05\x9b\xd6\xac\x80\x43\ -\x1f\x9c\x96\x40\x30\x8c\x20\x58\x12\x9d\x27\xe8\x25\x25\x88\x80\ -\x5a\x64\x37\x43\x9a\x89\x8b\x31\x9e\x81\x80\x8f\x9d\x4b\xe0\x20\ -\x64\x92\x29\x35\x26\x28\x8e\x2a\x12\x60\x2c\xa2\x38\x17\x20\xc6\ -\xfc\xe8\x51\x06\x82\x78\x44\x4d\x04\xbb\x27\x03\x30\xa4\xd8\x41\ -\xc4\x84\xf5\xab\x7f\xf5\x39\xc8\x1a\xe8\x66\xfb\x1f\x5e\x7d\xf9\ -\x7a\x56\x6f\x52\x6f\x04\x00\xa3\x42\x51\xbf\x3c\x29\x4d\x6e\x68\ -\x70\x00\xbe\xf5\xf5\xaf\x41\x30\x18\xd0\xeb\xfd\x7f\xab\xf7\xf7\ -\xa9\x02\x00\xc2\xf2\x19\x09\x04\xd1\x12\xf0\xfb\x98\x48\xab\xa8\ -\x59\x22\x65\x0b\x05\x59\x20\x44\x5e\xbb\x47\x4b\x9d\x3d\x03\x6c\ -\x1f\x21\xea\x11\x51\x10\x74\x77\x42\x76\x4f\x07\x0c\x57\xd5\x40\ -\xd8\x6e\x13\x27\x57\xe2\x03\xda\xb1\xf1\x8b\xad\x66\xc8\x35\xf3\ -\x0a\x49\x00\x6a\xa9\x10\x95\x04\x12\x71\x12\x69\xef\xf1\x10\xfb\ -\x4c\xc1\x68\x8b\x56\x0a\xe0\xf5\x60\x08\x2d\x74\x64\xfe\x58\x48\ -\x88\x66\x09\xa5\x8d\x8d\xc2\x65\x2f\xfe\x02\x5c\xc3\x03\xac\xe7\ -\x5f\x77\xe5\x26\x96\xcc\x11\xc0\xfa\x52\x2a\x9c\x91\xcf\x4f\x00\ -\x29\x2d\x2a\x60\xc3\xc2\x54\xfe\xe1\x3b\xdf\x80\x96\xe6\x46\x6d\ -\xdb\x12\x7a\x3e\x0e\x3a\x4b\xc5\xa7\x0a\x00\x28\xbb\xe3\x2a\xa9\ -\xf7\xd3\xb2\x25\xe9\x6a\x29\xd0\x09\x65\xd5\x8b\x21\x23\x33\x9b\ -\x89\x41\xb2\x05\x68\x10\x44\x17\x45\xd8\x03\xbb\xfa\x06\x20\x2b\ -\x23\x83\x6d\xce\xb8\x6d\xd3\x5a\x68\x6e\xef\x84\x89\xf6\x76\x28\ -\x68\x3a\x09\x13\x45\xa5\xe0\xcf\x14\xd7\x14\xa0\x3e\x72\x3a\x18\ -\x06\x2f\x36\x5e\x05\xad\x23\xc4\x7a\xbf\x42\x15\xc8\x60\x50\x31\ -\x9b\x57\x03\x21\x8e\xe9\x1a\x00\x70\x31\x49\x40\x6b\x07\xee\x99\ -\x0a\xc1\x1e\x4f\x90\x9d\xcb\x62\x3f\xaf\xf9\x34\xd4\xbf\xf4\x6b\ -\xb0\x7b\xdc\x50\x53\x59\x06\xd7\x5e\xb1\x11\x4c\x08\x4a\xca\x8c\ -\xa2\x95\xd0\x12\x8d\x38\x93\xca\xa3\x5d\xc4\xe8\xe2\xad\x37\x77\ -\xc2\xb3\xcf\x3c\xa5\xf7\xd5\x7f\x45\xfa\xa9\xe1\x73\x92\xc8\x78\ -\xda\x1d\x8c\x56\x0a\x5f\x3f\xdd\x17\x89\xf9\x77\x7f\xee\xcb\x60\ -\xb3\x8b\x5b\xb1\xe6\x66\xbb\xd8\xde\x3a\xc6\x63\x31\x1c\x6c\xdd\ -\x58\x0f\x55\xe5\xc5\x6c\xab\xb8\x9f\xbf\xf0\x2a\xec\xdc\xbd\x97\ -\xc5\x02\x3a\xd7\x6e\x82\xd6\x8f\x6c\x87\x08\x25\x4c\x48\x83\x35\ -\xd4\xe0\xf5\x68\x17\x6c\x40\xb5\x50\x68\xe6\x35\xab\x89\x68\x8e\ -\xfa\xc8\x33\x5c\xed\xa3\x1f\x7b\xfa\x41\x6f\x10\x0e\x7b\xc5\x9c\ -\x46\x26\xff\x51\x05\x99\xa7\xbc\xb0\x18\x99\x56\x72\xe2\x18\xab\ -\xd3\x26\x74\xf5\x28\xd1\x45\x5c\xe7\xcf\xcb\x3c\x9f\x44\x85\xda\ -\x80\x36\xd1\xa0\xbf\x1d\xec\xef\x83\x2f\x7c\xf6\x41\xf0\x78\xdc\ -\xda\xaf\x51\xa4\x95\xb2\x67\xc6\x8d\x9e\x93\x0c\x09\x40\x3b\x3e\ -\xbd\x0c\xe2\xd2\xe5\x25\x33\xf9\x83\xba\x65\x2b\xe1\x8a\xad\xdb\ -\xd1\xe2\xf7\x47\x55\x81\x0d\xc5\xb7\xc9\x60\xef\x20\x8a\x83\xb7\ -\x75\x8b\xc9\xc7\x25\x85\x79\xe8\x4a\xd5\x22\x18\x4a\xe0\xf8\xa9\ -\x66\x70\xb4\xb7\x42\xe1\x89\xe3\xe0\x77\xb9\x60\xaa\xa0\x80\xd9\ -\x05\x94\x58\xda\x4b\x2e\x65\x30\x02\xa7\x69\x8d\x3e\xfc\x3b\x3b\ -\xed\xf4\x89\x00\xb1\x72\x5a\x71\xaf\xe9\xfd\x1a\xfd\x4e\x6f\xd4\ -\x8b\x7c\x3e\x8c\xd2\x65\x27\x32\x9d\x8c\xc2\x1e\xc5\xa2\xd3\x1c\ -\x82\xa0\xf8\xe8\x21\x58\xfd\xbb\x67\x21\xab\xb7\x9b\x0d\xdc\xdc\ -\xbc\x7d\x0b\xeb\xfd\x6c\x09\x98\xf1\x49\x96\x10\x93\xa8\xb8\xf0\ -\x6f\x64\xbd\x1f\x40\x15\xf1\x37\x4f\x7c\x09\xfa\xfb\x7a\xf5\xbe\ -\x7a\x3f\x88\x9b\x71\x40\xaa\x48\x00\x52\xe6\x6f\x82\xce\x22\x11\ -\x46\x65\xe5\x9a\xf5\xf0\xe9\x3f\x7f\x8c\xb9\x39\xb4\x32\x48\xbb\ -\xc4\x58\x0a\x8a\xe4\x65\x67\xb1\xfd\x04\x12\x15\xda\x6c\xe2\x23\ -\x9b\xd6\x30\x51\x49\x03\x4c\xcf\xbc\xb0\x13\xf6\xec\x17\x33\x64\ -\x26\x0b\x8b\xa0\x75\xdb\x76\x18\x5a\xb1\x3c\x96\x1d\xa4\x18\xbb\ -\xa7\xc5\xa2\x8a\x50\x22\x14\xd0\x8e\x1c\x78\x9e\x21\x31\x5f\xd9\ -\x6a\x41\x04\x0c\x05\x72\x06\x91\x06\x90\xd1\x7d\x48\x21\xd6\xcb\ -\xa5\xde\x2e\xf5\x78\x0e\x8d\xb9\xc2\xc3\x47\xa0\x6a\xcf\x6e\x70\ -\x8c\x8e\xb0\x9e\xbb\x76\xc5\x12\x58\xbf\x6a\x39\xcb\xee\x21\x63\ -\x8f\x0c\x59\x5a\xd5\x23\x51\xa1\x94\xf9\xe2\x82\x3c\x71\xc1\x0c\ -\x7c\x8f\x1f\x7e\xf7\xdb\xb0\xeb\x8d\x9d\x7a\x5f\x35\xdc\x27\x28\ -\x59\x00\x58\x22\x59\xa3\x45\x73\x61\x7e\x26\x5a\xf8\xb4\x80\x24\ -\x85\x7f\xdb\xbb\x44\x10\x50\x74\x8c\xc4\xe0\x74\x5b\xc5\x53\x76\ -\x0c\xdb\xac\xb9\xb8\x80\xb9\x94\x8d\x6d\x1d\xf0\xec\xef\xdf\x80\ -\x53\x2d\x62\x4a\x82\x27\x2f\x0f\x7a\xd6\xaf\x87\xde\xf5\xeb\x20\ -\x44\x83\x29\xda\xc4\x10\x6d\x1e\x5f\x54\x15\x48\x59\xbc\x61\xe5\ -\x51\xcd\x78\xfb\xd0\x30\x14\xed\x3f\x08\x25\x07\x0f\x80\x5d\x9a\ -\x9d\x43\xbd\x7d\xcb\xba\x7a\x96\xd8\x29\xb0\x15\xcf\xdd\x30\x30\ -\x3c\x66\xb8\x36\xa2\x5c\x28\x07\x80\x24\x1a\x79\x42\x04\xa0\xe7\ -\x7f\xf5\x73\xf8\xe5\xcf\x74\xd5\x3b\x55\x6c\x4d\x22\xd1\x7f\xa1\ -\x01\x90\x90\xf9\xf9\x68\x9c\x95\x94\x57\x32\xcb\x77\x00\xc5\x62\ -\x47\x5b\x8b\x2e\xf3\x29\x26\x4e\x3d\xe0\x8d\x3d\xfb\xd8\xde\x7a\ -\x0c\x04\xc8\xfc\xec\xac\x0c\xdd\xb5\xf2\xb4\x65\x51\x45\x09\x6c\ -\xa8\x5f\x26\xa6\x52\xa1\xae\x3d\xd1\xd4\x0a\xaf\xec\x7a\x0f\x8e\ -\x9e\x6c\x62\x9f\x47\xb0\x61\xc7\xab\x2a\x61\x78\xe9\x12\x18\x59\ -\xbe\x14\x3c\x65\xc5\x20\x58\xcc\x3a\x49\x9e\x5c\x4c\xf7\x87\xd5\ -\x8c\xe7\xd1\x78\x73\x76\x74\x43\xee\x89\x53\x90\x7b\xf2\x34\x64\ -\x76\x76\x4a\x46\x1b\xc7\xb2\x99\x37\xa2\xae\xcf\xcb\xc9\x66\xba\ -\xde\xe7\xf3\xb3\xad\xeb\x3d\x53\xbe\x69\xdf\xdd\x81\x86\x6f\x61\ -\x7e\xae\xc4\x7c\x80\xd7\x5f\xfd\x3d\xfc\xeb\x3f\x7d\x5f\xef\xab\ -\xf4\xb0\x2d\x7a\x41\x9f\x64\x01\xc0\x90\xf9\x0e\x67\x06\xdc\x74\ -\xc7\x7d\xb0\x6c\x65\x3d\xdb\x09\x93\x18\x4c\x7e\x6d\x5f\x57\x3b\ -\x38\x32\x73\xd9\x16\x71\x4a\xe6\x93\x0b\xe8\x90\x62\x01\xbf\x79\ -\x65\x17\x74\xf6\x8a\x1b\x23\xd1\x75\xa6\x2b\x5d\xb4\x88\xa7\x29\ -\xf4\x5d\xda\x8b\x6f\xe5\x92\x45\xd1\x81\x95\x81\xa1\x51\x78\x67\ -\xff\x61\xd8\x7b\xe8\x38\xdb\x95\x23\x3a\x5c\x89\xa0\xf2\x94\x14\ -\x81\xa7\xa8\x10\x7c\x85\xf9\xe0\xcf\x72\xa1\xf1\x68\x51\x01\xc0\ -\x34\xe5\x07\xdb\xf8\x04\xa4\xf5\x0f\x80\x03\xdf\xc7\xd9\xdb\x07\ -\xbc\xa2\x27\x93\x4b\xba\xb2\xae\x06\x56\xd4\xd6\x30\xf0\xd2\xef\ -\xd1\xce\x26\x3d\xfd\x83\x4c\xa5\xcd\xa4\x50\xbd\x29\x36\x20\x8a\ -\x7d\x0e\x1a\xde\x7b\x07\x7e\x80\x2e\x1f\xed\x1d\x6c\x10\xf0\x79\ -\x7a\xc6\xc9\x2b\xc9\x64\xfe\x27\x3e\xfd\x05\x28\xaf\xa8\x54\x31\ -\xdf\xe9\xb0\x33\x0b\x9f\x72\xda\x3d\x68\x0c\xd1\xb5\x92\xf9\x14\ -\xf1\xa2\xcf\xa6\xb0\xd7\xfc\xe6\x0f\x6f\x31\xdf\x9f\x59\xfe\xc8\ -\x58\x32\xa8\x48\x4c\xce\xa4\x90\xc4\xa8\x5b\x54\x0e\xcb\x16\x57\ -\x32\x80\xc9\xc9\x94\xc4\x18\xda\x78\x8a\x16\xa2\x6e\xeb\xea\x8d\ -\xae\x49\x34\xd3\x42\xfb\x1b\x95\x22\x58\x2a\xcb\x4a\xa0\xa6\xa2\ -\x8c\x0d\x54\xb1\xa1\x5a\xb2\x15\x3c\x53\xd0\x37\x38\xcc\xf6\xff\ -\x99\xe9\x5e\x44\xd9\x99\xe9\xe2\x58\x80\xb4\x36\xc2\xae\x37\x5e\ -\x85\x7f\xfb\xf1\x0f\x8c\xd4\xc5\xdf\x23\x3d\x31\x9b\xf7\xe5\x52\ -\x91\xf9\x0e\x3c\x92\xc8\x63\xc1\x90\x50\x88\x9d\x2b\x99\x4f\xd3\ -\xc4\xc8\x4d\x1a\x1a\x1b\x87\x77\x1a\x0e\x63\xa3\x8e\x44\xc5\x2c\ -\x01\x80\xc0\xc2\xcd\x22\x88\x5f\x5c\x90\x83\xea\xa1\x94\x6d\x49\ -\x6b\x95\xa6\x53\x45\x04\x71\x7c\x9d\x40\x48\xc6\x19\xad\xc8\x49\ -\x7e\x39\x5b\xa2\x46\x1a\xa9\x24\x6f\x83\xa6\xab\xd3\xa2\xcc\xa4\ -\xcf\x29\x57\xdf\x2a\x2d\x73\x27\xc7\xe9\x29\x7f\x71\x10\x25\x0c\ -\x49\x99\xe9\xac\x7b\x95\x2b\x4b\xab\x9f\xa3\xaa\xa0\x7a\x73\x52\ -\x4a\xdb\x4b\xbf\xfd\x35\x3c\xfb\x73\x43\x97\x7e\x46\x46\xdf\x85\ -\x02\xc0\x59\x33\x9f\xa6\x3c\xd1\x7e\xb8\x62\xea\x93\xc0\x1a\x59\ -\xc9\x7c\x5a\x2e\x6e\x68\x64\x9c\x6d\x16\xd9\xdc\xde\x15\xd5\xa3\ -\xf2\x98\x39\x4b\x9d\x32\xcd\xde\xcb\x25\xf7\xaa\x28\x3f\x07\x45\ -\x6e\x96\xe8\x65\x58\xcd\xd1\xf9\x0a\xe2\x31\x12\xbb\x96\xf6\x2e\ -\x92\xcf\xe9\x3d\x89\xc9\x13\x93\x1e\x26\xde\x87\x11\xa0\x33\xd1\ -\xef\x71\xa3\x89\x58\xd7\xfc\x9c\x4c\x36\xeb\x97\xcd\x12\xc7\xdf\ -\xfc\xcf\x27\x7f\x04\x6f\xbf\xf9\x5a\xa2\x01\x35\xda\x0b\x28\x9c\ -\x0a\x00\x38\x67\xcc\x27\x9d\x4e\x3d\xd2\x24\xe9\x5c\xca\x16\xd6\ -\x32\xbf\x1f\x7b\xd6\x10\xf6\x4e\x5a\x29\x2b\x88\x3e\xb1\x1c\x2c\ -\xa2\x1e\x44\xd2\xc0\x4e\x01\x9f\xb3\x98\x22\x4e\x3d\x5a\x7c\x4f\ -\x3b\xdb\xba\x9e\xde\x8d\x63\xe3\x8c\x02\x0b\xec\x50\x0f\x27\x50\ -\xd2\xa8\x24\xad\xdf\x4b\xab\x79\xce\xb5\x50\x00\x8b\x36\xc9\xca\ -\x70\xa6\x45\x7b\xfd\xe8\xf0\x10\xfc\xe3\xf7\xbe\x05\x2d\x8d\xa7\ -\xce\x39\xf3\xcf\x07\x00\xce\x39\xf3\x69\xdd\x40\x32\x9a\x68\xce\ -\x20\xcd\x0a\x22\x11\xac\xc7\xfc\x9d\xcf\xff\x0c\x3d\x88\x2e\xb8\ -\xfe\xf6\x7b\xa1\xa4\x62\x51\xb4\x01\x59\x92\xa4\xdd\xaa\xbb\xe8\ -\x44\x2a\x15\x6a\x07\x0a\x61\xb3\xa4\x0f\x49\xdf\x1f\xda\xdf\xc0\ -\x7a\xbe\x7b\x72\xe2\xbc\x30\xff\x5c\x03\xe0\xbc\x31\x9f\xc4\x2a\ -\xcd\x16\xa2\x5e\x36\xc1\x7c\xe6\x78\xe6\xb7\x9c\x3a\x2e\xa9\x00\ -\x1e\xea\x37\x6d\x85\xcd\xdb\x6f\x42\xf1\x1d\xd3\x9f\xf4\x2c\xf6\ -\x4c\xb3\x29\xa5\x18\x4f\xe3\x1a\x2e\xf4\x76\x48\xbd\xc9\xeb\xfd\ -\x78\xdc\x93\xf0\xdc\x33\x3f\x85\xf7\x76\xbf\x95\xe8\x4f\x29\xb9\ -\xe3\xf1\xb3\xfd\x7d\x6e\xbe\x30\x9f\x8e\x64\x90\x91\x0a\x68\x47\ -\xeb\x9c\x00\xa0\x65\xbe\x76\xfc\x60\xcb\xf5\xb7\x42\xed\xf2\xfa\ -\x28\x08\x38\x4e\x5c\x35\xc3\x62\x31\x49\xc3\xca\xc9\x19\x0a\x21\ -\xf5\x44\x8c\x97\x53\xbc\xe5\xf7\x23\x7b\x62\xef\x3b\x6f\xc1\xef\ -\x7e\xf5\x34\xb8\xdd\x86\xde\x07\x8d\xee\x3d\x92\x68\x80\xe7\x42\ -\x03\xe0\x82\x31\x9f\x0c\x2a\xb2\xc4\xc9\x35\x6b\xed\xe8\x81\x57\ -\x9e\xfb\x4f\x5d\xe6\xab\x42\xc1\x95\x35\xb0\xf9\xaa\x1b\xa1\xac\ -\xba\x36\x0a\x02\x79\xcd\x41\x96\x61\xcb\x7c\xeb\x0b\x93\x18\x45\ -\x06\x25\x79\x32\x54\x5f\x4a\x69\x57\x02\xf3\xe8\xc1\x7d\xf0\xf2\ -\xef\x9e\x85\xae\x8e\xb6\x44\x8f\xa0\x3c\xaf\x3b\x91\xde\x3f\x57\ -\xef\xc4\xcd\x37\xe6\x4f\xf9\x7c\xcc\xf0\x6a\x3e\x7d\x0a\x9e\xfc\ -\xde\xdf\xcd\xf8\x45\x09\x08\x1b\xb7\x5d\x0f\x95\x35\x4b\xa3\x20\ -\x90\x89\x97\x17\xa1\xe4\xb9\x73\x2a\x18\x09\x5c\xe4\xca\xd2\x9a\ -\xfd\x36\x8b\x38\x93\x57\xf9\xdb\x34\x91\xe3\x83\xa3\x07\xe1\x0f\ -\x2f\x3c\x37\x1d\xe3\xa9\x50\x42\xe7\xc3\xa0\x49\xea\x4c\x26\x00\ -\x92\xc6\x7c\x22\x9f\x2f\x00\xff\xfe\x83\x6f\x40\x7f\x4f\xe7\xac\ -\x5e\x3a\xb7\xa0\x08\xea\x37\x6e\x85\xa5\xab\xd7\x81\x3d\xcd\x11\ -\x03\x82\x24\x9a\x39\x79\x35\x52\x4e\x4e\x08\x17\xa2\x4b\xfa\xc7\ -\x46\x1b\x63\x8d\x27\xc7\x1b\xe4\x69\x5e\xa4\x5a\x48\xb2\xb0\x2c\ -\x5e\x9e\x57\x49\x1d\xf9\xd9\x93\x13\x63\xb0\xef\x4f\xbb\xe1\xbd\ -\x5d\x6f\xc0\xc8\xf0\xe0\x74\xaf\x3c\x26\x8d\x9c\x3e\x7d\x3e\xa4\ -\x12\x37\x5f\x99\x4f\x29\x62\xaf\xa0\xfe\x3f\x79\x64\xbf\xf6\x15\ -\xfa\x66\x32\xe0\x64\xc2\x9e\x59\xb5\x78\x19\xd4\xad\x5c\x03\x35\ -\x4b\x56\x81\xdd\xe1\x88\x03\x81\x52\x44\x2b\x25\x86\x38\x20\x98\ -\xe8\xf3\xd8\x02\x8e\x32\xb9\x27\xc6\xe1\xc4\xf1\x43\x70\x78\xff\ -\x5e\x68\x39\x7d\x62\xda\x81\x1f\x45\x70\x87\x98\xdf\x7f\xbe\xd4\ -\x92\x79\xbe\x32\x3f\x10\x0c\x19\xad\x7d\xf8\x15\x10\x13\x21\x28\ -\xdd\x7c\xb1\x51\x25\x68\x1a\x1a\xd9\x0f\x44\x34\x39\xb3\xa8\xa4\ -\x1c\xca\x17\xd5\x41\x49\x79\x35\x94\x57\x2f\x06\x67\x7a\xba\xa2\ -\xd7\xab\x37\x92\x12\x17\x72\x16\x12\x7c\x0e\xcc\x7f\xef\xea\x6c\ -\x85\xf6\x96\x46\xf4\xe1\x4f\x42\x6f\x57\xc7\x6c\xda\xf8\x80\xc4\ -\xf8\xf7\xce\xb7\x5d\x62\x9e\xbf\xcc\x17\x60\xb0\xaf\x5b\xef\x1d\ -\x89\xf9\xaf\x80\x38\x03\x96\x36\xa7\xfe\x5a\x22\x20\x30\x91\x8e\ -\xbd\xb1\xb7\xab\x9d\x51\xd4\x3d\x73\x38\x21\x37\xbf\x08\xb2\xf3\ -\xf2\xc1\x85\x1e\x85\x03\x01\x61\xb7\x3b\xc4\x95\x3a\x68\x7f\x43\ -\xda\x20\x7a\xca\xcd\x24\x81\x17\x8f\x53\x1e\x37\x4c\x8c\x8d\xc2\ -\xf0\x60\x3f\x0c\x0d\xf4\x82\xcf\xeb\x9d\x0b\x3f\x28\x51\xe1\xeb\ -\x48\x2f\x5e\x28\x8f\x84\x9b\xaf\xcc\xef\x38\x73\x1a\x5e\x7c\xe6\ -\x27\x7a\xef\x59\xa4\x11\x99\xe4\xf8\x53\xca\xf9\x97\x41\x67\xbb\ -\xba\x14\x29\x3b\x25\x89\xf5\xda\x85\xfe\x61\x6e\x3e\x32\x7f\x64\ -\xa8\x1f\xfe\xeb\xe9\x7f\xc6\x5e\x17\xe7\x2b\xd3\xca\x23\x5b\x13\ -\xd4\xa3\x5e\xb2\xa4\x29\x7a\x96\x97\x64\xa6\x93\x4b\x47\xf3\xf4\ -\x9e\x04\x9d\x7c\xfd\x54\x02\xc0\x7c\x61\x3e\x48\x3d\x7d\x26\xe2\ -\x93\xa4\xc2\x55\x92\x4f\x7d\x23\xe8\xec\x61\x70\x9e\x0a\x05\xf4\ -\x5f\x96\x5c\xba\xf7\x52\x41\xf4\x70\x17\x11\xf3\xe9\x3d\xb7\x9f\ -\x85\x57\xb3\x45\x52\x11\x94\xa5\xbc\x12\xce\x7e\x21\x6d\xb7\xc4\ -\xf0\x06\x89\xe8\xfd\xba\x53\x4d\xf7\x70\x17\x09\xf3\xdb\x24\xe6\ -\x9d\x2b\x77\xc9\x24\x19\x8e\x55\x12\x15\x49\x64\x57\xd8\x19\x21\ -\x88\x2d\x70\xe1\x96\xce\xbb\xa4\x77\x21\x6a\x81\x79\x50\xb8\x8b\ -\x80\xf9\x7d\x92\x38\x3f\x0d\x0b\xe5\x9c\x00\x60\x81\xf9\x97\x30\ -\x00\x16\x98\x7f\x09\x03\xa0\x50\x0a\x44\x2c\x30\xff\x12\x2a\xbc\ -\xc2\xe8\x79\x61\x81\xf9\x97\x2e\x00\x1e\xd1\x8b\x92\x2d\x30\xff\ -\xd2\x51\x01\xad\xda\x60\xc8\x02\xf3\x2f\x1d\x09\xb0\x49\x2f\x12\ -\xb6\xe3\xee\x87\x17\x98\x7f\x89\x00\x20\x4e\xf4\xd3\x8a\x1c\x8b\ -\xeb\x96\x2e\x30\xff\x12\x01\x40\x96\xf6\x66\x75\x4d\xdd\x02\xf3\ -\x2f\x21\x00\xc4\xed\xd1\x46\x39\x6c\x0b\xcc\xbf\x74\x00\x10\xb7\ -\x9e\xe8\xe4\xd8\xe8\x02\xf3\x2f\x21\x00\xc4\x6d\x28\x73\xf4\xd0\ -\x3e\x88\xd0\xde\x74\x0b\xcc\xbf\x24\x00\x40\x49\x14\xaa\xd5\x85\ -\x68\x1b\xb7\x1f\x7f\xff\x3b\x6c\x1d\x9e\x05\xe6\x5f\xdc\x85\x22\ -\x80\xb4\x28\x4d\x81\xd6\x1b\xe8\xed\xe9\x86\xce\x8e\x36\xb8\xe9\ -\xa3\x37\x43\x1a\x4a\x82\x05\xe6\x5f\xbc\x00\xa0\x42\x59\xa8\x9f\ -\xa1\xf8\x8f\xf2\xc3\xb6\xd6\x33\xd0\xda\xda\x02\x3b\x6e\xd9\xc1\ -\x66\xb4\x2c\x30\xff\xe2\x05\x00\xa5\xb0\x1e\x03\x31\x57\x4e\x35\ -\x4f\xaa\xa5\xb9\x19\x9a\x9b\x9b\x60\xc7\x8e\x1d\x6c\x7a\xf6\x02\ -\xf3\x2f\x4e\x00\x30\x5e\x23\x9d\x00\x71\x59\x51\x15\x08\x9a\x1a\ -\x1b\xe1\xc4\xc9\x13\xb0\xf5\xaa\xab\xd9\x34\xed\x05\xe6\x5f\x9c\ -\x00\xa0\x72\xd2\x08\x04\xcd\x4d\x4d\x70\xfa\xe4\x29\xd8\x78\xc5\ -\x56\xc6\xe8\x05\xe6\x5f\x9c\x00\x48\x08\x02\xb2\x07\x9a\x9b\x1a\ -\x61\xcd\xba\xcd\xe0\xa5\xb5\x6c\x17\x98\x7f\x51\x02\x20\x21\x08\ -\x3a\x3b\xda\xd1\x38\x6c\x81\xe5\xf5\xeb\xc0\x87\x06\xe1\x02\xf3\ -\x2f\x4e\x00\x24\x04\x41\x6f\x77\x27\x9c\x69\x3a\x0d\x55\x8b\x97\ -\x42\x38\xc2\xa9\x98\xdf\xdb\xd5\x06\xbf\xff\xc5\xbf\x2d\x30\x7f\ -\x9e\x94\x99\x4c\x0c\xb9\x03\xc4\x59\xaa\x71\x79\xf2\xb4\x20\xd3\ -\xe2\x65\xab\xc1\x95\x95\x8b\x40\x08\x43\x4f\xc7\x19\xb6\xd7\x8f\ -\x41\x59\x60\xfe\x3c\x2e\x77\x48\x01\x23\x61\x8e\x44\x4b\x59\x2f\ -\x59\x68\xc6\x4b\x13\x04\x9d\x0b\xcc\xbf\x78\xca\x0d\x48\x83\xb3\ -\x60\xfe\x5e\x10\xb3\x8d\x17\xca\x45\x54\x72\x91\x68\x99\xea\xc9\ -\x04\x8c\xa7\x1c\xc3\xcf\x41\xea\xec\x49\xb4\x50\xce\xc2\x08\x34\ -\x2a\x4e\x10\x27\x54\xd2\xba\xf4\x72\x52\x09\xe5\x16\xd0\x44\xc8\ -\xf7\x17\x9a\x76\x7e\x94\xff\x0f\x30\x9e\x0d\x50\xa3\x3a\x2b\x27\ -\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\ -\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\x31\x30\x54\x30\ -\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\x30\x48\x3f\xeb\ -\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\ -\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\x2d\x31\x37\x54\ -\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\x30\x30\x25\x20\ -\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x0f\x3e\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x0f\x05\x49\x44\x41\x54\x78\xda\xed\x5d\x4d\x8f\x25\x55\ -\x19\x7e\xde\x53\xd5\x33\x3d\x03\x4c\xc3\xe0\x1f\x10\x91\x09\x8e\ -\x44\x18\x62\x94\x8d\x09\x19\x22\x31\x44\x25\xc6\x10\x09\x62\x5c\ -\x20\x02\x2a\x0b\x70\x65\xc2\xc6\xa8\x0b\x17\x46\x12\x12\x75\x12\ -\x16\x93\xb0\x70\x0b\xc4\x10\x4d\x98\x49\xc4\x64\x94\x88\xc8\xa2\ -\x51\xc1\x0f\x70\xe5\x47\xec\x61\x9a\x99\xe9\xe9\x7b\xeb\xbc\xaf\ -\x8b\x3a\xa7\xee\xa9\x53\x5f\xb7\xbe\xfa\xde\xee\x3e\xa7\x73\x52\ -\xf7\xa3\x6e\x77\xdf\x7a\x9e\xf7\x79\x9f\xf7\x9c\x53\x55\x40\x68\ -\xfb\xba\xd1\x90\xbf\x4c\x41\x51\x38\xa4\x7d\xc0\xa0\xc2\x63\x02\ -\x41\x41\xe5\xb6\xee\x63\x00\xb8\x80\x0b\xb2\x30\x02\xd4\x80\x1e\ -\xc8\xd0\x93\x0c\xfe\x8f\x47\x04\x71\xdf\xb3\x9f\x39\x8f\xf3\xb2\ -\x23\x04\x20\x10\x55\xfc\x9e\x00\xfc\x40\x4a\x30\x07\x09\x72\x44\ -\x00\x20\xf6\xb3\xf3\x12\x81\x06\x00\x9e\x2a\x1e\x87\xb6\x73\x2a\ -\x20\xee\x63\x00\x19\xf8\x4d\x44\xa0\x2e\xe0\x0b\x84\x1c\xc0\x6d\ -\x57\xde\xf3\xa0\x08\x03\x79\x01\xef\x47\x14\x94\x4b\x00\x51\x50\ -\x42\x20\xb6\xe0\x3b\x24\x10\x02\x61\x03\x1b\xd2\x9b\x00\x04\x22\ -\x49\x89\xe5\x02\xee\xf6\xa8\x82\x04\x81\x00\xc3\xa6\x02\xb1\xe0\ -\x1b\xe0\x45\x41\x31\x81\xb4\x21\x01\x03\xb0\xdb\x46\x12\x50\x07\ -\xf0\x7d\xd0\x63\xd3\x23\x87\x04\x2a\x90\x60\x14\x12\x88\x43\x02\ -\x0b\x3c\x2b\x28\x6d\x08\x90\x98\xae\x2d\x11\x0c\x19\x04\x40\x29\ -\x09\xa8\x23\xf8\x16\xf8\x95\xeb\x1f\x78\xe5\x7f\x01\xa6\x81\x9b\ -\x58\x9c\xc4\x64\x73\x01\x89\x00\xc2\x20\x61\x10\x33\x88\x35\x48\ -\x6b\x5c\x78\xfe\xbe\x63\x0a\x2a\x51\x50\x53\x02\x4d\x08\x34\x25\ -\xd0\x14\x40\x42\x20\xdd\x44\x02\x6a\x09\xbe\x8d\xf2\x15\x00\x07\ -\xae\x7f\xe0\x95\xff\x04\xb4\x16\x40\x02\x4b\x00\xd6\x50\x3a\xc1\ -\x85\x17\xee\xbf\x4d\x41\x6d\x13\xc8\xf6\x89\x25\x03\x00\x0d\x40\ -\x1b\x02\xb0\x4f\x02\xea\x08\xfe\xc1\xeb\x1f\x78\xe5\xdf\x76\xdf\ -\x1f\x7c\xf3\xf6\xca\xef\xf1\xf0\x27\x0f\x05\x30\x7b\xb4\x9f\x9d\ -\xbb\x0c\x88\x40\x44\xd2\xad\x66\xb0\xd6\xe0\x69\x82\xef\x9f\x7a\ -\x0d\xa4\x35\x88\xa7\xd8\x7c\xf1\xc1\x3b\x14\xd4\x16\x81\xb6\x08\ -\x74\x85\x40\x57\x00\x4c\x08\x34\x71\x48\x60\x7d\x41\x46\x02\xd5\ -\x12\xfc\x03\x6d\xc0\x0f\x6d\x00\x0f\x40\x04\x10\xa5\x5b\x10\xa0\ -\x08\xa4\x08\x14\x29\x7c\xe7\xa1\xdb\x00\x22\x80\x14\xd6\xee\x39\ -\x7d\x4e\x20\x47\x00\x5c\x03\xe0\x30\x80\x43\x00\x0e\x1a\xcc\x62\ -\xdf\x9f\x1d\xc5\x51\xaa\x54\x00\x43\x00\x37\xe7\xc7\xa5\x91\xff\ -\x8d\xdb\x1b\x5d\x84\x55\x80\xf5\xf5\xf5\x80\x66\x8b\x76\xfc\xf8\ -\x71\x00\xc0\xa9\xdf\x6e\xa5\x89\x80\x39\x53\x01\x4e\x34\x44\x6b\ -\x70\x92\x40\x6f\x4f\xf0\xc3\x67\x5f\x07\x71\x02\xd2\x09\x36\x5f\ -\x7a\xe8\x4e\x05\x75\x09\xc0\x45\x02\x5d\x36\x4a\xb0\x0d\x60\x4a\ -\xa0\xc4\xa8\x41\x96\x0e\x54\x0d\xf8\x6e\xf4\x97\x83\x1f\xda\x4e\ -\x4a\x81\x51\x81\x99\x2a\xa4\x68\x29\x7c\xfb\x2b\xb7\x64\xe8\xad\ -\xdd\x7d\xea\xac\x40\xae\x01\x70\x35\x80\xab\x00\xac\x96\xa8\x40\ -\x56\xa1\x51\xc5\x40\x8f\xeb\xf6\x0f\x18\xc3\xf7\xdf\x2e\xe0\x3f\ -\x7c\x47\xf0\x00\x7d\xda\xa9\x73\x46\x01\xac\x07\x60\x81\x30\x83\ -\x93\x04\x92\x24\xd0\xd3\x29\xf4\x64\x0a\xde\x9e\xe0\xc7\xcf\xbd\ -\x61\xcc\x21\x63\xf3\x57\x8f\x9d\x24\xd0\xfb\x04\xba\x08\xe0\x12\ -\x80\x2d\x02\x6d\x03\xb0\xc6\x90\x01\x70\xa6\x00\xce\xa4\x8e\x1b\ -\xfd\x31\x80\xb8\x2b\xf8\xa1\x8d\xec\x0d\x5c\x27\x4f\x84\x6f\x7d\ -\xe9\x78\xf6\xda\x91\xbb\x9e\x79\xd9\xa8\x80\xeb\x07\x56\x1c\x25\ -\x20\x00\xa4\x2a\x06\x87\x32\xf9\x77\xeb\xfc\xef\x3d\x76\x02\x2c\ -\xd2\xaa\x87\xd6\xaf\xd5\x1e\xdf\x2c\x99\xa7\xcf\x45\x04\x8f\x7e\ -\xf1\xe6\x19\x09\x4e\x3e\x7d\xc6\xa4\x81\x43\x00\x56\x05\x62\x53\ -\x41\x66\x06\x55\xc5\xc0\x90\x6b\xfe\x00\x00\xdf\x7d\xf4\x04\x58\ -\xd0\xba\x87\xd6\x97\x00\xcd\x5d\x84\x20\x48\x3b\x03\xf8\xda\x17\ -\x8e\x65\x48\x0a\xa4\xb6\x22\x88\x3d\xf9\x77\x15\xc0\x96\x7e\xf9\ -\x71\x89\x8e\x2d\x54\x01\xdd\xaa\x00\x7b\xdc\xc5\x4c\xef\x48\x59\ -\x47\xf1\x35\x6b\x1c\x8d\x09\xbc\x62\x08\xb0\x6d\x08\x60\xab\x01\ -\x8e\x9b\x52\x80\xcb\xc4\xf6\x89\x2a\x00\xd9\x5b\x01\x30\x03\xde\ -\x27\x40\x4e\x09\x0c\x46\x52\xc4\xea\xa0\x97\xff\x63\xb7\x12\x88\ -\x2b\xe0\x72\x55\x00\x00\xa0\xbb\x48\x80\x14\x19\x1d\x5a\xbb\xa6\ -\x0d\x9a\x59\x15\xe0\x75\x5d\xf0\x06\xf0\xbd\xd7\x8a\xd3\xdd\xfc\ -\xaf\x7c\x02\xb8\x24\x28\xcc\xeb\x33\x87\x28\x5f\x94\x07\xa8\x4d\ -\x01\x9c\x62\xc3\x6c\x94\x80\x0b\x0a\x50\x36\x53\x5b\xaa\x00\x65\ -\x24\x50\x33\x05\x68\x8e\xf2\xd0\xc6\x50\x80\x12\x02\xb0\xe9\x4e\ -\x0a\xd0\x52\x99\x02\x54\x19\xf0\x2e\x3b\x50\xe3\x03\x0a\xff\x48\ -\xc8\xf7\x3b\x4c\x80\x12\x05\x80\x89\x74\x71\xa3\xde\xe9\xc2\xa5\ -\x04\x28\x5b\xa8\x43\xf1\xbc\xb0\x26\x3d\x6b\xba\x50\x05\x74\xab\ -\x02\x12\x5d\xf4\x00\xd0\xe9\x88\x20\x9b\x2e\xae\x07\x30\xcf\x1b\ -\x02\xbb\x51\x01\x2a\xa5\x28\x28\xc0\x72\x28\x80\xb8\x2a\xe0\x46\ -\xbf\x14\xfc\x5a\xd9\x3a\x4d\xb4\x26\xc0\xb4\xa7\x02\x84\x2a\xa0\ -\x5b\x9b\x7a\x0a\x30\x9b\x0f\x98\xa9\x40\x4a\x02\xfb\x58\x5a\x95\ -\xec\xc3\x29\x40\x50\x81\x1d\x51\x00\xb8\x26\x90\xf3\x5e\xc0\x9a\ -\x42\xe1\x11\x08\x90\x70\x00\x63\x11\x2d\xd1\xf5\x04\xc8\xc0\x77\ -\xc8\x20\x0b\x53\x80\xd0\x46\x2f\x03\x0b\x04\xf0\xc1\xe7\x91\x14\ -\x60\x1a\xaa\x80\x85\x54\x01\x53\x2e\xf7\x00\x30\x6e\xdf\xe6\x7f\ -\x7f\x84\x30\x28\xc0\x1e\x57\x00\x70\xb9\x17\x18\x4d\x01\x92\x50\ -\x05\x2c\xc6\x03\xd4\x29\x80\xed\xe2\x6c\x47\x53\x00\x67\x99\xfa\ -\x5c\x2d\x54\x04\xc3\x56\x01\x3c\x53\x00\x3f\xfa\x61\x14\x00\xec\ -\x4d\x07\x2f\x34\x05\x84\x39\x82\xd1\x52\x40\xe9\xf4\x30\x66\x86\ -\x10\x63\xa4\x00\x0e\x1e\x60\x21\x8d\xcb\x08\xe0\x44\xbe\x78\x55\ -\x01\x46\x53\x00\x09\x55\xc0\x22\xaa\x00\x7b\xdc\xc5\x9b\x07\x16\ -\x13\xf6\xe2\x9e\x35\x94\x11\x65\x04\x0f\x10\xd6\x77\x2e\xa6\x89\ -\x34\xa7\x00\x37\x15\x8c\xa6\x00\x7d\x17\x78\x86\x2a\xa0\x63\x0a\ -\xa8\x20\x80\x7d\x6d\xd7\x10\x20\xb4\x81\x09\xe0\x02\x8e\xec\x04\ -\xe2\xd6\x4a\x1d\x08\xb0\x17\x08\xe0\x45\xfe\x28\x0a\x10\xf0\x5f\ -\x90\x07\xa8\x39\xfe\xd2\xb0\x5d\x2a\x05\x08\x55\x40\x37\xcf\x54\ -\xab\x00\xa8\x56\x83\x50\x05\xec\xf1\x2a\x00\x15\xf2\x3f\x9a\x09\ -\x94\x50\x05\x2c\x3f\x01\x64\x89\x09\x10\xda\xb8\x04\xe8\x22\xff\ -\xed\x3c\x40\xc0\x62\x31\x55\xc0\x1c\xc6\x4e\x7a\x98\xf5\xa0\x00\ -\xbb\x5c\x01\x0a\xef\x8d\x56\x06\x86\xb9\x80\x85\x54\x01\x52\x31\ -\x17\x50\x98\x17\xb0\xc8\x8b\x04\x0f\xb0\xaf\x14\xc0\x8f\xfa\xb1\ -\xca\x40\x1e\x88\xd1\xa1\x0d\xef\x01\xba\xe6\xff\xa0\x00\x7b\x45\ -\x01\xca\x06\x88\x02\x01\xf6\x2f\x01\x10\x66\x03\xf7\x50\x0a\x68\ -\x4b\x00\x60\x39\x87\x82\x43\x15\xd0\xb5\x0a\x58\x16\x05\x08\x98\ -\x2c\xd4\x04\x8e\xd5\x76\x6c\x1c\x20\x54\x01\x5d\x3d\x80\xb7\xfc\ -\x67\xde\x1e\x3c\xc0\xde\xf2\x00\x73\x4b\xbe\x8c\xa6\x00\x01\x8c\ -\x45\x56\x01\xf3\xe6\x7e\x0a\x55\xc0\x3e\x50\x00\x54\x03\x2f\xa3\ -\x55\x01\x3d\xbf\x48\xa8\x02\x3a\x56\x01\xcb\x63\x02\x03\x28\x4b\ -\x99\x02\x90\x9e\x86\x29\xbe\x1a\x2c\x5b\x0a\x08\x55\xc0\x08\x26\ -\x10\x5e\xde\x37\x8f\xdb\x40\xa5\xc2\x21\xde\xdf\x6d\xf4\x14\x70\ -\xe2\x47\x1b\xad\xf6\x27\xef\xb4\xf2\xa6\x1b\xd2\x53\xd3\xfb\xe8\ -\xf7\xf9\xa6\xd6\x74\xd6\xb4\xaf\x9c\x4d\xc7\xd1\x7f\x3b\xa6\xfa\ -\x14\x40\xce\x52\x30\x1a\x75\x55\x70\x08\x96\xc5\x78\x80\xa5\x51\ -\x80\x80\xc5\x52\x13\x80\x9c\x7d\xdb\x88\x5a\xf0\x00\xc1\x03\xf4\ -\x63\xe4\xd8\x39\x76\xaf\xb5\xc6\xe3\x21\xe3\xe2\x11\x14\x20\xb4\ -\x7e\x0a\x10\x02\x7a\xc9\x14\xa5\x27\x2e\x41\x01\x82\x02\x74\x1f\ -\x07\xe8\x54\x83\x53\xfd\x3e\x7b\x7d\xd2\x89\x5a\xee\x40\x73\xd8\ -\x02\xb7\xf6\xa7\x96\xe7\x06\xf6\x53\x00\xa9\xfe\x0e\x21\x55\x0c\ -\x4b\x1a\x1a\xa9\x3e\x8f\x77\x84\xd5\xa1\x8d\xa2\x1e\x43\x88\x65\ -\xdc\x0b\x64\x0a\xe0\x2f\x9c\x10\x54\x54\x08\x1a\x45\x01\xa8\xe6\ -\xa5\x1a\x22\x50\xf0\x00\xf9\x9c\x4b\xc3\x0c\x03\x08\x39\x1e\xa1\ -\x70\x2b\xa8\x9d\x52\x80\xa0\x02\x0b\x8d\x7e\x97\x04\x5d\x53\x71\ -\x2f\x13\x48\x01\xfc\xc5\x9b\xc3\x9e\x00\xc4\x6d\xc0\x0e\x6d\x49\ -\x89\x60\x64\x9f\x68\xc4\x14\xd0\x95\x18\x8a\x42\xc5\xd0\xc7\x03\ -\xd4\xdd\x01\x70\x67\xab\x80\xa0\x00\xcb\x5b\x05\x38\x91\xdf\x16\ -\xa7\x78\x90\x7f\x22\xb4\x1d\xab\xfd\xbb\x56\x0d\xe3\x55\x01\xa1\ -\xed\xea\x36\x8c\x02\x50\xf7\x9c\xe7\xbf\xfd\xee\x6b\x6f\xee\xe9\ -\x03\x7e\xd3\x27\x3e\x52\x1b\xc2\x6d\x3c\x40\xd9\x20\x50\xdb\x60\ -\x1d\x64\x1c\x20\xb4\x7d\xac\x00\x63\xb5\x9f\xde\xfb\x2f\xcf\x84\ -\x52\xb6\x75\xbb\x52\x0a\x44\x84\x28\x8a\xa0\x94\x42\x1c\xc7\x88\ -\xa2\x28\xb7\xad\xea\xee\x7e\xf6\xf3\x51\x14\xe5\x7e\xaf\x52\xaa\ -\xf4\xef\xba\xff\xd3\x3c\xed\x03\x5f\xfe\xcd\xee\xf6\x00\x41\x00\ -\xf6\xb9\x02\x54\x91\x9d\x5a\xae\xdb\x27\x8f\x32\xfb\x8d\x40\xca\ -\x3b\x20\xe2\x1f\x1f\x6f\x32\x5f\xaa\xc2\xde\x4b\xfe\xb9\x41\xa0\ -\x16\x07\x35\xac\x08\x0a\x0a\xb0\x3b\xda\xe9\xd3\xa7\x3b\x7d\xee\ -\xa9\xa7\x9e\x0a\x28\x07\x05\x08\x6d\x3c\x0f\xd0\xe0\x0e\x55\xc3\ -\x02\x80\x79\xd3\x95\xd6\x7a\x8f\x78\x80\xa6\xba\xbf\x62\xdd\x8f\ -\x34\x8c\x07\xf8\x6b\x02\x82\x02\x84\xb6\xa3\x1e\x60\xec\xc9\xa2\ -\x24\x49\xf6\x25\x40\x54\x26\x95\x34\xdc\xb9\x9a\x41\x01\x82\x02\ -\xb4\x64\x62\x21\xf2\xa9\xe5\x38\x40\x37\xe5\xd8\x2b\x1e\xa0\xed\ -\x79\x01\x22\x54\xba\x13\x51\x71\xee\x97\x82\x02\x84\xb6\x34\xe3\ -\x00\x43\x5b\x02\xde\xa7\xf7\xaf\x27\xd4\x17\x01\x83\x78\x00\x0a\ -\x23\xfa\xbb\xbc\x55\x5c\x2a\x74\x8e\x73\xc4\x5a\x8c\x03\xd0\x5c\ -\x91\x3e\x54\xce\x6f\xeb\x35\x76\x4d\x44\xb7\x3d\xbd\xc7\x5b\xfa\ -\x2d\xee\xed\x42\x21\x85\xa5\xc1\x99\x37\x90\x16\x0a\xe0\x58\x8b\ -\x10\x4c\x4b\x1f\xe9\xce\xc0\x50\x76\x71\x68\xe4\xaf\x2b\xef\x44\ -\x7e\x13\xa6\x59\x0a\x70\x77\xcc\x7d\x28\x5c\x21\x72\x09\x70\x97\ -\x22\xc0\x52\x22\xf5\x0d\x58\x95\x91\x21\x2e\x7b\x53\x20\x20\x10\ -\xa4\xcb\x4d\x68\x42\x1b\x1e\x7c\x1b\xf2\xe2\x44\x3e\x04\x60\x4e\ -\x7b\xee\x52\xf1\xe9\xfb\x34\x27\x68\xb1\x05\xdf\x82\xee\x93\x20\ -\x9d\x7b\x96\xd9\x3c\x75\xb6\x1a\x66\xde\x71\x82\x86\xfd\x68\xde\ -\xe3\xb0\x37\x59\x58\x6b\x6d\x72\x51\x0f\x40\x18\x04\x4e\xd1\x11\ -\x06\xc0\x06\x68\x36\xcf\x05\x90\x76\xd5\x52\x9c\xe6\x01\x05\x31\ -\x3f\xf9\x8c\x63\x15\x80\xd2\x7f\x82\x68\xf6\x4f\x85\x13\x05\x46\ -\x8e\x78\xf7\xb9\x73\x73\x60\x71\x22\xdf\xed\x7e\x9a\x98\xb3\x78\ -\x8c\x9b\x8c\x02\x89\x98\x55\x2b\x4e\x2a\x70\x89\x30\xd2\x01\xf0\ -\x23\xbe\x6b\x15\x20\xe6\xce\x9a\x6d\xba\xfb\xf7\x07\x53\x1e\x69\ -\x79\x5f\x57\xf1\xae\xff\x9e\x81\xad\x9d\xad\xe9\x62\xdf\x33\xfb\ -\xb5\xb8\x85\x78\x4e\x01\xb8\xec\x0e\x35\xc2\x20\x28\x27\xf2\x31\ -\xb2\x27\x90\x41\x47\x3e\x96\x86\x00\xad\x6e\xec\xeb\x3a\x7d\xce\ -\x47\xbd\x66\x80\x13\xe7\x31\x03\xda\x90\xc0\xca\xbf\x73\xb9\x18\ -\x34\xdc\x4a\x2a\xa7\x00\x25\x44\x10\x12\x36\x36\x80\xf3\x93\xce\ -\xf3\x5e\xa0\x4e\x86\x51\x80\x48\x45\xdd\x0e\x3b\x4b\x75\x27\x67\ -\x4b\x26\x09\x92\x98\xd9\x36\x67\x6b\xbf\x9f\xbf\xe6\x8e\xda\x7f\ -\x2f\x6a\x3a\x11\x20\x33\x7c\x62\x36\x56\xde\x4d\xe4\x8b\x89\x7a\ -\x9d\x98\x6d\xfa\x3a\x65\x04\xb0\x3d\x8f\xb9\xc1\xb8\x40\x86\xd2\ -\x14\xa0\xa0\x24\xb5\x19\x0c\x62\x4e\xbf\x28\x6b\x80\x94\x93\xff\ -\x07\x3a\xeb\xb3\x62\x51\xa4\x0c\x74\xa5\x08\x0b\x36\x33\xcf\xba\ -\x66\x30\x31\x08\x94\x6d\xad\xe1\x25\x33\xd1\x22\x22\xd9\xd6\xa6\ -\xa0\x3e\xcb\xc2\x33\x13\xed\x0f\x69\xd7\x12\xc0\xcb\xf9\x19\xe8\ -\x49\x0a\xbc\x7d\x2e\x46\xfe\x45\xb2\xad\x73\xcf\x00\x9f\x11\xb9\ -\x0b\xd0\x17\x4c\xa0\x11\x42\x30\x58\x14\x14\x13\xeb\x54\x4b\x92\ -\x04\x50\x2a\x25\x41\xd9\x24\xf5\x40\x04\xb0\x32\xc6\xde\x65\xb8\ -\x63\xd5\x6d\xda\x82\x35\x43\x93\x4e\xc1\x76\x7f\x88\x67\x91\x61\ -\xd3\xad\x4a\xa3\xce\x3d\x2f\x40\xd4\x30\x04\xc8\xe4\x99\x75\x3d\ -\x01\x72\xf5\x3d\x17\x73\x7f\x0e\x7c\xf3\xba\xe6\x59\xaa\x28\xde\ -\x3d\x92\x09\x54\x29\x0d\xbe\x02\x64\x9f\xb6\x2a\x40\x5a\x03\x4a\ -\xf0\xd6\xef\xd6\x71\xd3\xc7\x6f\x36\x57\x85\x70\xa7\x22\x69\x58\ -\x05\x30\x07\xc8\x27\x40\x57\x4f\xa0\x93\x14\x7c\x2d\x3a\x8b\x74\ -\x0b\x7a\xc4\x11\x48\x66\x04\x60\x62\x08\xcb\x28\x27\x86\xd8\xef\ -\x05\x5d\x47\x80\x62\xd9\x97\xca\x3e\x67\x52\x9f\x45\x7d\xf6\x98\ -\x67\xf9\xdf\x90\xe0\x9f\xeb\xef\xb8\x64\x4a\x00\x68\xd3\x0b\x44\ -\x70\x07\x82\x04\xf9\xc9\x27\x01\xa0\x2f\x3c\x7f\xdf\xb1\x6b\x3f\ -\xf7\xf3\xbf\x08\x29\xbc\xf5\xea\x3a\x8e\xdd\x7e\xac\x94\x00\x73\ -\xaf\x19\x6c\xba\x9e\x80\x39\x40\x7a\x9a\x3f\x50\x8a\xba\xcd\x5c\ -\x27\x93\x04\x60\x40\x62\xc9\xbe\xba\x68\x81\xc4\x02\x89\x04\xa2\ -\x05\x1c\x31\x38\x62\x28\xa5\xc0\x8a\x6b\x09\x90\xae\xbf\x6b\x4f\ -\x00\xfb\xbd\x90\x4c\x6b\x89\x4d\xae\xfb\xcf\x19\x40\x3d\x33\x7c\ -\x4e\xee\xcf\x08\x60\x4a\xc1\x77\xd7\xdf\xc9\x7e\xe9\xe6\xd9\x27\ -\x1f\x21\xd0\x14\x80\xed\x89\x4f\x82\x32\x0f\x20\x94\x16\x7f\x9c\ -\x1e\x1e\x49\x2e\xbc\x70\xff\xad\x6b\x9f\x7d\xee\x8f\x24\x0a\x6f\ -\xbf\xfa\x26\x3e\x7c\xe2\xa6\xe2\xf5\x61\xe6\x3d\x18\x4d\x27\x92\ -\x70\x52\x4a\x00\x74\x5c\x0f\x92\x4c\x0d\x01\x58\x80\xc8\x78\x82\ -\xc8\xf8\x82\x88\x21\x91\x21\x80\x4a\x09\xa0\x22\x03\x3c\x15\x09\ -\x60\xc1\xef\xa6\x00\x49\x33\x01\xfc\xe1\x5d\x91\xf2\x34\x20\xec\ -\xc8\xfe\x2c\xff\xe7\xc0\x3f\xf3\xc4\xe3\x04\xda\x06\x60\xbb\x25\ -\x40\x52\x50\x80\xf7\xf0\x9e\x5c\x8b\x6b\xc9\x73\x8a\x56\x36\xa6\ -\x04\x9a\x6c\xbe\xf8\xe0\x1d\x6b\xf7\x9c\x3e\x07\x22\xfc\xf5\xf7\ -\x7f\xc2\x8d\xb7\xde\x98\x33\x83\x32\x2f\x0f\x9a\x08\xa0\xcb\x09\ -\x70\xef\xe7\xef\xcd\x4b\x31\x66\xe7\x06\x82\xd2\x2a\xc1\x9e\xdb\ -\xe7\xf6\x64\x3b\x49\xa3\xdd\x46\xbd\x4e\x09\xc0\x3a\x05\x9d\x63\ -\x46\xa4\x22\xe8\x48\xa7\x9f\x57\xe9\xb9\x81\xa4\x28\x23\xc2\x20\ -\x04\x30\xdf\x0b\xd3\x69\x43\x6a\x93\x22\x01\x1c\x23\x28\xb6\xde\ -\xcf\x81\xcf\x3e\xf8\x4f\x00\xb8\x02\x60\xcb\x6c\x7d\x12\xe8\x9c\ -\x02\x38\xc3\xc1\x42\x29\x84\x56\x22\x12\x02\x4d\x05\xb2\x4d\xa0\ -\xad\xcd\x5f\x7c\xf5\x53\x6b\x9f\x79\xf6\xd7\x00\xe1\x6f\x7f\xf8\ -\x33\x3e\xf4\xb1\x1b\xdb\x9b\xc1\x8e\x04\xc8\xac\x86\x9b\x8b\x41\ -\x99\x64\x43\x01\xac\x38\x8b\x76\xbf\xe7\xa2\xdf\x2a\x80\xe2\x2c\ -\x05\x44\x2a\x02\xa9\xd9\xef\x1b\x8d\x00\x49\x5b\x02\x48\x9e\x0c\ -\x9a\x0b\xe4\xf0\xc0\x7f\x12\xc0\x65\x02\x5d\x02\x70\x09\xc0\x65\ -\x43\x84\x6d\x00\x13\x8f\x00\x1c\x97\xcc\x16\x89\x21\x02\x9b\x1d\ -\x27\x00\x22\x00\x31\x81\xe2\xcd\x97\x1e\xba\x73\xed\xee\x53\x67\ -\x41\xc0\xdf\x5f\x7f\x0b\x37\xdc\x72\x43\x3e\x0d\xf4\x24\x80\x32\ -\x66\x49\x27\xba\x74\x24\x30\x97\x8b\x31\xcb\xd5\x50\x80\x52\x0a\ -\x5a\x74\x0a\xb8\x94\x59\x9e\xd9\x73\x61\x41\x14\x45\x00\x03\x4a\ -\x2b\x48\x64\xca\xbe\x28\xad\xff\x6d\x0a\x20\xb3\x90\xdf\x2a\x8e\ -\x4b\x80\x56\xeb\xef\x33\x13\x98\xcc\x91\x02\x4a\xa6\x7c\x21\xb3\ -\xc8\xe7\xd9\xd0\x70\x0d\xf8\x17\x0d\x01\x2e\x39\x4a\x30\xf1\x7c\ -\xc0\x4c\x01\xce\xe3\xbc\x5c\x87\xeb\xc8\xf5\x00\x04\x4a\x90\x4e\ -\x19\x6f\x1b\x12\x28\x02\xa9\xcd\x5f\x7e\xfd\xe4\xda\xa7\x7f\xf2\ -\x32\x00\xfc\xe3\x8d\xb7\xf1\xc1\x8f\xde\x30\x9c\x02\xd8\x2a\x20\ -\xe1\x7a\x05\x30\x57\x47\x10\x65\x66\x2e\x23\x33\x88\xc3\x48\x41\ -\x14\xf3\x9f\xbb\x04\xf0\xd5\xc1\xa4\x03\x15\x29\xb0\x36\x26\x50\ -\xf3\x2c\xf2\x09\x33\x0f\x80\xbe\x1e\xc0\x9a\xc0\x64\xbe\x71\x00\ -\xb7\x1a\x40\xf9\xcd\xa1\x4b\x64\xdf\x82\xff\xbe\x21\xc0\x45\x4f\ -\x01\xdc\x14\x20\x28\x9e\x9b\x0a\x18\x12\xd8\x1e\x09\x24\x02\x70\ -\x00\xc0\x41\x00\x87\x00\x1c\x16\xc8\xd5\x00\xae\x39\x72\xd7\x33\ -\x2f\xf7\x1e\x07\x08\xad\x92\x10\x54\xba\xbc\xcb\x0e\xf2\xcc\xde\ -\xdb\x3c\xf3\xc4\xe3\x00\xb6\x08\x74\xd9\x01\xfe\x7d\x4f\x01\xb6\ -\x4b\x2a\x81\xd2\x35\xc7\x2e\x09\x94\xe9\x31\x80\x15\x81\xac\x02\ -\x58\x05\x70\x95\xe9\x57\x1f\x39\xf9\xf4\x99\xf9\xe7\x37\x43\x9b\ -\x7b\x16\xb0\x84\x15\x3e\xf0\x10\xc1\xe6\xd9\x27\x1f\x01\xb0\x4d\ -\xa0\x2d\x07\x70\x57\xfe\xaf\x54\x44\x3f\x57\xc6\xed\x51\x1c\x25\ -\x33\x06\x6e\x49\x10\x99\x6e\x95\x60\x15\xc0\x61\xd3\xaf\x12\xc8\ -\x61\xf3\xda\x41\xb3\x8f\xdd\x3f\x5c\x39\xbe\xd3\xd8\x18\x35\x69\ -\x44\x56\xa5\x11\x68\x62\x00\xbe\x62\xe4\xde\x1a\xbf\xcb\x35\xe0\ -\x0b\x00\xd9\xc0\x86\x54\xfe\xa5\xa3\x38\x6a\x6a\x42\x71\x49\x10\ -\x03\x58\x31\x20\xaf\x9a\x94\x60\xfb\xaa\x79\x7d\xc5\xec\xa7\x02\ -\x01\x46\x4b\x12\xd6\xa4\x27\x06\xdc\x89\x53\xf6\x6d\x79\xa6\xaf\ -\x34\xf2\x37\xb0\x21\x8d\x99\xdb\x92\xc0\x82\x69\xfc\x40\x6c\xba\ -\xab\x06\x36\xf2\x0f\x38\xef\x2b\xf4\xbf\xa5\x4d\x68\x79\x65\x70\ -\xcb\x04\x76\x06\x76\x26\xa6\x6f\x3b\x51\x3f\x71\xde\x2f\x05\x7f\ -\x2e\x60\x7c\x12\x38\xf2\xbe\xe2\xf4\x03\x02\xb1\x8f\x7d\xf9\x0f\ -\xe0\x0f\x27\xff\x6e\x0a\xc8\x0d\xd6\x39\x4a\xe0\x0e\xfd\xea\x32\ -\xd9\x6f\x51\x94\x55\x92\xc0\x1a\x43\x57\x11\xdc\xc8\xb7\x3d\x44\ -\xff\x78\x75\x82\x3b\xca\x91\x78\x5d\x7b\x43\xbe\x85\xc8\x6f\x5d\ -\xbc\x19\x12\xb8\x5d\x79\x06\x31\xf2\xc0\x0f\xf2\x3f\x2e\x01\xfc\ -\xa1\x2e\x8d\xe2\xac\x5f\x65\xe4\x77\xaa\xde\x1d\x25\x20\x4f\x0d\ -\x7c\xe0\x83\xf4\xef\x90\x19\x2c\x21\x42\x2e\xea\xeb\xc0\xef\x14\ -\x9d\x1e\x09\xc8\x23\x43\x13\xf8\x81\x14\xbd\x87\x87\x2a\x49\x20\ -\x28\x59\xf9\x53\x07\x3e\x00\xfc\x1f\x37\xdb\x9e\xd9\x19\x4a\x71\ -\xcf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x39\ -\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\x06\x00\x00\x00\xaa\x69\x71\xde\ -\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\x2e\x23\x00\x00\ -\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xd9\x49\x44\x41\x54\x78\ -\x5e\xed\x9b\x31\x0a\xc3\x50\x14\xc3\xfe\xfd\x0f\xdd\x94\x52\x77\ -\x56\xc1\x04\x67\x90\x41\x9e\x02\xf1\xd3\xfe\xcf\x39\xe7\xba\x99\ -\xd7\x1f\xdf\x2c\xf9\xd4\x75\x23\xdf\x9f\x3c\x34\x0a\x48\xd1\x11\ -\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\x41\x01\x0a\x80\x11\ -\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\x19\x05\xa4\xe8\x88\ -\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\xa0\x00\x05\xc0\x88\ -\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\x8c\x02\x52\x74\x44\ -\x83\x02\x14\x00\x23\x96\x51\x40\x8a\x8e\x68\x50\x80\x02\x60\xc4\ -\x32\x0a\x48\xd1\x11\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\ -\x41\x01\x0a\x80\x11\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\ -\x19\x05\xa4\xe8\x88\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\ -\xa0\x00\x05\xc0\x88\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\ -\x8c\x02\x52\x74\x44\x83\x02\x14\x00\x23\x96\x51\xc0\xaf\xee\xe4\ -\xd1\xcf\xe7\xdf\xb9\xa5\x52\x55\x4f\x58\xa8\x78\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x2b\x43\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ -\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ -\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ -\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x2a\x6c\ -\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x7c\x24\x57\x99\xe7\xbf\xaa\ -\x5b\x52\xab\x25\xb5\x72\xce\xa3\xd1\xe4\x64\x7b\x12\x66\xc6\xf6\ -\x18\x1b\x63\x1b\x0c\xac\x81\x73\x20\x18\xf0\x01\xb7\xbb\x2c\x9c\ -\x59\xdf\x62\x0e\x6e\x59\x96\x70\x7b\x07\x4b\xd8\x65\xd7\xec\xc2\ -\x82\xb1\x0d\x06\x6c\xd6\x01\xe3\x88\xc7\x01\x33\xe3\x09\x9e\x64\ -\x4f\x92\x34\xca\x39\xb7\xd4\x6a\xb5\x3a\xd4\x7e\xdf\xab\xaa\x56\ -\x55\x75\x55\x4b\x13\x3c\x92\x66\xf4\xe6\xf7\x4d\x57\x57\x57\xb7\ -\xaa\xde\xf7\x7f\x5f\x7e\xef\x49\x58\x6c\x4e\x2d\x8d\xa8\x86\xa8\ -\x42\xa3\x12\x22\x8f\xc3\xb5\x23\x1a\xb5\x10\x75\x68\xaf\xd1\x85\ -\xf0\x90\xd2\x22\x9f\x45\xcb\x20\xda\x48\xb4\x4d\x7b\x5d\xa1\xd1\ -\x99\xb6\x08\xd1\x71\x8d\x76\x13\xfd\x91\x68\xdf\x42\x01\xc5\xc5\ -\xd2\xea\x88\xfe\x86\x68\x27\x51\x90\x48\x79\x8b\x69\x8c\xe8\x29\ -\xa2\x4f\x13\x95\x2f\x76\xff\xdc\xb4\x7c\xa2\x2f\x10\x1d\x38\x0f\ -\x0c\x9f\x89\x5e\x21\xfa\xa4\x26\x7d\x16\xdb\x5b\xdc\x2e\x23\xfa\ -\xe5\x79\x1a\xe9\x67\x22\x19\xfe\x95\x68\xf9\xa2\x0d\x70\xee\xdb\ -\x95\x44\x5f\x25\xba\xea\x8c\xc4\x45\x7e\x01\xaa\xaa\xab\x51\x56\ -\x5e\x81\xbc\xbc\x3c\xf8\x7c\x3e\xea\x31\x09\x69\x69\x69\x98\x0a\ -\x4d\xf1\xa1\x68\xc3\xc3\x43\x18\x1e\x1a\x46\x67\x47\x3b\x5a\x5b\ -\x5b\xe8\xfd\xf0\x99\xde\xef\xa3\xda\xfd\x1e\x5a\x04\xc0\xd9\xb5\ -\xf5\x44\xdf\x3b\x1d\xc6\xe7\xe5\xe7\x63\xe3\xc6\xcd\x58\xbb\x7e\ -\x03\xd6\x11\xd5\x2f\x5b\x8e\x8c\x8c\x0c\x62\xb2\x64\x21\x4c\x1f\ -\xc3\xf2\x5e\xfb\x7c\xcc\xef\xc7\x91\xc3\x87\x71\xec\xe8\x9b\xd8\ -\xbb\x77\x0f\x76\xed\xfa\x93\x38\x77\x1a\xed\x21\xa2\x2f\x13\x35\ -\x2d\x02\xe0\xf4\x5a\x36\xd1\xb7\x89\xee\x20\x72\xcf\x74\xf1\x52\ -\x62\xf2\xd5\xd7\xbc\x13\x3b\x76\xbc\x43\x1c\xc7\x99\x09\x1b\x66\ -\x9f\x26\x08\xac\x9f\x1f\x78\x7d\x3f\xfe\xf0\xfc\x73\x78\xec\xb1\ -\x47\xd1\xda\xd2\x32\x9b\x67\x99\xd4\x9e\xe5\xeb\x44\xa1\x45\x00\ -\xcc\xdc\x6e\x26\xba\x97\xa8\x20\x29\x42\xb2\x73\x70\xfd\xbb\x6f\ -\xc2\x4d\xef\xbf\x19\xb5\xb5\x4b\x1c\x99\x9b\xe2\x76\x23\x25\x85\ -\xc8\xed\x82\x4b\x26\x72\xc9\x1a\x43\x01\x99\x8f\xd9\xa7\x8b\x29\ -\xe2\x55\x51\x14\x88\x7f\xa4\xd1\x63\x7c\x1c\x53\xdf\x3b\x81\xe4\ -\xf0\xa1\x83\xf8\xe5\x2f\x1e\xc4\x23\x0f\xff\x06\x13\x13\x13\x33\ -\x3d\x57\x8b\x06\xe8\x97\x16\x01\xe0\x3c\xea\x99\xf1\xb7\x24\xbb\ -\xa8\x9c\xf4\xf8\x6d\x1f\xfd\x04\xae\xbb\xe1\x46\xa4\x79\x3c\x71\ -\xc6\xc8\xcc\x18\x59\x86\x27\x2d\x15\xe9\x9e\x34\xa4\xa5\xa6\x20\ -\x95\x18\x2f\x49\x67\xdf\x35\xb1\x58\x8c\x48\x51\x01\xa2\x20\x41\ -\x52\x8c\xf9\x47\xf1\xeb\x5f\x3d\x84\x7f\xfa\xc1\xf7\xd1\xdf\xdf\ -\x3f\xd3\xcf\xb1\x4a\xfb\xe2\xb9\x96\x06\x0b\x1d\x00\x6c\xdd\x3f\ -\xac\x45\xec\x6c\x1b\x1b\x70\x1f\xb9\xe3\x93\xb8\xf6\xfa\x77\xc3\ -\xed\x76\x1b\x46\xb9\x8c\x0c\x62\x78\x66\x46\x3a\x32\xd2\x09\x10\ -\xf2\x5b\xdc\x15\xba\x74\x60\x24\x00\x26\x89\xc3\x06\xe5\xcf\xef\ -\xfb\x99\x06\x84\xbe\x64\xbf\x72\x90\xbe\xf3\x01\xfa\x8d\xa6\x45\ -\x00\x00\x1f\xd3\x46\xbe\x6d\x78\x36\x23\x23\x13\xb7\x7f\xec\x13\ -\xb8\xf9\xbf\xdd\x46\x8c\x4f\x31\x88\x76\x17\x7c\x99\x19\xc8\xce\ -\xca\x80\xdb\xe5\x9a\x93\x1b\x57\x8c\x9d\x6f\x50\x3b\x13\x81\x80\ -\x00\xc1\xbf\xfe\xcb\x0f\x11\x0a\x39\x0e\xf4\x11\x4d\xda\x3d\x73\ -\x31\x03\xe0\x5b\x9a\x38\xb4\x6d\xdb\xae\xd8\x81\xff\xf1\x57\x77\ -\xa1\xb0\xa8\x38\x3e\xd2\x98\xf1\x79\x39\x3e\xc1\xf8\x73\x21\xde\ -\xcf\x65\x93\x65\xb3\x1d\xd2\xd8\xd0\x80\xbb\x3e\xff\x39\xec\xd9\ -\xf3\x9a\xd3\x57\x38\xd4\xfc\x79\xa2\x1f\x9e\xed\xdf\x76\x2d\x30\ -\xc6\xf3\xfd\xfe\x82\xe8\x33\x4e\xa3\xfe\x73\x77\xdf\x83\x8f\x7d\ -\xf2\x33\xf0\xd2\x31\xe3\xdb\x45\xfa\xbd\x20\xd7\x87\xd2\xa2\x7c\ -\xa1\xe7\xe7\x63\x33\xaa\x05\x35\xfe\x90\x8f\xdb\x6e\xff\x30\x3d\ -\x8f\x17\xbb\x77\xed\x42\x34\x9a\x90\x42\x90\x89\x6e\xd0\xa4\xdf\ -\x1f\x2e\x16\x09\xe0\xd2\xfc\xe3\x0f\x38\xb9\x74\x5f\xfa\xdb\x6f\ -\xa0\xb8\xb4\x5c\x3c\x14\x77\x26\x8f\xf6\xe2\x82\x5c\x52\x01\x67\ -\x87\xf3\xe0\xe4\x14\x02\x13\x41\x84\xa6\xc2\x98\x98\x9c\x44\x34\ -\x12\x15\x62\x9c\x3d\x05\x06\x95\xc7\x93\x4a\xb6\x84\x17\x1e\x32\ -\x20\xcf\x56\x20\xbb\xdd\x32\x49\x04\x39\x6e\xa4\xbe\xf9\xe6\x11\ -\x7c\xe2\xe3\x77\xa0\xa5\xb9\x39\x99\x71\xf8\x3f\x2f\x74\x00\x24\ -\x65\xfe\x8e\x6b\xdf\x85\xbf\xf8\xfc\xdd\x22\x42\xc7\x1d\xc7\xc6\ -\x5e\x79\x71\x81\x30\xf0\x4e\x9f\xd9\x21\xf4\xf6\x0d\xa2\x67\x70\ -\x18\x03\x83\x23\x18\xf6\x8f\x93\x3e\x9e\xd2\x2c\x79\x8d\x74\xd7\ -\x4f\x99\xb6\xf0\xf9\x95\xc1\xc0\x6a\xa6\x20\x3f\x07\x15\xf4\xf7\ -\x2b\x4a\x8b\xe8\x9e\x4e\x5f\xea\xb0\xd4\x62\x70\xb1\x61\xca\xff\ -\xfc\xe4\x2d\x30\x08\x5e\x79\xf9\xa5\x73\x0e\x82\x85\x02\x80\xdf\ -\x38\x31\xff\xb6\x8f\x7e\x12\x1f\xba\xfd\xa3\x71\xfd\x99\xe5\xf5\ -\xa2\xbc\xb4\xf0\xb4\x0c\xbc\x40\x30\x88\x96\xf6\x1e\xb4\x75\xf5\ -\x62\x70\x78\x34\x6e\xad\xeb\xcc\x9d\x0a\x87\x31\x49\x46\x19\x8b\ -\xe2\x49\x06\x43\xdc\x8c\x53\xa5\x00\x8f\xd8\xd4\x94\x14\x72\x29\ -\xe5\x78\x3c\x80\xff\xe3\xfb\x29\x2e\xcc\x43\x7d\x4d\x05\x96\x2d\ -\xa9\x12\xde\xc6\xac\x19\xc3\x21\x67\x92\x28\x6a\xcc\x41\x22\x77\ -\x32\x8a\x2f\xfe\xaf\xbb\x71\x1f\x79\x0b\x0e\xed\xff\x12\xdd\x73\ -\x21\x02\xe0\xff\x13\xfd\x75\xa2\xe1\xe4\xc2\x9d\x7f\xfe\x57\x78\ -\xd7\x8d\xef\x8d\xbb\x53\x85\xf9\xb9\x24\xf2\xf3\x30\x5b\x1b\xaf\ -\xb3\x67\x00\xa7\x5a\x3b\xd1\xd5\x37\x10\x67\x78\x84\x98\x3c\x34\ -\xea\xc7\x88\x7f\x0c\xfe\xf1\x71\x02\xc7\xa4\x9d\x0e\xb6\x1f\xb9\ -\x04\x3a\xaf\xc7\x23\x28\x23\x3d\x1d\x5e\x22\xbe\x37\x45\x03\x43\ -\x5d\x55\x19\xd6\xad\xaa\x47\x25\x01\x74\xb6\x2d\x95\x40\x20\xa4\ -\x81\x16\x4c\xfa\xfb\xaf\xfd\x9d\xf0\x14\x1c\xda\x5f\x9e\xae\x61\ -\x38\xdf\x01\xc0\xe9\xd2\x1f\x27\x32\x5f\xc6\xe7\xff\xe6\x2b\xb8\ -\x7c\xdb\x95\xa2\x63\xf9\x7d\x79\x49\x21\x72\xb3\xb3\x66\xc9\xf8\ -\x7e\x1c\x6f\x6a\x85\x7f\x2c\x20\x98\x13\x26\x9d\xde\x33\x30\x80\ -\xee\xfe\x01\x8c\x12\xe3\x63\xca\xf4\x08\x9f\x42\x0a\x26\xa4\x0c\ -\x04\xa5\x74\x84\x91\x86\xa8\x64\x8e\x30\xbb\x95\x30\x52\x95\x10\ -\x59\x63\x41\x78\x95\x00\x5d\x1d\x99\xbe\x4f\xba\x37\xb6\x0d\x72\ -\xb2\x7c\xf4\x9a\x21\x2c\x37\xfe\x65\x96\x0a\x6f\xdf\xb8\x16\x15\ -\x25\x45\xb3\x03\x41\x8a\x5b\xa8\x12\x1d\x04\x3f\xba\xf7\x5e\x7c\ -\xe5\xcb\x5f\x72\xf2\x0e\xde\x7d\x3a\x2e\xe2\x7c\x06\xc0\x16\xa8\ -\x95\x34\x09\x31\xfd\x4f\x7f\xf6\x2e\xbc\xe3\xba\x1b\x45\x87\x70\ -\x88\xb6\xaa\xbc\x58\xf8\xf6\x33\xb5\x91\xd1\x31\xbc\x71\xb2\x59\ -\x8c\x6e\x66\xfc\x38\x19\x76\xcd\xed\x9d\xe8\xec\xed\x43\x34\x16\ -\x53\x6d\x00\xa4\x63\x50\x2e\xc0\xb0\x94\x8f\x51\x39\x07\x53\x92\ -\xe7\xb4\x6e\x3a\x3d\x16\x40\xb6\x32\x82\x5c\x65\x08\xf9\xb1\x3e\ -\xa4\x12\x6c\x74\xbd\x9e\x97\x93\x8d\xbc\xec\x9c\xb8\x7a\x62\x1b\ -\xe1\xca\x2d\x1b\x84\xdd\x30\x53\xe3\xb0\x74\xba\x66\xe3\xcc\x20\ -\x09\x46\xe8\x9a\x8d\xb3\x0d\x16\xcd\x57\x00\x70\xe1\xc6\x41\xa8\ -\xb5\x78\xa6\x76\xcb\x47\x3e\x89\xf7\x7d\xf0\x16\xd1\x11\x1c\xa3\ -\xaf\xad\x2a\x45\x86\x37\xb9\xb1\x17\x8d\xc6\xd0\xd0\xdc\x8e\xd6\ -\xce\x1e\xc1\xf8\x20\x59\xf2\xc7\x9a\x9a\x05\xe3\x79\xb0\x87\x09\ -\x63\x3d\x72\x19\x51\x39\xc6\xe4\xec\x73\xfa\x20\x39\xb1\x41\x94\ -\xc6\x3a\x51\x14\xeb\x21\x4b\x36\x26\xee\x3b\xcf\xe7\x43\x61\x5e\ -\x9e\x50\x19\x0c\x8c\x4b\xd7\x2e\xc7\xa6\x75\x2b\x67\x8c\x46\xb2\ -\x2a\x10\x51\x4b\x0d\x04\x77\x7f\xe1\x2e\x27\x9b\x80\xfb\x6e\x2b\ -\x66\x11\x36\x9e\xaf\x00\x78\x42\x13\x65\xa6\x76\xd5\x35\xd7\xe1\ -\x53\x7f\xf9\x05\x4d\xec\x4b\xa8\xad\x2c\x43\x56\xa6\x37\xe9\x0f\ -\x8d\x07\x26\x70\xe4\xc4\x29\x4c\x90\x2e\x8f\x90\xa8\x6f\x68\x69\ -\xc3\x89\xe6\x56\x11\xa7\x0f\xd1\xf8\x6c\x75\x2d\x41\x97\x5c\x89\ -\x98\x94\x68\x34\x96\xe7\x7a\xb0\xb1\x26\x07\x2b\x4a\x33\x51\x57\ -\xe4\x45\x49\xb6\x07\x99\x1e\xb3\x40\xea\x19\x9d\x44\xef\x68\x08\ -\x8d\x7d\x01\x1c\x6c\xf5\xe3\x60\xfb\x28\x02\xa1\x44\x9b\x81\x55\ -\x45\x45\xb4\x15\x95\xb1\x16\xa1\x26\x58\x6d\x15\x93\xbf\x9f\x97\ -\xad\x02\xae\x30\x2f\x07\xef\xba\x6a\x0b\x3d\x4f\x72\x49\xc6\x86\ -\xa1\x97\x41\xa0\x19\x86\x1f\xfa\xe0\x07\x9c\xbc\x83\x59\x79\x06\ -\xf3\x11\x00\x1c\xe2\x4d\x80\x75\xdd\xb2\x15\xf8\x3f\xdf\xfc\x0e\ -\x89\x4f\x35\x9e\x5f\x5d\x5e\x32\xa3\xce\xef\x1d\x1c\x12\x23\x9f\ -\x25\xc0\x30\x19\x76\xbb\x0f\xbd\x21\x00\xc1\x23\xbe\xc5\x55\x87\ -\x4e\xb9\xca\xc4\x78\x17\x81\x6a\xdb\xb2\x3c\xbc\xff\xd2\x12\x5c\ -\xb7\xa6\x10\x35\x05\xde\xd3\xbe\xf9\x48\x54\xc1\xbe\x96\x11\xfc\ -\xfe\x70\x1f\x1e\xde\xdb\x8d\xe6\x81\x89\x04\x20\x54\x46\x9b\x51\ -\x45\x40\x60\x89\x90\x4e\x06\x63\x45\x71\xb1\xf0\x22\x98\xae\xdd\ -\xbe\x09\x55\x65\xc5\x49\xff\x06\xc7\x1d\x74\x10\xb0\x8b\x78\xed\ -\x35\x57\x3b\xc5\x09\xae\xc2\x0c\x59\xc4\xf9\x06\x00\x7e\x72\xae\ -\xa4\xcd\x31\x9e\xcc\x24\x23\xea\xeb\xdf\xfe\x67\xe4\x17\x14\x0a\ -\xe6\x97\x14\xe5\xa3\xa4\x30\x3f\xe9\x0f\xb1\x4b\xd7\xd9\xdd\x27\ -\x0c\xba\x93\x34\xe2\x0f\x1e\x3b\x29\xc4\x7f\x9f\x54\x8c\x93\xee\ -\x55\xa4\xdb\xd3\xe2\xd7\x16\x64\xa5\xe2\xbf\x5f\x51\x85\x5b\xb6\ -\x94\xa3\xd8\x97\x76\x4e\x1f\xe8\x40\xdb\x28\x7e\xf2\x4a\x1b\x1e\ -\x3f\xd0\x8b\xa9\x48\x6c\xda\x56\x20\x83\x71\x45\xe4\x0d\xb2\x15\ -\x86\x85\xb1\x58\x46\x20\xc8\xce\xcc\x14\xcf\xb7\x6d\xd3\x3a\xac\ -\xaa\xaf\x4d\xfa\xbb\x1c\xe3\xf0\x68\x86\x21\x07\x8b\xae\xbf\xee\ -\x9d\x76\xf9\x83\x16\xa8\xd5\xcd\xa1\x85\x12\x0a\x66\x8b\x7f\x63\ -\x82\xd1\xf7\xb9\xbb\x51\x57\xbf\x5c\x24\x4e\x58\x44\x56\xce\x30\ -\x42\xda\x89\xf9\xdd\xfd\x83\x82\xe1\xaf\xd1\xa8\x3f\xd6\xd4\x42\ -\x42\xd7\x85\xa3\xae\x75\x68\x76\xd7\xc7\x2d\xf9\xfc\xcc\x54\xdc\ -\x75\xdd\x12\xfc\xbf\x0f\xad\x12\xa2\xde\xed\x92\x10\x22\x26\x9d\ -\x4b\xca\xcd\x48\xc1\x3b\x56\x16\xe0\x03\x9b\xca\x30\x39\x15\xc3\ -\xb1\xee\x31\x61\x77\x44\xa4\x54\xf4\xb8\x2a\xc4\x7d\xb1\x9d\x30\ -\x46\x2e\x27\xdf\x2f\xbb\x8f\x6d\x9d\xbd\xc2\xf2\x2f\x2a\xc8\x75\ -\x7c\xc6\x70\x38\x4c\x36\x01\xc7\x09\x24\x14\x15\x15\x8b\x20\xd8\ -\x4b\x2f\xbe\x98\x60\x82\x68\xaf\x3b\x17\x82\x04\x78\xbb\x66\xf5\ -\x9b\x4f\x5e\x79\x35\xee\xfc\x8b\xbb\xc4\xc8\x60\x11\xb9\xa2\xae\ -\x3a\x69\x68\xb7\x83\x5c\xbc\xbe\x81\x21\x11\xbc\x79\x71\xf7\x7e\ -\x72\xef\x06\x11\x40\x06\x8e\xa4\x5c\x42\xee\x5c\xa6\x8a\x7a\x7a\ -\xea\x5b\xb7\x56\xe0\xce\x2b\xab\xe0\x4d\x75\xbd\x75\xbd\xa2\x24\ -\x9e\x6a\xee\x9f\xc0\xb7\x9e\x6c\xc0\xc1\xb6\xe9\x12\x31\x5f\x6c\ -\x04\x6b\x23\xaf\x93\x93\x39\x25\xa4\x40\x79\xb1\x9a\xc4\xda\x7a\ -\xc9\x6a\xac\x5d\x51\x97\x34\x62\x98\x4b\x1e\x84\xac\x45\x0c\xdf\ -\x73\xe3\xf5\x76\x09\x24\xae\x2c\x5a\x03\x87\xf2\xb2\xf9\x04\x80\ -\xbd\xd6\xd1\x9f\x99\x99\x85\x6f\x7c\xf7\x5e\x64\xf9\xb2\x85\xd5\ -\xbb\xb4\xa6\x22\xa9\x91\xd4\xd3\x37\x88\xfe\xa1\x61\x4c\x4d\x45\ -\xf0\xec\xab\xbb\xd1\x3f\x38\x4c\x3e\x51\x0e\x0e\xbb\x2f\x15\x23\ -\x4e\xb8\x5e\x64\xd8\x7d\xe9\x3d\xf5\x58\x5a\x9c\xe9\xfc\xf4\xd2\ -\x99\x76\x93\x32\x23\x00\xf4\xf6\xe8\xbe\x6e\xfc\x07\xa9\x86\xc9\ -\xb0\xaa\x16\x3c\x4a\x10\xeb\xc3\xfb\x08\xaa\x01\xf8\x32\x32\x50\ -\x51\x52\x22\x40\x70\xf9\x65\x6b\xb1\xb2\xbe\xc6\xd9\xed\x24\x35\ -\xe0\xd3\x32\x9c\x9c\x45\x7c\xc7\x8e\x2b\xed\x54\x01\x87\xd1\x6f\ -\x9d\xcf\x2a\xe0\xbd\x44\x77\x25\xb8\x7c\x1f\xfb\x14\xea\x97\xaf\ -\x52\xc5\x75\x6e\x36\x59\xca\xb9\x8e\xc5\xd5\xec\xdb\x33\xc3\xb9\ -\x1c\xeb\xd9\x3f\xee\x46\x1f\x19\x80\xcc\xfc\x43\xee\x8d\x24\xf2\ -\xd5\x24\x0d\x1b\x78\xf7\xbc\xbb\x1e\x39\x24\xfa\xa7\xc8\x30\x64\ -\x9d\xac\x92\x42\xef\x0d\x14\xb1\x92\x76\x5d\xd4\x81\x8c\xbf\x63\ -\xa4\x84\xdf\x9c\xbe\x76\x49\x51\x06\x36\xd6\xe6\x08\x49\xc0\x5e\ -\x43\x84\xee\xb1\x5f\x2e\x41\x7e\xac\x1f\x4a\x38\x20\x24\x98\x8f\ -\xa4\x01\x4b\xb4\x82\xbc\x6c\x01\x0a\xbb\xe7\xe6\x20\x16\xbb\x87\ -\x1c\x0f\xe1\x2c\x62\x88\x5c\xdc\xdd\xbb\x77\x59\xbb\x92\x25\x00\ -\x57\x1c\xf7\xce\x57\x09\xc0\x13\x35\x36\x18\x4f\x54\x54\xd5\xe0\ -\x7f\x7f\xe3\x1f\x45\xd0\x84\x83\x20\x6c\x14\x39\xc5\xf7\x27\xa7\ -\xa6\x84\xde\xe7\xf2\xab\x17\x76\xef\x45\x53\x6b\x87\x81\xf9\x6e\ -\xf1\x94\x37\x5d\x52\x8a\x3f\xbb\xac\xc4\xf2\xc4\x92\xf9\xbd\x34\ -\x5b\x19\x29\x39\x0f\x71\x65\x16\xaa\xc0\x10\x69\x1c\x0b\x46\xf0\ -\xfd\xe7\x9b\xd1\xd8\x33\x2e\xae\xe3\xa8\xe2\x25\xe1\x3d\x42\x12\ -\x14\xe4\xe6\x0a\x57\x91\xed\x81\x9b\xae\xdd\x8e\xac\x0c\xaf\x43\ -\x08\x5a\x16\x6e\x24\xc7\x11\xb8\xa8\x64\xeb\xe6\x4d\x76\x95\x45\ -\x0c\x80\xf7\xcf\x47\x09\x70\xa3\xdd\xe8\xbf\xed\xe3\x9f\x41\x59\ -\x45\xa5\x30\xfc\x38\xcc\xcb\xc1\x1e\xbb\xc1\xcf\x11\x3c\x16\xfd\ -\x6c\xed\x1f\x3e\xde\x40\x3e\x7f\x23\x02\x52\x06\x0e\xa4\x6c\x45\ -\x94\x5c\x46\x2e\xfa\x7b\xff\x65\x65\xb8\x66\x75\xe1\xf4\x48\x8c\ -\x8f\xcc\x58\xe2\x28\x8d\xda\x8c\x5c\x72\xeb\x13\xce\xdb\x51\x24\ -\xe6\xf0\x7d\x87\x6b\x22\x6a\xa1\xe0\x86\x2a\x1f\x1a\xfb\x83\x18\ -\x09\x86\x05\x60\x07\xe5\x42\x14\x45\xbb\x31\x35\x19\x20\xbf\x3f\ -\x55\x8c\xf0\x5e\xb2\x6b\xea\x6a\x2a\x04\xf8\xac\x7d\xc0\xc0\x87\ -\xb0\x91\xdc\x48\xa5\xeb\x39\x1b\xba\x73\xe7\x0b\xd6\x2e\x5d\xa1\ -\xa9\x82\xc1\xf9\x06\x80\x1f\x10\x2d\xb5\x8e\xfe\x0f\x7e\xf8\x13\ -\xf1\xc0\x47\x55\x79\x89\xe3\x97\x87\x47\xc7\x10\x22\x09\xd0\x4b\ -\xc6\xde\xf3\x7f\xda\x23\x7c\xfc\x03\x69\x5b\x30\xe5\xf2\x70\xd2\ -\x00\x37\xac\x2f\xc6\xe5\x4b\xf3\x30\x15\xd3\x3a\x3d\x66\x61\xa8\ -\xf1\xbc\x7e\xcc\x9f\xc7\xac\xe7\x66\x41\x09\xdf\x89\x25\xfe\x86\ -\xe9\x58\x05\x03\x5b\x01\x6b\xca\x7d\x38\x35\x38\x81\x51\x92\x08\ -\xac\x0e\x46\xe5\x3c\x94\x44\x3b\x11\xa0\x11\x9d\x9d\x95\x25\xec\ -\x1a\x6e\x25\x85\x79\x0e\x5e\x41\x24\x1e\x25\x5c\xb3\x66\x2d\x1e\ -\x7c\xe0\x7e\xbb\x8a\x63\x76\x7f\x9e\x9c\x4f\x00\x58\xae\x45\xac\ -\x12\x74\x7f\x49\x99\x1a\x05\xe6\x84\x89\xd7\x21\x8d\xca\x05\x1a\ -\x9c\xb1\x0b\x47\x22\x78\xec\xb9\x97\xc4\xfb\x37\x53\x37\xc0\xef\ -\xce\x13\xa6\xfe\xe6\x25\xb9\x78\x7b\x7d\x5e\x22\xa3\xad\x0c\x37\ -\x82\xc2\x8e\x61\xa7\x43\x4e\x60\x88\xc5\x12\xef\xc1\x20\x81\x78\ -\x10\xaf\x2c\xcd\xc2\xf1\xbe\x00\x82\xa4\xd7\x43\x72\x3a\xa2\xc4\ -\x9e\xbc\xe8\x00\x82\x64\xd4\xe5\xfa\x7c\x64\xd7\x0c\xa3\xba\xbc\ -\x58\x48\x85\x04\x2d\xa3\x95\x1d\xa7\x09\x09\xe0\x12\x52\xc3\x41\ -\x0a\xf0\x80\x0b\xcf\x17\x00\x70\x9a\x77\x9b\xf1\x44\x5e\x7e\x21\ -\x3e\xf4\x91\x3b\x45\xa9\x36\x3f\x4c\x65\x79\x71\x5c\x8d\x9a\x88\ -\x1e\x78\xd4\x3f\x2e\x44\xff\xee\x83\x47\xd0\xd2\xd9\x8d\x2e\x77\ -\x39\xda\xd2\x96\x0a\xb1\x5f\x91\xef\xc5\x35\xab\x0a\x11\x56\x8c\ -\xa3\x19\x89\x0c\xd3\x3f\x57\x0c\xd7\x28\x0e\xcc\x55\x92\x30\xdd\ -\xf1\xbc\x95\xf1\x36\x40\xd0\x24\x01\x07\x90\xab\xf3\xd2\x71\xac\ -\x37\x80\x28\xfd\x2d\xbf\x2b\x17\x39\xd1\x41\xb8\xc3\x63\xc2\xfe\ -\xe1\x64\xd0\xc8\xd8\x38\x6a\xab\xca\x6c\xd5\x21\x4b\x81\x4c\x21\ -\x05\x64\xd4\xd7\xd7\xe3\x3f\x7e\xf2\x63\x11\x2f\x30\x26\x16\x89\ -\x4e\x69\x36\xd7\xbc\x00\x00\x87\x7c\x4d\xa9\xb0\x6b\x6e\x7c\x1f\ -\x96\x6a\x96\x3f\xd7\xf1\x89\x22\x0a\xb5\xe4\xc6\x44\x3c\xda\x43\ -\xf4\x70\x1c\xe2\x7d\xfa\xe5\xdd\x98\x22\xb1\x79\xd8\xbb\x19\x31\ -\xd9\x85\xb4\x34\x17\x6e\x58\x5b\x24\xc4\x21\x7b\x59\x61\x4e\xf9\ -\x52\x67\x33\x18\xd4\x57\x65\xfa\x9c\xf1\x73\xeb\x35\x31\x1b\xb2\ -\x9e\x8f\x3a\x5c\x17\xb5\x39\x8e\x3a\x5c\x63\x78\xe5\x70\xb4\x2f\ -\xdd\x8d\xe6\xa1\xa0\xd0\xf7\xa3\x04\x82\xb2\x70\x1b\x82\x93\x41\ -\x91\x44\x9a\x08\x86\x50\x94\x9f\x63\xdb\x2f\x3c\x28\xb8\x4e\x82\ -\x6b\x08\x78\xee\x43\x57\x67\x27\x0e\x1f\x4a\x98\x66\xc8\x3a\xe4\ -\xa7\x46\x9d\x30\x97\x81\x1f\x53\xb6\x8f\x13\x24\x9b\x2f\xbf\x52\ -\x7b\x10\x09\x39\xd9\x3e\x31\x12\x6c\x2d\xff\x50\x58\x20\xfd\x8f\ -\xfb\x0f\x89\xeb\x9b\x3c\x2b\x11\x71\xa5\x8a\xd1\xbf\xa9\x26\x17\ -\x0a\x31\x3f\xc0\xa1\x57\xc9\x60\xed\xeb\x95\x22\x92\xd1\xba\x37\ -\x78\x02\x92\x8d\x67\x90\xe0\x0d\x48\xf6\x26\xbe\xa3\xf5\xaf\x4c\ -\x7f\xa6\x18\x3e\x50\x0c\xef\x15\xc5\x74\x6d\x71\xb6\x47\x48\xb0\ -\x0e\x02\x41\x50\xca\x24\xa9\xb6\x04\xb5\xa1\x46\xf4\x0f\x0d\x91\ -\x0d\x50\x88\x83\x6f\x36\xe0\x9a\x2b\x36\xdb\xf6\x8b\x3f\x30\x11\ -\x2f\x85\xbb\xf5\xb6\xdb\x71\xff\xcf\xef\xb3\x5e\xc2\x12\x97\xd7\ -\x27\xe8\x9c\x6b\x00\xbc\x2f\x21\xe1\x43\x23\x3f\xcb\x97\x23\x18\ -\x9a\xed\xcb\x12\x80\xb0\xe3\x3f\x57\xe8\x30\x2f\x07\x86\x86\x85\ -\xcb\x37\x21\x7b\xd1\xe3\xa9\x14\xcc\xe7\x58\x7e\x81\x2f\x15\x13\ -\x3a\xf3\x05\xd3\x15\x0b\x00\x8c\x4c\x57\x2c\x20\x50\xec\x5d\x44\ -\x58\x3f\x9f\xc9\xf5\xb3\x01\x86\x62\x05\x83\x0e\x04\x25\x01\x0c\ -\x6b\xca\xb3\xd0\x33\x16\x42\x84\x9e\xa3\xdd\xb3\x14\x15\x53\x2d\ -\x18\xf2\xfb\x51\x90\x97\x87\xc1\x11\x3f\x7a\xfb\x87\x50\x54\x90\ -\x68\x10\x4e\x91\x1a\xe0\xb2\x35\xce\x13\xf0\x24\xd7\xea\x9a\x1a\ -\xbb\xb9\x88\x9c\x69\xfd\xd1\x5c\xab\x00\x36\x46\x4c\xf3\xf8\xae\ -\xb9\xe1\xbd\xa8\xa8\xae\x15\x9d\x5f\x5e\x52\x20\x44\x99\x5d\xf4\ -\x23\x12\x56\xab\x72\x5f\x20\xab\x7f\x60\x78\x04\x0d\xde\xd5\x18\ -\x4f\xcd\x15\x76\xc3\x86\xaa\x6c\x21\x19\x22\x5c\xde\xc5\x31\x77\ -\xf1\x6a\x3c\xb6\x9e\x33\xbe\x37\x9c\x83\xf5\x1a\xb5\xdc\xc6\xf4\ -\x5e\xa7\x18\x12\x7f\x2b\x66\xfc\x8c\xdf\x2b\x89\xef\xe3\xc7\xd0\ -\xde\x4f\x1f\xab\x60\x95\x30\x34\x11\x16\x6a\x4d\x56\xa2\xc8\x0d\ -\x0f\xc6\xeb\x1e\x23\x64\xf8\x56\x94\x15\xd9\x47\xc5\xa8\x79\x3d\ -\x6a\x52\x6b\x70\x60\x00\xaf\xbd\xb6\xdb\xce\x1b\x78\x70\x2e\x25\ -\x40\x35\x6c\xd6\xe0\x59\xb5\xf6\x52\x31\xfa\x39\xb0\x91\x41\x62\ -\x4c\xb1\x19\xfe\xfa\x29\xce\xef\x1f\x3f\xd5\x8a\x49\xd9\x83\x5e\ -\x6d\xf4\x17\xd2\xe8\x67\xa9\x11\x8c\xc6\xb4\x51\xae\x4c\x8f\x76\ -\xc9\x22\xfa\x25\xbb\xd1\x6f\x90\x16\xb3\x09\x0e\x25\x13\xfb\xb0\ -\x88\xf8\x84\x51\x6f\x91\x0a\x16\x35\xc0\xbe\x61\x71\x76\x1a\x5a\ -\x46\x82\x64\xc8\xc5\xd0\x91\x5e\x87\xea\x60\x23\xd9\x3c\xa3\x64\ -\x03\xe4\xa3\xab\x6f\x10\x41\xb2\x07\x38\x35\x6c\x6d\x5c\xc7\x98\ -\x9f\x93\x2d\x7e\xeb\x1d\xd7\x5c\x8b\x1f\x7c\xff\x7b\x76\x6a\x80\ -\x07\x7f\x74\xae\x00\xb0\xcd\x7a\xa2\xb4\xa2\x0a\x99\xbe\x6c\xc1\ -\x74\xb5\xc8\x43\xb2\x15\xff\x62\xd6\x2d\x31\xfb\xcd\x86\x26\x71\ -\x6d\x57\x7a\x35\x14\x02\x0c\x33\x6f\x70\x32\x82\xc3\xbd\xe3\xa2\ -\x68\x23\xd3\xe3\x42\x46\x5a\x0a\xf8\x23\x33\x00\x0c\x4c\x97\x2c\ -\x0c\xd5\xcf\x29\x06\x15\xa0\xdf\x84\x34\x8b\x18\xbf\xe2\x04\x02\ -\xc5\x86\xe1\x16\x30\x58\x81\xa0\x19\x76\xc5\x3e\x0f\x3a\x86\x83\ -\x22\x97\xd1\x97\x56\x8e\xd2\x50\x3b\xc6\x03\x01\x11\x26\xe6\x94\ -\x77\x7d\x6d\xa5\x8d\x8a\x8c\x89\x52\x76\xae\x23\xbc\xe4\xd2\xcb\ -\x48\xad\xfa\xac\xeb\x13\x64\x6a\x79\x97\xd7\xe6\x0a\x00\x5b\x13\ -\xf4\xff\xb2\x95\xda\x88\x57\x0b\x29\x63\xb1\x98\x63\xd8\x53\x21\ -\x00\xbc\x71\x52\x4d\x6e\xf5\x78\xab\xc5\xe8\x67\x62\x37\x6a\x24\ -\x14\xc1\x08\xa9\x08\x8c\xf3\xb9\x20\xd2\x53\x19\x08\x6e\x91\xf5\ -\xe3\xe3\x34\xb7\x6c\x60\xb6\x26\x25\x14\xed\x58\x51\xcc\x76\x83\ -\x62\x33\xda\xa5\x99\xc2\xbc\x4e\x3a\xdf\x00\x08\xeb\x68\x4f\x02\ -\x00\x9f\x37\x05\x92\x7f\x12\x0a\x75\x47\x37\x3d\x2b\x03\x60\x64\ -\xcc\x2f\x82\x43\x5d\x3d\xfd\xa8\xab\xb6\x5f\x6f\x8a\xa5\x40\x2a\ -\x0d\x00\xb2\x86\xf1\xb6\xb7\x5d\x8e\x67\x9f\x79\xda\x6e\x10\xce\ -\x1f\x00\x54\xd7\x2d\x8b\x8b\x7c\x76\x71\x38\xa9\x93\x20\x79\x65\ -\xb5\x02\x78\x88\x8d\xa0\x81\x21\x8c\xa6\xe4\x62\x32\x25\x43\x65\ -\x8a\x98\xe7\x2d\xa9\x93\xa6\x24\x49\x7b\x0f\x52\x07\x0a\x89\x4a\ -\xd2\xde\x04\x0c\x3e\xef\x72\x49\x48\xe7\x02\xcb\x14\x19\x9e\x14\ -\x17\x91\xac\x4d\xc9\x32\x72\x58\x99\x7d\xca\x44\xb1\xbc\x51\x1c\ -\xbc\x00\xc5\x01\x04\x33\xbd\x8a\xfe\x70\x63\x9c\xa4\xdb\x88\xa7\ -\x10\x21\x39\x4d\x54\x35\x71\x5f\x0d\xfb\xc7\x30\x35\x15\x16\x41\ -\x1f\x6b\xe3\x09\x2e\x39\x8a\x9a\xf1\xdc\xb4\x69\xb3\x1d\x00\xb6\ -\xce\xa5\x0d\xb0\xc6\x7a\xa2\xa2\xb2\x56\x3c\x94\x88\x62\xa5\xa4\ -\x98\x4a\xb3\xf5\x96\xc2\xc6\x10\x31\xab\xa9\xad\x43\x35\x70\xd2\ -\x8a\xb5\xd1\x6f\x64\xba\xe1\xbd\xe9\x58\x7d\x25\xff\x01\xe3\x91\ -\x28\xc6\xd9\x4e\xe0\xda\x3d\xfa\x4e\x1a\x49\x95\x34\x02\x02\x4b\ -\x87\x54\x02\x08\x17\x86\x24\xc8\x7c\xdd\x45\x54\x1c\x50\xa0\xd8\ -\xa9\x02\x0b\xc3\x67\xcb\xfc\x98\x62\x3a\xe7\x49\x25\x00\x4c\xa9\ -\x75\x86\x43\xf4\xcc\xa5\xc1\x36\xb2\x81\x82\xc8\x24\x63\xb0\x7f\ -\x68\xc4\xb6\x3a\x8a\xa3\x87\xfa\x80\x5a\xb9\x6a\xb5\xdd\x4d\xaf\ -\x98\x2b\x00\x70\x85\x83\x29\xb6\xeb\x49\x4f\x47\x4e\x7e\x81\x78\ -\x5e\x5e\xa4\x41\x71\xf0\xfd\xdd\x34\xfa\x19\x00\xad\x1d\x5d\x2a\ -\x00\xbc\x25\xc9\x01\x20\x1b\xfc\x7f\xe3\x71\x9c\xd4\xf7\xd4\x55\ -\xa2\x7a\x07\x9a\xeb\xc8\x31\x88\x54\x06\x85\x5b\x22\xd0\x49\xe2\ -\xef\x4a\xc9\x04\x81\x92\xe4\xa4\x62\xb1\x0d\x66\x3b\xf2\x0d\xc7\ -\x6e\x02\x27\xe7\x35\xf8\xcd\x30\x49\x01\x06\x00\xcf\x66\xe2\xb9\ -\x06\x3c\x93\xa9\xd8\xc6\x1d\x8c\x72\x84\x91\xa4\x03\x7b\x52\x6b\ -\xd7\xad\x73\x02\x80\x6b\x2e\x00\xb0\xd4\x7a\xa2\xa0\xa8\x34\xce\ -\x74\x0e\xff\x3a\x02\x80\xa4\x03\xf3\xad\xb3\xb7\x9f\x0b\xac\x11\ -\x48\xcb\x99\x06\x40\x9c\xf9\x66\x10\xd4\xe5\xa5\x63\x5b\xa5\xcf\ -\xcc\x7c\xa3\x0d\x60\x17\x00\xb2\x49\x19\xab\x40\x50\x69\xd6\x45\ -\x20\xc9\xbc\x00\x13\x38\xcc\xcc\x7f\xe8\xcd\xfe\x04\xc0\xf0\xa4\ -\xd1\x08\x49\xad\xd1\x74\xf2\x9c\x87\xd5\xe9\x6c\x7c\xfb\xfe\xf1\ -\x80\x63\x7f\x85\xc2\x11\x21\x4d\xd9\x08\xcc\xcd\xcd\xb5\xae\x5e\ -\xc6\xbc\xaf\x99\x0b\x00\x24\xd4\xfa\xe7\x17\x16\xc7\x1f\x82\x73\ -\xff\x31\x3b\xfd\xcf\x93\x3e\x5d\x2e\x21\xda\xd8\x06\x08\xa4\x64\ -\x23\xa6\xa5\x7b\x13\x46\xbd\x61\xb4\x6f\xab\xf2\xe1\x67\x37\xd6\ -\x63\x21\xb5\x07\x18\x00\x16\x8f\x42\x76\x4b\xc2\xa0\x0b\xa6\x66\ -\x21\x2c\xa7\x88\x7e\xe0\x32\xb0\x40\x60\xd2\xb6\xbf\x44\x50\x88\ -\x24\x80\x22\x12\x69\x12\xaa\xab\x6b\xec\x96\xaf\xab\x90\xe7\x03\ -\x00\x7c\x39\xb9\xf1\xb9\x79\x6c\xd0\x98\x67\xde\x2a\xf1\xd0\x30\ -\x1b\x81\x3c\x6f\x4f\xc4\x01\x52\x7d\xd3\xcc\xd6\xc9\x65\x7d\xaf\ -\x8b\xce\x85\xd5\xc2\x56\x52\x60\x7a\xae\x89\x94\x2c\x11\x0d\x8d\ -\x91\x6b\xc0\x99\x50\x4e\x02\xd9\xf5\x99\xf1\x7c\x79\x45\xa5\xdd\ -\x9f\xaa\x99\x8b\xde\x49\x58\xc5\x8b\x17\x73\xd0\xa7\x58\xbb\xd9\ -\xcd\xb3\x79\x18\x76\xff\x58\xff\x73\xe9\x97\x30\x72\x52\x32\x13\ -\x01\x60\x62\xbe\x6b\x5a\x12\x2c\xb0\x16\xa1\x9b\x8e\x48\x5a\xe4\ -\x91\x89\x27\x98\x1a\xa4\x9b\xf0\x7c\xa0\xce\x5a\x66\xc9\xa8\x1b\ -\x7c\x09\x00\x88\x4c\x03\x20\x37\xcf\xb6\xc2\x38\x67\x2e\x54\x40\ -\xa6\xf5\x44\xba\x37\x33\x1e\x03\xe0\x07\x62\x64\x5b\x9b\xac\x4d\ -\xff\xe6\x00\x87\xd0\x6f\x29\x1e\x33\xc3\x75\x57\x50\x96\x13\x8d\ -\xbe\x05\xd6\xa2\xd6\xc0\x14\x0c\x12\x80\x19\xef\x56\x93\x3d\x1c\ -\x2b\x11\x8b\x4c\x85\xa7\xa8\xcf\x12\xe7\x33\xa8\x00\x50\x55\x48\ -\x6e\x6e\xde\xbc\x01\x80\x6d\x74\xcf\x68\xc8\xd8\x19\x35\x5c\x02\ -\xcd\x31\x80\x61\x4d\x02\x44\x49\x0f\x26\x02\x40\x36\xbc\x37\x18\ -\x87\x0b\x12\x00\xd6\x68\xa5\x12\x7f\x16\x91\xf5\xd4\x18\x2c\x52\ -\xde\x9c\x1b\x71\x08\x9b\x8b\xb5\x0c\x14\xe7\x3e\x98\x0b\x00\xd4\ -\x24\xa8\x00\x96\x00\xd0\xad\x5d\x97\xed\xc3\x88\xf9\x80\xda\xb2\ -\x29\xa6\x11\x61\x02\x81\xcd\xf1\x02\x54\x01\x1c\xe9\x14\xb1\x00\ -\x01\x6a\x1e\xea\x06\x40\x5b\xbc\x14\xee\x17\x5e\xd3\xc0\xae\xcf\ -\x58\x45\x28\x5a\x74\xd3\xe5\x50\x50\x3b\x2f\x24\x80\xa4\xa7\x7d\ -\x09\xe5\x4e\x16\xad\xfe\xb0\x92\x51\x3c\xc6\x99\x2f\x27\x7a\x01\ -\x46\x10\x2c\xb4\x66\xbc\xe7\x78\x77\xc8\x6a\x86\xc8\x06\x00\xdc\ -\x79\x76\xfd\xa6\xc4\xa6\x25\xab\xa3\x67\x3d\x07\x8f\xd7\x61\x3d\ -\xc1\x2b\x66\xea\x36\x00\x5b\xae\x76\x33\x7f\x84\x21\x2c\x4b\xe6\ -\x9c\x7e\x9c\xf9\x36\xb1\x00\x59\x32\xe7\xfd\x17\x22\x00\xa4\x69\ -\x9e\x9b\x40\xa0\xf5\x81\x2e\x0f\xf5\x55\x48\x6c\xf3\x26\x9a\x0d\ -\x10\x89\x46\x6c\xed\xcd\xb9\x00\x40\xc4\x4e\x59\xe9\x0f\x10\x8d\ -\x45\xe1\x52\x64\x5b\x83\x86\xf3\xfc\xb9\xbe\x2c\xad\x2b\x62\x66\ -\x9d\x6f\x07\x00\x1d\x20\x0b\x15\x00\xb6\xa3\x56\xa6\xfe\x51\xbb\ -\x50\x4c\x0e\xd5\xd6\x35\xb6\xb5\x01\xe2\xb6\x95\xe4\x2c\x02\xe6\ -\xe0\xf1\x26\x13\x4e\x4c\x4e\xc4\x1f\x80\xf5\x99\xdb\x46\x30\xb1\ -\xc5\xcb\x12\x40\xaf\x10\x4e\x8b\x4e\x1a\x18\x0f\x7b\x3b\x40\x5e\ -\xc0\x12\xc0\x34\xfa\x15\x93\xdc\x4f\x89\x4c\x6a\x23\xdc\x15\x5f\ -\x2b\x21\xe6\x60\x37\xe9\xfd\xea\xb7\x5f\xae\x7e\x7c\x2e\x00\xd0\ -\x63\x3d\x31\x21\x66\xc6\xaa\x0f\xca\x16\x6d\x5a\x6a\xe2\xc3\x84\ -\x42\xaa\xcf\xcb\x33\x60\x04\xfa\xa7\xc6\xcc\x8c\x4f\x66\x0c\x2e\ -\x44\x00\x28\x76\x4a\x50\x15\xfc\xe9\x53\xe3\x9a\x04\x98\x5e\x16\ -\xcf\xde\x73\x9a\x36\xa8\x87\x86\x86\xec\xfe\xd2\xc0\xbc\x00\x80\ -\x7f\x74\x38\x2e\xaa\x78\x92\x87\xdd\x3c\x00\x9e\xfe\xc5\x48\xd7\ -\x13\x1f\x19\x93\x7e\x43\xc6\x4f\x72\x96\x00\x32\x2e\x10\x00\x4c\ -\x03\xc1\x1b\xf2\x8b\xd1\x2f\x96\xa6\xd3\x52\xe4\x76\x46\x20\x57\ -\x18\xeb\x00\xe8\xea\xec\xb0\xb5\xc7\xe6\x85\x11\x38\x3c\xd0\x1f\ -\xbf\xd1\x49\x6d\x51\xc6\x04\x1b\x80\x8c\x43\xae\x74\xe1\x29\x62\ -\x39\x64\x07\x44\xc6\x47\xd5\x1a\x0e\x59\x32\x67\xf8\x2c\xd2\xa0\ -\x27\x14\xc5\xce\xde\x80\xa5\xec\xcb\xe2\x4e\x59\x53\x7d\xb3\x9e\ -\x35\x8c\x24\xba\x1a\xb3\xa8\x15\x80\x7d\xf1\x28\x87\xb4\xed\xeb\ -\x61\x90\x1a\x0a\x20\x35\x12\x42\x46\x66\x86\x78\x94\x64\xc9\x33\ -\x4e\x04\xe9\x9f\xb5\xb5\xb6\xce\x1b\x00\x34\x5a\x4f\x0c\xf6\xf7\ -\xc4\xe3\x00\x4e\x00\x10\x0a\x6b\x22\x48\xcc\xcf\x44\x4d\x45\x29\ -\x46\x8e\x9e\x24\x29\x30\x8c\xf1\xac\x82\xa4\x21\xe1\x67\x7a\x02\ -\x78\xa6\x6f\x62\x86\x94\xb1\x31\x55\x0c\x4b\x1d\xa1\x64\x0f\x12\ -\x38\x30\x77\xc6\x54\xaf\xa2\x32\x57\xdd\x5d\x62\x3a\xf7\xcf\xe7\ -\xf4\xf7\x56\xd7\x55\x99\x8e\x0a\x66\x07\x06\xc4\x29\x9f\xb6\x9a\ -\x48\xba\x27\x09\x00\x84\x6a\x20\x15\x3b\x11\xc0\xe0\xe0\x80\xdd\ -\x25\x2d\xf2\x1c\x01\xc0\xe4\x09\x04\xe9\x06\x03\x6c\x07\xd0\x3f\ -\x9e\xf8\xc0\x06\x8d\x1d\xf9\xc7\x27\xc4\x6a\x9c\x2b\x96\x54\x8b\ -\xef\xe5\x8d\x76\x26\xcf\x07\x58\x3d\x04\x53\xd2\x48\x36\x27\x8f\ -\x5c\x76\x24\x27\x5e\x6f\x47\xc6\xdf\x72\x25\x21\xdb\x9c\x85\x83\ -\x0d\xe3\x20\xd5\x72\xfd\x6a\x2d\x04\x4b\x41\x15\x00\x69\xb6\x7d\ -\xc5\xff\x38\xb3\xca\xe0\x68\x38\x79\xc2\x8e\x0f\xbc\x14\x4f\x68\ -\x2e\x00\xc0\xa5\x2d\x6f\x58\x4f\xb6\x37\x37\x6a\x09\x8c\xb0\x98\ -\xce\x64\x97\xdc\xe0\xa9\x60\xfc\xd0\x6b\x97\xab\x25\x05\xf9\x23\ -\x9d\xb6\x62\xdf\x39\x41\x34\x9b\xf3\xb2\xf9\x75\x26\x06\xcb\x06\ -\xb0\xb8\x0c\xbf\x61\x04\x90\xd3\x6f\x9d\x01\xe5\x0f\x77\x8a\x88\ -\x68\x5e\xb6\x4f\xbc\xb2\x2b\x68\xd7\x57\xea\xfc\x41\x15\x08\xbc\ -\x45\x8d\x03\x00\xe6\xcc\x44\xda\x67\x3d\xd1\xd5\xde\x1c\xdf\x5e\ -\x85\x45\xbd\x2d\x00\xc6\xc6\x45\x1a\xb4\xac\xb8\x10\x45\xf9\xb9\ -\xc8\x1e\xed\x85\x9b\xdd\x41\xc9\x1a\x19\x4c\x32\xfa\x9d\xa4\x80\ -\x4b\x76\x96\x02\x09\xa3\x5d\x9e\x4e\x35\x9b\x80\x20\x27\x8e\xf6\ -\xd3\x1d\xfd\x4e\xc4\xf3\x01\xc6\x07\x90\x1e\x1a\x17\x93\x66\xb8\ -\x36\x22\x2d\x2d\x45\x9b\x3c\x93\xd8\x57\x2a\x30\xd4\xbc\xca\x11\ -\x7b\x00\xec\x9b\x4b\x00\x24\xcc\x54\x68\x3f\x75\x32\x3e\xd7\x7d\ -\x3c\x10\x14\xaf\x76\xd4\x3f\x3c\x22\x2c\xdf\xb7\x5d\xba\x16\xbc\ -\x34\x73\x69\x6f\x83\xa5\x08\x04\x86\xd8\x00\x66\x27\x11\xec\xea\ -\x08\x5c\x86\x91\xeb\xd6\xce\x71\x45\xb1\xdb\xc0\x54\x3e\x76\x6b\ -\x60\x70\x5b\x01\x63\xa3\x62\x92\x32\xdd\xc9\xa5\x9d\x7e\xa6\x92\ -\xde\x93\xa2\xaf\x4a\x0b\x0b\x84\x24\xe4\x35\x89\x9d\xfa\x49\x14\ -\xd6\x6a\x8b\x5d\xef\xdb\xb7\xc7\x8e\x07\x7f\x9c\x4b\x00\x24\x2c\ -\x06\xd5\xd3\xd5\x8e\xc9\x89\x09\x01\x02\xb5\xcc\x29\x66\x4b\x3d\ -\xbd\x83\x02\x00\x57\x6c\xba\x44\x7c\xaf\xac\xeb\xb8\xbd\x2b\x28\ -\x9d\xc1\xa8\x73\x59\x44\xbd\xdb\xc0\x7c\xd7\x0c\xfa\x3d\x41\x52\ -\xd8\xfd\xa6\x3c\xc3\x7d\x58\xc0\x6b\x90\x6a\x32\x3d\x7b\x49\x4f\ -\xa3\xc8\x8a\x96\x14\x14\xc4\xf5\xbf\x5d\x1f\xf1\xa3\x7b\xb4\xda\ -\xca\x46\xd2\xff\x43\x83\x83\x76\xc1\xb8\xdd\x73\x09\x00\xb6\x4a\ -\x5a\xcc\x89\x8b\x18\x9a\x4e\x1c\x89\x2f\xde\xcc\x75\xed\x36\x93\ -\x82\xc5\xbc\x38\x2e\x79\xe6\x25\xd4\xd6\xaf\xac\x47\xc6\xc4\x28\ -\x0a\xfa\x5b\x9c\x63\x02\x92\x74\x7a\x52\xc0\x65\x61\x7a\xc2\x75\ -\xb2\x99\x64\x3b\x15\x60\x90\x08\x67\xa2\xeb\xa5\xc4\x60\x56\x59\ -\xe7\x51\xa4\x44\xa6\x50\x5e\x5c\x24\xb6\xbf\x61\x11\xaf\xcf\x9d\ -\xb4\x92\x58\x3a\x57\x53\x05\x3b\x77\xfe\xc1\x49\x02\x87\xe6\x12\ -\x00\xdc\x12\x0a\xd5\x4f\xbe\x71\xd0\x60\xf0\x05\x1c\xbd\x81\xd6\ -\xce\x5e\x31\x02\x6e\xdc\xf1\x76\xf1\xbd\xda\xa6\x7d\xe6\x5c\x80\ -\x0d\x10\xf4\x90\xa9\x20\x97\xe1\x98\xeb\x0c\xb8\xda\x88\xcf\xb9\ -\x25\xf5\x58\xbf\x46\x9c\xd3\x3e\xe3\xf3\xf1\x63\xeb\xe7\xb2\xf6\ -\x5d\x2b\xc9\xd3\xbf\xa9\xff\xae\xcd\xdf\x97\x74\x55\x23\xd9\x25\ -\xb3\xd4\xd1\x5f\x7d\xea\x80\x78\x5b\x5b\x59\x2e\x9e\x85\xa3\x80\ -\x4e\xfd\xc3\x6b\x09\xc5\x34\xfd\xff\xc2\xf3\xcf\x26\xed\xfb\xb9\ -\x4c\x07\xf3\x76\x6f\xa6\xbd\x7f\x5a\x1a\x8f\x61\x32\x38\x01\x4f\ -\xba\x57\x18\x7c\x85\x79\xd9\xb6\x1b\x3c\xb5\x75\xf4\x60\x59\x6d\ -\xa5\x58\x38\x6a\x45\x5d\x0d\x8e\x37\xb5\xa0\xb0\xe7\x14\xfa\xcb\ -\x97\x3a\x26\x85\x52\x89\x51\x29\x2e\x4b\xf2\xc8\x65\x53\x3b\x20\ -\x3b\xc5\x04\x24\xfb\x60\x90\xdd\x94\x2f\xa3\xdf\x1f\xb3\xd4\xfa\ -\xf3\x6b\xd4\x10\x0b\xe0\xb5\x01\x78\x2a\x97\x62\x89\x5a\x2a\xfa\ -\xf0\x54\x50\xde\x76\x04\x69\x53\x41\x94\x97\x14\x21\xd3\x9b\x1e\ -\xdf\x04\x4b\xb1\x99\x3d\xc5\x61\xe1\x74\xd6\xff\xf4\xaf\xb9\xb9\ -\x59\xa8\x00\x87\xbe\xc7\x5c\x4b\x80\x17\x39\x16\x6d\xf2\x0f\x23\ -\x11\x1c\x3f\xbc\x3f\xbe\x71\xc3\x28\xdb\x02\xb0\x59\x09\x83\x3e\ -\x6b\x6a\xed\x14\x31\x81\x5b\xde\x73\xad\xf8\xee\xd2\xa3\x7f\x12\ -\x23\x25\xce\x30\x19\xa6\x39\x01\x5e\x02\x80\x37\xc5\x42\x6e\x79\ -\xfa\xbc\xdb\x42\xe2\x1a\x97\xf6\x99\x2b\xf9\x75\x6e\xed\x9a\x64\ -\xbf\x6d\x3d\x97\x6a\x3e\x9f\x90\xc2\xd6\xee\x3f\x35\x14\x44\xcd\ -\xc9\x7d\x42\x52\xac\xac\xab\xd5\x76\x12\x49\x75\xdc\x8a\x3c\x3b\ -\x2b\x53\x75\xff\xa8\x0f\x1f\xff\xcf\x47\xec\xfa\x9d\x5d\x82\xf8\ -\xa2\x91\x73\x39\x3d\x9c\xef\xb7\x8a\xc8\xb4\xd2\x81\x7f\x64\x08\ -\xeb\x36\x6d\xd7\x52\xc0\x51\xb1\xf1\x93\x9d\x9b\xc3\x8b\x43\xd5\ -\x54\x94\xa0\x38\x3f\x4f\xac\x9d\xd3\xd5\xda\x06\x29\x16\xc5\x70\ -\x49\xb5\xad\xee\xce\xe4\x39\x82\xa9\xbc\x76\x8e\x2a\x09\x52\xe8\ -\xbc\xfa\x4a\x24\x6b\xef\xe3\x9f\xc9\x62\x1e\x40\xfc\xbc\xfe\xea\ -\x92\xb4\xf3\xb3\x20\xc9\x72\x2c\x59\xce\x1b\x3e\xe7\x29\xe2\x13\ -\x51\xc3\x0c\x12\x43\x60\x6f\xe5\xbe\xe7\xe0\x1b\x1d\xc0\x8a\x25\ -\x35\x28\x2e\xc8\x17\x40\xd0\x03\x3c\x56\x12\x46\x71\x71\x81\xb8\ -\x66\x2a\x14\xc2\x37\xbe\xfa\x15\x84\x42\x09\xc9\x57\xde\x5a\xe6\ -\xb5\xf9\x00\x00\x6e\xbc\x98\xdd\xa7\x4c\x51\xc1\xc0\x38\x4a\xab\ -\x6a\x91\x9d\x5b\x20\x7c\x7e\xde\x89\x8b\x1f\x38\x21\x3d\xcc\xeb\ -\xfe\x87\xa6\x50\x59\x5a\x84\xe5\x4b\xaa\xf0\xe2\x6b\xaf\xc3\xd3\ -\xd7\x81\xe1\xe2\x4a\x84\x32\xb3\x13\x0c\x3b\x0f\xef\x1b\x98\xe6\ -\x12\x53\xbf\x52\xdd\xea\xcc\x1f\x33\xd1\x39\xd9\x70\x6c\x3a\xa7\ -\xbd\x17\x33\x86\x24\xf5\x55\x27\x49\x3f\x86\x7a\x2c\x69\xaf\xfc\ -\x3e\x7e\x0d\xa6\xaf\x33\xbe\x6a\x34\x1e\xa1\x67\xd1\xc5\xb9\x21\ -\xa4\x5c\xd4\x7e\x02\xb5\xc7\xf6\x8a\xc9\xb2\x1b\xd7\xac\xd2\x32\ -\x7f\x2e\xc7\x80\x34\x47\x07\xf5\xe5\xf3\x9f\xfa\xdd\xe3\xa4\xff\ -\x9f\xb1\xb3\xfe\xef\xe0\x6e\x9e\x2f\x00\xe8\x26\x7a\x17\x2c\x73\ -\x05\xc6\x46\x86\xb1\x6a\xc3\x66\x21\x03\xb9\xae\x8d\xa5\x80\x5d\ -\xe3\x2d\x5f\x78\xad\xdc\x82\xdc\x1c\x94\x95\x14\x62\xd7\xfe\xc3\ -\xc8\xeb\x6d\x43\x6f\xcd\x72\x44\x79\xb7\x2e\x43\xa0\x27\x4a\x9d\ -\x57\xe9\x75\x1b\x98\x2c\x5b\x98\x6a\x78\x6f\x07\x04\x23\x18\x64\ -\x2b\xc1\xe6\x9c\x81\xf1\x3a\x20\x24\x18\x98\x0f\x71\x8e\x25\x41\ -\xdb\x64\x44\x98\x05\xd3\x00\x50\xe0\xf5\x0f\x63\xdd\x2b\x8f\xc3\ -\x45\x40\xbf\x62\xe3\x25\x42\xaf\x0b\xa3\xd1\x21\xbd\xcd\xe0\x28\ -\xd7\x46\x3f\x0f\x9c\xbf\xff\xca\x17\x31\x36\xe6\xb7\xd3\xfd\xf7\ -\x9b\x32\x86\xf3\x20\xf9\xc9\xc9\x6d\xd3\x8e\x60\x63\xa3\xc3\xa8\ -\xa8\xae\x83\x2f\x27\x4f\x64\x00\xc5\x02\x88\x29\xf6\xf6\x6a\xff\ -\xe0\x08\x6a\x2a\xcb\x84\x24\xe0\x08\x62\x4b\xe3\x29\xf8\x06\x7a\ -\xd0\x53\xb7\xda\xe4\x77\x47\x89\xb2\x48\xdf\xe6\xb1\x1a\xd0\x45\ -\xbc\xae\x06\xe2\xa2\x5e\xb2\xa8\x00\x69\x5a\x15\xd8\x1e\xb3\x28\ -\x87\x41\xcc\x43\x23\xa3\xa8\x87\x45\xf4\xc3\xa4\x16\x06\xc3\x51\ -\xf4\x4d\xc5\x4c\x99\x41\xf7\x64\x10\x1b\x5e\x78\x04\x9e\x60\x00\ -\x97\xac\x5a\x2e\x5c\x3f\xeb\xba\x15\xd6\xc6\x7b\x27\xf0\x5c\x41\ -\xbe\xea\xb9\xa7\x9e\xc0\x53\x4f\x3e\x61\x77\xd9\x1d\xda\xa0\x9b\ -\x57\x00\xe0\x98\xf4\x6d\x50\x57\xaf\x32\xd9\x02\x2b\x37\xa8\xe6\ -\x01\xaf\x08\xa6\x8b\xb6\x04\x83\x90\x0c\x47\xce\x11\xd4\x54\x96\ -\x62\xed\xb2\x3a\xb1\x37\x80\xbf\xbd\x0d\x19\xa3\x83\xe8\xaf\x59\ -\x66\x02\x81\x9f\xbe\x50\xeb\x4d\x81\x37\x2e\xd2\x8d\x52\x40\xb6\ -\x8c\x70\xd9\xf2\x6a\x50\x03\xc9\x46\x3a\x19\xa6\xd3\xaa\x00\x89\ -\xc7\xf2\xf4\x7b\x66\xfb\xc1\xf1\xf0\x74\x35\x0f\xbd\xb8\xc2\x53\ -\x58\xff\x87\x47\xe1\x1b\xee\x43\x6d\x45\x19\xd6\xad\x58\x16\xaf\ -\x88\x52\xb4\x0d\xeb\xac\xc4\xb5\x01\xa5\x45\x6a\x70\x28\x1a\x8d\ -\xe0\x6b\x5f\xb9\xc7\x6e\xf4\xb3\xd1\xfd\xad\x84\x9a\x81\x79\x00\ -\x00\x11\xfc\x83\x65\xd1\x28\x96\x02\x79\x45\xa5\xc8\x2b\x2c\x8e\ -\x17\x3b\xf0\xca\xd8\x76\x3d\x30\x16\x98\x88\x6f\x24\xb1\x79\xfd\ -\x6a\xec\x39\xf4\x26\x62\x5d\x1d\xc8\x18\x19\x40\xff\x92\x65\xf1\ -\x59\x42\x31\xa2\x51\xea\xec\xba\x74\x37\xd2\xe2\x23\x5e\x4a\x94\ -\x00\x09\xa3\x5d\xb6\x18\x6e\xfa\x79\x98\x8d\xba\xf8\xe8\x47\xe2\ -\xb1\x3e\xfa\xa1\x9e\xe7\x7f\xaf\x11\xf3\xc5\x34\x75\x8d\xff\x82\ -\xf9\xcf\x3c\x8c\x9c\xfe\x4e\x94\x90\xc1\xb7\x9d\x44\xbf\x28\xfb\ -\x26\x90\x8b\x05\x33\x1c\x4c\x7f\x2e\x92\xe1\xb8\x00\xb7\x47\x7e\ -\xf5\x20\x5e\x7c\xe1\x39\xa7\xd1\xdf\x3a\x1f\x01\x00\x2d\x3b\x98\ -\x20\x05\x7a\x3b\x5b\xb1\xfa\xd2\xad\x02\xe1\x5c\x29\x94\x9e\x9e\ -\x26\x42\xa1\x76\x8d\x17\x8c\xe0\x65\xd3\x0b\xf2\x72\xb0\x65\xc3\ -\x6a\xbc\xfe\xc6\x09\x0d\x04\x24\x09\x96\x2c\x8f\x27\x6f\xd8\xfa\ -\x19\x24\x40\x2d\xf1\x90\xbf\x6c\xb2\xec\x2d\xd6\xbf\x6c\xb1\xfa\ -\xe3\x8c\x96\xa7\x45\xbc\x64\x05\x01\xcc\x40\x80\xfe\x6a\xfe\x8c\ -\xf5\xfd\x4b\x63\x53\x18\x30\xec\x20\xe2\xa2\xe7\x5b\xff\xd4\xaf\ -\x91\xd3\xd7\x29\xf6\x3f\xbc\xfa\x6d\x1b\xc5\x73\xf3\xaa\x5f\x0c\ -\x00\xa7\xc6\x51\xbf\x02\xad\x4c\x6e\xa0\xbf\x0f\xdf\xfc\xea\x97\ -\x11\x0e\x4f\xd9\x8d\xfe\xbf\xb3\xfb\xfe\x7c\x01\x00\x63\xf9\x94\ -\x06\x82\x78\x9b\x0a\xf1\x46\x4f\x61\x54\xd5\x2d\xd7\xaa\x85\xc2\ -\x22\x10\xa2\xaf\xd3\x60\xa5\xf6\xae\x3e\xa1\x0b\x79\x44\xc4\x41\ -\xd0\xd9\x8e\xdc\xae\x36\x0c\xd6\xd4\x21\xca\x2b\x67\xf1\xe4\x4a\ -\xfa\x81\x56\xea\xfc\xd2\x54\x37\xf2\xdd\x46\x66\xc3\x2c\x15\xec\ -\x5c\x3b\xc9\xce\xdd\x33\xe8\x7d\x23\x08\x60\x91\x02\x6c\xb3\x90\ -\xc5\xff\x0c\x31\x7f\x24\xa2\xc4\x0b\x49\xd2\xc9\xe8\xbd\xe4\xb1\ -\x07\xe1\x1b\xec\x13\x23\xff\xda\xb7\x6f\x11\xc5\x1c\x53\xf4\xbc\ -\x5c\x0a\xe7\xe4\xf3\x33\x40\x38\x38\xa4\x1b\x86\xff\xf8\x0f\x5f\ -\x47\x53\xe3\x49\x6b\xdf\x32\x7a\xfe\x0c\x36\x4b\xc5\xcf\x17\x00\ -\x70\x75\xc7\x55\xda\xe8\xe7\x65\x4b\x32\xcd\x52\xa0\x1d\x15\xb5\ -\x4b\x91\x95\x9d\x2b\xc4\x20\xaf\x0e\x9e\xee\xb1\xdf\xd7\x87\x7d\ -\xe1\x8e\x9e\x3e\xe4\x64\x65\x89\xcd\x19\xaf\xdc\x72\x29\x1a\x5b\ -\xdb\xe1\x6f\x6d\x45\x51\xc3\x31\xf8\x4b\xca\x11\xca\x56\xd7\x14\ -\xe0\x31\x72\x82\x0c\xb0\x20\x75\x5e\x15\xc7\x08\xac\xc6\xa0\x0e\ -\x06\x13\xb3\x65\x33\x10\x12\x98\xee\xa0\x06\xa0\x2e\x3f\xfb\xca\ -\x44\x04\xaf\x04\xc2\xe2\x58\x17\xfb\x05\x8d\x27\xb0\xfe\xf1\x5f\ -\xc1\x43\xee\x6f\x5d\x75\x05\xae\xb9\x7c\x33\x5c\x04\x4a\xae\x8c\ -\xe2\x95\xd0\x9c\x1a\xf3\x9c\x55\x1e\x2f\xa6\xcd\x6f\x5e\x78\xfe\ -\x69\x3c\xf4\xc0\xcf\xec\x2e\xfd\x37\xa2\x9f\xe0\x34\xab\xdc\xce\ -\x47\xe3\xdd\xc1\x78\xab\xd3\x8d\x33\x5d\xc8\xcc\xbf\xf5\xd3\x7f\ -\x8d\x34\x8f\x1a\x06\xcd\xcf\xf5\x89\xbd\x75\x9c\x1a\x8f\x88\xed\ -\x9b\xd7\x0b\xc3\x90\xb7\x8a\xbb\xff\xd1\xa7\xf0\xf4\x4b\xbb\x10\ -\xa3\xf3\xed\x97\x6e\x41\xf3\x15\x3b\x10\xe3\x82\x09\xcd\x45\xe4\ -\x0e\x5f\x4f\x76\xc1\x26\x52\x0b\xc5\x7a\x54\x2e\x59\x38\x38\x11\ -\x79\x8e\x25\x60\xbd\x34\xd2\xf7\x07\xc3\x38\x10\x54\x6b\x1a\xd5\ -\x30\xb0\x02\x37\x79\x2c\x4b\x89\x69\x65\x47\x0f\x8b\x67\xda\xb2\ -\x7e\x8d\x28\x74\xe1\x6c\xde\x58\x20\x88\xb1\xf1\x89\xa4\x7d\xc2\ -\x7d\xc0\x9b\x68\xf0\x77\xfb\x7b\x7b\xf0\xd9\x4f\xdd\x81\x40\x60\ -\xdc\x7a\x19\x47\x5a\xb9\x7a\x66\xd4\xe9\x77\xe6\x42\x02\xf0\xea\ -\xcf\xbf\x23\xfa\x3c\x07\xae\x66\xf3\x85\x65\x2b\xd7\xe0\xf2\xed\ -\x3b\x10\x08\x86\xe2\xaa\x20\x8d\xc4\xb7\xcb\x61\xef\x20\xb6\x95\ -\x5b\x3a\x7b\xe2\x91\xb1\x0d\x2b\xeb\x85\xab\x78\xe4\x78\x23\xbc\ -\xad\xcd\x28\x3e\x7a\x04\x21\x5e\x77\xb7\xa8\x48\xd8\x05\x5c\x58\ -\xda\x4d\xcc\xda\x1f\x8e\xe1\x04\x31\x87\xed\x04\x0f\xef\xf4\xe9\ -\x52\x2d\xfb\x44\x3b\xc0\x40\x16\xfd\xce\x77\xd4\x4d\x7c\x3e\x40\ -\xd2\xe5\x69\x62\xfa\x4b\xe4\xe3\x77\x45\x62\xd3\xab\xcd\x11\x08\ -\x4a\x0f\xbd\x8e\x75\xbf\x7d\x08\x39\xdd\x9d\x22\x71\x73\xe3\x8e\ -\x6d\x62\xf4\x8b\x25\x60\x46\xc7\x84\x3b\x9b\xac\xf9\xe8\x3b\xba\ -\xde\x9f\x22\x15\xf1\xb7\xf7\x7c\x01\xbd\x3d\xdd\x76\x97\x7e\x14\ -\x86\x85\xa1\xe7\x83\x04\x60\x65\xfe\x3c\x6c\x16\x89\x70\x6a\x6b\ -\x36\x6c\xc4\xc7\xff\xfc\x2e\xd2\xed\x3e\xb1\x32\x48\xab\xc6\x58\ -\x9e\xf6\xc4\x01\x20\xa7\xf8\x80\xde\x78\xb3\x89\x2b\xb6\x6c\x10\ -\xa2\x92\x13\x4c\x0f\x3c\xfa\x34\x5e\xd9\xab\x56\xc8\x8c\x15\x97\ -\xa0\xf9\xca\x1d\x18\x58\xbd\xca\xb6\xba\x87\x17\x8b\x2a\x21\x89\ -\x50\xc4\x3b\x72\xd0\x71\x96\xc6\x7c\x63\xaf\xf1\x22\xcf\x63\x5c\ -\xa8\x42\xd4\x47\x8c\xee\x21\x8a\x88\x51\xae\x8d\x76\x6d\xc4\x4b\ -\x64\xcc\x15\x1f\x38\x88\x9a\x57\x5e\x82\x77\x78\x48\x8c\xdc\x4b\ -\x57\x2f\xc7\xc6\xb5\xab\x44\x75\x0f\x1b\x7b\x6c\xc8\xf2\xaa\x1e\ -\xc9\x1a\x97\xcc\xb3\xcb\x27\x16\xcc\xa0\xfb\xf8\xfe\xb7\xbf\x85\ -\x9d\xcf\x3d\x6d\x77\xa9\xe3\x3e\x41\x73\x05\x80\xe5\x9a\x35\x5a\ -\x72\x26\xcc\xe7\x68\x20\xc7\x02\x0e\x1f\x6f\x42\x6b\x47\x8f\x96\ -\xf9\x72\x09\x31\x38\xd3\x56\xf1\x5c\x1d\x23\x36\x6b\x2e\x2d\x12\ -\x2e\xe5\xc9\x96\x36\x3c\xf4\xc4\x73\x22\x8b\xc8\x2d\x50\x50\x80\ -\xae\x8d\x1b\xd1\xbd\xf1\x32\x44\x38\x99\x62\x2d\x0c\xb1\xd6\xf1\ -\x49\x86\xc5\x03\x63\xd3\x4c\x86\x0d\xe3\x3d\x03\x83\x28\xd9\xbb\ -\x1f\x65\xfb\xf7\xc1\xa3\xcd\xce\xe1\xd1\xbe\xed\xb2\xf5\x22\x74\ -\xcb\x76\xcb\x88\x7f\x1c\x7d\x83\x23\x8e\x6b\x23\xea\x8d\x6b\x00\ -\x58\xa2\xb1\x27\xc4\x00\x7a\xf8\x97\xf7\xe3\x17\x3f\xb7\x55\xef\ -\xfc\x60\x1b\x92\x89\xfe\xf3\x0d\x80\xa4\xcc\x2f\x24\xe3\xac\xac\ -\xb2\x5a\x58\xbe\x7d\x24\x16\xdb\x5a\x9a\x6c\x99\xcf\x31\x71\x1e\ -\x01\xcf\xbd\xb2\x47\xec\xad\x27\x40\x40\xcc\xcf\xcd\xc9\xb2\x5d\ -\x2b\xcf\xda\x96\x54\x95\x61\xd3\xfa\x95\x6a\x29\x15\xe9\xda\xa3\ -\x0d\xcd\x78\x72\xe7\xab\x38\x74\xac\x41\x0d\xb6\x50\xc7\x8e\xd6\ -\x54\x63\x70\xc5\x72\x0c\xad\x5a\x81\x40\x45\x29\x94\x14\xb7\xb9\ -\xf0\xd3\xb0\x50\x83\x9e\xce\x35\x32\x5e\x26\xe3\x2d\xa3\xad\x13\ -\xf9\x47\x8f\x23\xff\xd8\x09\x64\xb7\xb7\xc7\x43\xb5\x5c\xcd\xbc\ -\x99\x74\x7d\x41\x5e\xae\xd0\xf5\x93\x93\x21\xb1\x75\x7d\x60\x62\ -\x72\xc6\x7b\xe7\xb5\x7f\x8b\x0b\xf3\x35\xe6\x03\xcf\x3e\xf5\x04\ -\xfe\xed\x9f\xbf\x6b\x77\x29\xff\x18\x2f\x02\xb9\x7f\x36\x8c\x91\ -\xe6\x92\xf9\xde\x8c\x2c\x5c\x7f\xf3\x47\xb0\x72\xcd\x7a\xb1\xc4\ -\x39\x33\x98\xfd\xda\x9e\x8e\x56\x78\xb3\xf3\xc5\x16\x71\x46\xe6\ -\xb3\x0b\xe8\xd5\x62\x01\xbf\x79\x72\x27\xda\xbb\xd5\x8d\x91\xf8\ -\x7d\xb6\x2f\x53\xb5\x88\x67\x68\x7c\x2d\xef\xc5\xb7\x66\xf9\x92\ -\xf8\x5a\x04\x7d\x03\xc3\x78\x79\xef\x01\xec\x7a\xfd\x88\xc8\x2c\ -\xc6\xd3\xd3\x04\xaa\x40\x59\x09\x02\x25\xc5\x98\x2c\x2e\x44\x28\ -\xc7\x47\xc6\x63\x8a\x09\x00\xae\x89\x10\xd2\x46\xfd\x48\xef\xed\ -\x83\x97\xee\x27\xa3\xbb\x07\xb2\x61\x24\xb3\x4b\xba\x66\x59\x1d\ -\x56\xd7\xd7\x09\xf0\x2a\xda\x5e\x07\x5d\xbd\xfd\x42\xa5\xcd\xa6\ -\xf1\x73\x73\x6c\x40\x15\xfb\x12\x76\xbf\xfa\x32\xbe\x47\x2e\x1f\ -\xef\x1d\xec\x10\xf0\xb9\x6f\xb6\xcc\x91\xe6\x92\xf9\x1f\xfc\xf8\ -\x67\x51\x59\x55\x6d\x62\x7e\x86\xd7\x23\x2c\x7c\xce\x00\x06\xc8\ -\x18\xe2\xf7\x46\xe6\x73\xc4\x8b\x3f\x9b\xa0\x51\xf3\x9b\xdf\xbf\ -\x20\x7c\x7f\x61\xf9\x13\x63\xd9\xa0\x62\x31\x39\x9b\xc6\x12\x63\ -\xd9\x92\x4a\xac\x5c\x5a\x2d\x00\xa6\x17\x53\x32\x63\x78\xe3\x29\ -\x5e\x88\xba\xa5\xa3\x3b\xbe\x26\xd1\x6c\x1b\x6f\x05\x5f\x4e\x60\ -\xa9\xae\x28\x43\x5d\x55\x85\xc8\xcf\x8b\x30\x2e\xdb\x0a\x81\x09\ -\xf4\xf4\x0f\x62\x70\xd8\xef\x38\x99\x23\x31\xc6\x9f\x29\xa4\xa0\ -\xbe\x36\xc2\xce\xe7\x9e\xc2\xbf\xff\xf0\x7b\x4e\xea\x82\x53\xbd\ -\xf7\x9c\xce\xfd\x4a\xf3\x91\xf9\x5e\x7a\x65\x91\x27\x82\x21\x91\ -\x88\x38\x36\x32\x9f\xa7\x89\xb1\x9b\x34\x30\x32\x8a\x97\x77\x1f\ -\xa0\x4e\x1d\x8a\x8b\x59\x06\x80\x5e\x35\x33\xdb\x56\x5a\x94\x47\ -\xea\xa1\x5c\x6c\x49\x9b\xaa\x4d\xa7\x8a\x89\x02\x4b\x45\x80\x90\ -\x8d\x33\x5e\x91\x93\xfd\x72\xb1\x44\x8d\x56\x6d\xcb\xde\x06\x4f\ -\x57\xe7\x45\x99\x59\x9f\x73\xad\x7e\xaa\xb6\xcc\x9d\x5e\x9e\xc5\ -\xf5\x8b\xfd\x24\x61\x58\xca\xcc\x64\xdd\x9b\x5c\x59\x5e\xfd\x9c\ -\x54\x05\x3f\xb7\xa4\x95\xb4\x3d\xfe\xc8\xaf\xf0\xd0\xfd\x8e\x2e\ -\xfd\xac\x8c\xbe\xf3\x05\x80\xb3\x66\x3e\x4f\x79\xe2\xfd\x70\xd5\ -\xd2\x27\x45\x74\xb2\x91\xf9\xbc\x5c\xdc\xc0\xd0\xa8\xd8\x2c\xb2\ -\xb1\xb5\x23\xae\x47\xf5\x9c\x39\x83\x60\x26\xe3\xd0\xae\xb1\x7b\ -\xc5\x3b\x73\x15\xe6\xe7\xa8\x5e\x46\xaa\x3b\x3e\x5f\x41\x7d\x8d\ -\x4d\xbf\x17\xe7\x62\xf1\x63\xbe\x4f\x66\x32\xa7\xa9\x59\xbc\x0f\ -\x12\x40\x67\xa3\xdf\xad\x8d\x9f\x95\xcb\xe1\xb8\xbc\x4b\xcc\x12\ -\xa7\xbf\xf9\xd3\x7b\x7f\x80\x17\x13\xf3\xfb\xc6\x34\xef\x2d\x50\ -\x27\xdd\xcc\x39\x00\xce\x19\xf3\x59\xa7\xf3\x88\x74\x69\x3a\x97\ -\x2b\x84\xac\xcc\xef\xa5\x91\x35\x40\xa3\x93\x57\xca\x0a\x93\x4f\ -\xac\x07\x8b\x78\x04\xb1\x34\xf0\x70\xc0\xe7\x2c\xa6\x88\xf3\x88\ -\x56\xef\xd3\x23\xb6\xae\xe7\x7b\x93\xc4\xde\x7d\x8a\x08\xec\xf0\ -\x08\x67\x50\x72\x15\x33\xaf\xdf\xcb\xab\x79\x9e\x69\xe3\x00\x56\ -\x4e\x76\x16\xa9\xb2\xf4\xf8\xa8\x1f\x1e\x1c\xc0\x3f\x7d\xe7\x9b\ -\x68\x3a\x79\xfc\x9c\x33\xff\xad\x00\xc0\x39\x67\x3e\xaf\x1b\xc8\ -\x46\x13\xcf\x19\xe4\x42\x07\x16\xc1\x76\xcc\x7f\xfa\xe1\x9f\x93\ -\x07\xd1\x81\x77\xbe\xff\x76\x94\x55\x2d\x89\x77\x20\x1b\x7d\xfc\ -\x9b\x6e\xf7\xbc\x58\x0e\x29\x49\x52\xc7\x23\x42\xd8\x1c\xdf\xd0\ -\xf5\xfd\xeb\x7b\x77\x8b\x91\x3f\x3e\xe6\x7f\x4b\x98\x7f\xae\x01\ -\xf0\x96\x31\x9f\xc5\x2a\xcf\x16\xe2\x51\xe6\x17\x3e\x73\x22\xf3\ -\x9b\x8e\x1f\xd1\x54\x80\x8c\xf5\x5b\xb6\x63\xeb\x8e\xeb\x49\x7c\ -\x4f\xeb\x4f\xfe\x2d\xf1\x9b\x6e\xd7\xbc\x62\x3c\xe7\x35\x7c\xe4\ -\xed\xb0\x7a\xd3\xd7\xfb\x09\x8c\x8f\xe1\xd7\x0f\xfc\x04\xaf\xbe\ -\xf4\x42\xb2\xaf\x7e\x9b\xe8\xee\xb3\xfd\xfb\xd2\x42\x61\x3e\xbf\ -\xb2\x41\xc6\x2a\xa0\x95\xac\x73\x06\x80\x95\xf9\xd6\xfc\xc1\xb6\ -\x77\xbe\x17\xf5\xab\xd6\xc7\x41\x20\x49\xea\xaa\x19\x29\x29\x2e\ -\x2d\xad\x3c\x37\xa9\x10\x56\x4f\xcc\x78\x61\xa7\xb8\x5d\xf1\xfb\ -\x63\x7b\x62\xd7\xcb\x2f\xe0\xb7\xbf\xbc\x0f\xe3\xe3\x8e\xde\x07\ -\x67\xf7\x3e\x93\x2c\xc1\x73\xbe\x01\x70\xde\x98\xcf\x06\x15\x5b\ -\xe2\xec\x9a\x35\xb7\x75\xe1\xc9\x5f\xff\xd4\x96\xf9\xa6\x50\x70\ -\x75\x1d\xb6\x5e\xf5\x2e\x54\xd4\xd6\xc7\x41\xa0\xaf\x39\xc8\xe9\ -\x54\x97\xf0\xad\xcf\x4f\x75\x3c\x1b\x94\xec\xc9\xf0\xf3\x72\x49\ -\xbb\x11\x98\x87\xf6\xef\xc1\xef\x7e\xfb\x10\x3a\xda\x5a\x92\xfd\ -\x04\x2f\xae\xc1\xe5\x73\xaf\x9d\xab\x7b\x92\x16\x1a\xf3\x27\x26\ -\x27\x85\xe1\xd5\x78\xe2\x38\xee\xfd\xce\xd7\x66\x7d\xa3\x0c\x84\ -\xcd\x57\xbe\x13\xd5\x75\x2b\xe2\x20\xd0\x49\xd6\x17\xa1\x94\xa5\ -\x73\x2a\x18\x19\x5c\xec\xca\x8a\x8d\x1c\x53\xd4\x99\xbc\xc6\xbf\ -\xcd\x13\x3b\xde\x38\xb4\x1f\xbf\x7f\xf4\xd7\x33\x31\x9e\x1b\xef\ -\xfe\x7d\x27\x2c\x9b\x3f\xcf\x25\x00\xe6\x8c\xf9\x4c\x93\x93\x53\ -\xf8\xf1\xf7\xbe\x8e\xde\xae\xf6\xd3\xba\xe9\xfc\xa2\x12\xac\xdf\ -\xbc\x1d\x2b\xd6\x5d\x26\x66\x20\xc5\x81\xa0\x89\x66\x49\x5f\x8d\ -\x54\xd2\xd7\x24\x55\x4c\x7b\x40\x19\x0f\x75\x9d\xad\x8b\x75\x66\ -\x30\xab\x16\x96\x2c\x2c\xda\xf5\x98\xbd\x09\x70\xf4\x6f\xcc\x3f\ -\x82\x3d\x7f\x7a\x09\xaf\xee\x7c\x0e\x43\x83\xfd\x33\xdd\xf2\x88\ -\x96\x39\xbd\xef\xad\x90\x4a\xd2\x42\x65\x3e\x97\x88\x3d\x49\xfa\ -\xff\xd8\xc1\xbd\xd6\x5b\xe8\x99\x4d\xc2\xc9\x45\x23\xb3\x66\xe9\ -\x4a\x2c\x5b\xb3\x01\x75\xcb\xd7\xc2\xe3\xf5\x26\x80\xc0\x28\xa2\ -\x8d\x12\x43\x4d\x08\x26\xfb\x7c\x7a\x01\x47\x9d\xc6\xfd\xa3\x38\ -\x7a\xe4\x75\x1c\xd8\xbb\x0b\x4d\x27\x8e\xce\x98\xf8\x31\x04\x77\ -\x98\xf9\xbd\x6f\x95\x5a\x72\x2f\x54\xe6\x4f\x85\x23\x4e\x6b\x1f\ -\x7e\x11\x6a\x21\x04\x6f\x96\xb7\xd4\xe9\x21\x78\x1a\x1a\xdb\x0f\ -\x4c\x3c\x39\xb3\xa4\xac\x12\x95\x4b\x96\xa1\xac\xb2\x16\x95\xb5\ -\x4b\x91\x91\x99\x69\x18\xf5\xd6\x8d\xa4\x0c\xbb\x8d\xd9\x7e\x0e\ -\xe1\xbf\x77\xb4\x37\xa3\xb5\xe9\x24\xf9\xf0\xc7\xd0\xdd\xd1\x76\ -\x3a\x7d\xbc\x4f\x63\xfc\xab\x6f\xb5\x5d\xe2\x5e\xb8\xcc\x57\xd0\ -\xdf\xd3\x69\x77\x8f\xcc\xfc\x27\xa1\xce\x80\xfd\x30\xd1\x97\x93\ -\x01\x41\x88\x74\x1a\x8d\xdd\x1d\xad\x82\xe2\xee\x99\x37\x03\xf9\ -\x85\x25\xc8\x2d\x28\x84\x8f\x3c\x0a\x2f\x01\xc2\xe3\xf1\xaa\x2b\ -\x75\xf0\xfe\x86\xf4\x9d\x89\x89\x71\x21\x09\x82\xf4\x3a\x11\x18\ -\x87\x7f\x64\x18\x83\xfd\xbd\x18\xe8\xeb\xc6\x64\x30\x78\x26\xfc\ -\xe0\x42\x85\xaf\x12\x3d\x76\xbe\x3c\x12\x69\xa1\x32\xbf\xed\xd4\ -\x09\x3c\xf6\xc0\x8f\xec\xee\xb3\xc4\x22\x32\xd9\xf1\xe7\x92\x73\ -\xde\xaa\x7e\xeb\x3c\x8d\x03\x3d\xad\x49\xac\x67\xce\xf7\x1f\x96\ -\x16\x22\xf3\x87\x06\x7a\xf1\x9f\xf7\xfd\x0b\x8d\xba\x04\x5f\x99\ -\x57\x1e\xd9\x9e\xe4\x39\xd6\x6b\x96\x34\x47\xcf\x0a\xe6\x98\xe9\ -\xec\xd2\x3d\x40\x74\x2f\x6c\xea\xf5\xe7\x13\x00\x16\x0a\xf3\xa1\ -\x8d\xf4\xd9\x88\x4f\x96\x0a\x57\x69\x3e\x35\xcf\x4d\xac\x39\x4f\ -\xfd\xcd\x01\xfd\xdf\x69\x2e\xdd\xab\xf3\x41\xf4\x48\x17\x10\xf3\ -\xf9\x3e\x77\x9c\x85\x57\xb3\x4d\x53\x11\x5c\xa5\xbc\x06\x67\xbf\ -\x78\xc6\xb8\xc6\xf0\xdd\x1a\xf1\xfd\x75\xce\x37\xdd\x23\x5d\x20\ -\xcc\x6f\xd1\x98\x77\xae\xdc\x25\x97\x66\x38\xd6\x68\x54\xa2\x91\ -\xc7\x60\x67\x44\x30\xbd\xc0\xc5\xb8\x76\xdc\xa1\xdd\x0b\x53\x13\ -\x16\x40\x93\x2e\x00\xe6\xf7\x68\xe2\xfc\x04\x16\xdb\x39\x01\xc0\ -\x22\xf3\x2f\x62\x00\x2c\x32\xff\x22\x06\x40\xb1\x16\x88\x58\x64\ -\xfe\x45\xd4\x64\x83\xd1\xf3\xe8\x22\xf3\x2f\x5e\x00\x7c\xc6\x2e\ -\x4a\xb6\xc8\xfc\x8b\x47\x05\x34\x5b\x83\x21\x8b\xcc\xbf\x78\x24\ -\xc0\x16\xbb\x48\xd8\x4d\xb7\xde\xb9\xc8\xfc\x8b\x04\x00\x09\xa2\ -\x9f\x57\xe4\x58\xba\x6c\xc5\x22\xf3\x2f\x12\x00\xe4\x58\x4f\xd6\ -\xd6\x2d\x5b\x64\xfe\x45\x04\x80\x84\x3d\xda\xb8\x86\x6d\x91\xf9\ -\x17\x0f\x00\x46\xac\x27\x79\xa5\xce\x45\xe6\x5f\x3c\x00\x48\xd8\ -\x50\xe6\xd0\xeb\x7b\x10\xe3\xbd\xe9\x16\x99\x7f\x51\x00\x80\x8b\ -\x28\x4c\xab\x0b\xf1\x36\x6e\x3f\xfc\xee\x3f\x88\x75\x78\x16\x99\ -\x7f\x61\x37\x8e\x00\xf2\xa2\x34\x45\x56\x6f\xa0\xbb\xab\x13\xed\ -\x6d\x2d\xb8\xfe\x86\x1b\x91\x4e\x92\x60\x91\xf9\x17\x2e\x00\xb8\ -\x71\x15\xea\x27\x38\xfe\x63\xfc\xb0\xa5\xf9\x14\x9a\x9b\x9b\x70\ -\xd3\x7b\x6e\x12\x33\x5a\x16\x99\x7f\xe1\x02\x80\x4b\x58\x0f\x43\ -\xad\x95\x33\xcd\x93\x6a\x6a\x6c\x44\x63\x63\x03\x6e\xba\xe9\x26\ -\x31\x3d\x7b\x91\xf9\x17\x26\x00\x04\xaf\x89\x8e\x42\x5d\x56\xd4\ -\x04\x82\x86\x93\x27\x71\xf4\xd8\x51\x6c\xbf\xea\x6a\x31\x4d\x7b\ -\x91\xf9\x17\x26\x00\xb8\x1d\x73\x02\x41\x63\x43\x03\x4e\x1c\x3b\ -\x8e\xcd\x97\x6f\x17\x8c\x5e\x64\xfe\x85\x09\x80\xa4\x20\x60\x7b\ -\xa0\xb1\xe1\x24\x36\x5c\xb6\x55\x6c\xd7\xb2\xc8\xfc\x0b\x13\x00\ -\x49\x41\xd0\xde\xd6\x4a\xc6\x61\x13\x56\xad\xbf\x0c\x93\x64\x10\ -\x2e\x32\xff\xc2\x04\x40\x52\x10\x74\x77\xb6\xe3\x54\xc3\x09\xd4\ -\x2c\x5d\x81\x68\x4c\x32\x31\xbf\xbb\xa3\x05\x4f\x3c\xf8\xef\x8b\ -\xcc\x5f\x20\x6d\x36\x13\x43\x6e\x86\x3a\x4b\x35\xa1\x4e\x9e\x17\ -\x64\x5a\xba\x72\x1d\x7c\x39\xf9\x04\x84\x28\xba\xda\x4e\xa1\xa3\ -\xb9\xc1\xe9\x77\x16\x99\xbf\x80\xdb\xcd\x5a\xc0\x48\x39\x43\xe2\ -\xa5\xac\x97\x2f\x76\xe3\xc5\x09\x82\xf6\x45\xe6\x5f\x38\xed\x3a\ -\xa2\xfe\xd3\x60\xfe\x2e\xa8\xd5\xc6\x8b\xed\x02\x6a\xf9\x44\xbc\ -\x4c\xf5\x58\x12\xc6\x73\x8d\xe1\xa7\x31\x7f\xf6\x24\x5a\x6c\x67\ -\x61\x04\x3a\x35\xde\xa5\x90\x27\x54\xf2\xba\xf4\x7a\x51\x09\xd7\ -\x16\xf0\x44\xc8\xd7\x16\xbb\x76\x61\xb4\xff\x02\x38\x04\x9c\x57\ -\x51\x7e\x39\x70\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ -\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\ -\x31\x30\x54\x30\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\ -\x30\x48\x3f\xeb\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\ -\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\ -\x2d\x31\x37\x54\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\ -\x30\x30\x25\x20\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ -\x60\x82\ -\x00\x00\x0a\x6c\ -\xff\ -\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ -\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x14\x10\x12\x10\x11\ -\x13\x14\x15\x12\x14\x15\x16\x1e\x17\x17\x18\x18\x16\x17\x1b\x19\ -\x16\x1d\x1f\x26\x17\x1e\x20\x1f\x17\x1b\x1f\x1c\x28\x22\x1c\x1a\ -\x31\x1f\x1e\x1b\x2d\x38\x22\x25\x35\x31\x37\x2e\x31\x1c\x20\x33\ -\x38\x33\x2c\x37\x28\x39\x2e\x2d\x01\x0a\x0a\x0a\x0e\x0d\x0e\x1b\ -\x10\x10\x1a\x2b\x25\x20\x26\x2c\x37\x2f\x36\x38\x2f\x38\x2b\x37\ -\x2b\x37\x2e\x37\x2b\x37\x2c\x32\x31\x2f\x2c\x2b\x38\x37\x2c\x2b\ -\x2c\x2f\x2b\x2c\x2c\x2f\x37\x37\x37\x2f\x2f\x2b\x2d\x2c\x2c\x30\ -\x2c\x2c\x38\x2b\x2c\x37\x2c\x2c\x2c\xff\xc0\x00\x11\x08\x00\x66\ -\x00\x66\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ -\x00\x00\x02\x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x06\x04\x05\x01\x02\x03\x07\xff\xc4\x00\x3c\x10\x00\x02\ -\x01\x02\x03\x06\x03\x05\x06\x05\x03\x05\x00\x00\x00\x00\x01\x02\ -\x11\x00\x03\x04\x12\x21\x05\x22\x31\x41\x51\x61\x06\x13\xa1\x14\ -\x15\x32\x71\x91\x23\x42\x52\x81\xd1\xd2\x54\x62\x92\xa2\xb1\x07\ -\x73\x82\x24\x33\x34\xc1\xf1\xff\xc4\x00\x19\x01\x01\x01\x00\x03\ -\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\ -\x05\x04\xff\xc4\x00\x25\x11\x00\x02\x01\x03\x04\x01\x04\x03\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x41\x04\x12\x21\ -\x31\xa1\x14\x51\x61\x81\x91\xb1\xf0\xff\xda\x00\x0c\x03\x01\x00\ -\x02\x11\x03\x11\x00\x3f\x00\xf6\xab\x97\xd5\x48\x0c\xc1\x49\xe0\ -\x0b\x00\x4f\xad\x63\xda\x53\xf1\x2f\xf5\x8f\xd6\xbc\xbf\xc4\x7b\ -\x7e\xf6\x17\x1f\x8b\xf2\xc8\xd4\xa8\xd7\x88\x00\x0d\x07\x6d\x4d\ -\x5a\x5b\xda\xd8\x93\xb3\xce\x37\xcd\x39\x83\x46\x48\x11\xc6\x38\ -\xcc\xd7\xbb\xd0\xcb\x6c\x65\x7e\xed\xe4\xf2\xfa\xb8\xee\x71\xf6\ -\xbf\x81\xd4\xe2\xd6\x4e\xf8\xfe\xa1\xfa\xd1\xed\x6b\xf8\xc7\xf5\ -\x0f\xd6\xbc\xd7\x64\xf8\x9b\x1d\x89\xba\x96\x6d\xb0\xcc\xc7\x9f\ -\x00\x39\x93\xda\x9b\x3d\xa4\x79\x9e\xcb\xed\xa7\xda\x3a\x64\x19\ -\x67\x8c\x71\xf4\x9a\xc6\xa6\x8a\x54\xdd\xa4\xfe\x73\xd7\xbf\x45\ -\x86\xaa\x33\x57\x5f\xde\x4b\xdf\x6b\x5f\xc6\x3f\xa8\x7e\xb4\x7b\ -\x5a\xfe\x31\xfd\x43\xf5\xa4\x5b\x3b\x4b\x68\xb6\x2c\xe0\xe5\x43\ -\x83\xa9\xd7\x28\x5f\xc5\xf2\x8a\xb8\xbf\xb4\xed\xdb\x7f\x21\xf1\ -\xc4\x5d\x1a\x13\x90\x65\x07\xa1\xe9\xf5\xa9\x2d\x23\x8b\x4a\xf7\ -\xe2\xfc\x5d\xf1\xf4\x84\x75\x29\xf3\xd6\x39\xb7\x7f\x91\x85\xb1\ -\x8a\x38\xb8\x1f\xf2\x5f\xd6\xba\x2d\xc2\x40\x20\xc8\x3c\xc1\x11\ -\x5e\x5d\x8f\xf1\x7e\x2a\xd5\xcb\x96\xf3\xab\x85\x62\xb2\x38\x37\ -\x7e\x34\xc3\xfe\x9a\xe2\x9a\xe5\x8b\xc1\xb5\x8b\xa6\x3a\x09\x00\ -\x90\x3b\x4c\xd5\xad\xa2\x95\x2a\x7b\xd8\xa5\xaa\x8d\x49\xed\x43\ -\x8e\x73\xde\xb1\x9c\xf7\xad\x63\xb7\xad\x63\xf2\xf5\xaf\x19\xea\ -\x34\xc5\xe3\x0d\xb5\xce\x64\x89\x03\xea\x62\xa7\xa1\x90\x0c\x1d\ -\x7b\xd5\x26\xdc\x1f\x64\x74\xfb\xcb\xcf\xf9\x85\x5c\xd8\x1b\xab\ -\xa7\x2e\xb5\x01\xbc\x76\x3f\x5a\x28\x8e\xde\xb4\x55\x07\x8b\x78\ -\xe3\xff\x00\x3f\x13\xf3\x1f\xe1\x69\x97\x67\x61\x1e\xee\xc6\x29\ -\x6d\x0b\xb1\x73\x00\x71\x3b\xd5\xd7\xc5\x7e\x08\xbb\x7f\x10\xf7\ -\xed\x15\x21\xe0\x90\xcd\x04\x10\x00\xe9\xa8\xa8\xf8\x4f\x0c\x6d\ -\x2b\x2a\x12\xdd\xc0\x8a\x35\x81\x77\x4d\x7f\xe3\x5d\xb7\xa8\xa5\ -\x2a\x30\x4a\x49\x35\x67\xcd\xf0\x72\x55\x0a\x91\xab\x36\xe2\xec\ -\xee\xb8\xf9\x21\x78\x33\x0e\xf8\x4c\x6d\xa1\x88\x46\xb4\x6e\x2b\ -\x2a\xe6\xd2\x4e\x9c\x2b\xb8\xf0\xe6\x23\xde\x61\xbc\xb6\xc9\xe7\ -\x79\xb9\xfe\xee\x59\x9e\x3d\x79\x45\x72\xda\x1e\x16\xc7\xde\x60\ -\x6e\x11\x70\xae\x80\x9b\xbc\x3e\x5a\x54\x9f\x75\xed\x5c\xb9\x3c\ -\xc6\xcb\x11\xff\x00\x78\x4f\xd6\x26\x93\xd4\x45\xc9\xcd\x4e\x37\ -\x6a\xcf\xbb\x7d\x08\xd1\x92\x5b\x5c\x5d\x93\xba\xeb\xc9\x6f\x85\ -\xda\x56\xce\xd7\xbc\xb2\x35\xb4\x2d\x83\x3c\x58\x6a\x47\xcf\xf4\ -\xa8\x3b\x1b\x60\xa8\xc4\x5d\xb1\x89\xc2\x35\xc2\xf7\x1d\xd6\xf6\ -\xb9\x32\xf1\x02\x7a\xf1\xfa\xd5\x18\xf0\x56\x2c\x19\xc8\xb3\xc6\ -\x7c\xdd\x67\xe9\xc6\xad\x3d\xdd\xb5\x72\xe5\xf3\x1a\x3f\xdd\x13\ -\xf5\x89\xad\x72\x95\x28\xab\x53\xa8\xba\x4b\x38\xcf\x1f\xa3\x35\ -\x1a\x8d\xde\x70\xcb\x78\xce\x39\x14\x76\xf5\x85\xb7\x88\xbe\x8a\ -\x32\xaa\xb9\x00\x74\x14\xe9\xfe\x96\x8f\xb1\xc4\x7f\xbb\xff\x00\ -\xa1\x54\x97\x3c\x17\x8b\x62\x49\x45\x24\xea\x49\xbb\x24\xfc\xf4\ -\xa6\xff\x00\x06\x6c\x37\xc1\xd9\x75\xb9\x05\x9d\xf3\x10\x0e\x83\ -\x40\x22\x79\xd5\xd7\x6a\x69\xce\x8a\x84\x5d\xdf\x04\xd2\x50\xa9\ -\x0a\xae\x4d\x59\x0c\x31\xdb\xd6\xb1\xf9\x7a\xd1\x1d\xbd\x6b\x11\ -\xdb\xd6\xb8\xe7\x50\x83\xb6\xc7\xd9\x1d\x3e\xf2\xf3\xfe\x61\x57\ -\x56\x06\xea\xe9\xcb\xad\x52\x6d\xa1\xf6\x47\x4f\xbc\xbc\xff\x00\ -\x98\x55\xdd\x81\xba\xba\x72\xeb\x50\x1b\xc7\x6f\x5a\x28\x8e\xde\ -\xb4\x55\x01\x1d\xbd\x68\x8e\xde\xb4\x47\x6f\x5a\x23\xb7\xad\x01\ -\x15\x86\xa7\x4e\x7d\x6b\x11\xdb\xd6\xa1\xed\xbc\x23\x5e\xb3\x7e\ -\xd2\x31\xb4\xee\xa5\x55\xc1\x32\xa4\xf3\x11\xce\x97\xed\x78\x7f\ -\x1a\x92\xab\x8d\x66\x07\x31\xcc\xc3\x7b\x52\x4f\x48\xe1\x1f\x28\ -\xef\x50\x0d\x71\xdb\xd6\xb1\x1d\xbd\x69\x67\x6b\xd8\xb8\x12\xd2\ -\x36\x2a\xdd\xbb\x8b\x66\xe0\x76\x7b\x99\x49\xcc\x32\x87\xcb\x23\ -\x83\x46\xbd\x6a\x07\x96\x56\xce\x19\x5b\x1b\x68\xe4\x7b\x6d\x9f\ -\xcf\x92\xca\x1a\x08\xd3\xe2\x04\xee\x93\xc2\x7a\x70\xaa\x07\x58\ -\xed\xeb\x5a\xc7\x6f\x5a\x4d\xc3\xe1\x4b\x2e\x1b\x0a\xb8\xc4\x7b\ -\xb6\xee\x9b\xa4\x0b\xb2\xd7\x13\x78\x65\x2d\x1b\xc4\x1e\x3a\x72\ -\xe5\xc6\x87\x6b\x93\x91\x76\x8d\xbc\xea\x15\xda\x5d\x23\x2a\xc8\ -\x73\xc3\xf1\x03\xa7\x21\xc6\x28\x07\x28\xed\xeb\x58\x8e\xde\xb4\ -\xad\x30\x8f\x6f\xdb\x57\xce\xbb\xe5\xc3\xf9\x8a\x62\x20\xb4\x0e\ -\x0b\x98\x1d\x3e\x62\xb8\x61\xed\xdd\x53\x6a\xe1\xc7\xda\x65\x52\ -\xa5\xc9\x75\x87\x40\xcf\x32\x67\xa3\x28\x9d\x38\x73\xa8\x06\x1d\ -\xb4\x3e\xc8\xe9\xf7\x97\x9f\xf3\x0a\xbc\xb0\x37\x57\x4e\x5d\x69\ -\x7b\x68\xdf\x5b\x96\x33\xa1\x57\x52\xcb\x0c\xac\x18\x1d\xe0\x34\ -\x23\x4a\x61\xb0\x37\x57\x4e\x5d\x68\x0d\xe3\xb7\xad\x14\x47\x6f\ -\x5a\x2a\x80\x8e\xde\xb4\x47\x6f\x5a\x23\xb7\xad\x11\xdb\xd6\x80\ -\xae\xc7\xdf\x16\x96\xe5\xc6\x07\x2a\x02\xc6\x01\x26\x07\x18\x03\ -\x53\x55\x98\x6f\x12\x61\x9f\x37\xda\x04\x2a\x01\x21\xe5\x18\x02\ -\x33\x03\x07\x94\x55\xae\x22\xd0\x6c\xea\xcb\x21\xa4\x11\xd4\x1d\ -\x08\xaa\xdb\xdb\x03\x0e\xe0\x86\xb0\x86\x74\x3e\x83\xfc\x01\x50\ -\x15\xde\x21\x6c\x10\xb8\xcf\x89\x07\x3d\xbb\x6b\x3f\x1f\xc2\xcc\ -\x4a\xf0\xd0\xef\x29\xf9\x45\x42\xc5\xe1\x76\x6d\x9c\xac\x51\xa3\ -\xca\x62\xa5\x4d\xc2\x02\xa9\xcc\x72\xc1\xf8\x81\x83\xd7\x85\x49\ -\xf1\x1e\x51\x74\xaf\xb1\x36\x27\xcc\xb4\x03\x30\xcd\x94\x80\xc0\ -\x04\x68\x04\x46\xa4\xfd\x6a\xbb\x11\x8e\x2e\x50\xfb\xba\xe6\x6c\ -\x93\xaf\x99\x08\x19\xf2\xb0\x10\x38\xe5\x93\xa6\xb5\x41\x6b\x62\ -\xc6\x0a\xd3\xd9\xb8\x06\x56\x28\x5e\xdb\x33\x34\x2a\x6f\x4f\x13\ -\x00\x6f\x1d\x3b\xd7\x2b\xbb\x2f\x67\x10\x43\x64\x23\x29\x5d\x6e\ -\x36\x8a\x33\x12\x06\xba\x01\x27\xe5\xf9\x57\x2c\x0d\xe3\x72\xed\ -\x9b\x47\x04\x52\xc8\xb6\x50\x18\x71\xe5\xfc\x5b\xa6\x54\x02\xa4\ -\x28\xe1\xd4\x6a\x6a\x3e\x23\x68\xb9\x62\xc7\x67\xbb\xa8\x46\x30\ -\x03\xe6\x0d\x2f\x20\xca\xc1\x9e\xd3\xc7\x49\x9a\xc1\xee\xf8\x37\ -\xc5\xd0\xb2\xdd\xba\xf9\xe8\x95\x7f\x67\x6c\xeb\x48\x97\x1f\x2d\ -\xb4\x17\x65\x0b\x5c\x60\x05\xc1\xa4\xae\xbc\x60\x71\xe7\x5a\xe0\ -\x76\x56\xce\x76\x16\xed\x85\x66\xcb\x01\x7c\xc6\x32\xaa\x55\xe4\ -\x09\xe1\x25\x75\xfc\xab\x86\x2b\x69\x35\xd3\x69\x5f\x00\xec\x86\ -\xe6\xf0\x2a\xe4\xae\x60\x0e\x7f\x86\x32\xc9\x8d\x24\xf5\x02\xb9\ -\x60\xf1\xc1\x0a\xdc\x4d\x9b\x71\x2e\x84\x95\xdd\x61\x19\x8a\xa1\ -\x19\xb2\xf4\x00\xfc\x85\x64\x69\x95\xaf\xc7\x43\x06\x27\x02\x96\ -\x30\xfe\x5d\xb5\xca\x81\x81\x02\x4f\x36\x04\xfa\x9a\x65\xb0\x37\ -\x57\x4e\x5d\x69\x54\xe2\x9a\xf6\x17\xcc\x7b\x46\xcb\x16\x00\xa3\ -\x1d\x44\x30\x1d\x06\x87\x8f\xe7\x4d\x56\x06\xea\xe9\xcb\xad\x08\ -\x6f\x1d\xbd\x68\xa2\x3b\x7a\xd1\x54\x04\x76\xa2\x3b\x51\x97\xb5\ -\x19\x7b\x50\x14\xdb\x75\xae\xad\xab\xe6\xc2\x86\xbc\x14\xf9\x60\ -\xea\x0b\x72\x91\x22\x45\x2f\x5a\xda\x5b\x49\x65\x5f\x09\x6d\x9b\ -\x7a\x0a\xb6\xef\x13\x02\x67\xa4\x7c\xe7\x94\x53\x5d\xed\x0b\x48\ -\x03\x5e\xb5\xa0\xd7\x50\x24\x7c\xea\x02\x97\x11\x8b\xc5\x7f\xd2\ -\x95\xb4\x41\x65\x63\x78\x05\x0c\xa8\x40\x30\x27\x30\x33\x9a\x3e\ -\x62\x78\x54\x77\xc7\x63\x4d\xbc\x31\x16\x48\x72\xd6\xbc\xd0\x50\ -\x44\x18\xf3\x3e\xfe\xec\x6b\x11\x3f\x9d\x48\xdb\x1b\x1d\xaf\xdc\ -\x56\x17\xde\xd2\xe5\xc8\x51\x4f\xc4\x73\x06\x9e\x3a\x18\xd3\x4e\ -\x46\xab\x9f\xc3\x0f\xba\xa7\x18\xe4\x2a\x81\x04\x9d\x4e\x6c\xf2\ -\xc7\x34\x9e\x11\xf2\xa0\x3a\x26\x2f\x1f\xe4\xe1\x89\xb6\x3c\xd3\ -\x78\x8b\xdb\x83\x4b\x7a\xc3\x05\xcd\xbb\x3a\x75\x35\xd2\xe6\xd2\ -\xc7\x00\x0f\xb2\x21\x24\xac\x80\xe6\x44\x89\x3c\xf8\x03\xa4\xd6\ -\xf8\x1f\x0f\x35\xbb\xe9\x78\xdf\x67\x65\x05\x48\x96\xde\x07\x31\ -\xdf\x05\x8e\xb2\xdf\x2d\x04\x01\x51\xae\x78\x51\xc9\x2d\xed\x37\ -\x55\x8a\x14\xcc\x0b\x49\x04\xb1\x96\x96\x22\x77\xb9\x47\x0d\x22\ -\x80\x98\x31\x78\xb1\x6e\xe3\x1b\x28\x6e\x7d\x9f\x97\x6e\x48\x1a\ -\xfc\x72\x67\x58\x1a\xfe\x55\x1f\x0f\xb4\x71\xc5\xad\x67\xc2\x80\ -\x19\x94\x3c\x36\x88\x25\xc1\x61\xaf\xe1\x08\x75\xeb\x51\x6f\x6c\ -\x12\x86\xdb\x36\x2d\xe5\x18\x30\x24\x99\x61\x00\x15\x27\x37\xc1\ -\xa7\x28\x3d\x49\xaa\xeb\xd6\x72\x2e\x4f\x6d\xbb\x73\x74\x08\x59\ -\xcc\x48\x60\x74\x20\xf3\x02\x3e\xb4\x03\x86\xd8\x1f\x64\x74\xfb\ -\xcb\xfe\x45\x5f\xd8\x1b\xab\xa7\x2a\xf3\xec\x0d\x8b\xeb\x6e\xd5\ -\xab\x85\x8e\x67\x95\x0e\x4e\x72\x27\x34\xb4\x99\x00\x70\xd6\xbd\ -\x06\xd2\x42\x81\x1c\xa8\x0d\xe3\xb5\x14\x65\xed\x45\x50\x11\xda\ -\x88\xed\x44\x76\xa2\x3b\x50\x14\xbb\x73\x67\x8c\x45\xab\xf6\x1a\ -\x54\x5c\x52\xa4\x8e\x20\x1e\x95\x55\x6f\xc3\xb9\x2e\x5a\x74\xb8\ -\xea\xa9\x70\xb1\x4c\xec\x41\x5c\xa0\x2a\x71\xe0\x08\x9f\xfe\xd5\ -\xfd\xe1\xbc\xda\x73\xae\x71\xda\xa0\x13\x36\xd6\xce\xc3\xdb\xbe\ -\xa6\xf6\x20\xa3\x0b\xc7\x14\xa8\x10\x9e\x39\x12\x34\x99\xd5\x40\ -\xfc\xce\x9c\xc4\x1c\x62\xe0\xee\x11\x73\xda\x09\x2e\x2d\x15\xcb\ -\x69\xe7\x71\xb2\x86\x00\xfd\xec\xcd\x1a\xf2\xe4\x69\xe6\xfe\x06\ -\xdb\xb0\x67\xb6\x8c\xc0\x40\x24\x02\x40\x99\xd3\x4e\xb5\xc7\xdd\ -\x16\x38\xf9\x16\xb8\x65\xf8\x57\x87\x18\xe1\xc2\x68\x0a\x4b\x78\ -\xac\x3d\xdc\x51\x55\xb8\xf9\xef\x00\xeb\xba\xea\x1b\x28\x65\x80\ -\xda\x69\xba\x4f\x78\xe2\x6a\x37\xbc\x70\xa9\x73\x7b\x11\x70\x28\ -\x40\xfb\xc2\xe6\x56\x02\x57\x8c\x6b\xaa\x92\x3a\xc9\x89\xa6\x7b\ -\x5b\x3a\xd2\x10\xcb\x69\x14\x8e\x04\x28\x04\x71\xed\xdc\xfd\x6a\ -\x36\x33\x03\x62\xda\x33\x1b\x36\xe2\x0c\xee\x8d\x66\x67\x97\x73\ -\xf5\xac\x76\x47\xd8\xdf\xea\xaa\xa5\x6d\xd8\xb6\x04\xe0\x6c\xe2\ -\xf6\x96\x01\x2d\xbb\x5c\x4b\x6b\x0c\xb0\xd9\x08\x55\x27\x7a\x78\ -\x9d\x46\x9f\x2a\x7e\xbf\x6b\x0f\x83\x42\xe2\xd2\x27\x20\x14\x09\ -\x27\xa0\xd2\x95\x76\x02\xda\xc3\x35\xdc\x63\xa2\x87\xb9\xbb\x69\ -\x14\x0c\xc5\x7a\xc7\x20\x74\xd7\xb5\x5e\xec\xcd\x9b\x73\x13\x70\ -\x62\x31\x03\x41\xf0\x27\x25\x15\x91\xa5\xb6\xdd\xd9\x2b\x62\x60\ -\x9a\xe3\x1c\x4d\xd1\xbc\xdf\x08\xfc\x23\x90\x15\x7d\x1d\xab\x0a\ -\x91\xa0\x02\xb3\x1d\xaa\x90\x23\xb5\x14\x47\x6a\x28\x02\x3b\x0a\ -\x23\xb0\xa2\x8a\x02\x97\x6b\x60\xae\xb3\x4d\xbb\x9e\x58\xe6\x20\ -\x1f\xf2\x2a\x07\xbb\x71\x3f\xc4\x7f\x6a\xfe\xda\x28\xa8\x03\xdd\ -\xb8\x8f\xe2\x3f\xb5\x7f\x6d\x1e\xec\xc4\x7f\x11\xfd\xab\xfb\x6b\ -\x14\x50\xa6\x7d\xd9\x88\xfe\x23\xfb\x57\xf6\xd7\x2b\xfb\x12\xf5\ -\xc1\x0d\x7a\x47\xc8\x7e\xda\x28\xa0\x27\xec\x9f\x0d\xa5\xb3\x9d\ -\xfe\xd1\xba\x93\x57\xc1\x63\x90\xa2\x8a\xa4\x33\x1d\x85\x11\xd8\ -\x51\x45\x00\x47\x61\x45\x14\x50\x1f\xff\xd9\ -\x00\x00\x09\xba\ -\xff\ -\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ -\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x08\x07\x06\x11\x08\ -\x07\x08\x16\x14\x15\x17\x16\x16\x1b\x13\x15\x11\x17\x1b\x20\x1f\ -\x1b\x17\x20\x1d\x1b\x19\x20\x1d\x1f\x1f\x24\x1f\x34\x2c\x1a\x26\ -\x31\x27\x1f\x17\x26\x37\x24\x31\x32\x2b\x3a\x3a\x3a\x23\x1f\x37\ -\x38\x37\x38\x37\x2d\x2e\x3a\x2b\x01\x0a\x0a\x0a\x0d\x0d\x0e\x1b\ -\x10\x10\x1a\x31\x25\x20\x25\x34\x37\x37\x34\x2c\x31\x36\x37\x32\ -\x34\x35\x37\x34\x34\x37\x37\x2c\x2c\x2c\x37\x34\x35\x37\x2f\x2c\ -\x2c\x34\x2c\x2c\x2c\x2c\x34\x2c\x2f\x2c\x34\x2c\x34\x34\x2c\x2c\ -\x2c\x2c\x2c\x2c\x34\x2c\x34\x2f\x34\xff\xc0\x00\x11\x08\x00\xa0\ -\x00\xa0\x03\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ -\x00\x01\x00\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x05\x06\x07\x04\x03\x02\x01\xff\xc4\x00\x40\x10\x00\x01\ -\x02\x04\x01\x08\x06\x07\x07\x02\x07\x00\x00\x00\x00\x00\x00\x01\ -\x02\x03\x04\x05\x11\x12\x06\x13\x15\x16\x21\x56\x93\x94\x31\x41\ -\x55\xa4\xd2\xd3\x14\x24\x51\x53\x61\x64\x71\x22\x32\x35\x75\x81\ -\x91\xb1\x33\x92\x23\x42\x43\x52\xa1\xd1\xf0\xff\xc4\x00\x18\x01\ -\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x03\x02\x04\x01\xff\xc4\x00\x25\x11\x01\x00\x02\x01\x03\x04\ -\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x12\ -\x51\x04\x13\x52\xa1\x14\x33\x71\x34\x31\x32\x21\xff\xda\x00\x0c\ -\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xdc\x40\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\ -\x47\x28\x6f\xac\x0e\xf4\x8c\xfe\x0c\xc4\x1c\x19\x9c\xfe\x1c\x58\ -\xe3\x62\xfe\x9e\xcb\xdb\x37\xd3\xf0\x03\x8b\xd5\x3e\x6f\xbe\x00\ -\xf5\x4f\x9b\xef\x80\x3d\x53\xe6\xfb\xe0\x0f\x54\xf9\xbe\xf8\x03\ -\xd5\x3e\x6f\xbe\x01\xfb\x28\xb4\xd9\xd7\x3d\x92\x75\x07\x3d\x59\ -\x64\x88\xd6\x4c\xc5\x55\x62\xed\x4b\x39\x33\x97\x62\xec\x72\x59\ -\x6d\xd0\xbe\xc0\x3a\x7d\x02\x17\xbd\x8d\xc7\x8d\xe3\x03\x86\x04\ -\xcd\x2a\x69\x98\xe4\xa7\x62\xc6\x4e\x85\x74\xbc\x69\x88\x88\x8b\ -\xd3\x65\x56\x39\x51\x16\xca\x8b\x6f\x8a\x01\xe9\xea\x9f\x37\xdf\ -\x00\x7a\xa7\xcd\xf7\xc0\x1e\xa9\xf3\x7d\xf0\x07\xaa\x7c\xdf\x7c\ -\x00\x9e\x89\x7d\xbe\x97\xdf\x00\xb5\x64\xe6\x7f\x57\xa5\x3d\x2f\ -\x16\x3c\xc4\x2c\x79\xcb\xe2\xc5\x81\xb7\xc5\x7d\xb7\xbd\xef\x70\ -\x24\x40\x00\x00\x00\x00\x00\x00\x00\x00\x02\x2f\x28\x64\xdd\x31\ -\x4f\x7c\x79\x68\x38\xa3\x43\x63\xd6\x0d\xad\x75\x75\xaf\x82\xff\ -\x00\xed\x72\xa3\x51\x53\xe8\xbd\x28\x8a\x81\x0b\x21\x98\xac\xd4\ -\x19\x01\xaa\x91\x20\xac\x1c\xeb\xed\xd0\xe4\x72\xb5\x21\x22\xa7\ -\x5b\x5c\x99\xe5\xb7\x5e\x0b\x2e\xcd\x8a\x16\xe0\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x32\x62\xad\ -\x54\x93\x8b\x0a\x15\x22\x4a\x14\x45\x5a\x7c\x86\x3c\xf4\x45\x6d\ -\x91\x12\x2a\xa5\xac\xd5\xbf\xde\x5f\xd9\x0e\x9a\x62\xc7\xb3\x7d\ -\xe6\x52\xb5\xed\xbb\x6d\x61\x62\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\ -\xb1\xb7\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\ -\x8d\xbd\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\ -\x2c\x6d\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\ -\x63\x6f\x4f\xcc\x9a\xe4\xe2\x0d\x3f\x95\xbd\x8f\x2b\xcc\x3f\xcb\ -\x1b\x7a\x7e\x64\xd7\x27\x10\x69\xfc\xad\xec\x79\x5e\x61\xfe\x58\ -\xdb\xd3\xf3\x26\xb9\x38\x83\x4f\xe5\x6f\x63\xca\xf3\x0f\xf2\xc6\ -\xde\x9f\x99\x35\xc9\xc4\x1a\x7f\x2b\x7b\x1e\x57\x98\x7f\x96\x36\ -\xf4\xfc\xc9\xae\x4e\x20\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\xb1\xb7\ -\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\x8d\xbd\ -\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\x2c\x6d\ -\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\x63\x6f\ -\x4f\xcc\x9a\xe4\xe2\x17\x53\x99\x50\x00\x00\x00\x00\x01\x93\xe4\ -\x6f\xe2\x2c\xfc\xb6\x47\xf8\x71\xd3\x6f\xe7\x8f\xd4\xa3\xec\x9f\ -\xc5\xc4\xe6\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ -\x00\x00\x00\x00\x06\x4f\x91\xbf\x88\xb3\xf2\xd9\x1f\xe1\xc7\x4d\ -\xbf\x9e\x3f\x52\x8f\xb2\x7f\x17\x13\x99\x50\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x2c\xe0\x00\x00\x00\x00\x00\x19\x3e\x46\xfe\x22\ -\xcf\xcb\x64\x7f\x87\x1d\x36\xfe\x78\xfd\x4a\x3e\xc9\xfc\x5c\x4e\ -\x65\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x80\x00\x00\x00\ -\x00\x00\x63\x74\x0a\x9c\xad\x32\x76\x14\x49\xc7\x39\x11\xd4\xe9\ -\x14\x4c\x2d\x73\xb6\xd9\xcb\xd4\x9b\x0e\xca\xe3\xb5\xf0\x44\x57\ -\x94\x26\xd1\x5c\x93\x32\xb5\x53\xab\x92\x35\x28\xf9\x89\x47\x3d\ -\x56\xd7\x5c\x50\xde\x89\x6f\xaa\xa1\x1b\xe0\xbd\x23\x5b\x29\x5c\ -\x95\xb4\xe9\x05\x46\xb9\x23\x4d\x8f\x98\x9b\x73\xd1\x6d\x74\xc3\ -\x0d\xea\x96\xfa\xa2\x0a\x60\xbd\xe3\x5a\x96\xc9\x5a\xce\x92\xe5\ -\xd6\xda\x42\x7f\xa9\x13\x85\x13\xc2\x6f\xe2\xe5\xe1\x9e\xf5\x12\ -\x53\xd5\x19\x79\x09\x54\x99\x99\xc4\x8d\x5b\x74\x31\xca\xa9\x7f\ -\x6a\x22\x5d\x09\x53\x1d\xaf\x6d\xb0\xdc\xda\x22\x35\x94\x6e\xb6\ -\x52\x3d\xe4\x4e\x14\x4f\x09\x5f\x8b\x95\x9e\xed\x12\x52\x35\x19\ -\x79\xf9\x55\x99\x96\xc4\xad\x4b\xf4\xb1\xc8\xab\x6f\x62\x2a\x5d\ -\x49\x5f\x1d\xa9\x3b\x65\xa8\xb4\x4c\x6b\x08\xdd\x6d\xa4\x7b\xc8\ -\x9c\x28\x9e\x12\xbf\x17\x2f\x0c\x77\xa8\xea\xa7\x57\x24\x6a\x51\ -\xf3\x12\x8e\x7a\xad\xae\xb8\xa1\xbd\x12\xdf\x55\x43\x17\xc1\x7a\ -\x46\xb6\x6a\xb9\x2b\x69\xd2\x1f\x33\xb9\x43\x4e\x91\x99\x59\x79\ -\x97\x3d\x1c\x9d\x36\x86\xf5\x4f\xdd\x13\x69\xed\x3a\x7b\xda\x35\ -\x82\x72\x56\x27\x49\x78\xb3\x2a\xa9\x4f\x7a\x31\x8f\x88\xaa\xaa\ -\x88\x89\x9a\x89\xd3\xfd\xa7\xbf\x17\x23\xce\xed\x5d\xd5\x3a\xa4\ -\xad\x2d\x8d\x7c\xe2\xb9\x11\xca\xa8\x8a\xd6\x39\xdb\x7f\x44\xd8\ -\x4f\x1e\x2b\x64\xff\x00\x96\xad\x68\xaf\xfa\x8f\xd6\xca\x47\xbc\ -\x89\xc2\x89\xe1\x2b\xf1\x72\xb3\xdd\xa3\x44\x39\x94\x00\x00\x00\ -\x00\x00\x18\xdd\x02\x99\x2b\x54\x9d\x85\x0e\x71\xae\x54\x6d\x3a\ -\x45\x53\x0b\x9c\xdd\xb6\x72\x75\x2e\xd3\xb2\xb9\x2d\x4c\x11\x35\ -\xe5\x09\xac\x5b\x24\xc4\xad\x32\x14\x0a\x7d\x3e\x63\x3f\x2c\xc7\ -\x23\xad\x6f\xb5\x11\xeb\xff\x00\x0a\xa4\x6f\xd4\x5e\xf1\xa4\xa9\ -\x18\xeb\x13\xac\x3f\x6a\x34\x2a\x7d\x4a\x3e\x7e\x6a\x1b\xb1\x5a\ -\xd7\x6b\xdc\xdd\x9f\xa2\x8a\x67\xbd\x23\x48\x2d\x8e\xb6\x9d\x65\ -\xcc\x99\x29\x48\x45\xba\x43\x7f\x16\x27\x88\xdf\xcb\xcb\xcb\x3d\ -\x9a\x24\x6a\x14\xe9\x6a\x8c\xb2\x4b\xcd\x35\x55\xa8\xa8\xa9\x67\ -\x2a\x2d\xd3\xe2\x8b\x72\x34\xc9\x6a\x4e\xb5\x6e\xd5\x8b\x46\x92\ -\x8d\xd5\x3a\x47\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb3\xda\xa2\x4e\ -\x4e\x42\x5e\x4e\x53\xd1\x60\x35\x70\x6d\xd8\xe5\x55\xe9\xe9\xda\ -\xaa\x46\xf9\x2d\x6b\x6e\x9f\xf5\xa8\xac\x44\x68\x8c\xd5\x2a\x47\ -\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb1\xd9\xa3\xaa\x9d\x42\xa7\xd3\ -\x63\xe7\xe5\x61\xbb\x15\xad\x77\x3d\xce\xd9\xfa\xa9\x8b\xe7\xbd\ -\xe3\x49\x6a\xb8\xeb\x59\xd6\x1f\x33\xf9\x3f\x4e\x9f\x99\x59\x89\ -\x96\x3d\x5c\xb6\xbd\xa2\x3d\x3a\x3e\x08\xa2\x9d\x45\xe9\x1a\x41\ -\x6c\x75\x99\xd6\x5e\x2c\xc9\x4a\x43\x5e\x8e\x48\x4f\xd8\xb7\xdb\ -\x16\x22\xa7\xea\x98\xb6\x9a\xf9\x59\x79\x79\xda\xa3\xbe\xa7\x4c\ -\x95\xaa\x43\x6c\x39\xc6\xb9\x51\x16\xe9\x85\xce\x6e\xde\x8e\xa5\ -\xda\x4f\x1e\x4b\x63\xff\x00\xda\xb5\x6a\xc5\xbf\xd4\x76\xa9\xd2\ -\x3d\xdc\x4e\x2c\x4f\x11\x5f\x95\x95\x9e\xd5\x1a\x21\xcc\xa0\x00\ -\x00\x00\x00\x00\xc9\xf2\x37\xf1\x16\x7e\x5b\x23\xfc\x38\xe9\xb7\ -\xf3\xc7\xea\x51\xf6\x4f\xe2\xe2\x73\x2a\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x03\x1e\xc9\xa8\xb3\x10\ -\xe7\xe0\xb6\x4e\x13\x5c\xe7\x48\xd3\xda\x88\xe5\xb2\x2a\x2a\x3e\ -\xfb\x7a\x96\xc9\xb0\xe9\xb7\xd1\x1f\xa9\x47\xd9\x3f\x8b\xac\xbc\ -\x76\x47\x66\x26\x22\xa5\x95\x51\xc8\xe4\xb2\xb5\xc9\xd2\x8a\x9d\ -\x4a\x73\x2a\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ -\x00\x00\x00\x00\x06\x41\x92\xb1\x19\x06\xb1\x2b\x16\x2b\xd1\xad\ -\x49\x3a\x7a\xb9\x5c\xb6\x44\x44\x6c\x4b\xaa\xaf\x51\xd3\x6f\xa2\ -\x3f\x52\x8f\xb2\x7f\x16\x79\xfa\xac\x09\xfa\xa4\x38\xb4\xb8\x2e\ -\xc6\xe4\x5c\x6a\xeb\x35\x1c\xc6\xb9\x1a\xe4\x54\x55\x45\xc4\xd4\ -\x73\x55\x16\xdd\x0e\x4f\x6e\xce\x75\x52\x27\x80\x00\x00\x00\x00\ -\x00\x00\x00\x00\x0b\x38\x00\x00\x00\x00\x00\x06\x51\x93\x59\x3c\ -\xfa\xd6\x69\x61\x4f\xac\x2c\x32\x14\xf5\x5f\xf0\xd8\xf4\x5b\xe7\ -\x6d\xb1\xc9\xb2\xca\xc4\x5b\xfc\x4e\x8a\x66\xac\x53\x6d\xab\xaa\ -\x76\xa4\xcc\xeb\x12\xb0\x6a\x2c\xff\x00\xa5\xfa\x4e\xb3\xc4\xc5\ -\x7b\xff\x00\x46\x1f\xde\xb6\x1c\x5f\x5b\x6c\x3d\xee\xe2\xf0\xf6\ -\x6c\xbf\x93\xa3\x54\x6a\xdb\xd3\x13\x83\x0c\x77\x71\x78\x7b\x79\ -\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\ -\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\ -\x8d\x5b\x7a\x62\x70\x61\x8e\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\ -\xde\x98\x9c\x18\x63\xbb\x8b\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\ -\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\ -\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\x8d\x5b\x7a\x62\x70\x61\x8e\ -\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\xde\x98\x9c\x18\x63\xbb\x8b\ -\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\ -\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\ -\xe4\xb7\x9c\xca\x80\x00\x00\x00\x04\x0d\x6a\xad\x2d\x37\x25\x1a\ -\x9d\x4c\x9e\x6b\xa3\x39\xaf\x86\xab\x05\xe8\xab\x05\x56\xed\x57\ -\x39\x5a\xbf\x61\x51\x6f\x64\xd8\xaa\xa9\x64\xe8\x55\x40\xe1\x95\ -\x56\xd3\x6a\x2d\x9c\x85\x0e\xd0\xf3\x79\xb8\x8d\x63\x7f\xca\x8b\ -\x78\x6a\x88\x9d\x28\xcb\xc4\x4c\x29\xd4\xf5\xf6\x22\x28\x59\x64\ -\xe7\x25\x67\xa0\x24\xc4\x94\xcb\x22\x31\x6f\x67\x43\x72\x39\x16\ -\xdb\x17\x6a\x6c\x03\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x29\ -\xf9\x47\x48\x85\x39\x94\x2e\x99\x9c\xa2\xa4\xc3\x73\x10\x5a\xc7\ -\x2c\x36\x3e\xce\x47\xc6\x57\x27\xda\xe8\xfb\xcc\xff\x00\xc8\x07\ -\x06\x81\xa6\x6e\x93\x79\x68\x40\x34\x0d\x33\x74\x9b\xcb\x42\x01\ -\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\x26\xf2\xd0\x80\x68\ -\x0a\x66\xe9\x37\x96\x84\x04\x8b\x16\x3c\x38\x69\x0e\x1d\x2e\x32\ -\x22\x22\x22\x22\x31\x11\x11\x13\x62\x22\x25\xf6\x01\xf5\x8e\x67\ -\xb3\x63\x7f\x62\x7f\xd8\x1c\x53\x74\xb9\x59\xd8\xd9\xe9\xdc\x9b\ -\x58\x8e\xb2\x26\x28\x90\x21\xb9\x6c\x9d\x57\x50\x3c\x74\x0d\x33\ -\x74\x9b\xcb\x42\x01\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\ -\x26\xf2\xd0\x80\x68\x1a\x66\xe9\x37\x96\x84\x01\x28\x34\xbb\xed\ -\xc9\x26\xf2\xd0\x80\xb7\x64\xdc\xbc\x59\x4c\x9d\x94\x96\x98\x66\ -\x17\x32\x04\x26\xb9\xab\xd4\xe4\x63\x51\x53\xf7\x02\x44\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x00\x0f\xff\xd9\ -\x00\x00\x06\x54\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ +\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ +\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ +\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x2a\x6c\ +\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x7c\x24\x57\x99\xe7\xbf\xaa\ +\x5b\x52\xab\x25\xb5\x72\xce\xa3\xd1\xe4\x64\x7b\x12\x66\xc6\xf6\ +\x18\x1b\x63\x1b\x0c\xac\x81\x73\x20\x18\xf0\x01\xb7\xbb\x2c\x9c\ +\x59\xdf\x62\x0e\x6e\x59\x96\x70\x7b\x07\x4b\xd8\x65\xd7\xec\xc2\ +\x82\xb1\x0d\x06\x6c\xd6\x01\xe3\x88\xc7\x01\x33\xe3\x09\x9e\x64\ +\x4f\x92\x34\xca\x39\xb7\xd4\x6a\xb5\x3a\xd4\x7e\xdf\xab\xaa\x56\ +\x55\x75\x55\x4b\x13\x3c\x92\x66\xf4\xe6\xf7\x4d\x57\x57\x57\xb7\ +\xaa\xde\xf7\x7f\x5f\x7e\xef\x49\x58\x6c\x4e\x2d\x8d\xa8\x86\xa8\ +\x42\xa3\x12\x22\x8f\xc3\xb5\x23\x1a\xb5\x10\x75\x68\xaf\xd1\x85\ +\xf0\x90\xd2\x22\x9f\x45\xcb\x20\xda\x48\xb4\x4d\x7b\x5d\xa1\xd1\ +\x99\xb6\x08\xd1\x71\x8d\x76\x13\xfd\x91\x68\xdf\x42\x01\xc5\xc5\ +\xd2\xea\x88\xfe\x86\x68\x27\x51\x90\x48\x79\x8b\x69\x8c\xe8\x29\ +\xa2\x4f\x13\x95\x2f\x76\xff\xdc\xb4\x7c\xa2\x2f\x10\x1d\x38\x0f\ +\x0c\x9f\x89\x5e\x21\xfa\xa4\x26\x7d\x16\xdb\x5b\xdc\x2e\x23\xfa\ +\xe5\x79\x1a\xe9\x67\x22\x19\xfe\x95\x68\xf9\xa2\x0d\x70\xee\xdb\ +\x95\x44\x5f\x25\xba\xea\x8c\xc4\x45\x7e\x01\xaa\xaa\xab\x51\x56\ +\x5e\x81\xbc\xbc\x3c\xf8\x7c\x3e\xea\x31\x09\x69\x69\x69\x98\x0a\ +\x4d\xf1\xa1\x68\xc3\xc3\x43\x18\x1e\x1a\x46\x67\x47\x3b\x5a\x5b\ +\x5b\xe8\xfd\xf0\x99\xde\xef\xa3\xda\xfd\x1e\x5a\x04\xc0\xd9\xb5\ +\xf5\x44\xdf\x3b\x1d\xc6\xe7\xe5\xe7\x63\xe3\xc6\xcd\x58\xbb\x7e\ +\x03\xd6\x11\xd5\x2f\x5b\x8e\x8c\x8c\x0c\x62\xb2\x64\x21\x4c\x1f\ +\xc3\xf2\x5e\xfb\x7c\xcc\xef\xc7\x91\xc3\x87\x71\xec\xe8\x9b\xd8\ +\xbb\x77\x0f\x76\xed\xfa\x93\x38\x77\x1a\xed\x21\xa2\x2f\x13\x35\ +\x2d\x02\xe0\xf4\x5a\x36\xd1\xb7\x89\xee\x20\x72\xcf\x74\xf1\x52\ +\x62\xf2\xd5\xd7\xbc\x13\x3b\x76\xbc\x43\x1c\xc7\x99\x09\x1b\x66\ +\x9f\x26\x08\xac\x9f\x1f\x78\x7d\x3f\xfe\xf0\xfc\x73\x78\xec\xb1\ +\x47\xd1\xda\xd2\x32\x9b\x67\x99\xd4\x9e\xe5\xeb\x44\xa1\x45\x00\ +\xcc\xdc\x6e\x26\xba\x97\xa8\x20\x29\x42\xb2\x73\x70\xfd\xbb\x6f\ +\xc2\x4d\xef\xbf\x19\xb5\xb5\x4b\x1c\x99\x9b\xe2\x76\x23\x25\x85\ +\xc8\xed\x82\x4b\x26\x72\xc9\x1a\x43\x01\x99\x8f\xd9\xa7\x8b\x29\ +\xe2\x55\x51\x14\x88\x7f\xa4\xd1\x63\x7c\x1c\x53\xdf\x3b\x81\xe4\ +\xf0\xa1\x83\xf8\xe5\x2f\x1e\xc4\x23\x0f\xff\x06\x13\x13\x13\x33\ +\x3d\x57\x8b\x06\xe8\x97\x16\x01\xe0\x3c\xea\x99\xf1\xb7\x24\xbb\ +\xa8\x9c\xf4\xf8\x6d\x1f\xfd\x04\xae\xbb\xe1\x46\xa4\x79\x3c\x71\ +\xc6\xc8\xcc\x18\x59\x86\x27\x2d\x15\xe9\x9e\x34\xa4\xa5\xa6\x20\ +\x95\x18\x2f\x49\x67\xdf\x35\xb1\x58\x8c\x48\x51\x01\xa2\x20\x41\ +\x52\x8c\xf9\x47\xf1\xeb\x5f\x3d\x84\x7f\xfa\xc1\xf7\xd1\xdf\xdf\ +\x3f\xd3\xcf\xb1\x4a\xfb\xe2\xb9\x96\x06\x0b\x1d\x00\x6c\xdd\x3f\ +\xac\x45\xec\x6c\x1b\x1b\x70\x1f\xb9\xe3\x93\xb8\xf6\xfa\x77\xc3\ +\xed\x76\x1b\x46\xb9\x8c\x0c\x62\x78\x66\x46\x3a\x32\xd2\x09\x10\ +\xf2\x5b\xdc\x15\xba\x74\x60\x24\x00\x26\x89\xc3\x06\xe5\xcf\xef\ +\xfb\x99\x06\x84\xbe\x64\xbf\x72\x90\xbe\xf3\x01\xfa\x8d\xa6\x45\ +\x00\x00\x1f\xd3\x46\xbe\x6d\x78\x36\x23\x23\x13\xb7\x7f\xec\x13\ +\xb8\xf9\xbf\xdd\x46\x8c\x4f\x31\x88\x76\x17\x7c\x99\x19\xc8\xce\ +\xca\x80\xdb\xe5\x9a\x93\x1b\x57\x8c\x9d\x6f\x50\x3b\x13\x81\x80\ +\x00\xc1\xbf\xfe\xcb\x0f\x11\x0a\x39\x0e\xf4\x11\x4d\xda\x3d\x73\ +\x31\x03\xe0\x5b\x9a\x38\xb4\x6d\xdb\xae\xd8\x81\xff\xf1\x57\x77\ +\xa1\xb0\xa8\x38\x3e\xd2\x98\xf1\x79\x39\x3e\xc1\xf8\x73\x21\xde\ +\xcf\x65\x93\x65\xb3\x1d\xd2\xd8\xd0\x80\xbb\x3e\xff\x39\xec\xd9\ +\xf3\x9a\xd3\x57\x38\xd4\xfc\x79\xa2\x1f\x9e\xed\xdf\x76\x2d\x30\ +\xc6\xf3\xfd\xfe\x82\xe8\x33\x4e\xa3\xfe\x73\x77\xdf\x83\x8f\x7d\ +\xf2\x33\xf0\xd2\x31\xe3\xdb\x45\xfa\xbd\x20\xd7\x87\xd2\xa2\x7c\ +\xa1\xe7\xe7\x63\x33\xaa\x05\x35\xfe\x90\x8f\xdb\x6e\xff\x30\x3d\ +\x8f\x17\xbb\x77\xed\x42\x34\x9a\x90\x42\x90\x89\x6e\xd0\xa4\xdf\ +\x1f\x2e\x16\x09\xe0\xd2\xfc\xe3\x0f\x38\xb9\x74\x5f\xfa\xdb\x6f\ +\xa0\xb8\xb4\x5c\x3c\x14\x77\x26\x8f\xf6\xe2\x82\x5c\x52\x01\x67\ +\x87\xf3\xe0\xe4\x14\x02\x13\x41\x84\xa6\xc2\x98\x98\x9c\x44\x34\ +\x12\x15\x62\x9c\x3d\x05\x06\x95\xc7\x93\x4a\xb6\x84\x17\x1e\x32\ +\x20\xcf\x56\x20\xbb\xdd\x32\x49\x04\x39\x6e\xa4\xbe\xf9\xe6\x11\ +\x7c\xe2\xe3\x77\xa0\xa5\xb9\x39\x99\x71\xf8\x3f\x2f\x74\x00\x24\ +\x65\xfe\x8e\x6b\xdf\x85\xbf\xf8\xfc\xdd\x22\x42\xc7\x1d\xc7\xc6\ +\x5e\x79\x71\x81\x30\xf0\x4e\x9f\xd9\x21\xf4\xf6\x0d\xa2\x67\x70\ +\x18\x03\x83\x23\x18\xf6\x8f\x93\x3e\x9e\xd2\x2c\x79\x8d\x74\xd7\ +\x4f\x99\xb6\xf0\xf9\x95\xc1\xc0\x6a\xa6\x20\x3f\x07\x15\xf4\xf7\ +\x2b\x4a\x8b\xe8\x9e\x4e\x5f\xea\xb0\xd4\x62\x70\xb1\x61\xca\xff\ +\xfc\xe4\x2d\x30\x08\x5e\x79\xf9\xa5\x73\x0e\x82\x85\x02\x80\xdf\ +\x38\x31\xff\xb6\x8f\x7e\x12\x1f\xba\xfd\xa3\x71\xfd\x99\xe5\xf5\ +\xa2\xbc\xb4\xf0\xb4\x0c\xbc\x40\x30\x88\x96\xf6\x1e\xb4\x75\xf5\ +\x62\x70\x78\x34\x6e\xad\xeb\xcc\x9d\x0a\x87\x31\x49\x46\x19\x8b\ +\xe2\x49\x06\x43\xdc\x8c\x53\xa5\x00\x8f\xd8\xd4\x94\x14\x72\x29\ +\xe5\x78\x3c\x80\xff\xe3\xfb\x29\x2e\xcc\x43\x7d\x4d\x05\x96\x2d\ +\xa9\x12\xde\xc6\xac\x19\xc3\x21\x67\x92\x28\x6a\xcc\x41\x22\x77\ +\x32\x8a\x2f\xfe\xaf\xbb\x71\x1f\x79\x0b\x0e\xed\xff\x12\xdd\x73\ +\x21\x02\xe0\xff\x13\xfd\x75\xa2\xe1\xe4\xc2\x9d\x7f\xfe\x57\x78\ +\xd7\x8d\xef\x8d\xbb\x53\x85\xf9\xb9\x24\xf2\xf3\x30\x5b\x1b\xaf\ +\xb3\x67\x00\xa7\x5a\x3b\xd1\xd5\x37\x10\x67\x78\x84\x98\x3c\x34\ +\xea\xc7\x88\x7f\x0c\xfe\xf1\x71\x02\xc7\xa4\x9d\x0e\xb6\x1f\xb9\ +\x04\x3a\xaf\xc7\x23\x28\x23\x3d\x1d\x5e\x22\xbe\x37\x45\x03\x43\ +\x5d\x55\x19\xd6\xad\xaa\x47\x25\x01\x74\xb6\x2d\x95\x40\x20\xa4\ +\x81\x16\x4c\xfa\xfb\xaf\xfd\x9d\xf0\x14\x1c\xda\x5f\x9e\xae\x61\ +\x38\xdf\x01\xc0\xe9\xd2\x1f\x27\x32\x5f\xc6\xe7\xff\xe6\x2b\xb8\ +\x7c\xdb\x95\xa2\x63\xf9\x7d\x79\x49\x21\x72\xb3\xb3\x66\xc9\xf8\ +\x7e\x1c\x6f\x6a\x85\x7f\x2c\x20\x98\x13\x26\x9d\xde\x33\x30\x80\ +\xee\xfe\x01\x8c\x12\xe3\x63\xca\xf4\x08\x9f\x42\x0a\x26\xa4\x0c\ +\x04\xa5\x74\x84\x91\x86\xa8\x64\x8e\x30\xbb\x95\x30\x52\x95\x10\ +\x59\x63\x41\x78\x95\x00\x5d\x1d\x99\xbe\x4f\xba\x37\xb6\x0d\x72\ +\xb2\x7c\xf4\x9a\x21\x2c\x37\xfe\x65\x96\x0a\x6f\xdf\xb8\x16\x15\ +\x25\x45\xb3\x03\x41\x8a\x5b\xa8\x12\x1d\x04\x3f\xba\xf7\x5e\x7c\ +\xe5\xcb\x5f\x72\xf2\x0e\xde\x7d\x3a\x2e\xe2\x7c\x06\xc0\x16\xa8\ +\x95\x34\x09\x31\xfd\x4f\x7f\xf6\x2e\xbc\xe3\xba\x1b\x45\x87\x70\ +\x88\xb6\xaa\xbc\x58\xf8\xf6\x33\xb5\x91\xd1\x31\xbc\x71\xb2\x59\ +\x8c\x6e\x66\xfc\x38\x19\x76\xcd\xed\x9d\xe8\xec\xed\x43\x34\x16\ +\x53\x6d\x00\xa4\x63\x50\x2e\xc0\xb0\x94\x8f\x51\x39\x07\x53\x92\ +\xe7\xb4\x6e\x3a\x3d\x16\x40\xb6\x32\x82\x5c\x65\x08\xf9\xb1\x3e\ +\xa4\x12\x6c\x74\xbd\x9e\x97\x93\x8d\xbc\xec\x9c\xb8\x7a\x62\x1b\ +\xe1\xca\x2d\x1b\x84\xdd\x30\x53\xe3\xb0\x74\xba\x66\xe3\xcc\x20\ +\x09\x46\xe8\x9a\x8d\xb3\x0d\x16\xcd\x57\x00\x70\xe1\xc6\x41\xa8\ +\xb5\x78\xa6\x76\xcb\x47\x3e\x89\xf7\x7d\xf0\x16\xd1\x11\x1c\xa3\ +\xaf\xad\x2a\x45\x86\x37\xb9\xb1\x17\x8d\xc6\xd0\xd0\xdc\x8e\xd6\ +\xce\x1e\xc1\xf8\x20\x59\xf2\xc7\x9a\x9a\x05\xe3\x79\xb0\x87\x09\ +\x63\x3d\x72\x19\x51\x39\xc6\xe4\xec\x73\xfa\x20\x39\xb1\x41\x94\ +\xc6\x3a\x51\x14\xeb\x21\x4b\x36\x26\xee\x3b\xcf\xe7\x43\x61\x5e\ +\x9e\x50\x19\x0c\x8c\x4b\xd7\x2e\xc7\xa6\x75\x2b\x67\x8c\x46\xb2\ +\x2a\x10\x51\x4b\x0d\x04\x77\x7f\xe1\x2e\x27\x9b\x80\xfb\x6e\x2b\ +\x66\x11\x36\x9e\xaf\x00\x78\x42\x13\x65\xa6\x76\xd5\x35\xd7\xe1\ +\x53\x7f\xf9\x05\x4d\xec\x4b\xa8\xad\x2c\x43\x56\xa6\x37\xe9\x0f\ +\x8d\x07\x26\x70\xe4\xc4\x29\x4c\x90\x2e\x8f\x90\xa8\x6f\x68\x69\ +\xc3\x89\xe6\x56\x11\xa7\x0f\xd1\xf8\x6c\x75\x2d\x41\x97\x5c\x89\ +\x98\x94\x68\x34\x96\xe7\x7a\xb0\xb1\x26\x07\x2b\x4a\x33\x51\x57\ +\xe4\x45\x49\xb6\x07\x99\x1e\xb3\x40\xea\x19\x9d\x44\xef\x68\x08\ +\x8d\x7d\x01\x1c\x6c\xf5\xe3\x60\xfb\x28\x02\xa1\x44\x9b\x81\x55\ +\x45\x45\xb4\x15\x95\xb1\x16\xa1\x26\x58\x6d\x15\x93\xbf\x9f\x97\ +\xad\x02\xae\x30\x2f\x07\xef\xba\x6a\x0b\x3d\x4f\x72\x49\xc6\x86\ +\xa1\x97\x41\xa0\x19\x86\x1f\xfa\xe0\x07\x9c\xbc\x83\x59\x79\x06\ +\xf3\x11\x00\x1c\xe2\x4d\x80\x75\xdd\xb2\x15\xf8\x3f\xdf\xfc\x0e\ +\x89\x4f\x35\x9e\x5f\x5d\x5e\x32\xa3\xce\xef\x1d\x1c\x12\x23\x9f\ +\x25\xc0\x30\x19\x76\xbb\x0f\xbd\x21\x00\xc1\x23\xbe\xc5\x55\x87\ +\x4e\xb9\xca\xc4\x78\x17\x81\x6a\xdb\xb2\x3c\xbc\xff\xd2\x12\x5c\ +\xb7\xa6\x10\x35\x05\xde\xd3\xbe\xf9\x48\x54\xc1\xbe\x96\x11\xfc\ +\xfe\x70\x1f\x1e\xde\xdb\x8d\xe6\x81\x89\x04\x20\x54\x46\x9b\x51\ +\x45\x40\x60\x89\x90\x4e\x06\x63\x45\x71\xb1\xf0\x22\x98\xae\xdd\ +\xbe\x09\x55\x65\xc5\x49\xff\x06\xc7\x1d\x74\x10\xb0\x8b\x78\xed\ +\x35\x57\x3b\xc5\x09\xae\xc2\x0c\x59\xc4\xf9\x06\x00\x7e\x72\xae\ +\xa4\xcd\x31\x9e\xcc\x24\x23\xea\xeb\xdf\xfe\x67\xe4\x17\x14\x0a\ +\xe6\x97\x14\xe5\xa3\xa4\x30\x3f\xe9\x0f\xb1\x4b\xd7\xd9\xdd\x27\ +\x0c\xba\x93\x34\xe2\x0f\x1e\x3b\x29\xc4\x7f\x9f\x54\x8c\x93\xee\ +\x55\xa4\xdb\xd3\xe2\xd7\x16\x64\xa5\xe2\xbf\x5f\x51\x85\x5b\xb6\ +\x94\xa3\xd8\x97\x76\x4e\x1f\xe8\x40\xdb\x28\x7e\xf2\x4a\x1b\x1e\ +\x3f\xd0\x8b\xa9\x48\x6c\xda\x56\x20\x83\x71\x45\xe4\x0d\xb2\x15\ +\x86\x85\xb1\x58\x46\x20\xc8\xce\xcc\x14\xcf\xb7\x6d\xd3\x3a\xac\ +\xaa\xaf\x4d\xfa\xbb\x1c\xe3\xf0\x68\x86\x21\x07\x8b\xae\xbf\xee\ +\x9d\x76\xf9\x83\x16\xa8\xd5\xcd\xa1\x85\x12\x0a\x66\x8b\x7f\x63\ +\x82\xd1\xf7\xb9\xbb\x51\x57\xbf\x5c\x24\x4e\x58\x44\x56\xce\x30\ +\x42\xda\x89\xf9\xdd\xfd\x83\x82\xe1\xaf\xd1\xa8\x3f\xd6\xd4\x42\ +\x42\xd7\x85\xa3\xae\x75\x68\x76\xd7\xc7\x2d\xf9\xfc\xcc\x54\xdc\ +\x75\xdd\x12\xfc\xbf\x0f\xad\x12\xa2\xde\xed\x92\x10\x22\x26\x9d\ +\x4b\xca\xcd\x48\xc1\x3b\x56\x16\xe0\x03\x9b\xca\x30\x39\x15\xc3\ +\xb1\xee\x31\x61\x77\x44\xa4\x54\xf4\xb8\x2a\xc4\x7d\xb1\x9d\x30\ +\x46\x2e\x27\xdf\x2f\xbb\x8f\x6d\x9d\xbd\xc2\xf2\x2f\x2a\xc8\x75\ +\x7c\xc6\x70\x38\x4c\x36\x01\xc7\x09\x24\x14\x15\x15\x8b\x20\xd8\ +\x4b\x2f\xbe\x98\x60\x82\x68\xaf\x3b\x17\x82\x04\x78\xbb\x66\xf5\ +\x9b\x4f\x5e\x79\x35\xee\xfc\x8b\xbb\xc4\xc8\x60\x11\xb9\xa2\xae\ +\x3a\x69\x68\xb7\x83\x5c\xbc\xbe\x81\x21\x11\xbc\x79\x71\xf7\x7e\ +\x72\xef\x06\x11\x40\x06\x8e\xa4\x5c\x42\xee\x5c\xa6\x8a\x7a\x7a\ +\xea\x5b\xb7\x56\xe0\xce\x2b\xab\xe0\x4d\x75\xbd\x75\xbd\xa2\x24\ +\x9e\x6a\xee\x9f\xc0\xb7\x9e\x6c\xc0\xc1\xb6\xe9\x12\x31\x5f\x6c\ +\x04\x6b\x23\xaf\x93\x93\x39\x25\xa4\x40\x79\xb1\x9a\xc4\xda\x7a\ +\xc9\x6a\xac\x5d\x51\x97\x34\x62\x98\x4b\x1e\x84\xac\x45\x0c\xdf\ +\x73\xe3\xf5\x76\x09\x24\xae\x2c\x5a\x03\x87\xf2\xb2\xf9\x04\x80\ +\xbd\xd6\xd1\x9f\x99\x99\x85\x6f\x7c\xf7\x5e\x64\xf9\xb2\x85\xd5\ +\xbb\xb4\xa6\x22\xa9\x91\xd4\xd3\x37\x88\xfe\xa1\x61\x4c\x4d\x45\ +\xf0\xec\xab\xbb\xd1\x3f\x38\x4c\x3e\x51\x0e\x0e\xbb\x2f\x15\x23\ +\x4e\xb8\x5e\x64\xd8\x7d\xe9\x3d\xf5\x58\x5a\x9c\xe9\xfc\xf4\xd2\ +\x99\x76\x93\x32\x23\x00\xf4\xf6\xe8\xbe\x6e\xfc\x07\xa9\x86\xc9\ +\xb0\xaa\x16\x3c\x4a\x10\xeb\xc3\xfb\x08\xaa\x01\xf8\x32\x32\x50\ +\x51\x52\x22\x40\x70\xf9\x65\x6b\xb1\xb2\xbe\xc6\xd9\xed\x24\x35\ +\xe0\xd3\x32\x9c\x9c\x45\x7c\xc7\x8e\x2b\xed\x54\x01\x87\xd1\x6f\ +\x9d\xcf\x2a\xe0\xbd\x44\x77\x25\xb8\x7c\x1f\xfb\x14\xea\x97\xaf\ +\x52\xc5\x75\x6e\x36\x59\xca\xb9\x8e\xc5\xd5\xec\xdb\x33\xc3\xb9\ +\x1c\xeb\xd9\x3f\xee\x46\x1f\x19\x80\xcc\xfc\x43\xee\x8d\x24\xf2\ +\xd5\x24\x0d\x1b\x78\xf7\xbc\xbb\x1e\x39\x24\xfa\xa7\xc8\x30\x64\ +\x9d\xac\x92\x42\xef\x0d\x14\xb1\x92\x76\x5d\xd4\x81\x8c\xbf\x63\ +\xa4\x84\xdf\x9c\xbe\x76\x49\x51\x06\x36\xd6\xe6\x08\x49\xc0\x5e\ +\x43\x84\xee\xb1\x5f\x2e\x41\x7e\xac\x1f\x4a\x38\x20\x24\x98\x8f\ +\xa4\x01\x4b\xb4\x82\xbc\x6c\x01\x0a\xbb\xe7\xe6\x20\x16\xbb\x87\ +\x1c\x0f\xe1\x2c\x62\x88\x5c\xdc\xdd\xbb\x77\x59\xbb\x92\x25\x00\ +\x57\x1c\xf7\xce\x57\x09\xc0\x13\x35\x36\x18\x4f\x54\x54\xd5\xe0\ +\x7f\x7f\xe3\x1f\x45\xd0\x84\x83\x20\x6c\x14\x39\xc5\xf7\x27\xa7\ +\xa6\x84\xde\xe7\xf2\xab\x17\x76\xef\x45\x53\x6b\x87\x81\xf9\x6e\ +\xf1\x94\x37\x5d\x52\x8a\x3f\xbb\xac\xc4\xf2\xc4\x92\xf9\xbd\x34\ +\x5b\x19\x29\x39\x0f\x71\x65\x16\xaa\xc0\x10\x69\x1c\x0b\x46\xf0\ +\xfd\xe7\x9b\xd1\xd8\x33\x2e\xae\xe3\xa8\xe2\x25\xe1\x3d\x42\x12\ +\x14\xe4\xe6\x0a\x57\x91\xed\x81\x9b\xae\xdd\x8e\xac\x0c\xaf\x43\ +\x08\x5a\x16\x6e\x24\xc7\x11\xb8\xa8\x64\xeb\xe6\x4d\x76\x95\x45\ +\x0c\x80\xf7\xcf\x47\x09\x70\xa3\xdd\xe8\xbf\xed\xe3\x9f\x41\x59\ +\x45\xa5\x30\xfc\x38\xcc\xcb\xc1\x1e\xbb\xc1\xcf\x11\x3c\x16\xfd\ +\x6c\xed\x1f\x3e\xde\x40\x3e\x7f\x23\x02\x52\x06\x0e\xa4\x6c\x45\ +\x94\x5c\x46\x2e\xfa\x7b\xff\x65\x65\xb8\x66\x75\xe1\xf4\x48\x8c\ +\x8f\xcc\x58\xe2\x28\x8d\xda\x8c\x5c\x72\xeb\x13\xce\xdb\x51\x24\ +\xe6\xf0\x7d\x87\x6b\x22\x6a\xa1\xe0\x86\x2a\x1f\x1a\xfb\x83\x18\ +\x09\x86\x05\x60\x07\xe5\x42\x14\x45\xbb\x31\x35\x19\x20\xbf\x3f\ +\x55\x8c\xf0\x5e\xb2\x6b\xea\x6a\x2a\x04\xf8\xac\x7d\xc0\xc0\x87\ +\xb0\x91\xdc\x48\xa5\xeb\x39\x1b\xba\x73\xe7\x0b\xd6\x2e\x5d\xa1\ +\xa9\x82\xc1\xf9\x06\x80\x1f\x10\x2d\xb5\x8e\xfe\x0f\x7e\xf8\x13\ +\xf1\xc0\x47\x55\x79\x89\xe3\x97\x87\x47\xc7\x10\x22\x09\xd0\x4b\ +\xc6\xde\xf3\x7f\xda\x23\x7c\xfc\x03\x69\x5b\x30\xe5\xf2\x70\xd2\ +\x00\x37\xac\x2f\xc6\xe5\x4b\xf3\x30\x15\xd3\x3a\x3d\x66\x61\xa8\ +\xf1\xbc\x7e\xcc\x9f\xc7\xac\xe7\x66\x41\x09\xdf\x89\x25\xfe\x86\ +\xe9\x58\x05\x03\x5b\x01\x6b\xca\x7d\x38\x35\x38\x81\x51\x92\x08\ +\xac\x0e\x46\xe5\x3c\x94\x44\x3b\x11\xa0\x11\x9d\x9d\x95\x25\xec\ +\x1a\x6e\x25\x85\x79\x0e\x5e\x41\x24\x1e\x25\x5c\xb3\x66\x2d\x1e\ +\x7c\xe0\x7e\xbb\x8a\x63\x76\x7f\x9e\x9c\x4f\x00\x58\xae\x45\xac\ +\x12\x74\x7f\x49\x99\x1a\x05\xe6\x84\x89\xd7\x21\x8d\xca\x05\x1a\ +\x9c\xb1\x0b\x47\x22\x78\xec\xb9\x97\xc4\xfb\x37\x53\x37\xc0\xef\ +\xce\x13\xa6\xfe\xe6\x25\xb9\x78\x7b\x7d\x5e\x22\xa3\xad\x0c\x37\ +\x82\xc2\x8e\x61\xa7\x43\x4e\x60\x88\xc5\x12\xef\xc1\x20\x81\x78\ +\x10\xaf\x2c\xcd\xc2\xf1\xbe\x00\x82\xa4\xd7\x43\x72\x3a\xa2\xc4\ +\x9e\xbc\xe8\x00\x82\x64\xd4\xe5\xfa\x7c\x64\xd7\x0c\xa3\xba\xbc\ +\x58\x48\x85\x04\x2d\xa3\x95\x1d\xa7\x09\x09\xe0\x12\x52\xc3\x41\ +\x0a\xf0\x80\x0b\xcf\x17\x00\x70\x9a\x77\x9b\xf1\x44\x5e\x7e\x21\ +\x3e\xf4\x91\x3b\x45\xa9\x36\x3f\x4c\x65\x79\x71\x5c\x8d\x9a\x88\ +\x1e\x78\xd4\x3f\x2e\x44\xff\xee\x83\x47\xd0\xd2\xd9\x8d\x2e\x77\ +\x39\xda\xd2\x96\x0a\xb1\x5f\x91\xef\xc5\x35\xab\x0a\x11\x56\x8c\ +\xa3\x19\x89\x0c\xd3\x3f\x57\x0c\xd7\x28\x0e\xcc\x55\x92\x30\xdd\ +\xf1\xbc\x95\xf1\x36\x40\xd0\x24\x01\x07\x90\xab\xf3\xd2\x71\xac\ +\x37\x80\x28\xfd\x2d\xbf\x2b\x17\x39\xd1\x41\xb8\xc3\x63\xc2\xfe\ +\xe1\x64\xd0\xc8\xd8\x38\x6a\xab\xca\x6c\xd5\x21\x4b\x81\x4c\x21\ +\x05\x64\xd4\xd7\xd7\xe3\x3f\x7e\xf2\x63\x11\x2f\x30\x26\x16\x89\ +\x4e\x69\x36\xd7\xbc\x00\x00\x87\x7c\x4d\xa9\xb0\x6b\x6e\x7c\x1f\ +\x96\x6a\x96\x3f\xd7\xf1\x89\x22\x0a\xb5\xe4\xc6\x44\x3c\xda\x43\ +\xf4\x70\x1c\xe2\x7d\xfa\xe5\xdd\x98\x22\xb1\x79\xd8\xbb\x19\x31\ +\xd9\x85\xb4\x34\x17\x6e\x58\x5b\x24\xc4\x21\x7b\x59\x61\x4e\xf9\ +\x52\x67\x33\x18\xd4\x57\x65\xfa\x9c\xf1\x73\xeb\x35\x31\x1b\xb2\ +\x9e\x8f\x3a\x5c\x17\xb5\x39\x8e\x3a\x5c\x63\x78\xe5\x70\xb4\x2f\ +\xdd\x8d\xe6\xa1\xa0\xd0\xf7\xa3\x04\x82\xb2\x70\x1b\x82\x93\x41\ +\x91\x44\x9a\x08\x86\x50\x94\x9f\x63\xdb\x2f\x3c\x28\xb8\x4e\x82\ +\x6b\x08\x78\xee\x43\x57\x67\x27\x0e\x1f\x4a\x98\x66\xc8\x3a\xe4\ +\xa7\x46\x9d\x30\x97\x81\x1f\x53\xb6\x8f\x13\x24\x9b\x2f\xbf\x52\ +\x7b\x10\x09\x39\xd9\x3e\x31\x12\x6c\x2d\xff\x50\x58\x20\xfd\x8f\ +\xfb\x0f\x89\xeb\x9b\x3c\x2b\x11\x71\xa5\x8a\xd1\xbf\xa9\x26\x17\ +\x0a\x31\x3f\xc0\xa1\x57\xc9\x60\xed\xeb\x95\x22\x92\xd1\xba\x37\ +\x78\x02\x92\x8d\x67\x90\xe0\x0d\x48\xf6\x26\xbe\xa3\xf5\xaf\x4c\ +\x7f\xa6\x18\x3e\x50\x0c\xef\x15\xc5\x74\x6d\x71\xb6\x47\x48\xb0\ +\x0e\x02\x41\x50\xca\x24\xa9\xb6\x04\xb5\xa1\x46\xf4\x0f\x0d\x91\ +\x0d\x50\x88\x83\x6f\x36\xe0\x9a\x2b\x36\xdb\xf6\x8b\x3f\x30\x11\ +\x2f\x85\xbb\xf5\xb6\xdb\x71\xff\xcf\xef\xb3\x5e\xc2\x12\x97\xd7\ +\x27\xe8\x9c\x6b\x00\xbc\x2f\x21\xe1\x43\x23\x3f\xcb\x97\x23\x18\ +\x9a\xed\xcb\x12\x80\xb0\xe3\x3f\x57\xe8\x30\x2f\x07\x86\x86\x85\ +\xcb\x37\x21\x7b\xd1\xe3\xa9\x14\xcc\xe7\x58\x7e\x81\x2f\x15\x13\ +\x3a\xf3\x05\xd3\x15\x0b\x00\x8c\x4c\x57\x2c\x20\x50\xec\x5d\x44\ +\x58\x3f\x9f\xc9\xf5\xb3\x01\x86\x62\x05\x83\x0e\x04\x25\x01\x0c\ +\x6b\xca\xb3\xd0\x33\x16\x42\x84\x9e\xa3\xdd\xb3\x14\x15\x53\x2d\ +\x18\xf2\xfb\x51\x90\x97\x87\xc1\x11\x3f\x7a\xfb\x87\x50\x54\x90\ +\x68\x10\x4e\x91\x1a\xe0\xb2\x35\xce\x13\xf0\x24\xd7\xea\x9a\x1a\ +\xbb\xb9\x88\x9c\x69\xfd\xd1\x5c\xab\x00\x36\x46\x4c\xf3\xf8\xae\ +\xb9\xe1\xbd\xa8\xa8\xae\x15\x9d\x5f\x5e\x52\x20\x44\x99\x5d\xf4\ +\x23\x12\x56\xab\x72\x5f\x20\xab\x7f\x60\x78\x04\x0d\xde\xd5\x18\ +\x4f\xcd\x15\x76\xc3\x86\xaa\x6c\x21\x19\x22\x5c\xde\xc5\x31\x77\ +\xf1\x6a\x3c\xb6\x9e\x33\xbe\x37\x9c\x83\xf5\x1a\xb5\xdc\xc6\xf4\ +\x5e\xa7\x18\x12\x7f\x2b\x66\xfc\x8c\xdf\x2b\x89\xef\xe3\xc7\xd0\ +\xde\x4f\x1f\xab\x60\x95\x30\x34\x11\x16\x6a\x4d\x56\xa2\xc8\x0d\ +\x0f\xc6\xeb\x1e\x23\x64\xf8\x56\x94\x15\xd9\x47\xc5\xa8\x79\x3d\ +\x6a\x52\x6b\x70\x60\x00\xaf\xbd\xb6\xdb\xce\x1b\x78\x70\x2e\x25\ +\x40\x35\x6c\xd6\xe0\x59\xb5\xf6\x52\x31\xfa\x39\xb0\x91\x41\x62\ +\x4c\xb1\x19\xfe\xfa\x29\xce\xef\x1f\x3f\xd5\x8a\x49\xd9\x83\x5e\ +\x6d\xf4\x17\xd2\xe8\x67\xa9\x11\x8c\xc6\xb4\x51\xae\x4c\x8f\x76\ +\xc9\x22\xfa\x25\xbb\xd1\x6f\x90\x16\xb3\x09\x0e\x25\x13\xfb\xb0\ +\x88\xf8\x84\x51\x6f\x91\x0a\x16\x35\xc0\xbe\x61\x71\x76\x1a\x5a\ +\x46\x82\x64\xc8\xc5\xd0\x91\x5e\x87\xea\x60\x23\xd9\x3c\xa3\x64\ +\x03\xe4\xa3\xab\x6f\x10\x41\xb2\x07\x38\x35\x6c\x6d\x5c\xc7\x98\ +\x9f\x93\x2d\x7e\xeb\x1d\xd7\x5c\x8b\x1f\x7c\xff\x7b\x76\x6a\x80\ +\x07\x7f\x74\xae\x00\xb0\xcd\x7a\xa2\xb4\xa2\x0a\x99\xbe\x6c\xc1\ +\x74\xb5\xc8\x43\xb2\x15\xff\x62\xd6\x2d\x31\xfb\xcd\x86\x26\x71\ +\x6d\x57\x7a\x35\x14\x02\x0c\x33\x6f\x70\x32\x82\xc3\xbd\xe3\xa2\ +\x68\x23\xd3\xe3\x42\x46\x5a\x0a\xf8\x23\x33\x00\x0c\x4c\x97\x2c\ +\x0c\xd5\xcf\x29\x06\x15\xa0\xdf\x84\x34\x8b\x18\xbf\xe2\x04\x02\ +\xc5\x86\xe1\x16\x30\x58\x81\xa0\x19\x76\xc5\x3e\x0f\x3a\x86\x83\ +\x22\x97\xd1\x97\x56\x8e\xd2\x50\x3b\xc6\x03\x01\x11\x26\xe6\x94\ +\x77\x7d\x6d\xa5\x8d\x8a\x8c\x89\x52\x76\xae\x23\xbc\xe4\xd2\xcb\ +\x48\xad\xfa\xac\xeb\x13\x64\x6a\x79\x97\xd7\xe6\x0a\x00\x5b\x13\ +\xf4\xff\xb2\x95\xda\x88\x57\x0b\x29\x63\xb1\x98\x63\xd8\x53\x21\ +\x00\xbc\x71\x52\x4d\x6e\xf5\x78\xab\xc5\xe8\x67\x62\x37\x6a\x24\ +\x14\xc1\x08\xa9\x08\x8c\xf3\xb9\x20\xd2\x53\x19\x08\x6e\x91\xf5\ +\xe3\xe3\x34\xb7\x6c\x60\xb6\x26\x25\x14\xed\x58\x51\xcc\x76\x83\ +\x62\x33\xda\xa5\x99\xc2\xbc\x4e\x3a\xdf\x00\x08\xeb\x68\x4f\x02\ +\x00\x9f\x37\x05\x92\x7f\x12\x0a\x75\x47\x37\x3d\x2b\x03\x60\x64\ +\xcc\x2f\x82\x43\x5d\x3d\xfd\xa8\xab\xb6\x5f\x6f\x8a\xa5\x40\x2a\ +\x0d\x00\xb2\x86\xf1\xb6\xb7\x5d\x8e\x67\x9f\x79\xda\x6e\x10\xce\ +\x1f\x00\x54\xd7\x2d\x8b\x8b\x7c\x76\x71\x38\xa9\x93\x20\x79\x65\ +\xb5\x02\x78\x88\x8d\xa0\x81\x21\x8c\xa6\xe4\x62\x32\x25\x43\x65\ +\x8a\x98\xe7\x2d\xa9\x93\xa6\x24\x49\x7b\x0f\x52\x07\x0a\x89\x4a\ +\xd2\xde\x04\x0c\x3e\xef\x72\x49\x48\xe7\x02\xcb\x14\x19\x9e\x14\ +\x17\x91\xac\x4d\xc9\x32\x72\x58\x99\x7d\xca\x44\xb1\xbc\x51\x1c\ +\xbc\x00\xc5\x01\x04\x33\xbd\x8a\xfe\x70\x63\x9c\xa4\xdb\x88\xa7\ +\x10\x21\x39\x4d\x54\x35\x71\x5f\x0d\xfb\xc7\x30\x35\x15\x16\x41\ +\x1f\x6b\xe3\x09\x2e\x39\x8a\x9a\xf1\xdc\xb4\x69\xb3\x1d\x00\xb6\ +\xce\xa5\x0d\xb0\xc6\x7a\xa2\xa2\xb2\x56\x3c\x94\x88\x62\xa5\xa4\ +\x98\x4a\xb3\xf5\x96\xc2\xc6\x10\x31\xab\xa9\xad\x43\x35\x70\xd2\ +\x8a\xb5\xd1\x6f\x64\xba\xe1\xbd\xe9\x58\x7d\x25\xff\x01\xe3\x91\ +\x28\xc6\xd9\x4e\xe0\xda\x3d\xfa\x4e\x1a\x49\x95\x34\x02\x02\x4b\ +\x87\x54\x02\x08\x17\x86\x24\xc8\x7c\xdd\x45\x54\x1c\x50\xa0\xd8\ +\xa9\x02\x0b\xc3\x67\xcb\xfc\x98\x62\x3a\xe7\x49\x25\x00\x4c\xa9\ +\x75\x86\x43\xf4\xcc\xa5\xc1\x36\xb2\x81\x82\xc8\x24\x63\xb0\x7f\ +\x68\xc4\xb6\x3a\x8a\xa3\x87\xfa\x80\x5a\xb9\x6a\xb5\xdd\x4d\xaf\ +\x98\x2b\x00\x70\x85\x83\x29\xb6\xeb\x49\x4f\x47\x4e\x7e\x81\x78\ +\x5e\x5e\xa4\x41\x71\xf0\xfd\xdd\x34\xfa\x19\x00\xad\x1d\x5d\x2a\ +\x00\xbc\x25\xc9\x01\x20\x1b\xfc\x7f\xe3\x71\x9c\xd4\xf7\xd4\x55\ +\xa2\x7a\x07\x9a\xeb\xc8\x31\x88\x54\x06\x85\x5b\x22\xd0\x49\xe2\ +\xef\x4a\xc9\x04\x81\x92\xe4\xa4\x62\xb1\x0d\x66\x3b\xf2\x0d\xc7\ +\x6e\x02\x27\xe7\x35\xf8\xcd\x30\x49\x01\x06\x00\xcf\x66\xe2\xb9\ +\x06\x3c\x93\xa9\xd8\xc6\x1d\x8c\x72\x84\x91\xa4\x03\x7b\x52\x6b\ +\xd7\xad\x73\x02\x80\x6b\x2e\x00\xb0\xd4\x7a\xa2\xa0\xa8\x34\xce\ +\x74\x0e\xff\x3a\x02\x80\xa4\x03\xf3\xad\xb3\xb7\x9f\x0b\xac\x11\ +\x48\xcb\x99\x06\x40\x9c\xf9\x66\x10\xd4\xe5\xa5\x63\x5b\xa5\xcf\ +\xcc\x7c\xa3\x0d\x60\x17\x00\xb2\x49\x19\xab\x40\x50\x69\xd6\x45\ +\x20\xc9\xbc\x00\x13\x38\xcc\xcc\x7f\xe8\xcd\xfe\x04\xc0\xf0\xa4\ +\xd1\x08\x49\xad\xd1\x74\xf2\x9c\x87\xd5\xe9\x6c\x7c\xfb\xfe\xf1\ +\x80\x63\x7f\x85\xc2\x11\x21\x4d\xd9\x08\xcc\xcd\xcd\xb5\xae\x5e\ +\xc6\xbc\xaf\x99\x0b\x00\x24\xd4\xfa\xe7\x17\x16\xc7\x1f\x82\x73\ +\xff\x31\x3b\xfd\xcf\x93\x3e\x5d\x2e\x21\xda\xd8\x06\x08\xa4\x64\ +\x23\xa6\xa5\x7b\x13\x46\xbd\x61\xb4\x6f\xab\xf2\xe1\x67\x37\xd6\ +\x63\x21\xb5\x07\x18\x00\x16\x8f\x42\x76\x4b\xc2\xa0\x0b\xa6\x66\ +\x21\x2c\xa7\x88\x7e\xe0\x32\xb0\x40\x60\xd2\xb6\xbf\x44\x50\x88\ +\x24\x80\x22\x12\x69\x12\xaa\xab\x6b\xec\x96\xaf\xab\x90\xe7\x03\ +\x00\x7c\x39\xb9\xf1\xb9\x79\x6c\xd0\x98\x67\xde\x2a\xf1\xd0\x30\ +\x1b\x81\x3c\x6f\x4f\xc4\x01\x52\x7d\xd3\xcc\xd6\xc9\x65\x7d\xaf\ +\x8b\xce\x85\xd5\xc2\x56\x52\x60\x7a\xae\x89\x94\x2c\x11\x0d\x8d\ +\x91\x6b\xc0\x99\x50\x4e\x02\xd9\xf5\x99\xf1\x7c\x79\x45\xa5\xdd\ +\x9f\xaa\x99\x8b\xde\x49\x58\xc5\x8b\x17\x73\xd0\xa7\x58\xbb\xd9\ +\xcd\xb3\x79\x18\x76\xff\x58\xff\x73\xe9\x97\x30\x72\x52\x32\x13\ +\x01\x60\x62\xbe\x6b\x5a\x12\x2c\xb0\x16\xa1\x9b\x8e\x48\x5a\xe4\ +\x91\x89\x27\x98\x1a\xa4\x9b\xf0\x7c\xa0\xce\x5a\x66\xc9\xa8\x1b\ +\x7c\x09\x00\x88\x4c\x03\x20\x37\xcf\xb6\xc2\x38\x67\x2e\x54\x40\ +\xa6\xf5\x44\xba\x37\x33\x1e\x03\xe0\x07\x62\x64\x5b\x9b\xac\x4d\ +\xff\xe6\x00\x87\xd0\x6f\x29\x1e\x33\xc3\x75\x57\x50\x96\x13\x8d\ +\xbe\x05\xd6\xa2\xd6\xc0\x14\x0c\x12\x80\x19\xef\x56\x93\x3d\x1c\ +\x2b\x11\x8b\x4c\x85\xa7\xa8\xcf\x12\xe7\x33\xa8\x00\x50\x55\x48\ +\x6e\x6e\xde\xbc\x01\x80\x6d\x74\xcf\x68\xc8\xd8\x19\x35\x5c\x02\ +\xcd\x31\x80\x61\x4d\x02\x44\x49\x0f\x26\x02\x40\x36\xbc\x37\x18\ +\x87\x0b\x12\x00\xd6\x68\xa5\x12\x7f\x16\x91\xf5\xd4\x18\x2c\x52\ +\xde\x9c\x1b\x71\x08\x9b\x8b\xb5\x0c\x14\xe7\x3e\x98\x0b\x00\xd4\ +\x24\xa8\x00\x96\x00\xd0\xad\x5d\x97\xed\xc3\x88\xf9\x80\xda\xb2\ +\x29\xa6\x11\x61\x02\x81\xcd\xf1\x02\x54\x01\x1c\xe9\x14\xb1\x00\ +\x01\x6a\x1e\xea\x06\x40\x5b\xbc\x14\xee\x17\x5e\xd3\xc0\xae\xcf\ +\x58\x45\x28\x5a\x74\xd3\xe5\x50\x50\x3b\x2f\x24\x80\xa4\xa7\x7d\ +\x09\xe5\x4e\x16\xad\xfe\xb0\x92\x51\x3c\xc6\x99\x2f\x27\x7a\x01\ +\x46\x10\x2c\xb4\x66\xbc\xe7\x78\x77\xc8\x6a\x86\xc8\x06\x00\xdc\ +\x79\x76\xfd\xa6\xc4\xa6\x25\xab\xa3\x67\x3d\x07\x8f\xd7\x61\x3d\ +\xc1\x2b\x66\xea\x36\x00\x5b\xae\x76\x33\x7f\x84\x21\x2c\x4b\xe6\ +\x9c\x7e\x9c\xf9\x36\xb1\x00\x59\x32\xe7\xfd\x17\x22\x00\xa4\x69\ +\x9e\x9b\x40\xa0\xf5\x81\x2e\x0f\xf5\x55\x48\x6c\xf3\x26\x9a\x0d\ +\x10\x89\x46\x6c\xed\xcd\xb9\x00\x40\xc4\x4e\x59\xe9\x0f\x10\x8d\ +\x45\xe1\x52\x64\x5b\x83\x86\xf3\xfc\xb9\xbe\x2c\xad\x2b\x62\x66\ +\x9d\x6f\x07\x00\x1d\x20\x0b\x15\x00\xb6\xa3\x56\xa6\xfe\x51\xbb\ +\x50\x4c\x0e\xd5\xd6\x35\xb6\xb5\x01\xe2\xb6\x95\xe4\x2c\x02\xe6\ +\xe0\xf1\x26\x13\x4e\x4c\x4e\xc4\x1f\x80\xf5\x99\xdb\x46\x30\xb1\ +\xc5\xcb\x12\x40\xaf\x10\x4e\x8b\x4e\x1a\x18\x0f\x7b\x3b\x40\x5e\ +\xc0\x12\xc0\x34\xfa\x15\x93\xdc\x4f\x89\x4c\x6a\x23\xdc\x15\x5f\ +\x2b\x21\xe6\x60\x37\xe9\xfd\xea\xb7\x5f\xae\x7e\x7c\x2e\x00\xd0\ +\x63\x3d\x31\x21\x66\xc6\xaa\x0f\xca\x16\x6d\x5a\x6a\xe2\xc3\x84\ +\x42\xaa\xcf\xcb\x33\x60\x04\xfa\xa7\xc6\xcc\x8c\x4f\x66\x0c\x2e\ +\x44\x00\x28\x76\x4a\x50\x15\xfc\xe9\x53\xe3\x9a\x04\x98\x5e\x16\ +\xcf\xde\x73\x9a\x36\xa8\x87\x86\x86\xec\xfe\xd2\xc0\xbc\x00\x80\ +\x7f\x74\x38\x2e\xaa\x78\x92\x87\xdd\x3c\x00\x9e\xfe\xc5\x48\xd7\ +\x13\x1f\x19\x93\x7e\x43\xc6\x4f\x72\x96\x00\x32\x2e\x10\x00\x4c\ +\x03\xc1\x1b\xf2\x8b\xd1\x2f\x96\xa6\xd3\x52\xe4\x76\x46\x20\x57\ +\x18\xeb\x00\xe8\xea\xec\xb0\xb5\xc7\xe6\x85\x11\x38\x3c\xd0\x1f\ +\xbf\xd1\x49\x6d\x51\xc6\x04\x1b\x80\x8c\x43\xae\x74\xe1\x29\x62\ +\x39\x64\x07\x44\xc6\x47\xd5\x1a\x0e\x59\x32\x67\xf8\x2c\xd2\xa0\ +\x27\x14\xc5\xce\xde\x80\xa5\xec\xcb\xe2\x4e\x59\x53\x7d\xb3\x9e\ +\x35\x8c\x24\xba\x1a\xb3\xa8\x15\x80\x7d\xf1\x28\x87\xb4\xed\xeb\ +\x61\x90\x1a\x0a\x20\x35\x12\x42\x46\x66\x86\x78\x94\x64\xc9\x33\ +\x4e\x04\xe9\x9f\xb5\xb5\xb6\xce\x1b\x00\x34\x5a\x4f\x0c\xf6\xf7\ +\xc4\xe3\x00\x4e\x00\x10\x0a\x6b\x22\x48\xcc\xcf\x44\x4d\x45\x29\ +\x46\x8e\x9e\x24\x29\x30\x8c\xf1\xac\x82\xa4\x21\xe1\x67\x7a\x02\ +\x78\xa6\x6f\x62\x86\x94\xb1\x31\x55\x0c\x4b\x1d\xa1\x64\x0f\x12\ +\x38\x30\x77\xc6\x54\xaf\xa2\x32\x57\xdd\x5d\x62\x3a\xf7\xcf\xe7\ +\xf4\xf7\x56\xd7\x55\x99\x8e\x0a\x66\x07\x06\xc4\x29\x9f\xb6\x9a\ +\x48\xba\x27\x09\x00\x84\x6a\x20\x15\x3b\x11\xc0\xe0\xe0\x80\xdd\ +\x25\x2d\xf2\x1c\x01\xc0\xe4\x09\x04\xe9\x06\x03\x6c\x07\xd0\x3f\ +\x9e\xf8\xc0\x06\x8d\x1d\xf9\xc7\x27\xc4\x6a\x9c\x2b\x96\x54\x8b\ +\xef\xe5\x8d\x76\x26\xcf\x07\x58\x3d\x04\x53\xd2\x48\x36\x27\x8f\ +\x5c\x76\x24\x27\x5e\x6f\x47\xc6\xdf\x72\x25\x21\xdb\x9c\x85\x83\ +\x0d\xe3\x20\xd5\x72\xfd\x6a\x2d\x04\x4b\x41\x15\x00\x69\xb6\x7d\ +\xc5\xff\x38\xb3\xca\xe0\x68\x38\x79\xc2\x8e\x0f\xbc\x14\x4f\x68\ +\x2e\x00\xc0\xa5\x2d\x6f\x58\x4f\xb6\x37\x37\x6a\x09\x8c\xb0\x98\ +\xce\x64\x97\xdc\xe0\xa9\x60\xfc\xd0\x6b\x97\xab\x25\x05\xf9\x23\ +\x9d\xb6\x62\xdf\x39\x41\x34\x9b\xf3\xb2\xf9\x75\x26\x06\xcb\x06\ +\xb0\xb8\x0c\xbf\x61\x04\x90\xd3\x6f\x9d\x01\xe5\x0f\x77\x8a\x88\ +\x68\x5e\xb6\x4f\xbc\xb2\x2b\x68\xd7\x57\xea\xfc\x41\x15\x08\xbc\ +\x45\x8d\x03\x00\xe6\xcc\x44\xda\x67\x3d\xd1\xd5\xde\x1c\xdf\x5e\ +\x85\x45\xbd\x2d\x00\xc6\xc6\x45\x1a\xb4\xac\xb8\x10\x45\xf9\xb9\ +\xc8\x1e\xed\x85\x9b\xdd\x41\xc9\x1a\x19\x4c\x32\xfa\x9d\xa4\x80\ +\x4b\x76\x96\x02\x09\xa3\x5d\x9e\x4e\x35\x9b\x80\x20\x27\x8e\xf6\ +\xd3\x1d\xfd\x4e\xc4\xf3\x01\xc6\x07\x90\x1e\x1a\x17\x93\x66\xb8\ +\x36\x22\x2d\x2d\x45\x9b\x3c\x93\xd8\x57\x2a\x30\xd4\xbc\xca\x11\ +\x7b\x00\xec\x9b\x4b\x00\x24\xcc\x54\x68\x3f\x75\x32\x3e\xd7\x7d\ +\x3c\x10\x14\xaf\x76\xd4\x3f\x3c\x22\x2c\xdf\xb7\x5d\xba\x16\xbc\ +\x34\x73\x69\x6f\x83\xa5\x08\x04\x86\xd8\x00\x66\x27\x11\xec\xea\ +\x08\x5c\x86\x91\xeb\xd6\xce\x71\x45\xb1\xdb\xc0\x54\x3e\x76\x6b\ +\x60\x70\x5b\x01\x63\xa3\x62\x92\x32\xdd\xc9\xa5\x9d\x7e\xa6\x92\ +\xde\x93\xa2\xaf\x4a\x0b\x0b\x84\x24\xe4\x35\x89\x9d\xfa\x49\x14\ +\xd6\x6a\x8b\x5d\xef\xdb\xb7\xc7\x8e\x07\x7f\x9c\x4b\x00\x24\x2c\ +\x06\xd5\xd3\xd5\x8e\xc9\x89\x09\x01\x02\xb5\xcc\x29\x66\x4b\x3d\ +\xbd\x83\x02\x00\x57\x6c\xba\x44\x7c\xaf\xac\xeb\xb8\xbd\x2b\x28\ +\x9d\xc1\xa8\x73\x59\x44\xbd\xdb\xc0\x7c\xd7\x0c\xfa\x3d\x41\x52\ +\xd8\xfd\xa6\x3c\xc3\x7d\x58\xc0\x6b\x90\x6a\x32\x3d\x7b\x49\x4f\ +\xa3\xc8\x8a\x96\x14\x14\xc4\xf5\xbf\x5d\x1f\xf1\xa3\x7b\xb4\xda\ +\xca\x46\xd2\xff\x43\x83\x83\x76\xc1\xb8\xdd\x73\x09\x00\xb6\x4a\ +\x5a\xcc\x89\x8b\x18\x9a\x4e\x1c\x89\x2f\xde\xcc\x75\xed\x36\x93\ +\x82\xc5\xbc\x38\x2e\x79\xe6\x25\xd4\xd6\xaf\xac\x47\xc6\xc4\x28\ +\x0a\xfa\x5b\x9c\x63\x02\x92\x74\x7a\x52\xc0\x65\x61\x7a\xc2\x75\ +\xb2\x99\x64\x3b\x15\x60\x90\x08\x67\xa2\xeb\xa5\xc4\x60\x56\x59\ +\xe7\x51\xa4\x44\xa6\x50\x5e\x5c\x24\xb6\xbf\x61\x11\xaf\xcf\x9d\ +\xb4\x92\x58\x3a\x57\x53\x05\x3b\x77\xfe\xc1\x49\x02\x87\xe6\x12\ +\x00\xdc\x12\x0a\xd5\x4f\xbe\x71\xd0\x60\xf0\x05\x1c\xbd\x81\xd6\ +\xce\x5e\x31\x02\x6e\xdc\xf1\x76\xf1\xbd\xda\xa6\x7d\xe6\x5c\x80\ +\x0d\x10\xf4\x90\xa9\x20\x97\xe1\x98\xeb\x0c\xb8\xda\x88\xcf\xb9\ +\x25\xf5\x58\xbf\x46\x9c\xd3\x3e\xe3\xf3\xf1\x63\xeb\xe7\xb2\xf6\ +\x5d\x2b\xc9\xd3\xbf\xa9\xff\xae\xcd\xdf\x97\x74\x55\x23\xd9\x25\ +\xb3\xd4\xd1\x5f\x7d\xea\x80\x78\x5b\x5b\x59\x2e\x9e\x85\xa3\x80\ +\x4e\xfd\xc3\x6b\x09\xc5\x34\xfd\xff\xc2\xf3\xcf\x26\xed\xfb\xb9\ +\x4c\x07\xf3\x76\x6f\xa6\xbd\x7f\x5a\x1a\x8f\x61\x32\x38\x01\x4f\ +\xba\x57\x18\x7c\x85\x79\xd9\xb6\x1b\x3c\xb5\x75\xf4\x60\x59\x6d\ +\xa5\x58\x38\x6a\x45\x5d\x0d\x8e\x37\xb5\xa0\xb0\xe7\x14\xfa\xcb\ +\x97\x3a\x26\x85\x52\x89\x51\x29\x2e\x4b\xf2\xc8\x65\x53\x3b\x20\ +\x3b\xc5\x04\x24\xfb\x60\x90\xdd\x94\x2f\xa3\xdf\x1f\xb3\xd4\xfa\ +\xf3\x6b\xd4\x10\x0b\xe0\xb5\x01\x78\x2a\x97\x62\x89\x5a\x2a\xfa\ +\xf0\x54\x50\xde\x76\x04\x69\x53\x41\x94\x97\x14\x21\xd3\x9b\x1e\ +\xdf\x04\x4b\xb1\x99\x3d\xc5\x61\xe1\x74\xd6\xff\xf4\xaf\xb9\xb9\ +\x59\xa8\x00\x87\xbe\xc7\x5c\x4b\x80\x17\x39\x16\x6d\xf2\x0f\x23\ +\x11\x1c\x3f\xbc\x3f\xbe\x71\xc3\x28\xdb\x02\xb0\x59\x09\x83\x3e\ +\x6b\x6a\xed\x14\x31\x81\x5b\xde\x73\xad\xf8\xee\xd2\xa3\x7f\x12\ +\x23\x25\xce\x30\x19\xa6\x39\x01\x5e\x02\x80\x37\xc5\x42\x6e\x79\ +\xfa\xbc\xdb\x42\xe2\x1a\x97\xf6\x99\x2b\xf9\x75\x6e\xed\x9a\x64\ +\xbf\x6d\x3d\x97\x6a\x3e\x9f\x90\xc2\xd6\xee\x3f\x35\x14\x44\xcd\ +\xc9\x7d\x42\x52\xac\xac\xab\xd5\x76\x12\x49\x75\xdc\x8a\x3c\x3b\ +\x2b\x53\x75\xff\xa8\x0f\x1f\xff\xcf\x47\xec\xfa\x9d\x5d\x82\xf8\ +\xa2\x91\x73\x39\x3d\x9c\xef\xb7\x8a\xc8\xb4\xd2\x81\x7f\x64\x08\ +\xeb\x36\x6d\xd7\x52\xc0\x51\xb1\xf1\x93\x9d\x9b\xc3\x8b\x43\xd5\ +\x54\x94\xa0\x38\x3f\x4f\xac\x9d\xd3\xd5\xda\x06\x29\x16\xc5\x70\ +\x49\xb5\xad\xee\xce\xe4\x39\x82\xa9\xbc\x76\x8e\x2a\x09\x52\xe8\ +\xbc\xfa\x4a\x24\x6b\xef\xe3\x9f\xc9\x62\x1e\x40\xfc\xbc\xfe\xea\ +\x92\xb4\xf3\xb3\x20\xc9\x72\x2c\x59\xce\x1b\x3e\xe7\x29\xe2\x13\ +\x51\xc3\x0c\x12\x43\x60\x6f\xe5\xbe\xe7\xe0\x1b\x1d\xc0\x8a\x25\ +\x35\x28\x2e\xc8\x17\x40\xd0\x03\x3c\x56\x12\x46\x71\x71\x81\xb8\ +\x66\x2a\x14\xc2\x37\xbe\xfa\x15\x84\x42\x09\xc9\x57\xde\x5a\xe6\ +\xb5\xf9\x00\x00\x6e\xbc\x98\xdd\xa7\x4c\x51\xc1\xc0\x38\x4a\xab\ +\x6a\x91\x9d\x5b\x20\x7c\x7e\xde\x89\x8b\x1f\x38\x21\x3d\xcc\xeb\ +\xfe\x87\xa6\x50\x59\x5a\x84\xe5\x4b\xaa\xf0\xe2\x6b\xaf\xc3\xd3\ +\xd7\x81\xe1\xe2\x4a\x84\x32\xb3\x13\x0c\x3b\x0f\xef\x1b\x98\xe6\ +\x12\x53\xbf\x52\xdd\xea\xcc\x1f\x33\xd1\x39\xd9\x70\x6c\x3a\xa7\ +\xbd\x17\x33\x86\x24\xf5\x55\x27\x49\x3f\x86\x7a\x2c\x69\xaf\xfc\ +\x3e\x7e\x0d\xa6\xaf\x33\xbe\x6a\x34\x1e\xa1\x67\xd1\xc5\xb9\x21\ +\xa4\x5c\xd4\x7e\x02\xb5\xc7\xf6\x8a\xc9\xb2\x1b\xd7\xac\xd2\x32\ +\x7f\x2e\xc7\x80\x34\x47\x07\xf5\xe5\xf3\x9f\xfa\xdd\xe3\xa4\xff\ +\x9f\xb1\xb3\xfe\xef\xe0\x6e\x9e\x2f\x00\xe8\x26\x7a\x17\x2c\x73\ +\x05\xc6\x46\x86\xb1\x6a\xc3\x66\x21\x03\xb9\xae\x8d\xa5\x80\x5d\ +\xe3\x2d\x5f\x78\xad\xdc\x82\xdc\x1c\x94\x95\x14\x62\xd7\xfe\xc3\ +\xc8\xeb\x6d\x43\x6f\xcd\x72\x44\x79\xb7\x2e\x43\xa0\x27\x4a\x9d\ +\x57\xe9\x75\x1b\x98\x2c\x5b\x98\x6a\x78\x6f\x07\x04\x23\x18\x64\ +\x2b\xc1\xe6\x9c\x81\xf1\x3a\x20\x24\x18\x98\x0f\x71\x8e\x25\x41\ +\xdb\x64\x44\x98\x05\xd3\x00\x50\xe0\xf5\x0f\x63\xdd\x2b\x8f\xc3\ +\x45\x40\xbf\x62\xe3\x25\x42\xaf\x0b\xa3\xd1\x21\xbd\xcd\xe0\x28\ +\xd7\x46\x3f\x0f\x9c\xbf\xff\xca\x17\x31\x36\xe6\xb7\xd3\xfd\xf7\ +\x9b\x32\x86\xf3\x20\xf9\xc9\xc9\x6d\xd3\x8e\x60\x63\xa3\xc3\xa8\ +\xa8\xae\x83\x2f\x27\x4f\x64\x00\xc5\x02\x88\x29\xf6\xf6\x6a\xff\ +\xe0\x08\x6a\x2a\xcb\x84\x24\xe0\x08\x62\x4b\xe3\x29\xf8\x06\x7a\ +\xd0\x53\xb7\xda\xe4\x77\x47\x89\xb2\x48\xdf\xe6\xb1\x1a\xd0\x45\ +\xbc\xae\x06\xe2\xa2\x5e\xb2\xa8\x00\x69\x5a\x15\xd8\x1e\xb3\x28\ +\x87\x41\xcc\x43\x23\xa3\xa8\x87\x45\xf4\xc3\xa4\x16\x06\xc3\x51\ +\xf4\x4d\xc5\x4c\x99\x41\xf7\x64\x10\x1b\x5e\x78\x04\x9e\x60\x00\ +\x97\xac\x5a\x2e\x5c\x3f\xeb\xba\x15\xd6\xc6\x7b\x27\xf0\x5c\x41\ +\xbe\xea\xb9\xa7\x9e\xc0\x53\x4f\x3e\x61\x77\xd9\x1d\xda\xa0\x9b\ +\x57\x00\xe0\x98\xf4\x6d\x50\x57\xaf\x32\xd9\x02\x2b\x37\xa8\xe6\ +\x01\xaf\x08\xa6\x8b\xb6\x04\x83\x90\x0c\x47\xce\x11\xd4\x54\x96\ +\x62\xed\xb2\x3a\xb1\x37\x80\xbf\xbd\x0d\x19\xa3\x83\xe8\xaf\x59\ +\x66\x02\x81\x9f\xbe\x50\xeb\x4d\x81\x37\x2e\xd2\x8d\x52\x40\xb6\ +\x8c\x70\xd9\xf2\x6a\x50\x03\xc9\x46\x3a\x19\xa6\xd3\xaa\x00\x89\ +\xc7\xf2\xf4\x7b\x66\xfb\xc1\xf1\xf0\x74\x35\x0f\xbd\xb8\xc2\x53\ +\x58\xff\x87\x47\xe1\x1b\xee\x43\x6d\x45\x19\xd6\xad\x58\x16\xaf\ +\x88\x52\xb4\x0d\xeb\xac\xc4\xb5\x01\xa5\x45\x6a\x70\x28\x1a\x8d\ +\xe0\x6b\x5f\xb9\xc7\x6e\xf4\xb3\xd1\xfd\xad\x84\x9a\x81\x79\x00\ +\x00\x11\xfc\x83\x65\xd1\x28\x96\x02\x79\x45\xa5\xc8\x2b\x2c\x8e\ +\x17\x3b\xf0\xca\xd8\x76\x3d\x30\x16\x98\x88\x6f\x24\xb1\x79\xfd\ +\x6a\xec\x39\xf4\x26\x62\x5d\x1d\xc8\x18\x19\x40\xff\x92\x65\xf1\ +\x59\x42\x31\xa2\x51\xea\xec\xba\x74\x37\xd2\xe2\x23\x5e\x4a\x94\ +\x00\x09\xa3\x5d\xb6\x18\x6e\xfa\x79\x98\x8d\xba\xf8\xe8\x47\xe2\ +\xb1\x3e\xfa\xa1\x9e\xe7\x7f\xaf\x11\xf3\xc5\x34\x75\x8d\xff\x82\ +\xf9\xcf\x3c\x8c\x9c\xfe\x4e\x94\x90\xc1\xb7\x9d\x44\xbf\x28\xfb\ +\x26\x90\x8b\x05\x33\x1c\x4c\x7f\x2e\x92\xe1\xb8\x00\xb7\x47\x7e\ +\xf5\x20\x5e\x7c\xe1\x39\xa7\xd1\xdf\x3a\x1f\x01\x00\x2d\x3b\x98\ +\x20\x05\x7a\x3b\x5b\xb1\xfa\xd2\xad\x02\xe1\x5c\x29\x94\x9e\x9e\ +\x26\x42\xa1\x76\x8d\x17\x8c\xe0\x65\xd3\x0b\xf2\x72\xb0\x65\xc3\ +\x6a\xbc\xfe\xc6\x09\x0d\x04\x24\x09\x96\x2c\x8f\x27\x6f\xd8\xfa\ +\x19\x24\x40\x2d\xf1\x90\xbf\x6c\xb2\xec\x2d\xd6\xbf\x6c\xb1\xfa\ +\xe3\x8c\x96\xa7\x45\xbc\x64\x05\x01\xcc\x40\x80\xfe\x6a\xfe\x8c\ +\xf5\xfd\x4b\x63\x53\x18\x30\xec\x20\xe2\xa2\xe7\x5b\xff\xd4\xaf\ +\x91\xd3\xd7\x29\xf6\x3f\xbc\xfa\x6d\x1b\xc5\x73\xf3\xaa\x5f\x0c\ +\x00\xa7\xc6\x51\xbf\x02\xad\x4c\x6e\xa0\xbf\x0f\xdf\xfc\xea\x97\ +\x11\x0e\x4f\xd9\x8d\xfe\xbf\xb3\xfb\xfe\x7c\x01\x00\x63\xf9\x94\ +\x06\x82\x78\x9b\x0a\xf1\x46\x4f\x61\x54\xd5\x2d\xd7\xaa\x85\xc2\ +\x22\x10\xa2\xaf\xd3\x60\xa5\xf6\xae\x3e\xa1\x0b\x79\x44\xc4\x41\ +\xd0\xd9\x8e\xdc\xae\x36\x0c\xd6\xd4\x21\xca\x2b\x67\xf1\xe4\x4a\ +\xfa\x81\x56\xea\xfc\xd2\x54\x37\xf2\xdd\x46\x66\xc3\x2c\x15\xec\ +\x5c\x3b\xc9\xce\xdd\x33\xe8\x7d\x23\x08\x60\x91\x02\x6c\xb3\x90\ +\xc5\xff\x0c\x31\x7f\x24\xa2\xc4\x0b\x49\xd2\xc9\xe8\xbd\xe4\xb1\ +\x07\xe1\x1b\xec\x13\x23\xff\xda\xb7\x6f\x11\xc5\x1c\x53\xf4\xbc\ +\x5c\x0a\xe7\xe4\xf3\x33\x40\x38\x38\xa4\x1b\x86\xff\xf8\x0f\x5f\ +\x47\x53\xe3\x49\x6b\xdf\x32\x7a\xfe\x0c\x36\x4b\xc5\xcf\x17\x00\ +\x70\x75\xc7\x55\xda\xe8\xe7\x65\x4b\x32\xcd\x52\xa0\x1d\x15\xb5\ +\x4b\x91\x95\x9d\x2b\xc4\x20\xaf\x0e\x9e\xee\xb1\xdf\xd7\x87\x7d\ +\xe1\x8e\x9e\x3e\xe4\x64\x65\x89\xcd\x19\xaf\xdc\x72\x29\x1a\x5b\ +\xdb\xe1\x6f\x6d\x45\x51\xc3\x31\xf8\x4b\xca\x11\xca\x56\xd7\x14\ +\xe0\x31\x72\x82\x0c\xb0\x20\x75\x5e\x15\xc7\x08\xac\xc6\xa0\x0e\ +\x06\x13\xb3\x65\x33\x10\x12\x98\xee\xa0\x06\xa0\x2e\x3f\xfb\xca\ +\x44\x04\xaf\x04\xc2\xe2\x58\x17\xfb\x05\x8d\x27\xb0\xfe\xf1\x5f\ +\xc1\x43\xee\x6f\x5d\x75\x05\xae\xb9\x7c\x33\x5c\x04\x4a\xae\x8c\ +\xe2\x95\xd0\x9c\x1a\xf3\x9c\x55\x1e\x2f\xa6\xcd\x6f\x5e\x78\xfe\ +\x69\x3c\xf4\xc0\xcf\xec\x2e\xfd\x37\xa2\x9f\xe0\x34\xab\xdc\xce\ +\x47\xe3\xdd\xc1\x78\xab\xd3\x8d\x33\x5d\xc8\xcc\xbf\xf5\xd3\x7f\ +\x8d\x34\x8f\x1a\x06\xcd\xcf\xf5\x89\xbd\x75\x9c\x1a\x8f\x88\xed\ +\x9b\xd7\x0b\xc3\x90\xb7\x8a\xbb\xff\xd1\xa7\xf0\xf4\x4b\xbb\x10\ +\xa3\xf3\xed\x97\x6e\x41\xf3\x15\x3b\x10\xe3\x82\x09\xcd\x45\xe4\ +\x0e\x5f\x4f\x76\xc1\x26\x52\x0b\xc5\x7a\x54\x2e\x59\x38\x38\x11\ +\x79\x8e\x25\x60\xbd\x34\xd2\xf7\x07\xc3\x38\x10\x54\x6b\x1a\xd5\ +\x30\xb0\x02\x37\x79\x2c\x4b\x89\x69\x65\x47\x0f\x8b\x67\xda\xb2\ +\x7e\x8d\x28\x74\xe1\x6c\xde\x58\x20\x88\xb1\xf1\x89\xa4\x7d\xc2\ +\x7d\xc0\x9b\x68\xf0\x77\xfb\x7b\x7b\xf0\xd9\x4f\xdd\x81\x40\x60\ +\xdc\x7a\x19\x47\x5a\xb9\x7a\x66\xd4\xe9\x77\xe6\x42\x02\xf0\xea\ +\xcf\xbf\x23\xfa\x3c\x07\xae\x66\xf3\x85\x65\x2b\xd7\xe0\xf2\xed\ +\x3b\x10\x08\x86\xe2\xaa\x20\x8d\xc4\xb7\xcb\x61\xef\x20\xb6\x95\ +\x5b\x3a\x7b\xe2\x91\xb1\x0d\x2b\xeb\x85\xab\x78\xe4\x78\x23\xbc\ +\xad\xcd\x28\x3e\x7a\x04\x21\x5e\x77\xb7\xa8\x48\xd8\x05\x5c\x58\ +\xda\x4d\xcc\xda\x1f\x8e\xe1\x04\x31\x87\xed\x04\x0f\xef\xf4\xe9\ +\x52\x2d\xfb\x44\x3b\xc0\x40\x16\xfd\xce\x77\xd4\x4d\x7c\x3e\x40\ +\xd2\xe5\x69\x62\xfa\x4b\xe4\xe3\x77\x45\x62\xd3\xab\xcd\x11\x08\ +\x4a\x0f\xbd\x8e\x75\xbf\x7d\x08\x39\xdd\x9d\x22\x71\x73\xe3\x8e\ +\x6d\x62\xf4\x8b\x25\x60\x46\xc7\x84\x3b\x9b\xac\xf9\xe8\x3b\xba\ +\xde\x9f\x22\x15\xf1\xb7\xf7\x7c\x01\xbd\x3d\xdd\x76\x97\x7e\x14\ +\x86\x85\xa1\xe7\x83\x04\x60\x65\xfe\x3c\x6c\x16\x89\x70\x6a\x6b\ +\x36\x6c\xc4\xc7\xff\xfc\x2e\xd2\xed\x3e\xb1\x32\x48\xab\xc6\x58\ +\x9e\xf6\xc4\x01\x20\xa7\xf8\x80\xde\x78\xb3\x89\x2b\xb6\x6c\x10\ +\xa2\x92\x13\x4c\x0f\x3c\xfa\x34\x5e\xd9\xab\x56\xc8\x8c\x15\x97\ +\xa0\xf9\xca\x1d\x18\x58\xbd\xca\xb6\xba\x87\x17\x8b\x2a\x21\x89\ +\x50\xc4\x3b\x72\xd0\x71\x96\xc6\x7c\x63\xaf\xf1\x22\xcf\x63\x5c\ +\xa8\x42\xd4\x47\x8c\xee\x21\x8a\x88\x51\xae\x8d\x76\x6d\xc4\x4b\ +\x64\xcc\x15\x1f\x38\x88\x9a\x57\x5e\x82\x77\x78\x48\x8c\xdc\x4b\ +\x57\x2f\xc7\xc6\xb5\xab\x44\x75\x0f\x1b\x7b\x6c\xc8\xf2\xaa\x1e\ +\xc9\x1a\x97\xcc\xb3\xcb\x27\x16\xcc\xa0\xfb\xf8\xfe\xb7\xbf\x85\ +\x9d\xcf\x3d\x6d\x77\xa9\xe3\x3e\x41\x73\x05\x80\xe5\x9a\x35\x5a\ +\x72\x26\xcc\xe7\x68\x20\xc7\x02\x0e\x1f\x6f\x42\x6b\x47\x8f\x96\ +\xf9\x72\x09\x31\x38\xd3\x56\xf1\x5c\x1d\x23\x36\x6b\x2e\x2d\x12\ +\x2e\xe5\xc9\x96\x36\x3c\xf4\xc4\x73\x22\x8b\xc8\x2d\x50\x50\x80\ +\xae\x8d\x1b\xd1\xbd\xf1\x32\x44\x38\x99\x62\x2d\x0c\xb1\xd6\xf1\ +\x49\x86\xc5\x03\x63\xd3\x4c\x86\x0d\xe3\x3d\x03\x83\x28\xd9\xbb\ +\x1f\x65\xfb\xf7\xc1\xa3\xcd\xce\xe1\xd1\xbe\xed\xb2\xf5\x22\x74\ +\xcb\x76\xcb\x88\x7f\x1c\x7d\x83\x23\x8e\x6b\x23\xea\x8d\x6b\x00\ +\x58\xa2\xb1\x27\xc4\x00\x7a\xf8\x97\xf7\xe3\x17\x3f\xb7\x55\xef\ +\xfc\x60\x1b\x92\x89\xfe\xf3\x0d\x80\xa4\xcc\x2f\x24\xe3\xac\xac\ +\xb2\x5a\x58\xbe\x7d\x24\x16\xdb\x5a\x9a\x6c\x99\xcf\x31\x71\x1e\ +\x01\xcf\xbd\xb2\x47\xec\xad\x27\x40\x40\xcc\xcf\xcd\xc9\xb2\x5d\ +\x2b\xcf\xda\x96\x54\x95\x61\xd3\xfa\x95\x6a\x29\x15\xe9\xda\xa3\ +\x0d\xcd\x78\x72\xe7\xab\x38\x74\xac\x41\x0d\xb6\x50\xc7\x8e\xd6\ +\x54\x63\x70\xc5\x72\x0c\xad\x5a\x81\x40\x45\x29\x94\x14\xb7\xb9\ +\xf0\xd3\xb0\x50\x83\x9e\xce\x35\x32\x5e\x26\xe3\x2d\xa3\xad\x13\ +\xf9\x47\x8f\x23\xff\xd8\x09\x64\xb7\xb7\xc7\x43\xb5\x5c\xcd\xbc\ +\x99\x74\x7d\x41\x5e\xae\xd0\xf5\x93\x93\x21\xb1\x75\x7d\x60\x62\ +\x72\xc6\x7b\xe7\xb5\x7f\x8b\x0b\xf3\x35\xe6\x03\xcf\x3e\xf5\x04\ +\xfe\xed\x9f\xbf\x6b\x77\x29\xff\x18\x2f\x02\xb9\x7f\x36\x8c\x91\ +\xe6\x92\xf9\xde\x8c\x2c\x5c\x7f\xf3\x47\xb0\x72\xcd\x7a\xb1\xc4\ +\x39\x33\x98\xfd\xda\x9e\x8e\x56\x78\xb3\xf3\xc5\x16\x71\x46\xe6\ +\xb3\x0b\xe8\xd5\x62\x01\xbf\x79\x72\x27\xda\xbb\xd5\x8d\x91\xf8\ +\x7d\xb6\x2f\x53\xb5\x88\x67\x68\x7c\x2d\xef\xc5\xb7\x66\xf9\x92\ +\xf8\x5a\x04\x7d\x03\xc3\x78\x79\xef\x01\xec\x7a\xfd\x88\xc8\x2c\ +\xc6\xd3\xd3\x04\xaa\x40\x59\x09\x02\x25\xc5\x98\x2c\x2e\x44\x28\ +\xc7\x47\xc6\x63\x8a\x09\x00\xae\x89\x10\xd2\x46\xfd\x48\xef\xed\ +\x83\x97\xee\x27\xa3\xbb\x07\xb2\x61\x24\xb3\x4b\xba\x66\x59\x1d\ +\x56\xd7\xd7\x09\xf0\x2a\xda\x5e\x07\x5d\xbd\xfd\x42\xa5\xcd\xa6\ +\xf1\x73\x73\x6c\x40\x15\xfb\x12\x76\xbf\xfa\x32\xbe\x47\x2e\x1f\ +\xef\x1d\xec\x10\xf0\xb9\x6f\xb6\xcc\x91\xe6\x92\xf9\x1f\xfc\xf8\ +\x67\x51\x59\x55\x6d\x62\x7e\x86\xd7\x23\x2c\x7c\xce\x00\x06\xc8\ +\x18\xe2\xf7\x46\xe6\x73\xc4\x8b\x3f\x9b\xa0\x51\xf3\x9b\xdf\xbf\ +\x20\x7c\x7f\x61\xf9\x13\x63\xd9\xa0\x62\x31\x39\x9b\xc6\x12\x63\ +\xd9\x92\x4a\xac\x5c\x5a\x2d\x00\xa6\x17\x53\x32\x63\x78\xe3\x29\ +\x5e\x88\xba\xa5\xa3\x3b\xbe\x26\xd1\x6c\x1b\x6f\x05\x5f\x4e\x60\ +\xa9\xae\x28\x43\x5d\x55\x85\xc8\xcf\x8b\x30\x2e\xdb\x0a\x81\x09\ +\xf4\xf4\x0f\x62\x70\xd8\xef\x38\x99\x23\x31\xc6\x9f\x29\xa4\xa0\ +\xbe\x36\xc2\xce\xe7\x9e\xc2\xbf\xff\xf0\x7b\x4e\xea\x82\x53\xbd\ +\xf7\x9c\xce\xfd\x4a\xf3\x91\xf9\x5e\x7a\x65\x91\x27\x82\x21\x91\ +\x88\x38\x36\x32\x9f\xa7\x89\xb1\x9b\x34\x30\x32\x8a\x97\x77\x1f\ +\xa0\x4e\x1d\x8a\x8b\x59\x06\x80\x5e\x35\x33\xdb\x56\x5a\x94\x47\ +\xea\xa1\x5c\x6c\x49\x9b\xaa\x4d\xa7\x8a\x89\x02\x4b\x45\x80\x90\ +\x8d\x33\x5e\x91\x93\xfd\x72\xb1\x44\x8d\x56\x6d\xcb\xde\x06\x4f\ +\x57\xe7\x45\x99\x59\x9f\x73\xad\x7e\xaa\xb6\xcc\x9d\x5e\x9e\xc5\ +\xf5\x8b\xfd\x24\x61\x58\xca\xcc\x64\xdd\x9b\x5c\x59\x5e\xfd\x9c\ +\x54\x05\x3f\xb7\xa4\x95\xb4\x3d\xfe\xc8\xaf\xf0\xd0\xfd\x8e\x2e\ +\xfd\xac\x8c\xbe\xf3\x05\x80\xb3\x66\x3e\x4f\x79\xe2\xfd\x70\xd5\ +\xd2\x27\x45\x74\xb2\x91\xf9\xbc\x5c\xdc\xc0\xd0\xa8\xd8\x2c\xb2\ +\xb1\xb5\x23\xae\x47\xf5\x9c\x39\x83\x60\x26\xe3\xd0\xae\xb1\x7b\ +\xc5\x3b\x73\x15\xe6\xe7\xa8\x5e\x46\xaa\x3b\x3e\x5f\x41\x7d\x8d\ +\x4d\xbf\x17\xe7\x62\xf1\x63\xbe\x4f\x66\x32\xa7\xa9\x59\xbc\x0f\ +\x12\x40\x67\xa3\xdf\xad\x8d\x9f\x95\xcb\xe1\xb8\xbc\x4b\xcc\x12\ +\xa7\xbf\xf9\xd3\x7b\x7f\x80\x17\x13\xf3\xfb\xc6\x34\xef\x2d\x50\ +\x27\xdd\xcc\x39\x00\xce\x19\xf3\x59\xa7\xf3\x88\x74\x69\x3a\x97\ +\x2b\x84\xac\xcc\xef\xa5\x91\x35\x40\xa3\x93\x57\xca\x0a\x93\x4f\ +\xac\x07\x8b\x78\x04\xb1\x34\xf0\x70\xc0\xe7\x2c\xa6\x88\xf3\x88\ +\x56\xef\xd3\x23\xb6\xae\xe7\x7b\x93\xc4\xde\x7d\x8a\x08\xec\xf0\ +\x08\x67\x50\x72\x15\x33\xaf\xdf\xcb\xab\x79\x9e\x69\xe3\x00\x56\ +\x4e\x76\x16\xa9\xb2\xf4\xf8\xa8\x1f\x1e\x1c\xc0\x3f\x7d\xe7\x9b\ +\x68\x3a\x79\xfc\x9c\x33\xff\xad\x00\xc0\x39\x67\x3e\xaf\x1b\xc8\ +\x46\x13\xcf\x19\xe4\x42\x07\x16\xc1\x76\xcc\x7f\xfa\xe1\x9f\x93\ +\x07\xd1\x81\x77\xbe\xff\x76\x94\x55\x2d\x89\x77\x20\x1b\x7d\xfc\ +\x9b\x6e\xf7\xbc\x58\x0e\x29\x49\x52\xc7\x23\x42\xd8\x1c\xdf\xd0\ +\xf5\xfd\xeb\x7b\x77\x8b\x91\x3f\x3e\xe6\x7f\x4b\x98\x7f\xae\x01\ +\xf0\x96\x31\x9f\xc5\x2a\xcf\x16\xe2\x51\xe6\x17\x3e\x73\x22\xf3\ +\x9b\x8e\x1f\xd1\x54\x80\x8c\xf5\x5b\xb6\x63\xeb\x8e\xeb\x49\x7c\ +\x4f\xeb\x4f\xfe\x2d\xf1\x9b\x6e\xd7\xbc\x62\x3c\xe7\x35\x7c\xe4\ +\xed\xb0\x7a\xd3\xd7\xfb\x09\x8c\x8f\xe1\xd7\x0f\xfc\x04\xaf\xbe\ +\xf4\x42\xb2\xaf\x7e\x9b\xe8\xee\xb3\xfd\xfb\xd2\x42\x61\x3e\xbf\ +\xb2\x41\xc6\x2a\xa0\x95\xac\x73\x06\x80\x95\xf9\xd6\xfc\xc1\xb6\ +\x77\xbe\x17\xf5\xab\xd6\xc7\x41\x20\x49\xea\xaa\x19\x29\x29\x2e\ +\x2d\xad\x3c\x37\xa9\x10\x56\x4f\xcc\x78\x61\xa7\xb8\x5d\xf1\xfb\ +\x63\x7b\x62\xd7\xcb\x2f\xe0\xb7\xbf\xbc\x0f\xe3\xe3\x8e\xde\x07\ +\x67\xf7\x3e\x93\x2c\xc1\x73\xbe\x01\x70\xde\x98\xcf\x06\x15\x5b\ +\xe2\xec\x9a\x35\xb7\x75\xe1\xc9\x5f\xff\xd4\x96\xf9\xa6\x50\x70\ +\x75\x1d\xb6\x5e\xf5\x2e\x54\xd4\xd6\xc7\x41\xa0\xaf\x39\xc8\xe9\ +\x54\x97\xf0\xad\xcf\x4f\x75\x3c\x1b\x94\xec\xc9\xf0\xf3\x72\x49\ +\xbb\x11\x98\x87\xf6\xef\xc1\xef\x7e\xfb\x10\x3a\xda\x5a\x92\xfd\ +\x04\x2f\xae\xc1\xe5\x73\xaf\x9d\xab\x7b\x92\x16\x1a\xf3\x27\x26\ +\x27\x85\xe1\xd5\x78\xe2\x38\xee\xfd\xce\xd7\x66\x7d\xa3\x0c\x84\ +\xcd\x57\xbe\x13\xd5\x75\x2b\xe2\x20\xd0\x49\xd6\x17\xa1\x94\xa5\ +\x73\x2a\x18\x19\x5c\xec\xca\x8a\x8d\x1c\x53\xd4\x99\xbc\xc6\xbf\ +\xcd\x13\x3b\xde\x38\xb4\x1f\xbf\x7f\xf4\xd7\x33\x31\x9e\x1b\xef\ +\xfe\x7d\x27\x2c\x9b\x3f\xcf\x25\x00\xe6\x8c\xf9\x4c\x93\x93\x53\ +\xf8\xf1\xf7\xbe\x8e\xde\xae\xf6\xd3\xba\xe9\xfc\xa2\x12\xac\xdf\ +\xbc\x1d\x2b\xd6\x5d\x26\x66\x20\xc5\x81\xa0\x89\x66\x49\x5f\x8d\ +\x54\xd2\xd7\x24\x55\x4c\x7b\x40\x19\x0f\x75\x9d\xad\x8b\x75\x66\ +\x30\xab\x16\x96\x2c\x2c\xda\xf5\x98\xbd\x09\x70\xf4\x6f\xcc\x3f\ +\x82\x3d\x7f\x7a\x09\xaf\xee\x7c\x0e\x43\x83\xfd\x33\xdd\xf2\x88\ +\x96\x39\xbd\xef\xad\x90\x4a\xd2\x42\x65\x3e\x97\x88\x3d\x49\xfa\ +\xff\xd8\xc1\xbd\xd6\x5b\xe8\x99\x4d\xc2\xc9\x45\x23\xb3\x66\xe9\ +\x4a\x2c\x5b\xb3\x01\x75\xcb\xd7\xc2\xe3\xf5\x26\x80\xc0\x28\xa2\ +\x8d\x12\x43\x4d\x08\x26\xfb\x7c\x7a\x01\x47\x9d\xc6\xfd\xa3\x38\ +\x7a\xe4\x75\x1c\xd8\xbb\x0b\x4d\x27\x8e\xce\x98\xf8\x31\x04\x77\ +\x98\xf9\xbd\x6f\x95\x5a\x72\x2f\x54\xe6\x4f\x85\x23\x4e\x6b\x1f\ +\x7e\x11\x6a\x21\x04\x6f\x96\xb7\xd4\xe9\x21\x78\x1a\x1a\xdb\x0f\ +\x4c\x3c\x39\xb3\xa4\xac\x12\x95\x4b\x96\xa1\xac\xb2\x16\x95\xb5\ +\x4b\x91\x91\x99\x69\x18\xf5\xd6\x8d\xa4\x0c\xbb\x8d\xd9\x7e\x0e\ +\xe1\xbf\x77\xb4\x37\xa3\xb5\xe9\x24\xf9\xf0\xc7\xd0\xdd\xd1\x76\ +\x3a\x7d\xbc\x4f\x63\xfc\xab\x6f\xb5\x5d\xe2\x5e\xb8\xcc\x57\xd0\ +\xdf\xd3\x69\x77\x8f\xcc\xfc\x27\xa1\xce\x80\xfd\x30\xd1\x97\x93\ +\x01\x41\x88\x74\x1a\x8d\xdd\x1d\xad\x82\xe2\xee\x99\x37\x03\xf9\ +\x85\x25\xc8\x2d\x28\x84\x8f\x3c\x0a\x2f\x01\xc2\xe3\xf1\xaa\x2b\ +\x75\xf0\xfe\x86\xf4\x9d\x89\x89\x71\x21\x09\x82\xf4\x3a\x11\x18\ +\x87\x7f\x64\x18\x83\xfd\xbd\x18\xe8\xeb\xc6\x64\x30\x78\x26\xfc\ +\xe0\x42\x85\xaf\x12\x3d\x76\xbe\x3c\x12\x69\xa1\x32\xbf\xed\xd4\ +\x09\x3c\xf6\xc0\x8f\xec\xee\xb3\xc4\x22\x32\xd9\xf1\xe7\x92\x73\ +\xde\xaa\x7e\xeb\x3c\x8d\x03\x3d\xad\x49\xac\x67\xce\xf7\x1f\x96\ +\x16\x22\xf3\x87\x06\x7a\xf1\x9f\xf7\xfd\x0b\x8d\xba\x04\x5f\x99\ +\x57\x1e\xd9\x9e\xe4\x39\xd6\x6b\x96\x34\x47\xcf\x0a\xe6\x98\xe9\ +\xec\xd2\x3d\x40\x74\x2f\x6c\xea\xf5\xe7\x13\x00\x16\x0a\xf3\xa1\ +\x8d\xf4\xd9\x88\x4f\x96\x0a\x57\x69\x3e\x35\xcf\x4d\xac\x39\x4f\ +\xfd\xcd\x01\xfd\xdf\x69\x2e\xdd\xab\xf3\x41\xf4\x48\x17\x10\xf3\ +\xf9\x3e\x77\x9c\x85\x57\xb3\x4d\x53\x11\x5c\xa5\xbc\x06\x67\xbf\ +\x78\xc6\xb8\xc6\xf0\xdd\x1a\xf1\xfd\x75\xce\x37\xdd\x23\x5d\x20\ +\xcc\x6f\xd1\x98\x77\xae\xdc\x25\x97\x66\x38\xd6\x68\x54\xa2\x91\ +\xc7\x60\x67\x44\x30\xbd\xc0\xc5\xb8\x76\xdc\xa1\xdd\x0b\x53\x13\ +\x16\x40\x93\x2e\x00\xe6\xf7\x68\xe2\xfc\x04\x16\xdb\x39\x01\xc0\ +\x22\xf3\x2f\x62\x00\x2c\x32\xff\x22\x06\x40\xb1\x16\x88\x58\x64\ +\xfe\x45\xd4\x64\x83\xd1\xf3\xe8\x22\xf3\x2f\x5e\x00\x7c\xc6\x2e\ +\x4a\xb6\xc8\xfc\x8b\x47\x05\x34\x5b\x83\x21\x8b\xcc\xbf\x78\x24\ +\xc0\x16\xbb\x48\xd8\x4d\xb7\xde\xb9\xc8\xfc\x8b\x04\x00\x09\xa2\ +\x9f\x57\xe4\x58\xba\x6c\xc5\x22\xf3\x2f\x12\x00\xe4\x58\x4f\xd6\ +\xd6\x2d\x5b\x64\xfe\x45\x04\x80\x84\x3d\xda\xb8\x86\x6d\x91\xf9\ +\x17\x0f\x00\x46\xac\x27\x79\xa5\xce\x45\xe6\x5f\x3c\x00\x48\xd8\ +\x50\xe6\xd0\xeb\x7b\x10\xe3\xbd\xe9\x16\x99\x7f\x51\x00\x80\x8b\ +\x28\x4c\xab\x0b\xf1\x36\x6e\x3f\xfc\xee\x3f\x88\x75\x78\x16\x99\ +\x7f\x61\x37\x8e\x00\xf2\xa2\x34\x45\x56\x6f\xa0\xbb\xab\x13\xed\ +\x6d\x2d\xb8\xfe\x86\x1b\x91\x4e\x92\x60\x91\xf9\x17\x2e\x00\xb8\ +\x71\x15\xea\x27\x38\xfe\x63\xfc\xb0\xa5\xf9\x14\x9a\x9b\x9b\x70\ +\xd3\x7b\x6e\x12\x33\x5a\x16\x99\x7f\xe1\x02\x80\x4b\x58\x0f\x43\ +\xad\x95\x33\xcd\x93\x6a\x6a\x6c\x44\x63\x63\x03\x6e\xba\xe9\x26\ +\x31\x3d\x7b\x91\xf9\x17\x26\x00\x04\xaf\x89\x8e\x42\x5d\x56\xd4\ +\x04\x82\x86\x93\x27\x71\xf4\xd8\x51\x6c\xbf\xea\x6a\x31\x4d\x7b\ +\x91\xf9\x17\x26\x00\xb8\x1d\x73\x02\x41\x63\x43\x03\x4e\x1c\x3b\ +\x8e\xcd\x97\x6f\x17\x8c\x5e\x64\xfe\x85\x09\x80\xa4\x20\x60\x7b\ +\xa0\xb1\xe1\x24\x36\x5c\xb6\x55\x6c\xd7\xb2\xc8\xfc\x0b\x13\x00\ +\x49\x41\xd0\xde\xd6\x4a\xc6\x61\x13\x56\xad\xbf\x0c\x93\x64\x10\ +\x2e\x32\xff\xc2\x04\x40\x52\x10\x74\x77\xb6\xe3\x54\xc3\x09\xd4\ +\x2c\x5d\x81\x68\x4c\x32\x31\xbf\xbb\xa3\x05\x4f\x3c\xf8\xef\x8b\ +\xcc\x5f\x20\x6d\x36\x13\x43\x6e\x86\x3a\x4b\x35\xa1\x4e\x9e\x17\ +\x64\x5a\xba\x72\x1d\x7c\x39\xf9\x04\x84\x28\xba\xda\x4e\xa1\xa3\ +\xb9\xc1\xe9\x77\x16\x99\xbf\x80\xdb\xcd\x5a\xc0\x48\x39\x43\xe2\ +\xa5\xac\x97\x2f\x76\xe3\xc5\x09\x82\xf6\x45\xe6\x5f\x38\xed\x3a\ +\xa2\xfe\xd3\x60\xfe\x2e\xa8\xd5\xc6\x8b\xed\x02\x6a\xf9\x44\xbc\ +\x4c\xf5\x58\x12\xc6\x73\x8d\xe1\xa7\x31\x7f\xf6\x24\x5a\x6c\x67\ +\x61\x04\x3a\x35\xde\xa5\x90\x27\x54\xf2\xba\xf4\x7a\x51\x09\xd7\ +\x16\xf0\x44\xc8\xd7\x16\xbb\x76\x61\xb4\xff\x02\x38\x04\x9c\x57\ +\x51\x7e\x39\x70\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ +\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\ +\x31\x30\x54\x30\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\ +\x30\x48\x3f\xeb\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\ +\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\ +\x2d\x31\x37\x54\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\ +\x30\x30\x25\x20\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x27\xbc\ \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\x06\x1b\x49\x44\x41\x54\x48\x4b\x6d\x56\x6b\x4f\x14\x57\ -\x18\x7e\x66\xf6\xc2\xc2\x82\xec\x80\x80\x08\x8a\x06\xa3\x68\xaa\ -\x91\xa8\xd5\xa6\xe9\x07\x7f\x80\x97\x06\x1b\xd3\x26\xd6\x0f\x6d\ -\xd2\x98\x34\x6d\x5a\x6d\xbf\x18\xdb\xd4\xa6\x69\xfa\xd1\xa6\x69\ -\x1b\x93\x9a\x4a\xe5\x8e\x28\x5e\x88\x92\x82\x45\x10\xd6\xae\x02\ -\x2a\x51\x63\xaa\xc6\x36\x15\x2f\x70\x16\xf6\xbe\xb3\x33\xbb\x7d\ -\xce\x41\xd6\x5b\x27\xd9\x6c\x76\x66\x78\x9f\xf7\xb9\xbc\xef\x41\ -\xfb\xae\xe9\xe4\x1d\x4f\x4e\xae\x4f\xd3\xa0\x2e\x3b\x6d\x21\x9d\ -\xce\xcc\xfc\x78\xe6\xb2\x52\x49\x38\x5d\x6e\xb8\xdd\x6e\x80\x8f\ -\x2d\xdb\x82\x65\x26\x5f\x7a\x6f\xf6\x86\xd3\xe9\x86\x69\xa5\xa6\ -\xb4\x03\x4d\x9d\x91\x3b\xd7\xaf\x7a\xa7\x84\x40\xd1\xdc\xb9\x28\ -\x99\x37\x1f\x0e\x87\x23\xfb\x87\xe9\x4c\x1a\x9a\x0e\x88\x7f\xc6\ -\x71\x6d\x74\x14\x73\x4a\x8b\x50\xba\x60\x01\xca\xe6\x57\xa1\xa8\ -\xb8\x84\x58\x44\xcb\xbc\xdc\x90\x6c\x26\x1e\x8b\x45\xb4\x1f\x5a\ -\xbb\xc4\xc5\xae\x76\x63\x6c\x78\x04\x0e\x97\x13\xaf\xbf\xb1\x01\ -\x05\x73\xe6\x40\x23\x25\xf9\x71\xb0\xba\x4b\x77\x60\x32\x18\x44\ -\xcf\xd9\x1e\x84\x23\x51\x58\xb0\x31\xaf\x62\x21\x76\x7e\xb2\x1b\ -\x19\x9d\x8c\xec\x17\x00\xa8\x86\xd3\xe9\x42\xca\x4a\x0a\xed\xe0\ -\xd1\xb3\xc2\xdf\xdd\x61\x5c\xbf\x32\x0a\x9d\x9d\x6f\xd8\xb0\x1e\ -\x05\x05\x05\x59\x00\x5d\xd7\xa1\xeb\x2e\x04\x09\xd0\x7b\xae\x17\ -\x89\x78\x0c\x69\xdb\xc6\x9c\x92\x52\xbc\xf7\xe9\x5e\x68\x0e\x17\ -\x32\x69\xfb\x79\xa9\x88\x27\x01\x28\x91\xd0\x0e\x75\xfe\x2e\x06\ -\x4f\xb7\x19\x63\x04\x70\x38\x9d\x58\xff\xea\x13\x00\x7d\xc6\x14\ -\x9d\x0c\x1c\x4e\x07\x82\x22\x88\x73\x7d\x7f\x20\x26\x01\x58\xd0\ -\x47\x80\x0f\x3e\xdf\x47\x00\xf7\x73\x00\x19\x4a\x0a\x68\xf4\xcb\ -\x05\x2b\x49\x80\x5f\xbb\x7a\xc4\x85\xce\x36\xe3\xda\x28\x25\x22\ -\xc0\xba\x75\xeb\xb2\x0c\x24\x80\x94\xc9\xc9\xfb\x82\x1e\x9d\xef\ -\x3f\x4f\x80\x38\xac\x54\x0a\x45\x65\x65\xf8\xf8\xcb\x6f\xa1\xd1\ -\xcc\x67\x19\x64\x9e\xf8\x21\x19\x24\x53\x94\xa8\xa5\x7b\x40\xf4\ -\x76\xb6\x1a\xa3\x01\xbf\x02\x58\xbb\x76\xad\x02\x90\xd2\xc8\xe2\ -\xf2\x92\xa6\x4b\x89\xfa\x07\xfa\x99\x1e\x9b\x05\xd3\xf0\xe6\x17\ -\x62\xdb\xce\xf7\xa1\xb3\x53\x80\x41\x90\x49\xc8\x68\x4a\x66\x8d\ -\xec\xdd\x34\x39\x65\xd9\x42\x3b\xda\x33\x24\x7a\x4f\xb4\x1b\x97\ -\xfd\xfd\x7c\xe8\x44\x6d\x6d\x2d\x7c\x3e\x9f\x2a\x9c\x35\x9a\x60\ -\x53\x53\x53\xe8\xbf\x30\x00\x33\x65\x61\xe9\x92\x0a\x14\x7a\x73\ -\x10\x33\xe3\x32\x43\x2c\xac\x23\x65\xba\x28\x9d\x83\x35\x74\x86\ -\x2a\x03\x17\x9b\xb5\xd3\x10\xda\xf1\xbe\x80\xe8\x39\xde\x6a\x04\ -\x06\xfb\x88\xec\xc0\xea\xd5\xab\x15\xc0\x6c\xf7\x33\x26\xeb\x08\ -\x4d\x4f\x63\x60\xd0\x8f\x48\xf4\x11\x2a\xca\xb7\xa3\xa0\xb0\x86\ -\xf7\xa3\xd0\x6c\x27\x65\x12\x58\xbc\x68\x0a\x05\xf9\x79\xb0\x59\ -\x55\xa2\x4a\xdf\x4c\xd3\x14\x5a\xd7\xd0\x25\xd1\xdd\xde\x6a\xf8\ -\x07\xfa\x64\xcb\x0a\xc0\x30\x8c\x6c\x2a\xb2\x00\xa1\x10\x01\x86\ -\x90\xce\x4c\x43\xcb\x7c\x84\x89\x07\x3e\x24\x12\xeb\x61\x14\x5f\ -\xc4\xc3\xf1\x7c\xd4\xbd\xd3\x8f\xea\xaa\x02\xd0\x9e\xac\xac\xb6\ -\x4d\x89\xce\x06\x46\xc5\x99\xd6\x66\x63\xb0\xaf\x97\x0c\x74\xac\ -\x5a\xb5\x0a\xc5\xc5\xc5\xea\xa5\x14\xdf\x8e\xd3\xd4\xa2\xa2\x22\ -\x4c\x4b\x06\x17\x06\xa9\x76\x08\x1e\xf7\x1e\x4c\x4c\x7a\x91\x8c\ -\xd7\x72\xe0\x46\x71\xef\xb6\x13\x5b\xeb\x2e\xa1\x6a\x41\x2e\xbb\ -\xce\x28\xc6\x32\x18\x96\x65\x09\xed\xdc\xe5\xeb\xe2\x74\x5b\x83\ -\xd1\xdf\xdb\xad\x24\x5a\xb9\x72\xa5\x2a\x28\x25\x22\x45\x84\xc3\ -\x61\x94\x96\x96\x2a\x89\x2e\x0c\x91\x81\x16\x85\x6e\xef\x86\x98\ -\x28\xa6\xe1\x2b\xe0\xc8\xb9\x01\x33\xec\xc4\x96\x37\xcf\xa1\x62\ -\x41\x01\xb3\x9f\x51\x73\x92\x66\x10\x78\x09\x6d\x68\xec\x96\xe8\ -\x6c\x69\x30\x7a\xcf\x74\xa9\x04\x48\x80\x59\x89\x24\x03\x99\x9e\ -\xf2\xf2\x72\x84\x29\xd1\xa0\x3f\x00\x2b\x1d\x41\x7e\xde\x2e\x4c\ -\x4d\xe6\x72\xaa\xd7\xa0\x7c\x61\x1f\xee\xdd\x34\xb0\xb9\x6e\x0c\ -\x15\x15\x39\x2c\xac\x53\xba\x04\x42\x7c\x5f\x01\x04\x6e\xfc\x25\ -\x3a\x5b\x1b\x8d\xee\x53\x27\x15\xc0\x8a\x15\x2b\xb2\x0c\xa8\x21\ -\x62\xb1\x18\x0a\x0b\x7d\x88\x44\xc2\xf0\xfb\x87\x60\x69\x71\xa4\ -\xcd\x0f\x31\xf1\xb8\x1c\x7a\x7a\x19\xcd\xbc\x8d\x78\x2a\x83\xad\ -\x5b\xc8\x60\x7e\x3e\xa3\x99\x51\xec\x5d\x8c\x6f\x32\xc9\x39\x18\ -\xb9\x75\x57\x9c\x6c\x6b\x36\x4e\x1d\xef\x50\x00\x35\x35\x35\xca\ -\x83\x67\x53\x24\x63\x27\x81\xfc\xfe\x3f\x61\x22\x08\xaf\x63\x17\ -\x26\x1e\xb9\xd8\xe5\x46\x2c\xaa\x3e\x89\x9b\x63\xe5\x78\xeb\x6d\ -\x32\xa8\xf4\xd0\x37\x25\xcd\x53\x0f\xae\xdf\xbd\x2f\x8e\xb5\x1c\ -\x31\x8e\xb7\xb7\x2a\x80\x65\xcb\x96\x3d\x07\xa0\xd6\x05\x4d\x8b\ -\xc7\x12\xf0\x07\x02\x88\x47\x27\x50\x6c\x6c\xe7\x20\xbd\x82\xa4\ -\x1d\x41\x32\xec\x65\xb2\x82\x58\xf3\xda\x4d\x14\xf9\x72\x69\xec\ -\x0c\x03\x39\x9c\x2a\x45\xb7\xfe\x1d\x17\x1d\x4d\x8d\xc6\xd1\xe6\ -\x26\x05\xb0\x74\xe9\xd2\x2c\x80\xec\x7c\x76\xd8\x62\xb1\x38\x2e\ -\x5d\xbe\x8c\x50\x78\x1a\x1b\x37\xae\xc7\xa2\x85\x95\x94\x2d\xc2\ -\xe7\x0e\x76\x9b\xc3\x61\xe6\xa0\x71\x07\xc9\x01\x93\x69\xcc\x02\ -\xdc\x7e\xf8\x50\x74\x34\x36\x1b\x2d\x0d\xf5\xbc\xe9\x44\x75\x75\ -\x35\xe6\xf2\x5c\x98\x95\x48\x7e\x4b\x06\xd1\x68\x14\x81\x4b\x01\ -\x6e\x03\x0d\xb9\x1e\x0f\x72\xbd\x79\x6a\x6f\xd9\xec\x38\x91\x48\ -\xaa\x01\x63\x2c\x65\xd7\x34\xda\x54\xeb\xc2\x4e\x93\xc1\xdf\x8f\ -\x27\x44\x7b\x53\xb3\xd1\x70\xf8\x90\x02\x58\xb2\x64\x89\x02\x98\ -\xbd\x9e\x32\x88\x61\x78\x64\x18\x51\x7a\x11\x67\x4a\xaa\x16\x2f\ -\x42\xfd\x6f\x0d\x2c\xc4\xb5\xcc\x38\xdb\x96\x8d\x24\xbf\x2d\x2b\ -\x45\x1f\x92\xea\x3b\x1a\x89\x08\x6d\x3c\x14\x16\xc7\x9a\x5b\x8c\ -\x5f\x7e\xfe\x51\x49\x24\x19\x94\x94\x94\x3c\x03\x20\x07\x5c\x57\ -\x26\x8f\xf0\x44\x93\xeb\x5a\xc6\xb7\xa2\xb2\x12\x07\x0f\xd5\xc3\ -\x95\xc3\x68\xb2\x6b\xb9\x05\x66\x9a\x91\xcb\x5a\x83\x87\x2c\x53\ -\x49\xae\x8a\x47\xd1\x98\x38\xd1\xd6\x66\xfc\xf4\xfd\x01\x52\x4a\ -\x33\xcb\x15\x28\xe3\x2a\x96\xfa\xab\x8d\x2a\xa7\x92\xc0\xb2\xe8\ -\x95\x6b\xd7\x38\xd9\x31\x04\xa7\x82\xf4\xaa\x06\x87\x8f\x34\xf1\ -\x3c\x70\xcc\x00\x3c\x77\xd1\x0b\x9e\xdd\x49\x33\x21\xb4\x50\x22\ -\x21\xda\x1a\x5b\x8c\x6f\xbe\xde\x8f\x6a\xca\xb3\x69\xf3\x66\x32\ -\x98\xcb\x21\x8a\x20\x22\xe5\x88\x27\x94\xc6\x93\x8f\xc6\xe1\x1f\ -\xf2\xe3\xfe\xf8\x03\xee\xab\x5a\xec\xdd\xf7\x05\x6a\x96\x2f\x87\ -\x99\x34\x5f\x28\x3e\xf3\x53\xfe\x73\x60\x4a\x80\x69\x1e\xcc\x23\ -\xc3\x57\xbc\x57\x79\xa2\xd5\x6d\xab\x43\x59\x69\x09\x4f\x5c\xb9\ -\x82\xe5\xc8\xd3\x38\x7e\x3c\x39\x2e\x34\x1c\xae\xc7\x57\xfb\xf7\ -\x63\xc7\x8e\x77\xb1\x67\xcf\x67\xc8\xcb\xcf\xe5\x1c\xc4\xe5\x52\ -\x7f\x09\x40\x4a\x25\x01\x42\xe1\x50\x44\x9b\x9c\x0e\xdf\xce\xf3\ -\x7a\x7c\x3a\x6f\xf2\x88\x43\x84\x49\x90\xa7\xa5\x9e\x3d\xc7\x99\ -\x1a\x1e\x1e\xc3\xa3\xc3\x78\xfc\xe0\x01\x19\x6e\xe2\x84\x9a\x34\ -\xda\xa6\x3c\xff\xdb\xbc\x02\xf5\xb8\x9d\x88\x9b\x56\xf0\x3f\xfe\ -\x19\x0e\x29\x33\x91\x8f\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ +\x00\x01\x4e\x00\x00\x01\x62\x08\x06\x00\x00\x00\x99\x3d\x31\x24\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xdd\x79\x78\ +\x0d\x77\xdf\x06\xf0\xfb\x24\x91\x1d\x29\xad\x44\x13\xfb\x2e\x48\ +\x1b\x54\x13\x7d\x14\x45\xb5\x25\x89\x0a\x8d\x25\x41\x14\x41\xc5\ +\xd6\xa2\xda\x3e\xa5\x96\x8a\x2e\x04\x0f\x82\xaa\xad\x4d\xd4\x1e\ +\xc1\x43\x6c\xa1\x96\x44\xea\x4d\x65\x11\xfb\x2e\x96\xd8\x45\xd6\ +\x73\xce\xfb\x87\x97\x97\x12\x32\xc9\xcc\x6f\xe6\x9c\xdc\x9f\xeb\ +\xf2\x47\x93\x9c\xdf\xfd\x6d\xae\xf6\x36\xbf\x33\x73\x66\x74\x46\ +\xa3\xd1\x08\x00\x2e\x2e\x2e\xb8\x7a\xf5\x2a\x48\x19\xab\x56\xad\ +\x82\xbf\xbf\xbf\xda\x63\x10\x51\xc9\xc5\x59\xa8\x3d\x01\x11\x91\ +\xa9\x61\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\ +\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\ +\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\ +\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ +\x27\x11\x91\x44\x2c\x4e\x41\x74\x3a\x9d\xda\x23\x10\x91\x4c\x58\ +\x9c\x02\x34\x6d\xda\x14\x1f\x7e\xf8\xa1\xda\x63\x10\x91\x4c\x58\ +\x9c\x0a\x73\x71\x71\xc1\xfa\xf5\xeb\x61\x67\x67\xa7\xf6\x28\x44\ +\x24\x13\x16\xa7\x82\x6c\x6c\x6c\xb0\x76\xed\x5a\xb8\xb9\xb9\xa9\ +\x3d\x0a\x11\xc9\x88\xc5\xa9\xa0\xf9\xf3\xe7\xc3\xcb\xcb\x4b\xed\ +\x31\x88\x48\x66\x8f\x8b\xf3\xca\x95\x2b\x30\x1a\x8d\x66\xf7\x27\ +\x38\x38\x58\x95\x5f\xec\xa8\x51\xa3\xd0\xb7\x6f\x5f\x55\xb2\x89\ +\x48\x59\xba\x47\x0f\x6b\x33\x47\x33\x67\xce\xc4\xc8\x91\x23\x85\ +\xe7\x76\xec\xd8\x11\x31\x31\x31\xb0\xb4\xb4\x14\x9e\x4d\x44\x8a\ +\x8b\x33\xdb\xe2\x8c\x8d\x8d\xc5\x07\x1f\x7c\x00\xbd\x5e\x2f\x34\ +\xb7\x6e\xdd\xba\x88\x8f\x8f\x87\x93\x93\x93\xd0\x5c\x22\x12\xc6\ +\x3c\x9f\x72\x79\xe2\xc4\x09\x74\xef\xde\x5d\x78\x69\x3a\x39\x39\ +\x21\x3a\x3a\x9a\xa5\x49\x64\xe6\xcc\xae\x38\xef\xdc\xb9\x03\x1f\ +\x1f\x1f\xdc\xbe\x7d\x5b\x68\xae\xa5\xa5\x25\xa2\xa2\xa2\x50\xaf\ +\x5e\x3d\xa1\xb9\x44\x24\x9e\x59\x15\xa7\xc1\x60\x40\x8f\x1e\x3d\ +\x90\x9e\x9e\x2e\x3c\x7b\xfa\xf4\xe9\x78\xff\xfd\xf7\x85\xe7\x12\ +\x91\x78\x66\x55\x9c\x63\xc6\x8c\xc1\x96\x2d\x5b\x84\xe7\xf6\xed\ +\xdb\x17\xa3\x46\x8d\x12\x9e\x4b\x44\xea\x30\x9b\x93\x43\xcb\x96\ +\x2d\x43\x9f\x3e\x7d\x84\xe7\x7a\x79\x79\x61\xf7\xee\xdd\xb0\xb6\ +\xb6\x16\x9e\x4d\x44\xaa\x30\x8f\xb3\xea\xf1\xf1\xf1\x78\xf7\xdd\ +\x77\x91\x9b\x9b\x2b\x34\xd7\xcd\xcd\x0d\x89\x89\x89\x70\x76\x76\ +\x16\x9a\x4b\x44\xaa\x32\xfd\xb3\xea\x97\x2e\x5d\x82\x9f\x9f\x9f\ +\xf0\xd2\xb4\xb3\xb3\xc3\x86\x0d\x1b\x58\x9a\x44\xa5\x90\x49\x17\ +\x67\x76\x76\x36\xfc\xfc\xfc\x70\xe5\xca\x15\xe1\xd9\x4b\x96\x2c\ +\x81\xa7\xa7\xa7\xf0\x5c\x22\x52\x9f\x49\x17\x67\x70\x70\x30\x12\ +\x13\x13\x85\xe7\x7e\xf5\xd5\x57\xe8\xde\xbd\xbb\xf0\x5c\x22\xd2\ +\x06\x93\x2d\xce\xa9\x53\xa7\x22\x2a\x2a\x4a\x78\xae\xaf\xaf\x2f\ +\x26\x4d\x9a\x24\x3c\x97\x88\xb4\xc3\x24\x4f\x0e\x45\x47\x47\xa3\ +\x4b\x97\x2e\x30\x18\x0c\x42\x73\x1b\x37\x6e\x8c\xfd\xfb\xf7\xc3\ +\xd1\xd1\x51\x68\x2e\x11\x69\x8a\xe9\x9d\x55\x4f\x4d\x4d\x85\x97\ +\x97\x17\xee\xdd\xbb\x27\x34\xf7\xd5\x57\x5f\x45\x42\x42\x02\x6a\ +\xd4\xa8\x21\x34\x97\x88\x34\xc7\xb4\xce\xaa\xdf\xb8\x71\x03\x3e\ +\x3e\x3e\xc2\x4b\xb3\x4c\x99\x32\x58\xb5\x6a\x15\x4b\x93\x88\x00\ +\x98\xd0\x7b\x9c\x05\x05\x05\xe8\xd6\xad\x1b\x4e\x9f\x3e\x2d\x3c\ +\x7b\xd6\xac\x59\x68\xdd\xba\xb5\xf0\x5c\x22\xd2\x26\x93\x29\xce\ +\xd0\xd0\x50\xec\xda\xb5\x4b\x78\xee\xe0\xc1\x83\x11\x12\x12\x22\ +\x3c\x97\x88\xb4\xcb\x24\xde\xe3\x8c\x88\x88\x50\xa5\xbc\x5a\xb7\ +\x6e\x8d\xd8\xd8\x58\x58\x59\x59\x09\xcf\x26\x22\xcd\xd2\xfe\xc9\ +\xa1\xb8\xb8\x38\xb4\x6f\xdf\x1e\xf9\xf9\xf9\x42\x73\x6b\xd4\xa8\ +\x81\x43\x87\x0e\xa1\x62\xc5\x8a\x42\x73\x89\x48\xf3\xb4\x7d\x72\ +\xe8\xec\xd9\xb3\xf0\xf7\xf7\x17\x5e\x9a\x65\xcb\x96\x45\x74\x74\ +\x34\x4b\x93\x88\x9e\x4b\xb3\xc5\x79\xff\xfe\x7d\xf8\xf8\xf8\x20\ +\x33\x33\x53\x68\xae\x4e\xa7\xc3\x8a\x15\x2b\xd0\xa8\x51\x23\xa1\ +\xb9\x44\x64\x3a\x34\x59\x9c\x46\xa3\x11\x81\x81\x81\x48\x4e\x4e\ +\x16\x9e\x3d\x79\xf2\x64\xf8\xf8\xf8\x08\xcf\x25\x22\xd3\xa1\xc9\ +\xe2\xfc\xe6\x9b\x6f\xb0\x7e\xfd\x7a\xe1\xb9\x01\x01\x01\x18\x3f\ +\x7e\xbc\xf0\x5c\x22\x32\x2d\x9a\x3b\x39\xb4\x72\xe5\x4a\x04\x04\ +\x04\x08\xcf\x6d\xda\xb4\x29\xf6\xee\xdd\x0b\x3b\x3b\x3b\xe1\xd9\ +\x44\x64\x52\xb4\x75\x56\xfd\xf0\xe1\xc3\x78\xe7\x9d\x77\x90\x9d\ +\x9d\x2d\x34\xd7\xc5\xc5\x05\x87\x0e\x1d\x82\x9b\x9b\x9b\xd0\x5c\ +\x22\x32\x49\xda\x39\xab\x7e\xf5\xea\x55\xf8\xf9\xf9\x09\x2f\x4d\ +\x1b\x1b\x1b\xac\x5d\xbb\x96\xa5\x49\x44\x45\xa6\x89\xe2\xcc\xcd\ +\xcd\x45\x97\x2e\x5d\x70\xe1\xc2\x05\xe1\xd9\x11\x11\x11\xf0\xf2\ +\xf2\x12\x9e\x4b\x44\xa6\x4b\x13\xc5\x19\x12\x12\x82\x03\x07\x0e\ +\x08\xcf\x1d\x35\x6a\x94\x2a\x0f\x78\x23\x22\xd3\xa6\x7a\x71\xfe\ +\xfc\xf3\xcf\x58\xb2\x64\x89\xf0\xdc\x8e\x1d\x3b\x62\xfa\xf4\xe9\ +\xc2\x73\x89\xc8\xf4\xa9\x7a\x72\xe8\xbf\xff\xfd\x2f\x3a\x75\xea\ +\x04\xbd\x5e\x2f\x34\xb7\x5e\xbd\x7a\x88\x8f\x8f\x47\xf9\xf2\xe5\ +\x85\xe6\x12\x91\x59\x50\xef\xe4\xd0\xb1\x63\xc7\xd0\xa3\x47\x0f\ +\xe1\xa5\xe9\xe4\xe4\x84\xe8\xe8\x68\x96\x26\x11\x15\x9b\x2a\xc5\ +\x79\xfb\xf6\x6d\xf8\xf8\xf8\xe0\xf6\xed\xdb\x42\x73\x2d\x2d\x2d\ +\xb1\x72\xe5\x4a\xd4\xad\x5b\x57\x68\x2e\x11\x99\x17\xe1\xc5\xa9\ +\xd7\xeb\x11\x10\x10\x80\xe3\xc7\x8f\x8b\x8e\xc6\x0f\x3f\xfc\x80\ +\x0e\x1d\x3a\x08\xcf\x25\x22\xf3\x22\xbc\x38\xbf\xf8\xe2\x0b\x6c\ +\xdd\xba\x55\x74\x2c\xfa\xf5\xeb\x87\x91\x23\x47\x0a\xcf\x25\x22\ +\xf3\x23\xf4\xe4\xd0\x92\x25\x4b\xd0\xaf\x5f\x3f\x51\x71\x8f\x79\ +\x7b\x7b\x63\xd7\xae\x5d\xb0\xb6\xb6\x16\x9e\x4d\x44\x66\x47\xdc\ +\x47\x2e\x0f\x1c\x38\x80\xd6\xad\x5b\x23\x2f\x2f\x4f\x44\xdc\x63\ +\x55\xaa\x54\xc1\xa1\x43\x87\xe0\xec\xec\x2c\x34\x97\x88\xcc\x96\ +\x98\xb3\xea\x17\x2f\x5e\x44\x97\x2e\x5d\x84\x97\xa6\xbd\xbd\x3d\ +\xd6\xaf\x5f\xcf\xd2\x24\x22\x59\x29\x5e\x9c\xd9\xd9\xd9\xf0\xf5\ +\xf5\xc5\xd5\xab\x57\x95\x8e\x7a\xc6\xaf\xbf\xfe\x0a\x4f\x4f\x4f\ +\xe1\xb9\x44\x64\xde\x14\x2f\xce\xbe\x7d\xfb\xe2\xf0\xe1\xc3\x4a\ +\xc7\x3c\xe3\xeb\xaf\xbf\x46\xf7\xee\xdd\x85\xe7\x12\x91\xf9\x53\ +\xb4\x38\x27\x4f\x9e\x8c\x3f\xfe\xf8\x43\xc9\x88\xe7\xf2\xf3\xf3\ +\xc3\x77\xdf\x7d\x27\x3c\x97\x88\x4a\x07\xc5\x4e\x0e\xad\x5f\xbf\ +\x1e\x1f\x7f\xfc\x31\x44\x7f\xa2\xb3\x71\xe3\xc6\xd8\xbf\x7f\x3f\ +\x1c\x1d\x1d\x85\xe6\x12\x51\xa9\xa1\xcc\x59\xf5\xe4\xe4\x64\x78\ +\x7b\x7b\xe3\xfe\xfd\xfb\x72\x2f\xfd\x42\xaf\xbe\xfa\x2a\x12\x12\ +\x12\x50\xa3\x46\x0d\xa1\xb9\x44\x54\xaa\xc8\x7f\x56\x3d\x33\x33\ +\x13\xbe\xbe\xbe\xc2\x4b\xb3\x4c\x99\x32\x58\xbd\x7a\x35\x4b\x93\ +\x88\x14\x27\x6b\x71\xe6\xe7\xe7\xc3\xdf\xdf\x1f\x67\xce\x9c\x91\ +\x73\xd9\x22\x99\x35\x6b\x16\xde\x7d\xf7\x5d\xe1\xb9\x44\x54\xfa\ +\xc8\x5a\x9c\xa1\xa1\xa1\x88\x8b\x8b\x93\x73\xc9\x22\x19\x32\x64\ +\x08\x42\x42\x42\x84\xe7\x12\x51\xe9\x24\xdb\x7b\x9c\x73\xe7\xce\ +\xc5\xd0\xa1\x43\xe5\x58\x4a\x92\x36\x6d\xda\x60\xdb\xb6\x6d\xb0\ +\xb2\xb2\x12\x9e\x4d\x44\xa5\x92\x3c\x27\x87\x76\xed\xda\x85\x0e\ +\x1d\x3a\xa0\xa0\xa0\x40\x8e\xa1\x8a\xac\x66\xcd\x9a\x48\x48\x48\ +\x40\xc5\x8a\x15\x85\xe6\x12\x51\xa9\x56\xf2\x93\x43\xa7\x4f\x9f\ +\x46\xb7\x6e\xdd\x84\x97\x66\xd9\xb2\x65\xb1\x61\xc3\x06\x96\x26\ +\x11\x09\x57\xa2\xe2\xbc\x77\xef\x1e\x7c\x7d\x7d\x71\xe3\xc6\x0d\ +\xb9\xe6\x29\x12\x9d\x4e\x87\x15\x2b\x56\xa0\x51\xa3\x46\x42\x73\ +\x89\x88\x80\x12\x14\xa7\xd1\x68\x44\xef\xde\xbd\x91\x92\x92\x22\ +\xe7\x3c\x45\x32\x79\xf2\x64\xf8\xf8\xf8\x08\xcf\x25\x22\x02\x4a\ +\x50\x9c\x5f\x7d\xf5\x15\xa2\xa3\xa3\xe5\x9c\xa5\x48\x7a\xf4\xe8\ +\x81\xf1\xe3\xc7\x0b\xcf\x25\x22\x7a\xa4\x58\x27\x87\x22\x23\x23\ +\xd1\xb3\x67\x4f\x25\xe6\x79\xa1\x66\xcd\x9a\x61\xcf\x9e\x3d\xb0\ +\xb3\xb3\x13\x9e\x4d\x44\xf4\x7f\xa4\x9f\x55\x4f\x4c\x4c\x44\xab\ +\x56\xad\x90\x9d\x9d\xad\xd4\x50\xcf\xe5\xe2\xe2\x82\xc4\xc4\x44\ +\xb8\xba\xba\x0a\xcd\x25\x22\xfa\x07\x69\x67\xd5\xaf\x5c\xb9\x02\ +\x3f\x3f\x3f\xe1\xa5\x69\x63\x63\x83\x75\xeb\xd6\xb1\x34\x89\x48\ +\x13\x8a\x5c\x9c\xb9\xb9\xb9\xf0\xf3\xf3\xc3\xa5\x4b\x97\x94\x9c\ +\xe7\xb9\x16\x2c\x58\x80\xb7\xdf\x7e\x5b\x78\x2e\x11\xd1\xf3\x14\ +\xb9\x38\x07\x0e\x1c\x88\xf8\xf8\x78\x25\x67\x79\xae\xd1\xa3\x47\ +\x23\x28\x28\x48\x78\x2e\x11\x51\x61\x8a\x54\x9c\x3f\xfe\xf8\x23\ +\x96\x2d\x5b\xa6\xf4\x2c\xcf\xe8\xd8\xb1\x23\xa6\x4f\x9f\x2e\x3c\ +\x97\x88\xe8\x45\x5e\x7a\x72\x68\xcb\x96\x2d\xe8\xd4\xa9\x13\x0c\ +\x06\x83\xa8\x99\x00\x00\xf5\xea\xd5\x43\x7c\x7c\x3c\xca\x97\x2f\ +\x2f\x34\x97\x88\xe8\x25\x5e\x7c\x72\x28\x3d\x3d\x1d\x3d\x7a\xf4\ +\x10\x5e\x9a\x4e\x4e\x4e\xd8\xb8\x71\x23\x4b\x93\x88\x34\xa9\xd0\ +\xe2\xbc\x75\xeb\x16\x7c\x7c\x7c\x70\xe7\xce\x1d\x91\xf3\xc0\xd2\ +\xd2\x12\x2b\x57\xae\x44\x9d\x3a\x75\x84\xe6\x12\x11\x15\xd5\x73\ +\x8b\x53\xaf\xd7\xe3\x93\x4f\x3e\xc1\x89\x13\x27\x44\xcf\x83\x1f\ +\x7f\xfc\x11\x1d\x3a\x74\x10\x9e\x4b\x44\x54\x54\xcf\x2d\xce\xd1\ +\xa3\x47\x23\x36\x36\x56\xf4\x2c\xe8\xd7\xaf\x1f\x46\x8c\x18\x21\ +\x3c\x97\x88\x48\x8a\x67\x4e\x0e\x2d\x5e\xbc\x18\xfd\xfb\xf7\x17\ +\x3e\x88\xb7\xb7\x37\x76\xed\xda\x05\x6b\x6b\x6b\xe1\xd9\x44\x44\ +\x12\x3c\xfd\x91\xcb\x7d\xfb\xf6\xa1\x6d\xdb\xb6\xc8\xcb\xcb\x13\ +\x3e\x49\xef\xde\xbd\xe1\xec\xec\x2c\x3c\x57\x24\x1b\x1b\x1b\x4c\ +\x99\x32\x45\xed\x31\x88\xa8\x64\xfe\xbf\x38\xcf\x9f\x3f\x8f\xe6\ +\xcd\x9b\xe3\xda\xb5\x6b\x6a\x0f\x65\xb6\x1c\x1c\x1c\x84\x3f\xfd\ +\x93\x88\x64\xf7\xf0\x72\xa4\x07\x0f\x1e\xc0\xd7\xd7\x97\xa5\x49\ +\x44\x54\x04\x16\x46\xa3\x11\x7d\xfb\xf6\x45\x52\x52\x92\xda\xb3\ +\x10\x11\x99\x04\x8b\x88\x88\x08\xac\x5a\xb5\x4a\xed\x39\x88\x88\ +\x4c\x86\xc5\xd9\xb3\x67\xd5\x9e\x81\x88\xc8\xa4\x94\xf8\x29\x97\ +\x44\x44\xa5\x0d\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\ +\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\ +\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\ +\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\ +\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xf4\xcc\x53\x2e\x89\ +\x88\xe8\x85\xe2\x78\xc4\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ +\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\x99\x54\ +\x71\xa6\xa4\xa4\x20\x2b\x2b\x4b\xed\x31\x88\xa8\x94\x33\xa9\xe2\ +\x8c\x88\x88\xc0\x1f\x7f\xfc\xa1\xf6\x18\x44\x54\xca\x99\xcc\x75\ +\x9c\xb9\xb9\xb9\x78\xfd\xf5\xd7\xe1\xe1\xe1\x81\x9d\x3b\x77\xaa\ +\x3d\x0e\x11\x95\x5e\xa6\x73\x1d\xe7\x96\x2d\x5b\x70\xf3\xe6\x4d\ +\xec\xde\xbd\x1b\x67\xce\x9c\x51\x7b\x1c\x22\x2a\xc5\x4c\xa6\x38\ +\x97\x2f\x5f\x0e\x00\x30\x1a\x8d\xf8\xfd\xf7\xdf\x55\x9e\x86\x88\ +\x4a\x33\x93\xd8\xaa\x67\x66\x66\xc2\xd5\xd5\x15\x79\x79\x79\x00\ +\x80\x3a\x75\xea\xe0\xd8\xb1\x63\xd0\xe9\x74\x2a\x4f\x46\x44\xa5\ +\x90\x69\x6c\xd5\xff\xf8\xe3\x8f\xc7\xa5\x09\x00\x27\x4e\x9c\x40\ +\x42\x42\x82\x8a\x13\x11\x51\x69\x66\x12\xc5\xf9\x68\x9b\xfe\xb2\ +\xaf\x11\x11\x89\xa0\xf9\xad\x7a\x7a\x7a\x3a\x1a\x34\x68\xf0\xcc\ +\xd7\x2b\x54\xa8\x80\xcb\x97\x2f\xc3\xc6\xc6\x46\x85\xa9\x88\xa8\ +\x14\xd3\xfe\x56\x7d\xc5\x8a\x15\xcf\xfd\xfa\xcd\x9b\x37\xb1\x69\ +\xd3\x26\xc1\xd3\x10\x11\x69\x7c\xab\x6e\x30\x18\x5e\xb8\x25\xe7\ +\x76\x9d\x88\xd4\xa0\xe9\xe2\x8c\x8b\x8b\xc3\xf9\xf3\xe7\x0b\xfd\ +\xfe\xa6\x4d\x9b\x90\x99\x99\x29\x70\x22\x22\x22\x8d\x17\xe7\xcb\ +\x8e\x28\xf3\xf3\xf3\x11\x15\x15\x25\x68\x1a\x22\xa2\x87\x34\x7b\ +\x72\xe8\xfe\xfd\xfb\xa8\x5c\xb9\x32\xee\xdf\xbf\xff\xc2\x9f\x7b\ +\xeb\xad\xb7\x10\x1f\x1f\x2f\x68\x2a\x22\x22\x0d\x9f\x1c\xda\xb0\ +\x61\xc3\x4b\x4b\x13\x00\x12\x12\x12\x90\x9e\x9e\x2e\x60\x22\x22\ +\xa2\x87\x34\x5b\x9c\x52\x4e\xfc\xf0\x24\x11\x11\x89\xa4\xc9\xad\ +\xfa\xc5\x8b\x17\x51\xad\x5a\x35\x18\x0c\x86\x22\xfd\xbc\xab\xab\ +\x2b\xce\x9d\x3b\x07\x4b\x4b\x4b\x85\x27\x23\x22\xd2\xe8\x56\x3d\ +\x32\x32\xb2\xc8\xa5\x09\x00\x97\x2e\x5d\x42\x5c\x5c\x9c\x82\x13\ +\x11\x11\xfd\x3f\x4d\x16\xe7\xd2\xa5\x4b\x25\xbf\x86\xdb\x75\x22\ +\x12\x45\x73\x5b\xf5\xff\xf9\x9f\xff\x81\xa7\xa7\xa7\xe4\xd7\x39\ +\x38\x38\xe0\xca\x95\x2b\x70\x74\x74\x54\x60\x2a\x22\xa2\xc7\xb4\ +\xb7\x55\x5f\xb6\x6c\x59\xb1\x5e\x97\x95\x95\x85\x75\xeb\xd6\xc9\ +\x3c\x0d\x11\xd1\xb3\x34\x55\x9c\xf9\xf9\xf9\x25\xba\x49\x31\xb7\ +\xeb\x44\x24\x82\xa6\x8a\x73\xeb\xd6\xad\xb8\x76\xed\x5a\xb1\x5f\ +\xbf\x63\xc7\x0e\x5c\xb8\x70\x41\xc6\x89\x88\x88\x9e\xa5\xa9\xe2\ +\x2c\xe9\x11\xa3\xc1\x60\xe0\x63\x35\x88\x48\x71\x9a\x39\x39\x74\ +\xfb\xf6\x6d\x54\x76\x71\x41\x4e\x6e\x6e\x89\xd6\x69\x58\xa7\x0e\ +\x52\x8f\x1f\x97\x69\x2a\x22\xa2\x67\x68\xe7\xe4\xd0\xca\xf9\xf3\ +\x4b\x5c\x9a\x00\x90\x76\xe2\x04\x0e\x45\x47\xcb\x30\x11\x11\xd1\ +\xf3\x69\xe2\x88\xd3\x98\x9d\x8d\x96\x2e\x2e\x38\x70\xf7\xae\x2c\ +\xeb\x0d\x76\x76\xc6\x7f\x4e\x9d\x82\xce\xc1\x41\x96\xf5\x88\x88\ +\x9e\xa0\x8d\x23\xce\xd4\x11\x23\x70\x50\xa6\xd2\x04\x80\x55\xd7\ +\xae\xe1\xee\xd8\xb1\xb2\xad\x47\x44\xf4\x24\xd5\x8b\x53\x7f\xf2\ +\x24\x56\x2c\x5b\x06\x39\x0f\x7b\x33\x8d\x46\x6c\xfe\xf5\x57\xe8\ +\x53\x53\x65\x5c\x95\x88\xe8\x21\xd5\x8b\x33\x67\xe6\x4c\x44\x3e\ +\xf1\xe8\x5f\xb9\x44\xe5\xe5\x21\x67\xc6\x0c\xd9\xd7\x25\x22\x52\ +\xf5\x3d\x4e\x63\x4e\x0e\xfe\xeb\xea\x8a\x0f\x6f\xde\x94\x7d\x6d\ +\x6b\x00\x47\x2b\x56\x44\x8d\xf3\xe7\xa1\xb3\xb7\x97\x7d\x7d\x22\ +\x2a\xb5\xd4\x7d\x8f\x53\x9f\x94\x84\xa8\x7b\xf7\x14\x59\x3b\x0f\ +\xc0\xfa\xfb\xf7\x51\xc0\xbb\xc3\x13\x91\xcc\x54\x2d\xce\xfb\x89\ +\x89\x58\x57\x50\xa0\xd8\xfa\x2b\x0b\x0a\xa0\x3f\x72\x44\xb1\xf5\ +\x89\xa8\x74\x52\xb5\x38\x37\xee\xd9\x83\x7b\x0a\xbe\x53\x90\xa0\ +\xd7\xe3\x58\x5a\x9a\x62\xeb\x13\x51\xe9\xa4\x6a\x71\xfe\x7e\xf8\ +\xb0\xe2\x19\x2b\x93\x92\x14\xcf\x20\xa2\xd2\x45\xb5\x93\x43\x57\ +\xae\x5c\x41\x15\x57\x57\x14\x48\xb8\xd3\x7b\x71\x54\x2d\x5b\x16\ +\x67\xef\xdc\x81\x4e\xa7\x53\x34\x87\x88\x4a\x0d\xf5\x4e\x0e\x45\ +\x46\x46\x2a\x5e\x9a\x00\x70\xfe\xde\x3d\xec\xdd\xbb\x57\xf1\x1c\ +\x22\x2a\x3d\x54\x2b\x4e\x91\xf7\xce\xe4\x7d\x3a\x89\x48\x4e\xaa\ +\x6c\xd5\x8f\x1c\x39\x02\x0f\x0f\x0f\x61\x79\xe5\xca\x95\x43\x46\ +\x46\x06\xec\x79\x3d\x27\x11\x95\x9c\x3a\x5b\xf5\x15\x2b\x56\x08\ +\xcd\xbb\x7b\xf7\x2e\xa2\x79\xc7\x24\x22\x92\x89\xf0\xe2\xd4\xeb\ +\xf5\xf8\xed\xb7\xdf\x44\xc7\x16\xfb\x59\x46\x44\x44\xff\x24\xbc\ +\x38\x63\x63\x63\x71\xf9\xf2\x65\xd1\xb1\xd8\xb6\x6d\x1b\x32\x32\ +\x32\x84\xe7\x12\x91\xf9\x11\x5e\x9c\x6a\x9d\xa8\xd1\xeb\xf5\x7c\ +\xac\x06\x11\xc9\x42\xe8\xc9\xa1\x3b\x77\xee\xa0\x72\xe5\xca\xc8\ +\xce\xce\x16\x15\xf9\x14\x0f\x0f\x0f\x24\xf1\x82\x78\x22\x2a\x19\ +\xb1\x27\x87\xd6\xac\x59\xa3\x5a\x69\x02\xc0\xdf\x7f\xff\x8d\xbf\ +\xff\xfe\x5b\xb5\x7c\x22\x32\x0f\x42\x8b\x53\x0b\xd7\x53\x6a\x61\ +\x06\x22\x32\x6d\xc2\xb6\xea\x67\xce\x9c\x41\xad\x5a\xb5\xa0\xf6\ +\x23\x8e\x9c\x9d\x9d\x71\xf1\xe2\x45\x58\x59\x59\xa9\x3a\x07\x11\ +\x99\x2c\x71\x5b\xf5\xdf\x7e\xfb\x4d\xf5\xd2\x04\x80\xab\x57\xaf\ +\x22\x36\x36\x56\xed\x31\x88\xc8\x84\x09\x29\x4e\xa3\xd1\xa8\xa9\ +\xeb\x28\xb9\x5d\x27\xa2\x92\x10\xb2\x55\x3f\x78\xf0\x20\xbc\xbc\ +\xbc\x94\x8e\x29\x32\x5b\x5b\x5b\x64\x64\x64\xc0\xc9\xc9\x49\xed\ +\x51\x88\xc8\xf4\x88\xd9\xaa\x6b\xe9\x68\x13\x00\x72\x72\x72\xb0\ +\x66\xcd\x1a\xb5\xc7\x20\x22\x13\xa5\x78\x71\xe6\xe6\xe6\x22\x2a\ +\x2a\x4a\xe9\x18\xc9\xb4\x56\xe6\x44\x64\x3a\x14\x2f\xce\x98\x98\ +\x18\xdc\xba\x75\x4b\xe9\x18\xc9\xf6\xee\xdd\x8b\xd3\xa7\x4f\xab\ +\x3d\x06\x11\x99\x20\xc5\x8b\x53\xab\x27\x62\x8c\x46\xa3\xf0\xbb\ +\x34\x11\x91\x79\x50\xf4\xe4\xd0\xf5\xeb\xd7\xe1\xea\xea\x8a\xfc\ +\xfc\x7c\xa5\x22\x4a\xa4\x76\xed\xda\x38\x7e\xfc\x38\x1f\xab\x41\ +\x44\x52\x28\x7b\x72\x28\x2a\x2a\x4a\xb3\xa5\x09\x00\x27\x4f\x9e\ +\xc4\x81\x03\x07\xd4\x1e\x83\x88\x4c\x8c\xa2\xc5\xa9\xd5\x6d\xfa\ +\x93\x4c\x61\x46\x22\xd2\x16\xc5\xb6\xea\x29\x29\x29\x68\xdc\xb8\ +\xb1\x12\x4b\xcb\xea\x95\x57\x5e\x41\x46\x46\x06\x6c\x6c\x6c\xd4\ +\x1e\x85\x88\x4c\x83\x72\x5b\x75\x53\xb9\xf7\xe5\xad\x5b\xb7\xb0\ +\x71\xe3\x46\xb5\xc7\x20\x22\x13\xa2\x48\x71\xea\xf5\x7a\x93\xba\ +\x4e\x92\xdb\x75\x22\x92\x42\x91\xe2\xdc\xbd\x7b\x37\x2e\x5d\xba\ +\xa4\xc4\xd2\x8a\xd8\xbc\x79\x33\xae\x5e\xbd\xaa\xf6\x18\x44\x64\ +\x22\x14\x29\x4e\x53\x3a\xda\x04\x80\x82\x82\x02\xac\x5c\xb9\x52\ +\xed\x31\x88\xc8\x44\xc8\x7e\x72\xe8\xfe\xfd\xfb\x70\x71\x71\x41\ +\x56\x56\x96\x9c\xcb\x2a\xae\x69\xd3\xa6\x48\x4c\x4c\x54\x7b\x0c\ +\x22\xd2\x3e\xf9\x4f\x0e\xad\x5d\xbb\xd6\xe4\x4a\x13\x00\xfe\xfa\ +\xeb\x2f\x24\x27\x27\xab\x3d\x06\x11\x99\x00\xd9\x8b\xd3\x94\x4f\ +\xb4\xa8\xf1\xbc\x77\x22\x32\x3d\xb2\x6e\xd5\x2f\x5c\xb8\x80\xea\ +\xd5\xab\xc3\x60\x30\xc8\xb5\xa4\x50\xaf\xbf\xfe\x3a\xce\x9f\x3f\ +\x0f\x4b\x4b\x4b\xb5\x47\x21\x22\xed\x92\x77\xab\xfe\xdb\x6f\xbf\ +\x99\x6c\x69\x02\xc0\xe5\xcb\x97\xb1\x73\xe7\x4e\xb5\xc7\x20\x22\ +\x8d\x93\xb5\x38\x4d\xed\x6c\xfa\xf3\x98\xf2\x5b\x0d\x44\x24\x86\ +\x6c\x5b\xf5\xc4\xc4\x44\x34\x6f\xde\x5c\x8e\xa5\x54\xe5\xe0\xe0\ +\x80\x8c\x8c\x0c\x94\x2d\x5b\x56\xed\x51\x88\x48\x9b\xe4\xdb\xaa\ +\x9b\xcb\x91\x5a\x56\x56\x16\xd6\xae\x5d\xab\xf6\x18\x44\xa4\x61\ +\xb2\x14\x67\x7e\x7e\x3e\x22\x23\x23\xe5\x58\x4a\x13\xcc\xe5\x2f\ +\x01\x22\x52\x86\x2c\xc5\xb9\x65\xcb\x16\x5c\xbf\x7e\x5d\x8e\xa5\ +\x34\x61\xd7\xae\x5d\x38\x7f\xfe\xbc\xda\x63\x10\x91\x46\xc9\x52\ +\x9c\x22\xae\x7f\x74\xd2\xe9\x9e\xfa\xa3\x24\x83\xc1\xa0\xc9\x07\ +\xcc\x11\x91\x36\x94\xf8\xe4\xd0\xed\xdb\xb7\x51\xb9\x72\x65\xe4\ +\xe4\xe4\x14\x7b\x0d\x2b\x00\xf5\x2d\x2c\xf0\x86\xa5\x25\x1a\x58\ +\x58\xc0\x55\xa7\x83\xab\x4e\x07\x37\x0b\x0b\x54\xd2\xe9\xf0\xa2\ +\x9a\xbc\x66\x34\xe2\xa2\xc1\x80\x4b\x46\x23\x2e\x1a\x8d\x38\x6e\ +\x30\x20\xd9\x60\xc0\x51\xbd\x1e\xd9\xc5\x9e\x08\x70\x77\x77\x47\ +\x4a\x4a\x4a\x09\x56\x20\x22\x33\x15\x67\x55\xd2\x15\x56\xad\x5a\ +\x25\xb9\x34\x6d\x6c\x6c\xd0\xb2\x65\x4b\xb4\xd1\xeb\xd1\x22\x21\ +\x01\x8d\x2c\x2d\x61\x5b\xcc\xfc\x4a\x3a\x1d\x2a\x59\x5a\xc2\xf3\ +\x1f\x5f\xd7\x03\x38\x6d\x30\x20\xa1\x45\x0b\xec\xae\x50\x01\x3b\ +\x76\xec\xc0\xed\xdb\xb7\x8b\xbc\x6e\x6a\x6a\x2a\x0e\x1f\x3e\x0c\ +\x4f\xcf\x7f\xae\x4c\x44\xa5\x5d\x89\xb7\xea\x45\xbd\x76\xd3\xd1\ +\xd1\x11\x41\x41\x41\x88\x89\x89\xc1\x8d\x1b\x37\xb0\x63\xc7\x0e\ +\x8c\x6a\xd1\x02\xcd\x4a\x50\x9a\x2f\x62\x09\xa0\x8e\x85\x05\x82\ +\xdd\xdd\xb1\x7a\xf5\x6a\x64\x66\x66\xe2\xcf\x3f\xff\xc4\xb0\x61\ +\xc3\xf0\xea\xab\xaf\x16\x69\x0d\x73\xb8\x2e\x95\x88\xe4\x57\xa2\ +\xe2\x3c\x75\xea\x14\xf6\xed\xdb\x57\xe8\xf7\x75\x3a\x1d\xde\x7b\ +\xef\x3d\x2c\x5b\xb6\x0c\x57\xae\x5c\xc1\xd2\xa5\x4b\xf1\xd1\x47\ +\x1f\xc1\xc1\xc1\xa1\x24\xb1\xc5\x62\x69\x69\x89\x96\x2d\x5b\x62\ +\xd6\xac\x59\xb8\x74\xe9\x12\xd6\xad\x5b\x87\xce\x9d\x3b\xc3\xc2\ +\xa2\xf0\x5f\x41\x64\x64\xa4\xa6\x1f\x36\x47\x44\xea\x28\x51\x71\ +\x2e\x5d\xba\x14\xcf\x7b\x8b\xd4\xc1\xc1\x01\xa1\xa1\xa1\x38\x79\ +\xf2\x24\xb6\x6f\xdf\x8e\xc0\xc0\x40\x55\xca\xb2\x30\xd6\xd6\xd6\ +\xf0\xf3\xf3\x43\x74\x74\x34\x4e\x9d\x3a\x85\xd0\xd0\x50\xd8\xdb\ +\xdb\x3f\xf3\x73\xd7\xae\x5d\xc3\xa6\x4d\x9b\x54\x98\x90\x88\xb4\ +\xac\xd8\xc5\x69\x34\x1a\x9f\x79\xae\x90\x9d\x9d\x1d\xc6\x8c\x19\ +\x83\x53\xa7\x4e\x21\x3c\x3c\x1c\x35\x6b\xd6\x2c\xf1\x80\x4a\xab\ +\x5e\xbd\x3a\xc2\xc3\xc3\x91\x9e\x9e\x8e\xc1\x83\x07\xc3\xca\xea\ +\xe9\xb7\x7d\x4d\xe5\xd9\x49\x44\x24\x4e\xb1\x8b\x73\xcf\x9e\x3d\ +\x38\x75\xea\x14\x00\xc0\xca\xca\x0a\xa1\xa1\xa1\x38\x7f\xfe\x3c\ +\xc2\xc2\xc2\xe0\xec\xec\x2c\xdb\x80\xa2\x54\xa9\x52\x05\x73\xe7\ +\xce\xc5\xa9\x53\xa7\x10\x18\x18\x08\xdd\xff\x5d\xf2\xb4\x61\xc3\ +\x06\x64\x66\x66\xaa\x3c\x1d\x11\x69\x49\xb1\x8b\xf3\xd1\xb5\x9b\ +\x6f\xbd\xf5\x16\x12\x12\x12\x10\x1e\x1e\x5e\xe4\x93\x2e\x5a\x56\ +\xb5\x6a\x55\x2c\x5b\xb6\x0c\xdb\xb6\x6d\x43\xad\x5a\xb5\x90\x97\ +\x97\x87\x35\x6b\xd6\xa8\x3d\x16\x11\x69\x48\xb1\x8a\xf3\xc1\x83\ +\x07\x88\x89\x89\x41\x44\x44\x04\x0e\x1e\x3c\x88\x37\xdf\x7c\x53\ +\xee\xb9\x54\xd7\xae\x5d\x3b\xa4\xa4\xa4\x60\xec\xd8\xb1\x3c\xbb\ +\x4e\x44\x4f\x29\xd6\x75\x9c\xe7\xce\x9d\x43\x6c\x6c\x2c\xdc\xdd\ +\xdd\xe5\x9e\x47\x53\x6c\x6d\x6d\x31\x6d\xda\x34\x6c\xdf\xbe\x1d\ +\x77\xef\xde\x45\xb9\x72\xe5\xd4\x1e\x89\x88\x34\xa0\x58\xc5\xd9\ +\xa0\x41\x03\xb9\xe7\xd0\xb4\x76\xed\xda\xa9\x3d\x02\x11\x69\x88\ +\x22\x8f\x07\x26\x22\x32\x67\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\ +\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\ +\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\ +\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\ +\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\ +\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\ +\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\ +\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\ +\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\ +\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\ +\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\ +\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\ +\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\x22\x16\ +\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\ +\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\ +\x44\x24\x11\x8b\x93\x88\x48\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\ +\x22\x89\x58\x9c\x44\x44\x12\xb1\x38\x89\x88\x24\x62\x71\x12\x11\ +\x49\xc4\xe2\x24\x22\x92\x88\xc5\x49\x44\x24\x11\x8b\x93\x88\x48\ +\x22\x16\x27\x11\x91\x44\x2c\x4e\x22\x22\x89\x58\x9c\x44\x44\x12\ +\xb1\x38\x89\x88\x24\x62\x71\x12\x11\x49\xc4\xe2\x24\x22\x92\xc8\ +\x4a\xed\x01\x88\x48\x3a\xbd\x5e\x8f\x81\x03\x07\xe2\xc6\x8d\x1b\ +\xc2\x32\xdd\xdd\xdd\x31\x65\xca\x14\x61\x79\x2f\x32\x6e\xdc\x38\ +\xa4\xa7\xa7\x0b\xcb\x7b\xed\xb5\xd7\x30\x7f\xfe\x7c\x58\x5a\x5a\ +\x02\x60\x71\x12\x99\x24\x4b\x4b\x4b\xb4\x6e\xdd\x1a\x41\x41\x41\ +\xc2\x32\x37\x6c\xd8\x80\xd6\xad\x5b\xa3\x7d\xfb\xf6\xc2\x32\x9f\ +\x27\x26\x26\x06\x61\x61\x61\x42\x33\x23\x23\x23\x1f\x97\x26\xc0\ +\xad\x3a\x91\xc9\x0a\x0c\x0c\xc4\x87\x1f\x7e\x28\x34\x73\xe8\xd0\ +\xa1\xc8\xcd\xcd\x15\x9a\xf9\xa4\x07\x0f\x1e\xe0\xb3\xcf\x3e\x13\ +\x9a\xe9\xeb\xeb\x8b\x80\x80\x80\xa7\xbe\xc6\xe2\x24\x32\x61\x11\ +\x11\x11\x28\x57\xae\x9c\xb0\xbc\x13\x27\x4e\x08\x3f\xda\x7b\xd2\ +\x84\x09\x13\x70\xee\xdc\x39\x61\x79\xaf\xbc\xf2\x0a\xe6\xcd\x9b\ +\xf7\xcc\xd7\x59\x9c\x44\x26\xcc\xcd\xcd\x0d\xd3\xa7\x4f\x17\x9a\ +\xf9\xfd\xf7\xdf\xe3\xd4\xa9\x53\x42\x33\x01\x20\x39\x39\x19\x33\ +\x66\xcc\x10\x9a\x39\x63\xc6\x0c\x54\xae\x5c\xf9\x99\xaf\xb3\x38\ +\x89\x4c\xdc\xc0\x81\x03\xd1\xa6\x4d\x1b\x61\x79\x39\x39\x39\x18\ +\x36\x6c\x98\xb0\x3c\x00\x30\x1a\x8d\x08\x09\x09\x41\x41\x41\x81\ +\xb0\xcc\x0f\x3e\xf8\x00\x7d\xfa\xf4\x79\xee\xf7\x58\x9c\x44\x26\ +\x4e\xa7\xd3\x61\xd1\xa2\x45\xb0\xb7\xb7\x17\x96\xb9\x65\xcb\x16\ +\xac\x59\xb3\x46\x58\xde\xa2\x45\x8b\xb0\x7f\xff\x7e\x61\x79\xe5\ +\xca\x95\x43\x44\x44\x44\xa1\xdf\x67\x71\x12\x99\x81\x9a\x35\x6b\ +\x0a\xbf\x54\x68\xc4\x88\x11\xb8\x7f\xff\xbe\xe2\x39\xd7\xaf\x5f\ +\xc7\xd8\xb1\x63\x15\xcf\x79\xd2\xf4\xe9\xd3\x51\xa5\x4a\x95\x42\ +\xbf\xcf\xe2\x24\x32\x13\xa1\xa1\xa1\xf0\xf2\xf2\x12\x96\x77\xf1\ +\xe2\x45\x4c\x98\x30\x41\xf1\x9c\xd1\xa3\x47\xe3\xd6\xad\x5b\x8a\ +\xe7\x3c\xd2\xb6\x6d\x5b\x0c\x1c\x38\xf0\x85\x3f\xc3\xe2\x24\x32\ +\x13\x16\x16\x16\xf8\xe5\x97\x5f\x60\x63\x63\x23\x2c\x33\x3c\x3c\ +\x1c\xc9\xc9\xc9\x8a\xad\xbf\x6b\xd7\x2e\x2c\x5f\xbe\x5c\xb1\xf5\ +\xff\xc9\xde\xde\x1e\x0b\x17\x2e\x84\x4e\xa7\x7b\xe1\xcf\xb1\x38\ +\x89\xcc\x48\x83\x06\x0d\xf0\xef\x7f\xff\x5b\x58\x5e\x41\x41\x01\ +\x86\x0c\x19\x02\xa3\xd1\x28\xfb\xda\x79\x79\x79\x18\x3c\x78\xb0\ +\xec\xeb\xbe\xc8\xd4\xa9\x53\x51\xb3\x66\xcd\x97\xfe\x1c\x8b\x93\ +\xc8\xcc\x8c\x19\x33\x06\x6f\xbe\xf9\xa6\xb0\xbc\x3f\xff\xfc\x13\ +\x4b\x96\x2c\x91\x7d\xdd\x69\xd3\xa6\xe1\xd8\xb1\x63\xb2\xaf\x5b\ +\x18\x6f\x6f\xef\x22\x5f\x2d\xc0\xe2\x24\x32\x33\x56\x56\x56\x58\ +\xbc\x78\x31\xac\xac\xc4\x7d\xa2\x7a\xcc\x98\x31\xb8\x79\xf3\xa6\ +\x6c\xeb\x9d\x3c\x79\x12\xdf\x7f\xff\xbd\x6c\xeb\xbd\x8c\xad\xad\ +\x2d\x16\x2f\x5e\x0c\x0b\x8b\xa2\x55\x22\x8b\x93\xc8\x0c\xbd\xf1\ +\xc6\x1b\x18\x37\x6e\x9c\xb0\xbc\xcc\xcc\x4c\x59\xf3\x86\x0c\x19\ +\x82\x9c\x9c\x1c\xd9\xd6\x7b\x99\x89\x13\x27\xa2\x5e\xbd\x7a\x45\ +\xfe\x79\x16\x27\x91\x99\xfa\xe6\x9b\x6f\xd0\xb0\x61\x43\x61\x79\ +\x8b\x16\x2d\xc2\xc1\x83\x07\x4b\xbc\x4e\x64\x64\x24\x62\x63\x63\ +\x65\x98\xa8\x68\x9a\x37\x6f\x8e\xd1\xa3\x47\x4b\x7a\x0d\x8b\x93\ +\xc8\x4c\x59\x5b\x5b\x4b\xda\x7e\x96\x94\xd1\x68\xc4\xe0\xc1\x83\ +\xa1\xd7\xeb\x8b\xbd\xc6\xed\xdb\xb7\x31\x72\xe4\x48\x19\xa7\x7a\ +\xb1\x47\xbf\xa3\x27\xef\x7c\x54\x14\x2c\x4e\x22\x33\xd6\xa2\x45\ +\x0b\x8c\x18\x31\x42\x58\x5e\x52\x52\x12\xe6\xcc\x99\x53\xec\xd7\ +\x7f\xf9\xe5\x97\xb8\x7a\xf5\xaa\x8c\x13\xbd\xd8\x57\x5f\x7d\x85\ +\x46\x8d\x1a\x49\x7e\x1d\x8b\x93\x84\x51\xf3\x76\x64\xa5\xd9\xe4\ +\xc9\x93\x51\xbb\x76\x6d\x61\x79\xff\xfe\xf7\xbf\x91\x91\x91\x21\ +\xf9\x75\xf1\xf1\xf1\x58\xb0\x60\x81\x02\x13\x3d\x9f\x87\x87\x07\ +\xbe\xfc\xf2\xcb\x62\xbd\x96\xc5\x49\xc2\x64\x67\x67\xa3\x65\xcb\ +\x96\x18\x37\x6e\x9c\x2a\x77\xd7\x29\xad\xec\xec\xec\xb0\x68\xd1\ +\xa2\x97\x5e\xd4\x2d\x97\xbb\x77\xef\x4a\xde\x6e\xeb\xf5\x7a\x84\ +\x84\x84\xc0\x60\x30\x28\x34\xd5\xd3\x1e\x5d\x79\x50\xa6\x4c\x99\ +\x62\xbd\x9e\xc5\x49\xc2\x38\x39\x39\xe1\xcb\x2f\xbf\x44\x58\x58\ +\x18\x6a\xd7\xae\x8d\x66\xcd\x9a\x21\x3c\x3c\x5c\xe8\xe3\x1f\x4a\ +\xab\x77\xdf\x7d\x17\x21\x21\x21\xc2\xf2\x56\xae\x5c\x29\xe9\x04\ +\x4f\x78\x78\x38\x92\x92\x92\x14\x9c\xe8\x69\x5f\x7c\xf1\x05\x3c\ +\x3d\x3d\x8b\xfd\x7a\x16\x27\x09\xd5\xa9\x53\x27\xf4\xec\xd9\x13\ +\x00\xf0\xd7\x5f\x7f\x61\xc4\x88\x11\x70\x73\x73\x43\xf7\xee\xdd\ +\xb1\x71\xe3\x46\xe4\xe7\xe7\xab\x3c\xa1\xf9\x0a\x0b\x0b\x43\xd5\ +\xaa\x55\x85\xe5\x7d\xf6\xd9\x67\x45\x7a\x7b\xe6\xc2\x85\x0b\xf8\ +\xf6\xdb\x6f\x05\x4c\xf4\x50\x83\x06\x0d\x4a\x9c\xc7\xe2\x24\xe1\ +\x7e\xfe\xf9\xe7\xa7\xee\x5a\x9e\x93\x93\x83\x55\xab\x56\xc1\xc7\ +\xc7\x07\x75\xea\xd4\xc1\x37\xdf\x7c\x83\xe3\xc7\x8f\xab\x38\xa1\ +\x79\x2a\x5b\xb6\xec\x0b\x6f\x95\x26\xb7\xe3\xc7\x8f\x17\xe9\x26\ +\xcb\xa1\xa1\xa1\x42\xee\xb2\x04\x3c\xfc\x3c\xff\xe2\xc5\x8b\x4b\ +\xfc\x79\x7e\x16\x27\x09\xe7\xec\xec\x8c\x6f\xbe\xf9\xe6\xb9\xdf\ +\x3b\x77\xee\x1c\x26\x4f\x9e\x8c\x7a\xf5\xea\xc1\xdd\xdd\x1d\x61\ +\x61\x61\xb8\x72\xe5\x8a\xe0\x09\xcd\x57\xc7\x8e\x1d\x0b\xbd\x39\ +\xaf\x12\xa6\x4e\x9d\x8a\xd3\xa7\x4f\x17\xfa\xfd\x8d\x1b\x37\x62\ +\xfd\xfa\xf5\xc2\xe6\x19\x31\x62\x04\xde\x7e\xfb\xed\x12\xaf\xc3\ +\xe2\x24\x55\x84\x86\x86\xa2\x56\xad\x5a\x2f\xfc\x99\xb4\xb4\x34\ +\x8c\x1b\x37\x0e\xae\xae\xae\x68\xdf\xbe\x3d\x96\x2d\x5b\x86\xac\ +\xac\x2c\x41\x13\x9a\xaf\x19\x33\x66\xc0\xc5\xc5\x45\x48\x56\x4e\ +\x4e\x4e\xa1\x0f\x57\xcb\xca\xca\x12\xfa\xe0\xb5\xda\xb5\x6b\x63\ +\xf2\xe4\xc9\xb2\xac\xc5\xe2\x24\x55\x58\x5b\x5b\x17\xf9\x7d\x26\ +\x83\xc1\x80\xed\xdb\xb7\xa3\x4f\x9f\x3e\xa8\x51\xa3\x06\x42\x43\ +\x43\x91\x98\x98\xa8\xf0\x84\xe6\xeb\x95\x57\x5e\xc1\xdc\xb9\x73\ +\x85\xe5\x15\x76\xb7\xf8\x09\x13\x26\xe0\xfc\xf9\xf3\x42\x66\xd0\ +\xe9\x74\xf8\xe5\x97\x5f\x60\x67\x67\x27\xcb\x7a\x2c\x4e\x52\x4d\ +\xef\xde\xbd\xd1\xa0\x41\x03\x49\xaf\xb9\x7e\xfd\x3a\x66\xcf\x9e\ +\x8d\xe6\xcd\x9b\xa3\x6a\xd5\xaa\x18\x37\x6e\x1c\x4e\x9c\x38\xa1\ +\xd0\x84\xe6\xab\x4b\x97\x2e\xe8\xde\xbd\xbb\xb0\xbc\x7f\xde\x2d\ +\x3e\x39\x39\x19\x33\x67\xce\x14\x96\x3f\x78\xf0\x60\xb4\x6a\xd5\ +\x4a\xb6\xf5\x58\x9c\xa4\x1a\x9d\x4e\x87\xe1\xc3\x87\x17\xfb\xf5\ +\x17\x2e\x5c\x40\x58\x58\x18\xea\xd6\xad\xfb\xf8\xd2\xa6\xcc\xcc\ +\x4c\x19\x27\x34\x6f\xb3\x67\xcf\x46\xc5\x8a\x15\x85\x64\x3d\x79\ +\xb7\x78\xa3\xd1\x88\x41\x83\x06\x09\x7b\xf0\x5a\xb5\x6a\xd5\x64\ +\x7f\xa4\x31\x8b\x93\x54\xd5\xa7\x4f\x1f\x38\x3b\x3b\x97\x78\x9d\ +\x27\x2f\x6d\xea\xdc\xb9\x33\x56\xad\x5a\xc5\x4b\x9b\x5e\xa2\x52\ +\xa5\x4a\x98\x35\x6b\x96\xb0\xbc\xf0\xf0\x70\xa4\xa4\xa4\x60\xe1\ +\xc2\x85\x38\x70\xe0\x80\xb0\xdc\x85\x0b\x17\xc2\xd1\xd1\x51\xd6\ +\x35\x59\x9c\xa4\x2a\x5b\x5b\x5b\xf4\xef\xdf\x5f\xb6\xf5\x72\x73\ +\x73\x11\x13\x13\x83\xee\xdd\xbb\xa3\x56\xad\x5a\x18\x3f\x7e\x3c\ +\x8e\x1e\x3d\x2a\xdb\xfa\xe6\xa6\x67\xcf\x9e\xe8\xdc\xb9\xb3\x90\ +\xac\x82\x82\x02\x04\x07\x07\x0b\xbd\xdd\x5d\x70\x70\x30\xda\xb7\ +\x6f\x2f\xfb\xba\x3a\xa3\x12\xf7\xbc\x2f\xa2\x07\x63\xc7\x22\x57\ +\xe1\x37\xa9\x6d\xfa\xf6\x85\xfd\xec\xd9\x8a\x66\x50\xc9\x9c\x3a\ +\x75\x0a\x75\xea\xd4\x51\xe4\xf1\x0b\x8f\x34\x6c\xd8\x10\xdd\xba\ +\x75\x43\xdf\xbe\x7d\x51\xbd\x7a\x75\xc5\x72\x4c\xd1\xa5\x4b\x97\ +\xe0\xee\xee\x8e\x3b\x77\xee\xa8\x3d\x8a\xac\x5c\x5d\x5d\x91\x9a\ +\x9a\x8a\xf2\xe5\xcb\xcb\xbd\x74\x1c\x8f\x38\x49\x75\xb5\x6a\xd5\ +\x52\xfc\xe9\x8c\x69\x69\x69\x98\x38\x71\x22\x6a\xd5\xaa\x85\x77\ +\xde\x79\x07\x0b\x16\x2c\x10\x76\xd1\xb5\xd6\xb9\xba\xba\xe2\xc7\ +\x1f\x7f\x54\x7b\x0c\xd9\xcd\x9f\x3f\x5f\x89\xd2\x04\xc0\xad\x3a\ +\x69\x44\xef\xde\xbd\x85\xe4\x18\x0c\x06\xec\xdb\xb7\x0f\x83\x06\ +\x0d\x42\xa5\x4a\x95\x1e\x7f\xd4\xb3\x24\xf7\x90\x34\x07\x9f\x7e\ +\xfa\x29\xda\xb5\x6b\xa7\xf6\x18\xb2\xe9\xd5\xab\x17\x3a\x75\xea\ +\xa4\xd8\xfa\x2c\x4e\xd2\x84\xae\x5d\xbb\x4a\xbe\x99\x6c\x49\x65\ +\x67\x67\x3f\xfe\xa8\xa7\xbb\xbb\x3b\xa6\x4c\x99\x82\x73\xe7\xce\ +\x09\x9d\x41\x4b\x16\x2e\x5c\x08\x07\x07\x07\xb5\xc7\x28\x31\x67\ +\x67\x67\x84\x87\x87\x2b\x9a\xc1\xe2\x24\x4d\xa8\x54\xa9\x12\xde\ +\x7a\xeb\x2d\xd5\xf2\x8f\x1d\x3b\x86\xaf\xbf\xfe\x1a\xd5\xab\x57\ +\x7f\x7c\x69\xd3\xf5\xeb\xd7\x55\x9b\x47\x0d\xd5\xab\x57\x17\xfa\ +\x80\x34\xa5\xcc\x99\x33\x47\xf1\xcb\xac\x58\x9c\xa4\x19\xef\xbf\ +\xff\xbe\xda\x23\x00\x78\xfe\xa5\x4d\x79\x79\x79\x6a\x8f\x25\xc4\ +\xd0\xa1\x43\xd1\xb2\x65\x4b\xb5\xc7\x28\xb6\xae\x5d\xbb\xc2\xdf\ +\xdf\x5f\xf1\x1c\x71\xcf\x0f\x55\x89\xfe\xec\x59\xe4\xad\x5b\xa7\ +\xf6\x18\x54\x04\x6d\x6d\x6d\x31\x41\xed\x21\x9e\x90\x97\x97\x87\ +\x98\x98\x18\xc4\xc4\xc4\xe0\x15\x47\x47\x74\xf5\xf6\x46\xaf\x36\ +\x6d\xd0\xb2\x5d\x3b\x58\xd5\xae\x0d\x9d\x93\x93\xda\x23\xca\xee\ +\xd1\xdd\x83\x3c\x3c\x3c\x84\x3e\x65\x52\x0e\x15\x2a\x54\xc0\x7f\ +\xfe\xf3\x1f\x21\x59\x66\x7f\x39\x12\x99\x8e\x02\x00\x35\xb2\xb2\ +\x90\xa5\xde\x7f\x92\x45\xd2\xc4\xc2\x02\x9f\x58\x5b\xe3\x93\x26\ +\x4d\xe0\xda\xb3\x27\x6c\x7a\xf7\x86\x4e\xd0\x27\x70\x44\x09\x0b\ +\x0b\x13\x7a\xbd\xa5\x1c\x96\x2f\x5f\x2e\xea\x24\x23\x2f\x47\x22\ +\xed\xb0\x02\xe0\x21\xe8\x89\x8c\x25\x71\xc4\x60\xc0\x57\x39\x39\ +\xa8\x9b\x90\x80\xd6\xa3\x47\x23\xbc\x66\x4d\x5c\xfb\xf6\x5b\xc0\ +\x8c\x9e\xa9\xf4\xf9\xe7\x9f\xa3\x59\xb3\x66\x6a\x8f\x51\x64\x1f\ +\x7d\xf4\x91\xb0\x2b\x33\x00\xbe\xc7\x49\x1a\x63\x0a\xc5\xf9\x88\ +\x01\x40\xbc\x5e\x8f\x91\x77\xef\xa2\xea\x77\xdf\xa1\x8b\x9b\x1b\ +\xa2\x17\x2f\x16\xf6\x19\x6c\x25\x59\x5a\x5a\x96\xe8\x99\x3c\x22\ +\x95\x2f\x5f\x5e\xe8\x0d\x9a\x01\x16\x27\x69\x4c\x13\xc1\x97\x24\ +\xc9\x25\x17\xc0\xfa\xcc\x4c\xf8\xf6\xef\x8f\x6a\x6e\x6e\x18\x3e\ +\x7c\xb8\xd0\x67\xe8\x28\xa1\x71\xe3\xc6\x18\x3f\x7e\xbc\xda\x63\ +\xbc\xd4\x4f\x3f\xfd\x04\x57\x57\x57\xa1\x99\x2c\x4e\xd2\x94\xfa\ +\x26\x74\xc4\x59\x98\xcb\x57\xaf\x62\xd6\xac\x59\xf0\xf4\xf4\x44\ +\xab\x56\xad\xb0\x68\xd1\x22\x93\xfd\x38\xe3\xf8\xf1\xe3\x8b\xf5\ +\xdc\x71\x51\xda\xb7\x6f\x2f\xeb\xbd\x0e\x8a\xca\xf4\xff\x2b\x25\ +\xb3\x52\x55\xd0\x23\x6c\x45\x30\x1a\x8d\xd8\xbb\x77\x2f\x06\x0c\ +\x18\x80\x8a\x15\x2b\x3e\xbe\x8b\xfd\x83\x07\x0f\xd4\x1e\xad\xc8\ +\xac\xad\xad\xf1\xeb\xaf\xbf\x0a\xff\x70\x42\x51\x38\x3a\x3a\x62\ +\xe1\xc2\x85\xaa\x64\xb3\x38\x49\x53\x5e\xd1\xe9\xe0\x68\x46\xe5\ +\xf9\x88\x5e\xaf\x7f\x7c\x17\x7b\x57\x57\x57\x04\x05\x05\x61\xfb\ +\xf6\xed\x8a\xde\xd8\x44\x2e\xcd\x9a\x35\xc3\xa8\x51\xa3\xd4\x1e\ +\xe3\x19\xd3\xa6\x4d\x43\xb5\x6a\xd5\x54\xc9\xe6\xe5\x48\xa4\x39\ +\x5e\x0f\x1e\xe0\x98\xc1\xa0\xf6\x18\x42\x54\xab\x56\x0d\x01\x01\ +\x01\x18\x30\x60\xc0\x4b\x9f\xc1\xa4\xa6\x9c\x9c\x1c\x78\x78\x78\ +\x68\xe6\xe9\xa3\xad\x5a\xb5\xc2\xee\xdd\xbb\xa1\x53\xe7\x2f\x59\ +\x5e\x8e\x44\xda\xe3\x6c\x86\x47\x9c\x85\x39\x77\xee\x1c\xc2\xc2\ +\xc2\x50\xaf\x5e\x3d\x7c\xf8\xe1\x87\x88\x8c\x8c\x44\x76\x76\xb6\ +\xda\x63\x3d\xc3\xd6\xd6\x16\xbf\xfc\xf2\x8b\x5a\x45\xf5\x14\x3b\ +\x3b\x3b\xd5\x67\x61\x71\x92\xe6\xd8\x6b\xe0\x7f\x4e\xd1\xf4\x7a\ +\x3d\xb6\x6c\xd9\x82\x9e\x3d\x7b\xa2\x42\x85\x0a\x8f\xef\xda\xa4\ +\xa5\x4b\x9b\xde\x79\xe7\x1d\x0c\x1d\x3a\x54\xed\x31\x30\x69\xd2\ +\x24\xd4\xae\x5d\x5b\xd5\x19\x58\x9c\xa4\x39\xf6\x6a\x0f\xa0\xb2\ +\x9c\x9c\x9c\xc7\x77\x6d\xaa\x5a\xb5\x2a\x86\x0f\x1f\x8e\xc3\x87\ +\x0f\xab\x3d\x16\x00\xe0\xfb\xef\xbf\x57\xf5\x46\xd0\xcd\x9b\x37\ +\xc7\xc8\x91\x23\x55\xcb\x7f\x84\xc5\x49\x9a\x63\x57\x0a\x8f\x38\ +\x0b\x93\x91\x91\x81\x59\xb3\x66\xa1\x69\xd3\xa6\x70\x77\x77\x47\ +\x58\x58\x18\xae\x5c\xb9\xa2\xda\x3c\xd6\xd6\xd6\xb0\xb7\x57\xef\ +\xaf\xb6\xcb\x97\x2f\xe3\xde\xbd\x7b\xaa\xe5\x3f\xc2\xe2\x24\xcd\ +\xd1\xfe\x67\x55\xd4\x91\x9e\x9e\x8e\x6d\xdb\xb6\x61\xf7\xee\xdd\ +\xaa\x9d\x8d\xff\xee\xbb\xef\x90\x96\x96\xa6\x4a\x36\xf0\xf0\x31\ +\x1f\x9f\x7f\xfe\xb9\x6a\xf9\x8f\xb0\x38\x49\x73\x72\x4c\xe0\x12\ +\x1d\x91\x5a\xb6\x6c\x89\x88\x88\x08\x5c\xbf\x7e\x1d\x3b\x76\xec\ +\x40\x40\x40\x80\x2a\x27\x46\x92\x92\x92\x64\x7f\xcc\x6e\x71\x2c\ +\x5a\xb4\x08\x3b\x76\xec\x50\x75\x06\xb3\xbf\xad\x1c\x99\x1e\xd3\ +\xb9\x3c\x5c\x39\xd5\xaa\x55\x43\xdf\xbe\x7d\xd1\xbd\x7b\x77\x34\ +\x6c\xd8\x50\xed\x71\x50\x50\x50\x80\x7e\xfd\xfa\x69\xe6\x64\xd5\ +\x80\x01\x03\x90\x9c\x9c\xac\xda\x1d\xeb\x59\x9c\xa4\x39\xd9\xa5\ +\xf4\x88\xd3\xd1\xd1\x11\x3d\x7b\xf6\x44\x60\x60\x20\xbc\xbd\xbd\ +\x61\xa1\xa1\x8f\x9f\x4e\x9b\x36\x4d\x53\x9f\xbd\x3f\x73\xe6\x0c\ +\xc6\x8f\x1f\xaf\xf8\x23\x32\x0a\xc3\xe2\x24\xcd\x31\xcd\x4f\x75\ +\x17\x5f\x8b\x16\x2d\x10\x18\x18\x88\x80\x80\x00\xc5\x1f\xf9\x50\ +\x1c\x69\x69\x69\x98\x34\x69\x92\xda\x63\x3c\x63\xce\x9c\x39\xf8\ +\xe4\x93\x4f\xe0\xed\xed\x2d\x3c\x9b\xc5\x49\x9a\x73\xb1\x14\x7c\ +\x6a\xa8\x6e\xdd\xba\x08\x0e\x0e\x46\xaf\x5e\xbd\xe0\xe6\xe6\xa6\ +\xf6\x38\x85\x32\x18\x0c\x08\x0e\x0e\xd6\xe4\xa3\x43\x0c\x06\x03\ +\xfa\xf7\xef\x8f\xa4\xa4\x24\xd8\xd8\xd8\x08\xcd\xd6\xce\x5e\x80\ +\x08\x0f\xef\x02\x7f\xd5\x4c\xb7\xea\xaf\xbd\xf6\x1a\x42\x43\x43\ +\x91\x98\x98\x88\x63\xc7\x8e\x61\xec\xd8\xb1\x9a\x2e\x4d\x00\x98\ +\x31\x63\x06\xe2\xe3\xe3\xd5\x1e\xa3\x50\xe9\xe9\xe9\x98\x38\x71\ +\xa2\xf0\x5c\x7e\x56\x9d\x34\xe5\xa2\xd1\x88\x26\x59\x59\x6a\x8f\ +\x21\x1b\x6b\x6b\x6b\xf8\xfa\xfa\x22\x30\x30\x10\x1d\x3a\x74\x10\ +\x7e\x64\x54\x12\x27\x4f\x9e\x44\x93\x26\x4d\x34\xf9\x11\xd0\x27\ +\x59\x59\x59\x21\x3e\x3e\x1e\x9e\x9e\x9e\xa2\x22\xe3\xb8\x55\x27\ +\x4d\x39\x6b\x26\xdb\x74\x77\x77\x77\x04\x05\x05\xa1\x57\xaf\x5e\ +\xc2\x6f\xb2\x2b\x07\xa3\xd1\x88\xfe\xfd\xfb\x6b\xbe\x34\x81\x87\ +\x67\xfc\x83\x83\x83\x91\x98\x98\x08\x2b\x2b\x31\x95\xc6\xad\x3a\ +\x69\x4a\x92\x09\x17\x67\x35\x0b\x0b\x7c\xf5\xaf\x7f\xe1\x68\x5a\ +\x1a\x52\x52\x52\x30\x66\xcc\x18\x93\x2c\x4d\x00\x98\x3b\x77\x2e\ +\xf6\xec\xd9\xa3\xf6\x18\x45\xf6\xf7\xdf\x7f\x63\xda\xb4\x69\xc2\ +\xf2\x58\x9c\xa4\x29\x47\xf4\x7a\xb5\x47\x90\xc4\x51\xa7\x43\x9f\ +\x32\x65\xb0\xa5\x62\x45\xa4\x2f\x5f\x8e\xc9\x7b\xf6\xa0\x7e\x83\ +\x06\x6a\x8f\x55\x22\xe7\xce\x9d\x33\xb9\x27\x5c\x02\x0f\x6f\xfe\ +\x21\xea\x53\x4d\xdc\xaa\x93\xa6\xfc\x6d\x02\x47\x9c\x56\x00\xde\ +\xb3\xb2\x42\x80\x95\x15\x3a\x3a\x39\xa1\x5c\x9f\x3e\xb0\x1b\x3d\ +\x1a\xba\xd7\x5e\x53\x7b\x34\x59\x0c\x1c\x38\x10\xf7\xef\xdf\x57\ +\x7b\x0c\xc9\xf2\xf2\xf2\x10\x1c\x1c\x8c\xfd\xfb\xf7\x2b\x7e\x0d\ +\xac\xaa\xc5\x69\xf1\xfa\xeb\xb0\x7c\xf3\x4d\x35\x47\x20\x0d\xb9\ +\x55\x50\x80\xd3\x07\x0f\xaa\x3d\x46\xa1\xaa\xd9\xda\x22\xa0\x52\ +\x25\xf4\xa8\x59\x13\x75\x3c\x3c\x60\xf5\xaf\x7f\xa1\x4c\xc7\x8e\ +\xd0\xa9\xf4\xe9\x15\x25\x2c\x5e\xbc\x18\xae\x3a\x84\x6f\x00\x00\ +\x07\x65\x49\x44\x41\x54\xdb\xb6\x6d\x53\x7b\x8c\x62\x8b\x8f\x8f\ +\xc7\xcc\x99\x33\x15\xbf\x63\xbd\xaa\x67\xd5\x89\x9e\x14\x15\x15\ +\x85\x1e\x3d\x7a\xa8\x3d\xc6\x53\x2a\x55\xaa\x84\x7e\xfd\xfa\x21\ +\x30\x30\x10\xee\xee\xee\x6a\x8f\xa3\xa8\xcb\x97\x2f\xc3\xdd\xdd\ +\x1d\xb7\x6f\xdf\x56\x7b\x94\x12\xb1\xb7\xb7\xc7\x91\x23\x47\x94\ +\xbc\xa3\x3e\xcf\xaa\x93\x76\x6c\xdd\xba\x55\xed\x11\x00\x3c\xbc\ +\xc3\xb8\xbf\xbf\x3f\x82\x82\x82\xd0\xa6\x4d\x1b\x4d\x3e\xa8\x4c\ +\x09\x83\x07\x0f\x36\xf9\xd2\x04\x80\x07\x0f\x1e\xe0\xd3\x4f\x3f\ +\xc5\xce\x9d\x3b\x15\xbb\x19\x0a\x8f\x38\x49\x13\x8c\x46\x23\xdc\ +\xdc\xdc\x70\xf9\xf2\x65\x55\xf2\x75\x3a\x1d\xde\x7b\xef\x3d\x04\ +\x06\x06\xc2\xc7\xc7\x07\x4e\x4e\x4e\xaa\xcc\xa1\x96\xdf\x7f\xff\ +\x1d\xbd\x7a\xf5\x52\x7b\x0c\x59\xcd\x9b\x37\x0f\x21\x21\x21\x4a\ +\x2c\x1d\xc7\xe2\x24\x4d\x48\x48\x48\x40\x8b\x16\x2d\x84\xe7\xba\ +\xb8\xb8\xa0\x67\xcf\x9e\xe8\xd3\xa7\x0f\x9a\x34\x69\x22\x3c\x5f\ +\x0b\xae\x5d\xbb\x06\x77\x77\x77\x64\x66\x66\xaa\x3d\x8a\xac\xca\ +\x96\x2d\x8b\xd4\xd4\x54\x54\xa9\x52\x45\xee\xa5\xb9\x55\x27\x6d\ +\x58\xbc\x78\xb1\xb0\xac\x72\xe5\xca\x21\x20\x20\x40\x93\x77\x21\ +\x52\xc3\xb0\x61\xc3\x84\x95\xa6\x9d\x9d\x9d\xb0\x8b\xea\xef\xdd\ +\xbb\x87\x41\x83\x06\x61\xf3\xe6\xcd\xb2\xaf\xcd\x23\x4e\x52\x5d\ +\x76\x76\x36\x2a\x57\xae\x8c\x3b\x77\x94\xbb\x2f\x92\x95\x95\x15\ +\x3a\x76\xec\x88\xa0\xa0\x20\x74\xee\xdc\x19\xb6\xb6\xb6\x8a\x65\ +\x99\x92\xf5\xeb\xd7\xa3\x4b\x97\x2e\xc2\xf2\xe6\xcd\x9b\x87\xb8\ +\xb8\x38\x44\x45\x45\x09\xcb\x5c\xb6\x6c\x19\x02\x03\x03\xe5\x5c\ +\x92\x5b\x75\x52\xdf\xea\xd5\xab\xd1\xad\x5b\x37\x45\xd6\xae\x5d\ +\xbb\x36\x02\x03\x03\x11\x18\x18\x88\x1a\x35\x6a\x28\x92\x61\xaa\ +\x6e\xdd\xba\x85\x86\x0d\x1b\x0a\x7b\x86\x91\x97\x97\x17\xf6\xed\ +\xdb\x87\x6b\xd7\xae\xa1\x41\x83\x06\xb8\x75\xeb\x96\x90\xdc\x0a\ +\x15\x2a\x20\x2d\x2d\x0d\xce\xce\xce\x72\x2d\x19\x07\x23\x91\xca\ +\xbc\xbd\xbd\x8d\x00\x64\xfb\xe3\xe2\xe2\x62\x1c\x3b\x76\xac\x31\ +\x25\x25\x45\xed\x7f\x35\x4d\x0b\x0a\x0a\x92\xf5\xf7\xfe\xa2\x3f\ +\x56\x56\x56\xc6\x23\x47\x8e\x3c\xce\x5e\xb8\x70\xa1\xb0\x6c\x00\ +\xc6\xae\x5d\xbb\xca\xf9\xab\xdb\xcd\xe2\x24\x55\xed\xdb\xb7\x4f\ +\x96\xff\x31\xec\xed\xed\x8d\x81\x81\x81\xc6\xd8\xd8\x58\x63\x41\ +\x41\x81\xda\xff\x5a\x9a\xb7\x79\xf3\x66\xa1\xc5\x35\x66\xcc\x98\ +\xa7\xf2\x0d\x06\x83\xb1\x55\xab\x56\x42\x67\x58\xbd\x7a\xb5\x5c\ +\xbf\xbe\xdd\xdc\xaa\x93\xaa\xba\x76\xed\x8a\xb5\x6b\xd7\x16\xeb\ +\xb5\x4f\x5e\x42\xe4\xeb\xeb\x8b\xf2\xe5\xcb\xcb\x3c\x9d\x79\xba\ +\x7b\xf7\x2e\x1a\x35\x6a\x84\x0b\x17\x2e\x08\xc9\xab\x5e\xbd\x3a\ +\x52\x53\x53\x9f\x79\xac\x70\x7a\x7a\x3a\x3c\x3c\x3c\x84\xdd\x24\ +\xd9\xd9\xd9\x19\x69\x69\x69\xa8\x50\xa1\x42\x49\x97\xe2\x56\x9d\ +\xd4\x73\xfc\xf8\x71\xa3\xa5\xa5\xa5\xe4\x23\x07\x57\x57\x57\xe3\ +\x98\x31\x63\xb8\x15\x2f\xa6\x41\x83\x06\x09\x3d\xd2\xdb\xb4\x69\ +\x53\xa1\xb3\x7c\xfb\xed\xb7\x42\x67\x09\x0c\x0c\x94\xe3\x57\xb8\ +\x9b\xc5\x49\xaa\xf9\xe8\xa3\x8f\x8a\xfc\x1f\x7c\xc5\x8a\x15\x8d\ +\xa1\xa1\xa1\xc6\xc4\xc4\x44\xb5\xc7\x36\x69\x3b\x77\xee\x34\xea\ +\x74\x3a\x61\x45\xe5\xef\xef\xff\xc2\x79\x72\x73\x73\x8d\xf5\xeb\ +\xd7\x17\x5a\x9e\x9b\x37\x6f\x2e\xe9\xaf\x91\x5b\x75\x52\xc7\xd6\ +\xad\x5b\xd1\xb1\x63\xc7\x17\xfe\x4c\x99\x32\x65\xe0\xe7\xe7\x67\ +\x92\x77\x4f\xd7\xa2\x07\x0f\x1e\xa0\x71\xe3\xc6\x38\x7d\xfa\xb4\ +\x90\xbc\x72\xe5\xca\xe1\xe8\xd1\xa3\x78\xfd\xf5\xd7\x5f\xf8\x73\ +\x7b\xf6\xec\x41\xeb\xd6\xad\x21\xaa\x8a\xaa\x54\xa9\x82\xd4\xd4\ +\x54\x94\x2d\x5b\xb6\xb8\x4b\x70\xab\x4e\xe2\xe5\xe7\xe7\x1b\x1b\ +\x34\x68\x50\xe8\x11\x41\xcb\x96\x2d\x8d\x11\x11\x11\xc6\x1b\x37\ +\x6e\xa8\x3d\xaa\x59\x19\x3e\x7c\xb8\xd0\x23\xbb\xd9\xb3\x67\x17\ +\x79\xb6\x4f\x3f\xfd\x54\xe8\x6c\x21\x21\x21\x25\xf9\x55\x72\xab\ +\x4e\xe2\xcd\x98\x31\xe3\xb9\x5b\xf1\xa1\x43\x87\x1a\x0f\x1e\x3c\ +\xa8\xf6\x78\x66\x69\xdf\xbe\x7d\x46\x0b\x0b\x0b\x61\xc5\xd4\xbc\ +\x79\x73\xa3\x5e\xaf\x2f\xf2\x7c\x37\x6f\xde\x34\x56\xaa\x54\x49\ +\xd8\x7c\x3a\x9d\xce\xb8\x6b\xd7\xae\xe2\xfe\x3a\xb9\x55\x27\xb1\ +\x52\x53\x53\xd1\xb4\x69\x53\xe4\xe6\xe6\xc2\xc1\xc1\x01\x1f\x7f\ +\xfc\x31\x82\x82\x82\xd0\xb6\x6d\xdb\x52\xff\xd1\x47\xa5\xe4\xe4\ +\xe4\xe0\xcd\x37\xdf\x44\x7a\x7a\xba\x90\x3c\x4b\x4b\x4b\x24\x26\ +\x26\xe2\x8d\x37\xde\x90\xf4\xba\xc8\xc8\x48\xf4\xec\xd9\x53\xa1\ +\xa9\x9e\x55\xab\x56\x2d\x24\x27\x27\xc3\xce\xce\x4e\xea\x4b\xb9\ +\x55\x27\x71\x0a\x0a\x0a\x8c\x5e\x5e\x5e\xc6\x76\xed\xda\x19\x97\ +\x2e\x5d\x6a\xbc\x73\xe7\x8e\xda\x23\x95\x0a\xe3\xc6\x8d\x13\xba\ +\x0d\x1e\x35\x6a\x54\xb1\x67\xed\xd8\xb1\xa3\x29\xcc\xca\x23\x4e\ +\x12\x27\x23\x23\x03\x77\xee\xdc\x41\xfd\xfa\xf5\xd5\x1e\xa5\xd4\ +\x38\x7c\xf8\x30\x5a\xb4\x68\x81\x82\x82\x02\x21\x79\x55\xaa\x54\ +\x41\x5a\x5a\x1a\x1c\x1d\x1d\x8b\xf5\xfa\xb3\x67\xcf\xc2\xdd\xdd\ +\x1d\x0f\x1e\x3c\x90\x79\xb2\xe7\xb3\xb0\xb0\xc0\xfe\xfd\xfb\xa5\ +\xde\x99\x2b\x8e\x7b\x23\x12\xa6\x72\xe5\xca\x2c\x4d\x81\xf2\xf3\ +\xf3\xd1\xaf\x5f\x3f\x61\xa5\x09\x00\xb3\x67\xcf\x2e\x76\x69\x02\ +\x0f\x2f\x96\x9f\x38\x71\xa2\x8c\x13\xbd\x98\xc1\x60\x40\x70\x70\ +\xb0\xe4\x8b\xf0\x59\x9c\x44\x66\x6a\xea\xd4\xa9\x38\x72\xe4\x88\ +\xb0\x3c\x3f\x3f\x3f\xf8\xfa\xfa\x96\x78\x9d\x11\x23\x46\x48\x7e\ +\x7f\xb4\x24\xd2\xd2\xd2\x30\x69\xd2\x24\x49\xaf\xe1\x56\x9d\xc8\ +\x0c\xa5\xa4\xa4\xa0\x69\xd3\xa6\xc2\x3e\xce\xe8\xe8\xe8\x88\xa3\ +\x47\x8f\xc2\xcd\xcd\x4d\x96\xf5\x12\x13\x13\xd1\xa2\x45\x0b\x18\ +\x04\x3d\xf5\xb4\x4c\x99\x32\x38\x74\xe8\x10\x3c\x3c\x3c\x8a\xf2\ +\xe3\xdc\xaa\x13\x99\x1b\xbd\x5e\x8f\x7e\xfd\xfa\x09\x2b\x4d\xe0\ +\xe1\x33\xcd\xe5\x2a\x4d\x00\x68\xd6\xac\x19\x86\x0d\x1b\x26\xdb\ +\x7a\x2f\x93\x9f\x9f\x8f\xe0\xe0\xe0\x22\xbf\xad\xc1\xe2\x24\x32\ +\x33\x3f\xfd\xf4\x13\x12\x13\x13\x85\xe5\x79\x7a\x7a\x2a\x52\x72\ +\x93\x27\x4f\x56\xe2\xb1\x17\x85\x3a\x7c\xf8\x30\x7e\xf8\xe1\x87\ +\x22\xfd\x2c\xb7\xea\x44\x66\xe4\xf8\xf1\xe3\xf0\xf0\xf0\x40\x4e\ +\x4e\x8e\x90\x3c\x0b\x0b\x0b\xc4\xc7\xc7\xa3\x59\xb3\x66\x8a\xac\ +\xbf\x71\xe3\x46\xf8\xf8\xf8\x28\xb2\xf6\xf3\xd8\xd8\xd8\x20\x29\ +\x29\xe9\x65\x27\x31\xb9\x55\x27\x32\x17\x46\xa3\x11\xfd\xfb\xf7\ +\x17\x56\x9a\x00\x30\x74\xe8\x50\xc5\x4a\x13\x00\x3a\x77\xee\x0c\ +\x7f\x7f\x7f\xc5\xd6\xff\xa7\xdc\xdc\x5c\xf4\xef\xdf\xff\xa5\xef\ +\xad\xb2\x38\x89\xcc\xc4\xec\xd9\xb3\xf1\xe7\x9f\x7f\x0a\xcb\x73\ +\x75\x75\xc5\x94\x29\x53\x14\xcf\x99\x35\x6b\x96\xd0\x7b\xad\xee\ +\xdf\xbf\x1f\x73\xe6\xcc\x79\xe1\xcf\x70\xab\x4e\x64\x06\xce\x9c\ +\x39\x83\xc6\x8d\x1b\x23\x2b\x2b\x4b\x58\xe6\xea\xd5\xab\xd1\xb5\ +\x6b\x57\x21\x59\xf3\xe6\xcd\xc3\x90\x21\x43\x84\x64\x01\x80\x83\ +\x83\x03\x92\x93\x93\x0b\x7b\x4e\x15\xb7\xea\x44\xe6\x60\xc0\x80\ +\x01\x42\x4b\xb3\x53\xa7\x4e\xc2\x4a\x13\x00\x42\x42\x42\xe0\xed\ +\xed\x2d\x2c\x2f\x2b\x2b\x0b\x03\x06\x0c\x28\xf4\xfb\x2c\x4e\x22\ +\x13\xb7\x70\xe1\x42\xec\xd8\xb1\x43\x58\x9e\x83\x83\xc3\x4b\xb7\ +\xb2\x72\xd3\xe9\x74\x58\xb0\x60\x01\xca\x94\x29\x23\x2c\x73\xc7\ +\x8e\x1d\x58\xb4\x68\xd1\x73\xbf\xc7\xe2\x24\x32\x61\x97\x2e\x5d\ +\xc2\x17\x5f\x7c\x21\x34\x73\xc2\x84\x09\xa8\x56\xad\x9a\xd0\x4c\ +\x00\x70\x77\x77\xc7\x98\x31\x63\x84\x66\x7e\xfe\xf9\xe7\xb8\x7c\ +\xf9\xf2\x33\x5f\xe7\x7b\x9c\x44\x26\xac\x53\xa7\x4e\xd8\xb4\x69\ +\x93\xb0\x3c\x0f\x0f\x0f\x24\x26\x26\xc2\xca\xca\x4a\x58\xe6\x93\ +\x72\x72\x72\xd0\xa4\x49\x13\x9c\x38\x71\x42\x58\x66\xe7\xce\x9d\ +\x11\x1d\x1d\xfd\xe4\x97\xf8\x1e\x27\x91\xa9\x5a\xbe\x7c\xb9\xd0\ +\xd2\xb4\xb0\xb0\x40\x44\x44\x84\x6a\xa5\x09\x00\xb6\xb6\xb6\x98\ +\x3f\x7f\xbe\xd0\xcc\x8d\x1b\x37\xe2\xf7\xdf\x7f\x7f\xea\x6b\x2c\ +\x4e\x22\x13\x74\xf5\xea\x55\x8c\x18\x31\x42\x68\xe6\xa0\x41\x83\ +\xa4\xde\x7e\x4d\x11\x6d\xdb\xb6\x45\x9f\x3e\x7d\x84\x66\x0e\x1f\ +\x3e\x1c\xd7\xaf\x5f\x7f\xfc\xcf\xdc\xaa\x13\x99\x20\x7f\x7f\x7f\ +\xac\x59\xb3\x46\x58\x9e\x8b\x8b\x0b\xd2\xd3\xd3\x35\xf3\xec\xfa\ +\x1b\x37\x6e\xa0\x7e\xfd\xfa\xc8\xcc\xcc\x14\x96\xf9\xc9\x27\x9f\ +\x20\x2a\x2a\x0a\xe0\x56\x9d\xc8\xf4\xac\x5e\xbd\x5a\x68\x69\x02\ +\xc0\xcc\x99\x33\x35\x53\x9a\x00\x50\xb1\x62\x45\xfc\xfc\xf3\xcf\ +\x42\x33\x57\xae\x5c\x89\x0d\x1b\x36\x00\x78\x78\xc4\xb9\x5b\x68\ +\x3a\x11\x91\x69\x4b\xfa\x5f\x5f\xdd\xb6\x9d\x4d\x12\x53\x9f\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x15\x5b\ \xff\ \xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ @@ -4037,53 +2031,1503 @@ qt_resource_data = "\ \x42\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\ \x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\x84\x02\x10\ \x84\x02\x10\x84\x02\x10\x84\x1f\xff\xd9\ -\x00\x00\x02\xcc\ +\x00\x00\x18\x66\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x82\x00\x00\x02\x29\x08\x02\x00\x00\x00\xb9\x49\xce\x6f\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x18\x18\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x7f\xac\x9d\x75\x7d\xc0\xf1\xcf\xc3\x0f\x23\x94\xa2\x19\xa2\ +\x31\x1b\xdb\x44\xfe\x71\x35\x31\xa3\xc1\x29\xa9\xbf\x42\x0c\x41\ +\x91\x11\xaa\x26\xb2\x6c\xcd\x5c\x02\x9b\x04\xb6\x42\xe9\xa4\xd1\ +\x12\x3b\x6c\xb5\x04\x35\x24\xfc\xc1\x4c\xf4\x2f\xa3\xfc\x51\xca\ +\xd8\xa6\xeb\x92\xd6\x39\xd1\x41\x0c\x89\xba\x65\x44\x87\xb8\xd6\ +\xe1\x96\x2d\x2e\x28\x2d\xb5\xa5\xe3\xd9\x1f\x87\x7b\x38\x3d\xf7\ +\xde\x73\xcf\xbd\xe7\xc7\xe7\x79\x9e\xef\xeb\x15\x42\x4e\x6f\x6f\ +\x6f\xbf\xf7\xf4\xdc\xbe\xef\xe7\xdb\xef\x73\x4e\x55\xd7\x75\x00\ +\x00\x19\xce\xca\x5e\x00\x00\x94\x4b\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x86\xa9\xa9\xaa\xaa\xae\xeb\xec\x55\x00\x6d\ +\xe2\x6f\x0d\x98\x8e\xaa\xaa\x86\xde\xe2\x8b\x0b\x58\x91\x0c\xc3\ +\xa4\xfa\x01\xde\x7e\xed\xb9\x7b\x1f\x7a\x6e\xe8\x67\x7d\x89\x01\ +\x23\xc8\x30\x4c\x64\xb0\xc1\x83\x6f\xef\xf7\xd8\x97\x18\x30\x82\ +\x7f\x1b\x86\xb5\xeb\x35\x78\x28\xc0\x31\xd0\x60\x80\xd1\x64\x18\ +\xd6\x62\xc5\x21\x78\xc7\xe6\x75\xbb\xf7\x1d\x9b\xf7\xb2\x80\xb6\ +\x91\x61\x58\xb5\x71\x1a\x3c\xef\x35\x01\xed\x24\xc3\xb0\x0a\x02\ +\x0c\x4c\x97\x0c\xc3\xb8\x34\x18\x98\x3a\x19\x86\xb1\x8c\x3e\x8d\ +\x25\xc0\xc0\xda\xc8\x30\xac\xc0\x10\x0c\xcc\x8e\x0c\xc3\x28\x1a\ +\x0c\xcc\x94\x0c\xc3\xb2\x96\xdc\x88\x16\x60\x60\x8a\x64\x18\x96\ +\x60\x08\x06\xe6\x43\x86\x61\xd8\xe8\x06\x0b\x30\x30\x45\x32\x0c\ +\x2f\x31\x04\x03\x73\x26\xc3\xf0\x22\x0d\x06\xe6\x4f\x86\x21\xc2\ +\x65\xc1\x63\xe8\xdd\x45\x5e\x30\x0a\xa6\x4b\x86\x29\xdd\x72\x43\ +\x70\x0c\xcc\xc1\x83\x2f\xd2\x50\x66\x92\xfb\xf7\x52\xff\x46\x8f\ +\x2a\xc3\x84\x64\x98\xa2\xad\xb8\x11\xbd\x58\x81\x49\x1e\xdc\x2a\ +\xf0\x1a\x8e\x30\x5d\x95\x6f\x66\x29\xd3\x1a\x02\x3c\xda\xe2\x24\ +\xf7\x82\xdd\xea\x2f\xb1\x71\xee\xa5\x56\x7f\x82\x90\xce\x34\x4c\ +\x89\xc6\x6c\xf0\xc1\x7b\x36\x46\xc4\x15\xb7\x3d\x3e\xce\xc7\x1c\ +\x7a\x75\xe1\x0e\x0c\xca\x53\xff\x4e\x05\x58\xcc\x34\x4c\x71\xc6\ +\x39\x8d\xd5\x6b\x6a\x2f\xc3\x43\xc6\xac\xf2\xa0\xd6\x7d\x95\x8d\ +\x79\x68\xbc\x03\xe3\x3e\xa4\x33\x0d\x53\x90\xa9\x5c\x92\x34\xd8\ +\xe6\x31\x93\xdc\xae\x63\x4d\x2e\xdc\x82\x79\x92\x61\x4a\x31\x8b\ +\xba\x0c\x8d\xcb\x6b\xa8\x72\xd3\x92\xec\xc2\x2d\x98\x33\x19\xa6\ +\x08\xf3\x79\x91\x86\x56\x0f\xca\x86\x60\x48\x21\xc3\x74\x5c\x56\ +\x5d\xda\x35\x28\x6b\x30\x64\x91\x61\xba\xac\x39\x2f\xd2\x30\xe1\ +\xa0\x3c\xd3\x24\xdb\x88\x86\x44\x32\x4c\x37\x35\x79\xbc\x5b\xc3\ +\xa0\x3c\xa3\xbd\xeb\x26\xdf\x4b\x50\x08\x19\xa6\x83\xda\x55\x97\ +\xac\x41\xb9\x5d\xf7\x12\x74\x95\x0c\xd3\x35\xad\xde\x62\x9d\xcf\ +\x21\x2f\x01\x86\xe6\x90\x61\xba\xa3\x63\x75\x99\xd1\x21\xaf\x8e\ +\xdd\x4b\xd0\x76\x32\x4c\x47\x74\xbe\x2e\x53\x19\x94\x5b\xbd\x55\ +\x00\x9d\x24\xc3\x74\xc1\x50\x6f\x7a\x3a\x13\xe0\xc5\x26\x19\x94\ +\xbb\xfa\x6d\x0a\xb4\x94\x0c\xd3\x7a\x43\x0d\x1e\x7a\xe1\x81\x12\ +\xea\x32\xfe\xa0\xac\xc1\xd0\x34\x32\x4c\x47\xf4\x53\xd4\xef\x50\ +\x99\x69\x59\x6e\x50\x16\x60\x68\x26\x19\xa6\x6b\xfa\xaf\x4e\xb8\ +\x7b\xdf\xb1\xc2\x1b\xa3\xc1\xd0\x7c\x32\x0c\xdd\x34\xba\xc1\x02\ +\x0c\x0d\x21\xc3\xd0\x35\x86\x60\x68\x11\x19\x86\x4e\xd1\x60\x68\ +\x17\x19\x86\xee\xe8\x35\xd8\x65\xc1\xd0\x22\x32\x0c\x5d\x60\x08\ +\x86\x96\x92\x61\x68\x3d\x0d\x86\xf6\x92\x61\x68\x31\x01\x86\xb6\ +\x93\x61\x68\x2b\x0d\x86\x0e\x90\x61\x68\x25\xa7\xb1\xa0\x1b\x64\ +\x98\x0e\xea\x25\xaa\xab\x29\x32\x04\x43\x97\xc8\x30\xb4\x89\x06\ +\x43\xc7\xc8\x30\xb4\xc6\x92\x1b\xd1\x02\x0c\xad\x26\xc3\xd0\x02\ +\x86\x60\xe8\x2a\x19\x86\x36\xd9\xfb\xd0\x73\xfd\x12\x3b\x8d\x05\ +\x1d\x20\xc3\xd0\x74\xfd\x51\xb8\xa7\x3f\x01\x87\x06\x43\xfb\xc9\ +\x30\xb4\x43\xef\x75\x94\x63\xa0\xca\x1a\x0c\x1d\x20\xc3\xd0\x32\ +\x07\xef\xd9\x38\x34\x1f\x03\xed\x25\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\ +\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\ +\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\ +\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\ +\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\ +\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\ +\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\ +\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x13\ +\xa9\xaa\xaa\x77\xa3\xae\xeb\xdc\x95\x40\x1b\xc9\x30\x30\x1d\xfd\ +\x1e\x87\x24\xc3\xd8\x64\x18\x58\xb5\xdd\xfb\x8e\xf5\x6e\xec\xda\ +\xb5\xab\xff\xc6\x9d\x3b\x77\xf6\x6f\x0f\x26\x39\x54\x19\x96\x27\ +\xc3\xc0\xea\x2c\xd9\xe0\x58\x3e\xc9\x61\x50\x86\xe5\xc9\x30\xb0\ +\x0a\xbd\x06\x0f\x05\x78\xb1\xa1\x77\x30\x28\xc3\x72\x64\x18\x18\ +\xcb\x72\x43\xf0\x38\x0c\xca\xb0\x1c\x19\x06\x56\x36\x49\x83\x87\ +\x18\x94\x61\x90\x0c\x03\xa3\x4c\x31\xc0\x4b\x32\x28\x53\x38\x19\ +\x06\x96\x35\xeb\x06\x0f\x19\x73\x50\x96\x64\xba\x44\x86\x81\xa5\ +\x8d\x79\x1a\x6b\x76\x5c\x0d\x45\x09\x64\x18\x18\x36\xe7\x21\x78\ +\x1c\xf6\xae\xe9\x2a\x19\x06\x4e\xd3\xc0\x06\x0f\x71\xc8\x8b\x2e\ +\x91\x61\xe0\x45\xcd\x0f\xf0\x92\x0c\xca\xb4\x9a\x0c\x03\x11\xad\ +\x6d\xf0\x10\x83\x32\xad\x23\xc3\x40\xfe\x69\xac\x19\x31\x28\xd3\ +\x7c\x32\x0c\x45\xeb\xc6\x10\x3c\x0e\x57\x43\xd1\x4c\x32\x0c\xe5\ +\x2a\xa7\xc1\x8b\xb9\x1a\x8a\x86\x90\x61\x28\x54\x57\x37\xa2\xd7\ +\xc0\xde\x35\x89\x64\x18\x8a\x53\xf2\x10\xbc\x22\x87\xbc\x98\x33\ +\x19\x86\xb2\x68\xf0\xaa\x18\x94\x99\x35\x19\x86\x52\x08\xf0\x84\ +\x0c\xca\xcc\x82\x0c\x43\x11\x34\x78\xea\x0c\xca\x4c\x85\x0c\x43\ +\xc7\x09\xf0\x1c\x18\x94\x59\x33\x19\x86\x52\xf4\xda\x20\xc6\x73\ +\x60\x50\x66\x7c\x32\x0c\x65\x19\xac\x82\x24\xcf\x81\xa7\x0d\x61\ +\x34\x19\x86\x22\x1c\x38\x70\xa0\x77\xe3\xca\x2b\xaf\xec\xbf\x71\ +\x68\x50\x53\xe5\x39\xf0\xb4\x21\x0c\x91\x61\x28\x4b\xbf\xc7\x71\ +\x7a\x92\xc3\xa0\x3c\x77\xf6\xae\x09\x19\x86\x92\x0d\x26\x39\x0c\ +\xca\xa9\x1c\xf2\x2a\x96\x0c\x03\x2f\x32\x28\x37\x87\x41\xb9\x1c\ +\x32\x0c\x2c\xc1\xa0\xdc\x1c\x06\xe5\x6e\x93\x61\x28\xc2\x60\x47\ +\x87\x12\x3b\x0e\x83\x72\x73\x18\x94\x3b\x46\x86\xa1\xe3\x76\x6c\ +\x5e\x17\x03\x4f\xe2\x11\x8b\x3a\xba\xda\x2a\x1b\x94\x9b\xc3\xd5\ +\x50\x1d\x20\xc3\x50\x84\x5e\x8c\x7b\x06\x93\x1c\x06\xe5\x0e\x71\ +\x35\x54\x1b\xc9\x30\x14\x67\x30\xc9\xb1\xfc\xa0\x3c\x61\x92\x63\ +\xf9\x41\x59\x92\xe7\xc0\xde\x75\x5b\xc8\x30\x94\xae\x5f\xe5\x11\ +\x53\x72\x4c\x75\x50\xb6\x77\x3d\x67\x0e\x79\x35\x99\x0c\x03\xa7\ +\x59\xf2\xf9\xb6\xc2\xde\x75\x87\x18\x94\x1b\x45\x86\x81\xa5\x8d\ +\xd8\x61\x76\xc8\xab\x33\x0c\xca\xe9\x64\x18\x18\xcb\x88\x71\xd6\ +\xa0\xdc\x19\x06\xe5\xf9\x93\x61\x60\xd5\x0c\xca\x25\x30\x28\xcf\ +\x87\x0c\x03\x93\x32\x28\x97\xc0\xa0\x3c\x23\x32\x0c\x4c\x93\x41\ +\xb9\x04\x9e\x36\x64\x8a\x64\x18\x98\x21\x83\x72\x09\x3c\x6d\xc8\ +\x24\x64\x18\x98\x93\x31\x07\x65\x4f\x1b\xd2\x6a\xf6\xae\x57\x4b\ +\x86\x81\x1c\xcb\x8d\xb3\x9e\x36\xa4\x33\x1c\xf2\x1a\x87\x0c\x03\ +\xf9\xec\x5d\x97\xc0\xa0\xbc\x24\x19\x06\x9a\xc5\x21\xaf\x12\x38\ +\xe4\xd5\x27\xc3\x40\xa3\x19\x94\x4b\x30\x62\x50\xee\x3c\x19\x06\ +\x5a\xc3\xa0\x4c\xf7\xc8\x30\xd0\x56\x06\xe5\xee\x29\x6d\x14\x0e\ +\x19\x06\xba\xc1\xd5\x50\x6d\xd7\xbf\x33\xf7\xec\xd9\x13\x11\x77\ +\xdc\x71\x47\xea\x72\xe6\x47\x86\x81\x0e\x72\x35\x54\xbb\x0c\x35\ +\xb8\x28\x32\x0c\x74\x9c\xbd\xeb\x86\xeb\xdd\x57\x05\x06\xb8\x47\ +\x86\x81\x82\x38\xe4\xd5\x28\x25\x0f\xc1\x7d\x32\x0c\x94\xcb\xa0\ +\x9c\x68\x44\x83\x7b\xff\x30\x5c\xc2\x45\xc3\x21\xc3\x00\x3d\x06\ +\xe5\x79\x1a\xb1\x11\x5d\xce\xe1\xac\x1e\x19\x06\x58\x82\x41\x79\ +\x46\x46\x6f\x44\x17\x35\x07\xf7\xc8\x30\xc0\x0a\x0c\xca\xd3\xb2\ +\xe2\x46\x74\x14\xd6\xe0\x90\x61\x80\xd5\x32\x28\xaf\xc1\x38\x43\ +\x70\x94\xd7\xe0\x90\x61\x80\x49\x78\xda\x90\x71\x18\x82\x47\x90\ +\x61\x80\xa9\xf1\xb4\x21\x8b\x8d\x73\x1a\xab\xd8\x06\x87\x0c\x03\ +\xcc\x88\xbd\x6b\xa7\xb1\xc6\x21\xc3\x00\x33\x57\xe0\x21\x2f\x1b\ +\xd1\x63\x92\x61\x80\x79\xeb\xfc\xa0\x6c\x23\x7a\x7c\x32\x0c\x90\ +\xa9\x63\x83\xb2\x8d\xe8\xd5\x92\x61\x80\x06\x69\xf5\xa0\x3c\x7a\ +\x23\xba\xe4\x27\x8e\x1e\x41\x86\x01\x1a\xaa\x45\x57\x43\x8d\x33\ +\x04\x97\xf6\x2c\x95\x63\x92\x61\x80\x76\x68\xec\xd5\x50\xe3\x9c\ +\xc6\x62\x39\x32\x0c\xd0\x3e\xcd\xd9\xbb\x1e\xe7\x34\xd6\x81\x03\ +\x07\x86\x3e\x14\x7d\x32\x0c\xd0\x6e\xe9\x87\xbc\x46\x34\x78\x0d\ +\xdf\x07\x94\x46\x86\x01\x3a\x65\xce\x83\xf2\x88\x8d\x68\x0d\x1e\ +\x87\x0c\x03\x74\xd6\x4c\x07\xe5\x25\xf7\x99\x35\x78\xb5\x64\x18\ +\xa0\x14\xb3\x1b\x94\x43\x80\xd7\x4a\x86\x01\x4a\x34\xdd\x41\x59\ +\x83\xd7\x4c\x86\x01\x98\x68\x50\x76\x1a\x6b\x12\x32\x0c\xc0\x69\ +\xc6\x1f\x94\x43\x83\x27\x26\xc3\x00\x8c\x32\x62\x50\x5e\xfc\x0e\ +\xac\x96\x0c\x03\x30\xae\xa1\x24\x0b\xf0\xe4\x64\x18\x80\xb5\xd0\ +\xe0\xa9\x90\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x61\xd8\xee\ +\x7d\xc7\x22\xe2\xe0\x3d\x1b\xb3\x17\x02\x74\x9f\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\xe0\x34\x57\x5e\ +\x79\x65\x44\x1c\x38\x70\x20\x7b\x21\x50\x04\x19\x06\x22\x22\x76\ +\xef\x3b\x36\xf8\xc3\x5e\x8c\x7b\x24\x19\x66\x47\x86\xa1\x74\xfd\ +\x00\xef\xda\xb5\xab\xff\xc6\x9d\x3b\x77\xf6\x6f\x4b\x32\xcc\x8e\ +\x0c\x43\xd1\x96\x6c\x70\x8c\x97\xe4\x50\x65\x98\x98\x0c\x43\xa3\ +\x5d\x71\xdb\xe3\x11\x71\xf0\x9e\x8d\xb3\xf8\xe0\xbd\x06\x0f\x05\ +\x78\xb1\xe5\x92\x1c\x06\x65\x98\x98\x0c\x43\x89\x96\x1b\x82\x57\ +\x34\xf4\xfe\x06\x65\x98\x90\x0c\x43\x71\xd6\xdc\xe0\xc5\x0c\xca\ +\x30\x21\x19\x86\xb2\x8c\xb9\x11\xbd\x06\x06\x65\xc6\x51\xd7\x75\ +\xf6\x12\x9a\x45\x86\xa1\x14\x53\x1c\x82\xc7\x61\x50\x86\x71\xc8\ +\x30\x14\x61\xce\x0d\x1e\x32\xe6\xa0\x2c\xc9\x14\x48\x86\xa1\xfb\ +\x66\xb7\x11\xbd\x36\xae\x86\x82\x3e\x19\x86\x2e\x1b\x7c\x6e\xac\ +\x5e\xf0\x9a\x13\xe3\x1e\x7b\xd7\x25\x18\xfa\x06\x8b\x41\x32\x0c\ +\x65\x19\x4c\x5d\x93\x93\x1c\x06\x65\xca\x20\xc3\xd0\x7d\x83\xd1\ +\x1a\xec\x59\x93\x93\x1c\x06\x65\xca\x20\xc3\x50\x96\x71\x92\x1c\ +\xcd\xab\xb2\x41\x99\xae\x92\x61\x28\xd7\x72\x49\x0e\x83\x32\xcc\ +\x8b\x0c\x03\x11\x8b\x8a\x65\x50\x86\xf9\x90\x61\x60\x09\x06\x65\ +\x98\x0f\x19\x86\x2e\xdb\xb1\x79\xdd\xee\x7d\xc7\x26\x1c\x0a\x3b\ +\x3f\x28\x4b\x32\x89\x64\x18\x3a\xae\x57\xe2\xc1\xb7\x4c\x58\xa0\ +\xee\x0d\xca\xf6\xae\x49\x24\xc3\xd0\x7d\x3b\x36\xaf\x1b\xfc\xe1\ +\x60\x95\x0d\xca\x61\xef\x9a\x54\x32\x0c\xc5\x19\xac\xb2\x41\x39\ +\x1c\xf2\x22\x95\x0c\x43\xd1\xc6\x1c\x94\x27\x4c\x72\x78\xda\x10\ +\x58\x86\x0c\x03\x2f\x59\x6e\x50\x9e\x7c\x28\xf4\xb4\x21\xb0\x24\ +\x19\x06\x96\x66\xef\x7a\x31\x83\x32\x53\x27\xc3\xc0\xca\x1c\xf2\ +\x5a\xcc\xd5\x50\x4c\x85\x0c\x03\xab\xd6\xbf\x08\xaa\xae\xeb\xaa\ +\xaa\x06\x7f\xca\xa0\x1c\xf6\xae\x59\x0d\x19\x06\x26\x52\xd7\xf5\ +\xe0\x0f\x07\xab\x6c\x50\x0e\x7b\xd7\xac\x44\x86\x81\x69\x1a\xac\ +\xb2\x41\x39\x1c\xf2\x62\x25\x32\x0c\x2d\x73\xc5\x6d\x8f\xc7\xa2\ +\x7f\xac\x6d\xa6\xf4\x41\xb9\x69\x49\x0e\x83\x32\x8b\xc8\x30\x30\ +\x27\xf3\x1f\x94\x5b\xb4\x77\x1d\xc5\x0c\xca\xbd\x3f\xfa\xa1\x6f\ +\xd1\x4a\x26\xc3\x40\x82\x31\x07\xe5\x72\xf6\xae\xa3\xb0\x41\x79\ +\xf0\x4f\xbc\xf0\x24\xcb\x30\x90\x6f\xb9\x41\xd9\x21\xaf\x9e\x2e\ +\x0d\xca\xbd\x4f\x6d\xf0\x33\x1a\xda\x1a\x29\xad\xca\x32\x0c\x34\ +\x8b\x43\x5e\x8b\x75\x6f\x50\x1e\xf1\x19\xf5\xff\xd0\x0b\xe9\xb1\ +\x0c\x03\xcd\x95\x7e\xc8\x2b\x9a\x57\xe5\xee\x3d\x6d\xc8\x72\x9f\ +\x51\x55\x55\x25\x94\x58\x86\x81\xd6\x30\x28\x2f\xe6\x69\x43\xda\ +\x4e\x86\x81\x56\x32\x28\x2f\xd6\x81\xbd\xeb\xde\xb2\xf7\xec\xd9\ +\x73\xc7\x1d\x77\x64\xaf\x65\x4e\x64\x18\xe8\x02\x83\xf2\x90\xd6\ +\x1d\xf2\xea\xaf\x70\xcf\x9e\x3d\xb9\x2b\x99\x33\x19\x06\xba\x66\ +\x3e\x57\x43\x85\xa7\x0d\x99\x9e\x62\x1b\x1c\x32\x0c\x74\xde\x8c\ +\xae\x86\x0a\x4f\x1b\x32\x0d\x25\x07\xb8\x47\x86\x81\x82\xd8\xbb\ +\x5e\x2c\x71\x50\xd6\xe0\x90\x61\xa0\x58\x0e\x79\x2d\x36\xcf\x41\ +\xb9\x7f\x1a\x6b\xf1\x4f\xf5\xce\x67\x95\x70\xb5\x52\xc8\x30\x40\ +\x8f\x41\x79\xb1\x19\x0d\xca\xa3\x87\xe0\xa2\x1a\x1c\x32\x0c\xb0\ +\x98\x41\x79\xb1\x69\x3d\x6d\xc8\x88\x06\xf7\x2f\x52\x2a\xa7\xc1\ +\x21\xc3\x00\x2b\x32\x28\x2f\x36\xc9\xd3\x86\x8c\x18\x82\xa3\xb0\ +\x06\x87\x0c\x03\xac\x4a\xfa\xa0\xdc\xa2\x24\xc7\xe9\x9f\xc5\x88\ +\x73\x58\xa5\x6d\x44\x0f\x92\x61\x80\xb5\xf3\x22\xca\x43\x46\xec\ +\x5d\x2f\xa9\xd8\x21\xb8\x4f\x86\x01\xa6\xc3\x8b\x28\x8f\x60\x23\ +\x7a\x39\x32\x0c\x30\x13\x5e\x44\xd9\x69\xac\x71\xc8\x30\xc0\xcc\ +\x15\x78\xc8\x6b\xc5\xcb\x82\x43\x83\x23\x42\x86\x01\xe6\x2c\xfd\ +\x90\x57\xcc\xb8\xca\x2e\x0b\x5e\x15\x19\x06\xc8\xd4\xb1\x41\xd9\ +\x46\xf4\x6a\xc9\x30\x40\x53\xb4\x7a\x50\x1e\x67\x08\x0e\x0d\x5e\ +\x44\x86\x01\x1a\xaa\x45\x83\xb2\x21\x78\xcd\x64\x18\xa0\x05\x9a\ +\xfc\x22\xca\x4e\x63\x4d\x42\x86\x01\xda\xa7\x21\x2f\xa2\xec\x34\ +\xd6\xe4\x64\x18\xa0\xdd\xd2\xf7\xae\x6d\x44\x4f\x42\x86\x01\xba\ +\x63\xfe\x87\xbc\x34\x78\x42\x32\x0c\xd0\x59\x33\x1d\x94\x87\xba\ +\xde\x63\x23\x7a\xb5\x64\x18\xa0\x08\xb3\x1b\x94\x7b\x0c\xc1\x6b\ +\x23\xc3\x00\x25\x9a\xee\xa0\xac\xc1\x6b\x26\xc3\x00\xa5\x9b\x64\ +\x50\x16\xe0\x09\xc9\x30\x00\xa7\x19\x73\x50\x5e\xee\x97\xb0\x2a\ +\x32\x0c\xc0\xb2\x46\x0c\xca\x4b\xbe\x03\xab\x25\xc3\x00\x8c\x6b\ +\x68\x50\xd6\xe0\xc9\xc9\x30\x00\x6b\xa1\xc1\x53\x21\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\xd0\x68\x5b\xb7\x6e\x3d\ +\xe7\x9c\x73\x22\xe2\xd4\xa9\x53\xe7\x9d\x77\xde\xce\x9d\x3b\xb3\ +\x57\x34\x4d\x32\x0c\x40\xa3\xed\xdb\xb7\x6f\xdb\xb6\x6d\x27\x4e\ +\x9c\xf8\xf6\xb7\xbf\xfd\xd3\x9f\xfe\x54\x86\x01\x60\x4e\xbe\xf6\ +\xb5\xaf\x5d\x74\xd1\x45\xb7\xdc\x72\x4b\x44\x6c\xd9\xb2\x65\xc3\ +\x86\x0d\xd9\x2b\x9a\x32\x19\x06\xa0\xb9\xae\xba\xea\xaa\xa7\x9e\ +\x7a\x2a\x22\x76\xed\xda\x75\xf2\xe4\xc9\xbb\xee\xba\x2b\x7b\x45\ +\x53\x26\xc3\x00\x34\xda\x4d\x37\xdd\xb4\x7f\xff\xfe\x6f\x7e\xf3\ +\x9b\x37\xdf\x7c\x73\xf6\x5a\xa6\x4f\x86\x01\x68\xba\x2f\x7e\xf1\ +\x8b\x9b\x36\x6d\xba\xe6\x9a\x6b\xbe\xfa\xd5\xaf\xbe\xe7\x3d\xef\ +\xc9\x5e\xce\x34\xc9\x30\x00\x8d\xb6\x6d\xdb\xb6\x33\xcf\x3c\xf3\ +\xce\x3b\xef\x8c\x88\x47\x1e\x79\x44\x86\x01\x60\x7e\x1e\x7e\xf8\ +\xe1\x4f\x7d\xea\x53\xbd\xdb\xcf\x3c\xf3\x4c\xee\x62\xa6\x4e\x86\ +\x01\x68\xae\xbd\x7b\xf7\x3e\xf9\xe4\x93\x1f\xfa\xd0\x87\xce\x38\ +\xe3\x8c\xba\xae\x2f\xb9\xe4\x92\xec\x15\x4d\x99\x0c\x03\xd0\x5c\ +\xdb\xb7\x6f\xdf\xbe\x7d\x7b\xf6\x2a\x66\x48\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\xa0\xd1\xaa\xea\xd9\xba\x5e\x9f\xbd\x8a\x59\ +\x91\x61\x00\x9a\xab\xaa\x6e\x8d\xd8\x95\xbd\x8a\x19\x92\x61\x00\ +\x9a\xec\xfa\x88\xa8\xaa\xdf\xab\xeb\x2f\x65\xaf\x64\x26\x64\x18\ +\x80\x86\xaa\xaa\x1b\x23\xfe\x34\x22\x22\xae\x4d\x5e\xca\xcc\xc8\ +\x30\x00\x8d\xf5\x86\x88\xd7\x47\x3c\x1f\xb1\xae\xaa\x36\xd5\xf5\ +\x23\xd9\xeb\x99\x3e\x19\x06\xa0\xb1\xde\xb6\x70\xe3\x92\x88\xab\ +\x33\x17\x32\x33\x32\x0c\x40\x13\x55\xd5\x5d\x11\x9b\x07\xde\xb0\ +\xae\xaa\x2e\xaa\xeb\x9f\xa4\x2d\x68\x36\x64\x18\x80\x66\x7a\x67\ +\xc4\xb9\x03\x3f\x5c\x17\xd1\xb5\x67\xb2\x0c\x19\x06\xa0\x81\xaa\ +\xea\xa3\x11\x1f\x5c\x94\xe1\x37\xa5\x2d\x68\x66\x64\x18\x80\x06\ +\xfa\xad\x88\x73\x23\xce\x8f\xa8\x17\xde\xb2\x2e\x62\x5d\x55\x5d\ +\x5c\xd7\x4f\x65\xae\x6b\xda\x64\x18\x80\xc6\xa9\xeb\x3f\xa8\xaa\ +\x23\x0b\x3f\xaa\x22\x22\xe2\xbc\xba\xfe\x64\xc4\x27\xd3\xd6\x34\ +\x1b\x32\x0c\x4b\xbb\xe2\xb6\xc7\x7b\x37\x0e\xde\xb3\x31\x77\x25\ +\x50\xa6\xba\xfe\xf5\xaa\x7a\x30\xe2\xb2\x88\xe7\x22\xbe\x15\xf1\ +\x27\x11\x27\xb2\x17\x35\x7d\x32\x0c\xa7\xd9\xbd\xef\xd8\xd0\x5b\ +\xfa\x3d\x0e\x49\x8e\x88\xa5\xee\x22\x98\xbd\x7a\xe5\x77\x69\x27\ +\x19\x86\x17\xf5\xeb\x52\xd7\xa7\x7d\xc1\x57\x55\xd5\xbf\x3d\x98\ +\xe4\x28\xb2\xca\xcb\xdd\x4b\x30\x1b\xd5\xca\xef\xd2\x72\x32\x0c\ +\x11\x23\xeb\x32\xf8\x96\xc1\x24\x47\x79\x83\x72\xef\x5e\x12\x60\ +\x92\x74\xf3\x81\x27\xc3\x94\x6e\x55\xe3\x5d\xb1\x83\xb2\x21\x18\ +\x66\x44\x86\x29\xda\x84\x75\x29\x64\x50\xd6\x60\x1a\xa0\x36\x0d\ +\x43\xd7\x4c\x77\x8b\x75\xcc\x41\xb9\x5d\x49\x16\x60\x3a\x63\xc7\ +\x8e\x1d\xc7\x8f\x1f\xbf\xfc\xf2\xcb\x3f\xf0\x81\x0f\x44\xc4\xd6\ +\xad\x5b\x2f\xba\xe8\xa2\x5b\x6f\xbd\x35\x7b\x5d\x32\x4c\x91\xe6\ +\x50\x97\xe5\x06\xe5\x16\xed\x5d\x6b\x30\x83\xb6\x6f\xdf\x7e\xe2\ +\xc4\x89\x4b\x2f\xbd\x74\xcb\x96\x2d\x11\xb1\x6d\xdb\xb6\xf5\xeb\ +\xd7\xdf\x79\xe7\x9d\xd9\xeb\x1a\xd7\xa9\x53\xa7\x1e\x78\xe0\x81\ +\x0b\x2f\xbc\x30\x22\x3e\xff\xf9\xcf\x1f\x3c\x78\xf0\xea\xab\x1b\ +\xf1\x5a\x11\x32\x4c\x71\xe6\x5f\x97\x36\xee\x5d\x3b\x8d\xc5\x90\ +\x93\x27\x4f\x7e\xe5\x2b\x5f\x79\xdd\xeb\x5e\x17\x11\x0f\x3f\xfc\ +\xf0\xa3\x8f\x3e\xba\x61\xc3\x86\x79\xfd\xe6\xf5\xc0\xff\xd7\x68\ +\xef\xde\xbd\x3f\xff\xf9\xcf\x9f\x7c\xf2\xc9\x88\x78\xfa\xe9\xa7\ +\xdf\xf5\xae\x77\xed\xde\xbd\x7b\x1a\x6b\x9b\x94\x0c\x53\x96\xf4\ +\xba\x34\xff\x90\x97\x21\x98\x25\x7d\xee\x73\x9f\x3b\x7c\xf8\xf0\ +\xd1\xa3\x47\x23\xe2\xf8\xf1\xe3\x1b\x36\x6c\xb8\xff\xfe\xfb\x67\ +\xff\xdb\xf6\xbf\x40\xa6\xf0\x68\xbc\xff\xfe\xfb\xdf\xf7\xbe\xf7\ +\x5d\x73\xcd\x35\xeb\xd6\xad\xfb\xf2\x97\xbf\x3c\xf9\x07\x9c\x0a\ +\x19\xa6\x14\xcd\xac\xcb\x98\x83\xf2\xdc\x34\xf3\x5e\xa2\x21\xb6\ +\x6c\xd9\x72\xdf\x7d\xf7\x5d\x7c\xf1\xc5\x8f\x3d\xf6\xd8\xc6\x8d\ +\xf3\xff\x36\x71\x0a\x8f\xc9\x4d\x9b\x36\xed\xdd\xbb\xf7\xc3\x1f\ +\xfe\xf0\xe4\x1f\x6a\x5a\x64\x98\x22\xb4\xa2\x2e\x23\x06\xe5\xf9\ +\x48\xdf\x2a\xa0\xe1\xae\xbd\xf6\xda\x6f\x7c\xe3\x1b\x9f\xfe\xf4\ +\xa7\xdf\xfa\xd6\xb7\xde\x70\xc3\x0d\xd9\xcb\x59\x8b\x47\x1f\x7d\ +\xf4\xd2\x4b\x2f\xfd\xe1\x0f\x7f\x98\xbd\x90\x97\xc8\x30\x1d\xd7\ +\x8a\x00\x2f\xa9\xb7\xe0\xf9\xc4\xb8\xbd\xf7\x12\x73\xf6\xd9\xcf\ +\x7e\xf6\xcd\x6f\x7e\xf3\xdb\xdf\xfe\xf6\xec\x85\xac\xc5\xd6\xad\ +\x5b\x5f\xf9\xca\x57\xee\xdf\xbf\xff\x96\x5b\x6e\xb9\xf1\xc6\x1b\ +\xe7\xb2\xa9\xbe\x32\x19\xa6\xcb\xd4\x65\x1c\xee\x25\x56\xe5\x82\ +\x0b\x2e\xb8\xfe\xfa\xeb\xe7\xfe\xdb\x8e\x75\xdd\xf0\xe3\x0b\xdf\ +\xb6\xde\xb4\xf0\x0b\xd6\x47\xbc\x10\xf1\xf5\xba\xfe\xc2\x17\xbe\ +\x70\xe8\xd0\xa1\xef\x7d\xef\x7b\x11\x71\xef\xbd\xf7\xbe\xfb\xdd\ +\xef\xbe\xfb\xee\xbb\x6f\xbf\xfd\xf6\xd9\xae\x7a\x0c\x32\x4c\x47\ +\xf4\xfe\x25\x75\xf0\x58\x93\x2d\xd6\x15\x09\x30\x6b\x70\xf2\xe4\ +\xc9\x07\x1f\x7c\xf0\xba\xeb\xae\xcb\x5e\xc8\xb0\xc7\x07\xb6\x8e\ +\xee\x8b\x88\x88\x3f\x8b\xf8\x65\xc4\xb7\xea\x3a\x22\x3e\xf2\x91\ +\x8f\xd4\x75\xbd\x79\xf3\xe6\x7d\xfb\xf6\xdd\x76\xdb\x6d\x87\x0e\ +\x1d\x7a\xe2\x89\x27\x9a\x90\xe1\xca\x97\x1f\x6d\x37\x62\xdb\xb6\ +\x03\x0f\xef\xde\x67\x37\xf8\xed\x45\xef\x1b\x8e\x1d\x9b\xd7\x4d\ +\xf8\x91\x35\x98\xd5\xba\xec\xb2\xcb\xbe\xff\xfd\xef\x9f\x3a\x75\ +\xea\xac\xb3\xce\xba\xea\xaa\xab\x1e\x7a\xe8\xa1\x59\xff\x8e\x55\ +\xf5\x50\xc4\xc6\x88\x63\x11\xff\x18\x71\xe3\xe8\xc7\x6a\x2f\xc3\ +\x5f\x8a\xf8\xd5\x88\x77\x2e\xbc\xf1\xfa\x88\x1f\x34\xfb\x11\x6e\ +\x1a\xa6\xf5\x96\x3b\x6c\xac\x2e\x23\xd8\x2a\x60\x0d\xbe\xf3\x9d\ +\xef\x64\x2f\x61\x94\x8f\x47\x5c\x1e\xf1\x9b\x11\x67\x46\xfc\xc3\ +\x42\x89\xff\x37\x73\x45\x63\x91\x61\x3a\x45\x57\x56\x64\x08\xa6\ +\x85\xea\x88\x7a\xf4\x23\xf6\x8f\xaa\xea\x1d\x11\xaf\x88\x38\x19\ +\x71\x34\xe2\x27\x0b\x19\xfe\x9f\xc6\x3f\xce\x65\x18\x0a\xa2\xc1\ +\xcc\x48\xf5\x9a\x2a\xce\x8e\xf8\x60\x44\x44\xfd\x99\x29\x3e\xba\ +\xc6\xba\x52\xe0\x63\x55\xf5\xc6\x88\x97\x47\x1c\x8f\x78\x26\xe2\ +\x48\xc4\x63\x11\x7f\x38\xbd\x45\xcc\x94\x0c\x43\x11\x04\x98\xe9\ +\xaa\xae\xae\xe2\xec\x78\xe9\xbf\xeb\x22\xce\x49\x58\xc6\xfb\xab\ +\xea\xd2\x88\xd7\x46\xd4\x11\x47\x23\xfe\x2b\xe2\x48\xc4\xdf\x47\ +\x1c\x4a\x58\xcb\x1a\xc9\x30\x74\x9f\x06\x33\x45\xd5\x1d\x55\xbc\ +\x31\x62\x73\xc4\xf3\x11\xcf\x47\x9c\x5c\xb8\xf1\xb3\x88\xff\x8c\ +\x38\x1c\xd5\x05\x55\xfd\xb3\x79\x3c\xd2\x6e\xae\xaa\xb7\x44\xac\ +\x8f\xf8\x65\xc4\xb1\x88\x23\x11\xff\x1c\x71\x6f\xc4\x47\x17\xde\ +\x61\x63\x1b\x1e\xf0\x32\x0c\x1d\xe7\x34\x16\xd3\x55\xef\xa9\x23\ +\xa2\xda\x5d\xc5\x6f\x2c\x5c\x9c\x5b\x47\x7c\x37\x62\x73\xc4\xb3\ +\x11\xbf\x88\x78\x36\xaa\x4f\x56\x71\x38\xe2\x48\xc4\x8f\xa3\xfe\ +\xc1\x54\x1e\x7b\xc3\x1f\x64\x57\x55\x5d\x12\x71\x76\xc4\xd1\x88\ +\x9f\x45\x1c\x89\x78\x24\xe2\xdf\x5b\xf8\x38\x97\x61\xe8\x2c\x43\ +\x30\xb3\x53\xef\xa8\xab\x8f\x57\xf1\xea\x88\x0b\x22\x5e\x88\x88\ +\x88\xd7\x46\xbc\x26\xa2\x8e\xf8\xbf\x17\x63\xdc\xfb\xaf\xba\x77\ +\x21\xc9\x47\x22\x9e\x88\xfa\x17\x93\x3e\x1a\x7f\xbf\xaa\x36\x44\ +\x5c\x18\x71\x2a\xe2\x68\xc4\xd3\x11\x3f\x8a\xf8\xbb\x88\x53\xed\ +\x7c\x9c\xcb\x30\x74\x93\x06\x33\x6b\xf5\x5f\xd4\xd5\x7b\xab\x78\ +\x47\xc4\xab\x23\x22\xe2\xe9\x88\xf3\x23\xd6\x47\x9c\x1d\xf1\xb2\ +\x88\x0b\x22\xea\x88\x17\x22\x9e\x7b\x29\xc9\xf1\x6c\x54\x9f\x58\ +\xa8\xf2\x8f\xa2\xfe\xf1\xaa\x1f\x9c\x7f\x5e\x55\xbf\x1d\x71\x6e\ +\xc4\xf1\x88\x67\x23\x0e\x47\x3c\x1e\xf1\xdd\x36\x3f\xc8\x65\x18\ +\x3a\xc8\x46\x34\xf3\x51\xff\x6d\x1d\x11\xd5\x27\xaa\x88\x88\xfd\ +\x11\x11\xf1\x8a\x88\x37\x45\xac\x5f\x48\xf2\xcb\x23\xce\x8e\x38\ +\x3f\xe2\x85\x88\x3a\xe2\xf9\x81\x24\xff\x22\xaa\xcf\x54\x71\x24\ +\x5e\xac\xf2\xbf\x46\x7d\x7c\xd4\x23\xf6\x9a\xaa\xfa\x9d\x88\x5f\ +\x8b\x38\x23\xe2\x68\xc4\x7f\x47\x1c\x8e\x38\xd4\x86\x4b\x92\x46\ +\x93\x61\xe8\x14\x43\x30\xf3\x57\xdf\x59\x57\xb7\x56\xfd\xdb\xfd\ +\xb7\x57\x37\x54\xf1\xb6\x88\x57\x2d\x24\xf9\xfc\x88\xb3\x22\x5e\ +\x1e\xf1\xaa\x85\x2a\x1f\x3b\x7d\xfb\xfa\xe3\x0b\x55\x7e\x32\xea\ +\xff\xa8\xab\xaa\x8a\xf8\xab\xfe\x6f\xf2\xd7\x11\xef\x8d\xf8\x65\ +\xc4\x73\x11\x87\x23\x9e\x88\xf8\x7a\x27\x1e\xe4\x32\x0c\xdd\xa1\ +\xc1\x64\x59\xf2\x5a\xe1\xfa\x2f\x07\x92\x7c\x75\x15\x9b\x22\xde\ +\x30\x90\xe4\x97\x2d\x0c\xca\xbd\x43\x5e\x27\x4e\xdf\xbb\xde\xdb\ +\xeb\xfa\xef\x0e\x7e\xc0\x3f\x8e\xf8\x58\xc4\xe1\x88\x7f\x8a\xf8\ +\xb7\xae\x3c\xc8\x65\x18\xba\x40\x80\x69\xb8\xfa\x6f\x4e\x7f\x39\ +\xed\x5b\xaa\xd8\x14\xf1\x8a\x85\x2a\xaf\x8f\x38\x2b\xe2\xdc\x88\ +\x57\x2f\x0c\xca\xcf\x2e\xfd\x71\xfe\x25\xe2\x40\xc4\x73\x1d\x7a\ +\x9c\xcb\x30\xb4\x9e\x06\xd3\x3a\xf5\xbd\x03\x83\xf2\xe6\x2a\xde\ +\x16\xf1\xfa\x81\x41\xf9\xec\x88\x5f\x59\xfa\x17\x3e\xd4\xb9\xc7\ +\xb9\x0c\x43\xbb\x39\x8d\x45\xdb\xd5\xfb\x4e\x1f\x94\x6f\xaf\xe2\ +\x2d\x11\xef\xcf\x5a\xce\xbc\xc9\x30\xb4\x95\x21\x98\x4e\xaa\xef\ +\xae\x23\xa2\x5a\xe6\xd9\xa4\xbb\xf7\x68\xf7\x7a\xc3\xd0\x68\x43\ +\xaf\xa6\x7c\xf0\x9e\x8d\xbd\xd7\x1b\xee\xf3\x25\x4c\x57\x2d\xf9\ +\x52\xe2\xdd\x7b\xc0\xcb\x30\x34\xdd\x92\x7f\x19\x45\x17\xff\x3e\ +\x82\x21\x25\xbc\x82\xb8\x0c\x43\x9b\xf4\xff\x56\xf2\x95\x0b\xdd\ +\x20\xc3\x00\x90\xc6\x11\x2d\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\xf3\ +\xff\x80\xa6\x38\x32\x7b\x8b\x89\x7d\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x01\x3c\ +\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\x06\x00\x00\x00\xaa\x69\x71\xde\ +\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\x2e\x23\x00\x00\ +\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xdc\x49\x44\x41\x54\x78\ +\x5e\xed\x9b\x31\x0a\xc5\x40\x14\x02\xbd\xff\xa1\x93\x1f\x08\xfe\ +\x5a\x30\x09\x16\x23\x8c\xd5\x16\xeb\xf4\x4f\x92\xce\x51\x8e\xe0\ +\xcd\x13\xdc\x35\x98\xeb\x5f\xe7\xcb\x20\x00\x01\x72\x0d\x26\x18\ +\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\x82\ +\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\x26\ +\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\ +\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\ +\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\ +\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\ +\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\ +\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\ +\x72\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\ +\x20\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\xe0\ +\x2f\x60\x91\x4f\xce\xe7\x7f\x8e\x88\xcd\xd9\x93\x86\x7d\xc7\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x23\xb4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x5c\x00\x00\x01\x62\x08\x06\x00\x00\x00\xba\x66\x60\xf1\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xdd\x79\x54\ +\x55\xe5\xfe\x06\xf0\xe7\x00\x32\x69\x86\x60\xa2\x81\x0a\x39\x65\ +\xa8\xa4\x56\x5e\x35\x15\xb1\xcc\xdb\x2d\x40\x45\x44\x13\x1c\xba\ +\x8e\x77\x5d\x4c\x48\x24\xcb\x9b\x03\x56\x38\x54\x50\xd7\xa2\x55\ +\x66\xa4\x17\x8c\x52\x40\x8c\xeb\x94\x9a\xa5\x62\x64\xe6\x90\x38\ +\xe0\x80\xa2\x80\xa8\xa8\x20\xe3\x39\xe7\xf7\x47\x3f\xbd\x99\x82\ +\x0c\x7b\xbf\xef\x3e\xe7\x3c\x9f\xb5\x5a\x2b\x81\xf3\x3e\xdf\x5a\ +\xf6\x78\xda\xfb\x3d\xef\xd6\x19\x8d\x46\x23\x00\xb4\x6e\xdd\x1a\ +\x05\x05\x05\x20\x75\x24\x27\x27\x23\x30\x30\x50\xf6\x18\x44\x24\ +\xcf\x02\x2b\xd9\x13\x10\x11\x59\x0a\x16\x2e\x11\x91\x20\x2c\x5c\ +\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\ +\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\ +\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\ +\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x15\x44\xa7\ +\xd3\xc9\x1e\x81\x88\x24\x63\xe1\x0a\xd0\xbb\x77\x6f\x3c\xff\xfc\ +\xf3\xb2\xc7\x20\x22\xc9\x58\xb8\x2a\x6b\xdd\xba\x35\x52\x52\x52\ +\xe0\xe0\xe0\x20\x7b\x14\x22\x92\x8c\x85\xab\x22\x3b\x3b\x3b\xac\ +\x5b\xb7\x0e\xee\xee\xee\xb2\x47\x21\x22\x0d\x60\xe1\xaa\xe8\xe3\ +\x8f\x3f\x46\xdf\xbe\x7d\x65\x8f\x41\x44\x1a\x71\xbb\x70\xf3\xf3\ +\xf3\x61\x34\x1a\xcd\xee\xaf\x49\x93\x26\x49\xf9\x17\x1b\x1e\x1e\ +\x8e\x09\x13\x26\x48\xc9\x26\x22\x6d\x32\xeb\x77\xb8\xef\xbf\xff\ +\x3e\x56\xae\x5c\x29\x3c\x77\xd8\xb0\x61\x58\xb2\x64\x89\xf0\x5c\ +\x22\xd2\x36\xdd\xad\xa7\xf6\x9a\x9b\x2d\x5b\xb6\xe0\xaf\x7f\xfd\ +\x2b\xf4\x7a\xbd\xd0\xdc\xce\x9d\x3b\x23\x33\x33\x13\x4e\x4e\x4e\ +\x42\x73\x89\x48\xf3\xcc\xf3\xa9\xbd\x27\x4e\x9c\x40\x50\x50\x90\ +\xf0\xb2\x75\x72\x72\x42\x5a\x5a\x1a\xcb\x96\x88\xee\xc9\xec\x0a\ +\xf7\xda\xb5\x6b\xf0\xf3\xf3\x43\x71\x71\xb1\xd0\x5c\x6b\x6b\x6b\ +\x24\x25\x25\xa1\x4b\x97\x2e\x42\x73\x89\xc8\x74\x98\x55\xe1\x1a\ +\x0c\x06\x8c\x19\x33\x06\xd9\xd9\xd9\xc2\xb3\x97\x2c\x59\x82\xe7\ +\x9e\x7b\x4e\x78\x2e\x11\x99\x0e\xb3\x2a\xdc\xc8\xc8\x48\x64\x64\ +\x64\x08\xcf\x9d\x30\x61\x02\xc2\xc3\xc3\x85\xe7\x12\x91\x69\x31\ +\x9b\x9b\x66\x09\x09\x09\x18\x3f\x7e\xbc\xf0\xdc\xbe\x7d\xfb\x62\ +\xc7\x8e\x1d\xb0\xb5\xb5\x15\x9e\x4d\x44\x26\x65\x81\x59\x14\x6e\ +\x66\x66\x26\x06\x0d\x1a\x84\x8a\x8a\x0a\xa1\xb9\xee\xee\xee\xc8\ +\xca\xca\x82\xab\xab\xab\xd0\x5c\x22\x32\x49\xa6\xbf\x4b\x21\x2f\ +\x2f\x0f\x01\x01\x01\xc2\xcb\xd6\xc1\xc1\x01\xa9\xa9\xa9\x2c\x5b\ +\x22\xaa\x33\x93\x2e\xdc\xb2\xb2\x32\x04\x04\x04\x20\x3f\x3f\x5f\ +\x78\xf6\xaa\x55\xab\xd0\xab\x57\x2f\xe1\xb9\x44\x64\xba\x4c\xba\ +\x70\x27\x4d\x9a\x84\xac\xac\x2c\xe1\xb9\xaf\xbf\xfe\x3a\x82\x82\ +\x82\x84\xe7\x12\x91\x69\x33\xd9\xc2\x7d\xeb\xad\xb7\x90\x94\x94\ +\x24\x3c\xd7\xdf\xdf\x1f\x8b\x16\x2d\x12\x9e\x4b\x44\xa6\xcf\x24\ +\x6f\x9a\xa5\xa5\xa5\x61\xf8\xf0\xe1\x30\x18\x0c\x42\x73\xbb\x77\ +\xef\x8e\xdd\xbb\x77\xa3\x59\xb3\x66\x42\x73\x89\xc8\x2c\x98\xde\ +\x4d\xb3\x23\x47\x8e\x60\xdc\xb8\x71\xc2\xcb\xb6\x65\xcb\x96\x48\ +\x4d\x4d\x65\xd9\x12\x51\x83\x99\x54\xe1\x5e\xbe\x7c\x19\x7e\x7e\ +\x7e\xb8\x71\xe3\x86\xd0\xdc\x26\x4d\x9a\x20\x39\x39\x19\x9e\x9e\ +\x9e\x42\x73\x89\xc8\xbc\x98\x4c\xe1\x56\x57\x57\x63\xd4\xa8\x51\ +\x38\x75\xea\x94\xf0\xec\xb8\xb8\x38\xf8\xf8\xf8\x08\xcf\x25\x22\ +\xf3\x62\x32\x85\x1b\x16\x16\x86\xed\xdb\xb7\x0b\xcf\x9d\x3e\x7d\ +\x3a\xa6\x4d\x9b\x26\x3c\x97\x88\xcc\x8f\x49\x14\x6e\x7c\x7c\x3c\ +\x3e\xfa\xe8\x23\xe1\xb9\x3e\x3e\x3e\x88\x8b\x8b\x13\x9e\x4b\x44\ +\xe6\x49\xf3\xbb\x14\x76\xee\xdc\x89\x67\x9f\x7d\x16\x55\x55\x55\ +\x42\x73\x3d\x3d\x3d\xf1\xd3\x4f\x3f\xc1\xc5\xc5\x45\x68\x2e\x11\ +\x99\x2d\x6d\xef\x52\x38\x73\xe6\x0c\x02\x03\x03\x85\x97\xed\x03\ +\x0f\x3c\x80\xb4\xb4\x34\x96\x2d\x11\x29\x4a\xb3\x85\x5b\x52\x52\ +\x02\x3f\x3f\x3f\x14\x15\x15\x09\xcd\xd5\xe9\x74\x58\xbd\x7a\x35\ +\xba\x75\xeb\x26\x34\x97\x88\xcc\x9f\x26\x0b\xd7\x68\x34\x22\x24\ +\x24\x04\x87\x0e\x1d\x12\x9e\x1d\x1d\x1d\x0d\x3f\x3f\x3f\xe1\xb9\ +\x44\x64\xfe\x34\x59\xb8\xf3\xe6\xcd\x43\x4a\x4a\x8a\xf0\xdc\xe0\ +\xe0\x60\xcc\x9d\x3b\x57\x78\x2e\x11\x59\x06\xcd\xdd\x34\x5b\xbb\ +\x76\x2d\x82\x83\x83\x85\xe7\xf6\xee\xdd\x1b\xbb\x76\xed\x82\x83\ +\x83\x83\xf0\x6c\x22\xb2\x08\xda\xba\x69\xb6\x7f\xff\x7e\x4c\x9c\ +\x38\x51\x78\x6e\xeb\xd6\xad\x91\x92\x92\xc2\xb2\x25\x22\x55\x69\ +\xa6\x70\x0b\x0a\x0a\x10\x10\x10\x80\xb2\xb2\x32\xa1\xb9\x76\x76\ +\x76\x58\xb7\x6e\x1d\xdc\xdd\xdd\x85\xe6\x12\x91\xe5\xd1\x44\xe1\ +\x56\x54\x54\x60\xf8\xf0\xe1\x38\x77\xee\x9c\xf0\xec\xf8\xf8\x78\ +\xf4\xed\xdb\x57\x78\x2e\x11\x59\x1e\x4d\x14\xee\xb4\x69\xd3\xb0\ +\x67\xcf\x1e\xe1\xb9\xe1\xe1\xe1\x52\x1e\x3c\x49\x44\x96\x49\x7a\ +\xe1\xbe\xfb\xee\xbb\x58\xb5\x6a\x95\xf0\xdc\x61\xc3\x86\x61\xc9\ +\x92\x25\xc2\x73\x89\xc8\x72\x49\xdd\xa5\xf0\xdf\xff\xfe\x17\x2f\ +\xbc\xf0\x02\xf4\x7a\xbd\xd0\xdc\x2e\x5d\xba\x20\x33\x33\x13\x0f\ +\x3e\xf8\xa0\xd0\x5c\x22\xb2\x68\xf2\x76\x29\x1c\x3b\x76\x0c\x63\ +\xc6\x8c\x11\x5e\xb6\x4e\x4e\x4e\x48\x4b\x4b\x63\xd9\x12\x91\x70\ +\x52\x0a\xb7\xb8\xb8\x18\x7e\x7e\x7e\x28\x2e\x2e\x16\x9a\x6b\x6d\ +\x6d\x8d\xb5\x6b\xd7\xa2\x73\xe7\xce\x42\x73\x89\x88\x00\x09\x85\ +\xab\xd7\xeb\x11\x1c\x1c\x8c\xe3\xc7\x8f\x8b\x8e\xc6\xd2\xa5\x4b\ +\x31\x74\xe8\x50\xe1\xb9\x44\x44\x80\x84\xc2\x9d\x3d\x7b\x36\x36\ +\x6d\xda\x24\x3a\x16\x13\x27\x4e\xc4\xac\x59\xb3\x84\xe7\x12\x11\ +\xdd\x22\xf4\xa6\xd9\xaa\x55\xab\xa4\x7c\x92\xac\x5f\xbf\x7e\xd8\ +\xbe\x7d\x3b\x6c\x6d\x6d\x85\x67\x13\x11\xfd\xbf\x05\xc2\x0a\x77\ +\xcf\x9e\x3d\xf0\xf1\xf1\x41\x65\x65\xa5\x88\xb8\xdb\xda\xb6\x6d\ +\x8b\x9f\x7e\xfa\x09\xae\xae\xae\x42\x73\x89\x88\xfe\x44\xcc\x2e\ +\x85\xf3\xe7\xcf\x63\xf8\xf0\xe1\xc2\xcb\xd6\xd1\xd1\x11\x29\x29\ +\x29\x2c\x5b\x22\xd2\x04\xd5\x0b\xb7\xac\xac\x0c\xfe\xfe\xfe\x28\ +\x28\x28\x50\x3b\xea\x2e\x9f\x7f\xfe\x39\x7a\xf5\xea\x25\x3c\x97\ +\x88\xe8\x5e\x54\x2f\xdc\x09\x13\x26\x60\xff\xfe\xfd\x6a\xc7\xdc\ +\xe5\x8d\x37\xde\x40\x50\x50\x90\xf0\x5c\x22\xa2\x9a\xa8\x5a\xb8\ +\xd1\xd1\xd1\xf8\xea\xab\xaf\xd4\x8c\xb8\xa7\x80\x80\x00\x2c\x5c\ +\xb8\x50\x78\x2e\x11\x51\x6d\x54\xbb\x69\x96\x92\x92\x82\x11\x23\ +\x46\x40\xf4\x27\x87\xbb\x77\xef\x8e\xdd\xbb\x77\xa3\x59\xb3\x66\ +\x42\x73\x89\x88\xee\x43\x9d\x9b\x66\x87\x0e\x1d\x42\x48\x48\x88\ +\xf0\xb2\x6d\xd9\xb2\x25\x52\x53\x53\x59\xb6\x44\xa4\x49\x8a\x17\ +\x6e\x51\x51\x11\xfc\xfd\xfd\x51\x52\x52\xa2\xf4\xd2\xb5\x6a\xd2\ +\xa4\x09\xbe\xfe\xfa\x6b\x78\x7a\x7a\x0a\xcd\x25\x22\xaa\x2b\x45\ +\x0b\xb7\xaa\xaa\x0a\x81\x81\x81\x38\x7d\xfa\xb4\x92\xcb\xd6\x49\ +\x5c\x5c\x1c\x06\x0d\x1a\x24\x3c\x97\x88\xa8\xae\x14\x2d\xdc\xb0\ +\xb0\x30\xec\xdc\xb9\x53\xc9\x25\xeb\x64\xc6\x8c\x19\x98\x36\x6d\ +\x9a\xf0\x5c\x22\xa2\xfa\x50\xac\x70\x57\xac\x58\x81\x8f\x3f\xfe\ +\x58\xa9\xe5\xea\x6c\xf0\xe0\xc1\x88\x8d\x8d\x15\x9e\x4b\x44\x54\ +\x5f\x8a\xec\x52\xd8\xbe\x7d\x3b\x86\x0e\x1d\x8a\xea\xea\x6a\x25\ +\x66\xaa\xb3\x47\x1e\x79\x04\xfb\xf6\xed\x83\x8b\x8b\x8b\xd0\x5c\ +\x22\xa2\x06\x68\xfc\x2e\x85\x53\xa7\x4e\x61\xd4\xa8\x51\xc2\xcb\ +\xf6\x81\x07\x1e\x40\x6a\x6a\x2a\xcb\x96\x88\x4c\x46\xa3\x0a\xf7\ +\xc6\x8d\x1b\xf0\xf7\xf7\xc7\xe5\xcb\x97\x95\x9a\xa7\x4e\x74\x3a\ +\x1d\x56\xaf\x5e\x8d\x6e\xdd\xba\x09\xcd\x25\x22\x6a\x8c\x06\x17\ +\xae\xd1\x68\xc4\xb8\x71\xe3\x70\xf8\xf0\x61\x25\xe7\xa9\x93\xe8\ +\xe8\x68\xf8\xf9\xf9\x09\xcf\x25\x22\x6a\x8c\x06\x17\xee\xeb\xaf\ +\xbf\x8e\xb4\xb4\x34\x25\x67\xa9\x93\x31\x63\xc6\x60\xee\xdc\xb9\ +\xc2\x73\x89\x88\x1a\xab\x41\x37\xcd\x12\x13\x13\x31\x76\xec\x58\ +\x35\xe6\xa9\xd5\x13\x4f\x3c\x81\xef\xbf\xff\x1e\x0e\x0e\x0e\xc2\ +\xb3\x89\x88\x1a\xa9\xfe\x37\xcd\xb2\xb2\xb2\xf0\xf2\xcb\x2f\xab\ +\x31\x4c\xad\x5a\xb7\x6e\x8d\x94\x94\x14\x96\x2d\x11\x99\xac\x7a\ +\x15\x6e\x7e\x7e\x3e\x02\x02\x02\x50\x56\x56\xa6\xd6\x3c\xf7\x64\ +\x67\x67\x87\xf5\xeb\xd7\xc3\xcd\xcd\x4d\x68\x2e\x11\x91\x92\xea\ +\x5c\xb8\x15\x15\x15\x08\x08\x08\x40\x5e\x5e\x9e\x9a\xf3\xdc\xd3\ +\x27\x9f\x7c\x82\xbf\xfc\xe5\x2f\xc2\x73\x89\x88\x94\x54\xe7\xc2\ +\x9d\x32\x65\x0a\x32\x33\x33\xd5\x9c\xe5\x9e\x22\x22\x22\x10\x1a\ +\x1a\x2a\x3c\x97\x88\x48\x69\x75\x2a\xdc\x65\xcb\x96\x21\x21\x21\ +\x41\xed\x59\xee\x32\x6c\xd8\x30\x2c\x59\xb2\x44\x78\x2e\x11\x91\ +\x1a\xee\xbb\x4b\x21\x23\x23\x03\x2f\xbc\xf0\x02\x0c\x06\x83\xa8\ +\x99\x00\x00\x5d\xba\x74\x41\x66\x66\x26\x1e\x7c\xf0\x41\xa1\xb9\ +\x44\x44\x2a\xa9\x7d\x97\x42\x76\x76\x36\xc6\x8c\x19\x23\xbc\x6c\ +\x9d\x9c\x9c\xb0\x61\xc3\x06\x96\x2d\x11\x99\x95\x1a\x0b\xf7\xea\ +\xd5\xab\xf0\xf3\xf3\xc3\xb5\x6b\xd7\x44\xce\x03\x6b\x6b\x6b\xac\ +\x5d\xbb\x16\x9d\x3a\x75\x12\x9a\x4b\x44\xa4\xb6\x7b\x16\xae\x5e\ +\xaf\xc7\xe8\xd1\xa3\x71\xe2\xc4\x09\xd1\xf3\x60\xd9\xb2\x65\x18\ +\x3a\x74\xa8\xf0\x5c\x22\x22\xb5\xdd\xb3\x70\x23\x22\x22\xb0\x65\ +\xcb\x16\xd1\xb3\x60\xe2\xc4\x89\x78\xe5\x95\x57\x84\xe7\x12\x11\ +\x89\x70\xd7\x4d\xb3\x95\x2b\x57\x4a\xf9\x24\x59\xbf\x7e\xfd\xb0\ +\x7d\xfb\x76\xd8\xda\xda\x0a\xcf\x26\x22\x12\x60\xc1\x1d\x85\xfb\ +\xe3\x8f\x3f\xc2\xd7\xd7\x17\x95\x95\x95\xc2\x27\x19\x37\x6e\x1c\ +\x5c\x5d\x5d\x85\xe7\x8a\x64\x67\x67\x87\xc5\x8b\x17\xcb\x1e\x83\ +\x88\xe4\xf8\x5f\xe1\xe6\xe6\xe6\xe2\xc9\x27\x9f\x44\x61\x61\xa1\ +\xec\xa1\xcc\x56\xd3\xa6\x4d\x85\x3f\xcd\x98\x88\x34\xe3\xf7\x6d\ +\x61\x37\x6f\xde\x84\xbf\xbf\x3f\xcb\x96\x88\x48\x45\x56\x46\xa3\ +\x11\x13\x26\x4c\xc0\x81\x03\x07\x64\xcf\x42\x44\x64\xd6\xac\xe2\ +\xe3\xe3\x91\x9c\x9c\x2c\x7b\x0e\x22\x22\xb3\x67\x75\xe6\xcc\x19\ +\xd9\x33\x10\x11\x59\x84\x46\x3f\xb5\x97\x88\x88\xea\x86\x85\x4b\ +\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\ +\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\ +\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\ +\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\ +\xb0\x70\x89\x88\x04\xb9\xeb\xa9\xbd\x44\x44\xa4\x8a\x05\x7c\x87\ +\x4b\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\ +\x22\x22\x41\x58\xb8\x44\x44\x82\x98\x54\xe1\x1e\x3e\x7c\x18\xa5\ +\xa5\xa5\xb2\xc7\x20\x22\x6a\x10\x93\x2a\xdc\xf8\xf8\x78\x7c\xf5\ +\xd5\x57\xb2\xc7\x20\x22\x6a\x10\x93\xd9\x87\x5b\x51\x51\x81\x87\ +\x1f\x7e\x18\xde\xde\xde\xf8\xee\xbb\xef\x64\x8f\x43\x44\x54\x5f\ +\xa6\xb3\x0f\x37\x23\x23\x03\x57\xae\x5c\xc1\x8e\x1d\x3b\x70\xfa\ +\xf4\x69\xd9\xe3\x10\x11\xd5\x9b\xc9\x14\xee\x97\x5f\x7e\x09\x00\ +\x30\x1a\x8d\xf8\xcf\x7f\xfe\x23\x79\x1a\x22\xa2\xfa\x33\x89\x4b\ +\x0a\x45\x45\x45\x70\x73\x73\x43\x65\x65\x25\x00\xa0\x53\xa7\x4e\ +\x38\x76\xec\x18\x74\x3a\x9d\xe4\xc9\x88\x88\xea\xcc\x34\x2e\x29\ +\x7c\xf5\xd5\x57\xb7\xcb\x16\x00\x4e\x9c\x38\x81\x7d\xfb\xf6\x49\ +\x9c\x88\x88\xa8\xfe\x4c\xa2\x70\x6f\x5d\x4e\xb8\xdf\xd7\x88\x88\ +\xb4\x4c\xf3\x97\x14\xb2\xb3\xb3\xd1\xb5\x6b\xd7\xbb\xbe\xee\xec\ +\xec\x8c\x0b\x17\x2e\xc0\xce\xce\x4e\xc2\x54\x44\x44\xf5\xa6\xfd\ +\x4b\x0a\xab\x57\xaf\xbe\xe7\xd7\xaf\x5c\xb9\x82\x8d\x1b\x37\x0a\ +\x9e\x86\x88\xa8\xe1\x34\x5d\xb8\x06\x83\xa1\xd6\x4b\x07\xbc\xac\ +\x40\x44\xa6\x44\xd3\x85\xbb\x73\xe7\x4e\xe4\xe6\xe6\xd6\xf8\xfd\ +\x8d\x1b\x37\xa2\xa8\xa8\x48\xe0\x44\x44\x44\x0d\xa7\xe9\xc2\xbd\ +\xdf\x3b\xd8\xaa\xaa\x2a\x24\x25\x25\x09\x9a\x86\x88\xa8\x71\x34\ +\x5b\xb8\x25\x25\x25\x48\x4e\x4e\xbe\xef\xcf\xf1\xb2\x02\x11\x99\ +\x0a\xcd\x16\x6e\x6a\x6a\x2a\x4a\x4a\x4a\xee\xfb\x73\xfb\xf6\xed\ +\x43\x76\x76\xb6\x80\x89\x88\x88\x1a\x47\xb3\x85\x5b\x9f\x77\xae\ +\x7c\x97\x4b\x44\xa6\x40\x93\xfb\x70\xcf\x9f\x3f\x8f\xf6\xed\xdb\ +\xc3\x60\x30\xd4\xe9\xe7\xdd\xdc\xdc\x70\xf6\xec\x59\x58\x5b\x5b\ +\xab\x3c\x19\x11\x51\x83\x69\x73\x1f\x6e\x62\x62\x62\x9d\xcb\x16\ +\x00\xf2\xf2\xf2\xb0\x73\xe7\x4e\x15\x27\x22\x22\x6a\x3c\x4d\x16\ +\xee\x17\x5f\x7c\x51\xef\xd7\xf0\xb2\x02\x11\x69\x9d\xe6\x0a\xf7\ +\x97\x5f\x7e\xc1\x91\x23\x47\xea\xfd\xba\xe4\xe4\xe4\x3a\xdd\x64\ +\x23\x22\x92\x45\x73\x85\x9b\x90\x90\xd0\xa0\xd7\x95\x96\x96\x62\ +\xfd\xfa\xf5\x0a\x4f\x43\x44\xa4\x1c\x4d\x15\x6e\x55\x55\x55\xa3\ +\x0e\x17\xe7\x65\x05\x22\xd2\x32\x4d\x15\xee\xa6\x4d\x9b\x50\x58\ +\x58\xd8\xe0\xd7\x6f\xdb\xb6\x0d\xe7\xce\x9d\x53\x70\x22\x22\x22\ +\xe5\x68\xaa\x70\x1b\xfb\x0e\xd5\x60\x30\xf0\xf1\x3b\x44\xa4\x59\ +\x9a\xd9\x87\x5b\x5c\x5c\x8c\x36\xad\x5b\xa3\xbc\xa2\xa2\x51\xeb\ +\x3c\xd6\xa9\x13\x8e\x1c\x3f\xae\xd0\x54\x44\x44\x8a\xd1\xce\x3e\ +\xdc\xb5\x1f\x7f\xdc\xe8\xb2\x05\x80\xdf\x4e\x9c\xc0\x4f\x69\x69\ +\x0a\x4c\x44\x44\xa4\x2c\x4d\x14\xae\xb1\xac\x0c\x5f\xbc\xfd\xb6\ +\x62\xeb\x7d\x3e\x65\x0a\x8c\xa5\xa5\x8a\xad\x47\x44\xa4\x04\x4d\ +\x14\xee\x91\x57\x5e\xc1\xde\xeb\xd7\x15\x5b\x2f\xb9\xb0\x10\xd7\ +\xe7\xcc\x51\x6c\x3d\x22\x22\x25\x48\x2f\x5c\xfd\xc9\x93\x58\x9d\ +\x90\x00\x25\x2f\x24\x17\x19\x8d\xf8\xf6\xf3\xcf\xa1\x6f\xc0\x07\ +\x28\x88\x88\xd4\x22\xbd\x70\xcb\xdf\x7f\x1f\x89\x7f\x78\x04\xba\ +\x52\x92\x2a\x2b\x51\xfe\xde\x7b\x8a\xaf\x4b\x44\xd4\x50\x52\x0b\ +\xd7\x58\x5e\x8e\xef\x13\x13\x91\x5b\x8f\x83\x6a\xea\xea\xbf\xd5\ +\xd5\x28\x48\x49\x81\xf1\xe6\x4d\xc5\xd7\x26\x22\x6a\x08\xa9\x85\ +\xab\x3f\x70\x00\x49\x37\x6e\xa8\xb2\x76\x25\x80\x94\x92\x12\x54\ +\x67\x66\xaa\xb2\x3e\x11\x51\x7d\x49\x2d\xdc\x92\xac\x2c\xac\xaf\ +\xae\x56\x6d\xfd\xb5\xd5\xd5\xd0\x1f\x3c\xa8\xda\xfa\x44\x44\xf5\ +\x21\xb5\x70\x37\x7c\xff\x3d\x6e\xa8\xf8\xb9\x8b\x7d\x7a\x3d\x8e\ +\xfd\xf6\x9b\x6a\xeb\x13\x11\xd5\x87\xd4\xc2\xfd\xcf\xfe\xfd\xaa\ +\x67\xac\x3d\x70\x40\xf5\x0c\x22\xa2\xba\x90\x56\xb8\xf9\xf9\xf9\ +\xd8\x7a\xfa\xb4\xea\x39\x6b\x8e\x1e\x85\x46\x3e\xbd\x4c\x44\x16\ +\x4e\x5a\xe1\x26\x26\x26\xa2\x5a\x85\xdd\x09\x7f\x96\x7b\xe3\x06\ +\x76\xed\xda\xa5\x7a\x0e\x11\xd1\xfd\x48\x2b\x5c\x91\x67\xd7\xf2\ +\x9c\x5c\x22\xd2\x02\x29\xa7\x85\x1d\x3c\x78\x10\xde\xde\xde\xc2\ +\xf2\x9a\x37\x6f\x8e\x8b\x17\x2f\xc2\xd1\xd1\x51\x58\x26\x11\xd1\ +\x9f\xc8\x39\x2d\x6c\xf5\xea\xd5\x42\xf3\xae\x5f\xbf\x8e\x34\x9e\ +\x20\x46\x44\x92\x09\x2f\x5c\xbd\x5e\x8f\x35\x6b\xd6\x88\x8e\x6d\ +\xf0\xb3\xd2\x88\x88\x94\x22\xbc\x70\xb7\x6c\xd9\x82\x0b\x17\x2e\ +\x88\x8e\xc5\xe6\xcd\x9b\x71\xf1\xe2\x45\xe1\xb9\x44\x44\xb7\x08\ +\x2f\x5c\x59\x37\xb0\xf4\x7a\x3d\x1f\xbf\x43\x44\x52\x09\xbd\x69\ +\x76\xed\xda\x35\xb4\x69\xd3\x06\x65\x65\x65\xa2\x22\xef\xe0\xed\ +\xed\x8d\x03\xfc\x20\x04\x11\xc9\x21\xf6\xa6\xd9\x37\xdf\x7c\x23\ +\xad\x6c\x01\xe0\xd7\x5f\x7f\xc5\xaf\xbf\xfe\x2a\x2d\x9f\x88\x2c\ +\x9b\xd0\xc2\xd5\xc2\x7e\x58\x2d\xcc\x40\x44\x96\x49\xd8\x25\x85\ +\xd3\xa7\x4f\xa3\x43\x87\x0e\xd2\x3f\x66\xeb\xea\xea\x8a\xf3\xe7\ +\xcf\xc3\xc6\xc6\x46\xea\x1c\x44\x64\x71\xc4\x5d\x52\x58\xb3\x66\ +\x8d\xf4\xb2\x05\x80\x82\x82\x02\x6c\xd9\xb2\x45\xf6\x18\x44\x64\ +\x81\x84\x14\xae\xd1\x68\xd4\xd4\x3e\x58\x5e\x56\x20\x22\x19\x84\ +\x14\x6e\x66\x66\x26\x4e\x9c\x38\x21\x22\xaa\x4e\xd6\xaf\x5f\x8f\ +\xe2\xe2\x62\xd9\x63\x10\x91\x85\x11\x52\xb8\x5a\x7a\x77\x0b\x00\ +\xe5\xe5\xe5\xf8\xe6\x9b\x6f\x64\x8f\x41\x44\x16\x46\xf5\xc2\xad\ +\xa8\xa8\x40\x52\x52\x92\xda\x31\xf5\xa6\xb5\x3f\x04\x88\xc8\xfc\ +\xa9\x5e\xb8\xe9\xe9\xe9\xb8\x7a\xf5\xaa\xda\x31\xf5\xb6\x6b\xd7\ +\x2e\x9c\x3a\x75\x4a\xf6\x18\x44\x64\x41\x54\x2f\x5c\xad\xde\xa0\ +\x32\x1a\x8d\xc2\x4f\x2d\x23\x22\xcb\xa6\xea\x3e\xdc\x4b\x97\x2e\ +\xc1\xcd\xcd\x0d\x55\x55\x55\x6a\x45\x34\x4a\xc7\x8e\x1d\x71\xfc\ +\xf8\x71\xe8\x74\x3a\xd9\xa3\x10\x91\xf9\x53\x77\x1f\x6e\x52\x52\ +\x92\x66\xcb\x16\x00\x4e\x9e\x3c\x89\x3d\x7b\xf6\xc8\x1e\x83\x88\ +\x2c\x84\xaa\x85\xab\xd5\xcb\x09\x7f\x64\x0a\x33\x12\x91\x79\x50\ +\xed\x92\xc2\xe1\xc3\x87\xd1\xbd\x7b\x77\x35\x96\x56\x54\x8b\x16\ +\x2d\x70\xf1\xe2\x45\xd8\xd9\xd9\xc9\x1e\x85\x88\xcc\x9b\x7a\x97\ +\x14\x4c\xe5\xec\xd9\xab\x57\xaf\x62\xc3\x86\x0d\xb2\xc7\x20\x22\ +\x0b\xa0\x4a\xe1\xea\xf5\x7a\x93\xda\xe7\xca\xcb\x0a\x44\x24\x82\ +\x2a\x85\xbb\x63\xc7\x0e\xe4\xe5\xe5\xa9\xb1\xb4\x2a\xbe\xfd\xf6\ +\x5b\x14\x14\x14\xc8\x1e\x83\x88\xcc\x9c\x2a\x85\x6b\x4a\xef\x6e\ +\x01\xa0\xba\xba\x1a\x6b\xd7\xae\x95\x3d\x06\x11\x99\x39\xc5\x0b\ +\xb7\xa4\xa4\xc4\x24\xcf\x29\x30\xb5\x3f\x24\x88\xc8\xf4\x28\x5e\ +\xb8\xeb\xd6\xad\x43\x69\x69\xa9\xd2\xcb\xaa\xee\xe7\x9f\x7f\xc6\ +\xa1\x43\x87\x64\x8f\x41\x44\x66\x4c\xf1\xc2\x35\xe5\x1b\x50\x6b\ +\xd6\xac\x91\x3d\x02\x11\x99\x31\x45\xf7\xe1\x9e\x3b\x77\x0e\x1e\ +\x1e\x1e\x30\x18\x0c\x4a\x2d\x29\xd4\xc3\x0f\x3f\x8c\xdc\xdc\x5c\ +\x58\x5b\x5b\xcb\x1e\x85\x88\xcc\x8f\xb2\xfb\x70\xd7\xac\x59\x63\ +\xb2\x65\x0b\x00\x17\x2e\x5c\xc0\x77\xdf\x7d\x27\x7b\x0c\x22\x32\ +\x53\x8a\x16\xae\x39\xdc\x78\x32\xe5\x4b\x22\x44\xa4\x6d\x8a\x15\ +\x6e\x56\x56\x16\x8e\x1e\x3d\xaa\xd4\x72\xd2\xac\x5b\xb7\x0e\x37\ +\x6e\xdc\x90\x3d\x06\x11\x99\x21\xc5\x0a\xd7\x5c\xde\x19\x96\x96\ +\x96\x62\xdd\xba\x75\xb2\xc7\x20\x22\x33\xa4\x48\xe1\x56\x55\x55\ +\x21\x31\x31\x51\x89\xa5\x34\xc1\x5c\xfe\xf0\x20\x22\x6d\x51\xa4\ +\x70\x33\x32\x32\x70\xe9\xd2\x25\x25\x96\xd2\x84\xed\xdb\xb7\x23\ +\x37\x37\x57\xf6\x18\x44\x64\x66\x14\x29\x5c\x11\xfb\x57\x9d\x74\ +\xba\x3b\xfe\x52\x93\xc1\x60\xd0\xe4\x83\x2f\x89\xc8\xb4\x35\x7a\ +\x1f\x6e\x71\x71\x31\xda\xb4\x69\x83\xf2\xf2\xf2\x06\xaf\x61\x03\ +\xe0\x51\x2b\x2b\x3c\x6e\x6d\x8d\xae\x56\x56\x70\xd3\xe9\xe0\xa6\ +\xd3\xc1\xdd\xca\x0a\xad\x74\x3a\xd4\x56\xaf\x85\x46\x23\xce\x1b\ +\x0c\xc8\x33\x1a\x71\xde\x68\xc4\x71\x83\x01\x87\x0c\x06\x1c\xd5\ +\xeb\x51\xd6\xe0\x89\x00\x2f\x2f\x2f\x1c\x3e\x7c\xb8\x11\x2b\x10\ +\x11\xdd\x61\x81\x4d\x63\x57\x48\x4e\x4e\xae\x77\xd9\xda\xd9\xd9\ +\xa1\x7f\xff\xfe\x18\xac\xd7\xa3\xcf\xbe\x7d\xe8\x66\x6d\x0d\xfb\ +\x06\xe6\xb7\xd2\xe9\xd0\xca\xda\x1a\xbd\xfe\xf4\x75\x3d\x80\x53\ +\x06\x03\xf6\xf5\xe9\x83\x1d\xce\xce\xd8\xb6\x6d\x1b\x8a\x8b\x8b\ +\xeb\xbc\xee\x91\x23\x47\xb0\x7f\xff\x7e\xf4\xea\xf5\xe7\x95\x89\ +\x88\x1a\xa6\xd1\x97\x14\xea\xba\xf7\xb6\x59\xb3\x66\x08\x0d\x0d\ +\x45\x7a\x7a\x3a\x2e\x5f\xbe\x8c\x6d\xdb\xb6\x21\xbc\x4f\x1f\x3c\ +\xd1\x88\xb2\xad\x8d\x35\x80\x4e\x56\x56\x98\xe4\xe5\x85\xaf\xbf\ +\xfe\x1a\x45\x45\x45\xf8\xe1\x87\x1f\xf0\xcf\x7f\xfe\x13\x2d\x5b\ +\xb6\xac\xd3\x1a\xe6\xb0\xaf\x98\x88\xb4\xa3\x51\x85\x9b\x93\x93\ +\x83\x1f\x7f\xfc\xb1\xc6\xef\xeb\x74\x3a\x0c\x19\x32\x04\x09\x09\ +\x09\xc8\xcf\xcf\xc7\x17\x5f\x7c\x81\xbf\xfd\xed\x6f\x68\xda\xb4\ +\x69\x63\x62\x1b\xc4\xda\xda\x1a\xfd\xfb\xf7\x47\x5c\x5c\x1c\xf2\ +\xf2\xf2\xb0\x7e\xfd\x7a\xbc\xf8\xe2\x8b\xb0\xb2\xaa\xf9\x5f\x41\ +\x62\x62\xa2\xa6\x1f\x82\x49\x44\xa6\xa5\x51\x85\xfb\xc5\x17\x5f\ +\xe0\x5e\x97\x80\x9b\x36\x6d\x8a\xb0\xb0\x30\x9c\x3c\x79\x12\x5b\ +\xb7\x6e\x45\x48\x48\x88\x94\x92\xad\x89\xad\xad\x2d\x02\x02\x02\ +\x90\x96\x96\x86\x9c\x9c\x1c\x84\x85\x85\xc1\xd1\xd1\xf1\xae\x9f\ +\x2b\x2c\x2c\xc4\xc6\x8d\x1b\x25\x4c\x48\x44\xe6\xa8\xc1\x85\x6b\ +\x34\x1a\xef\x7a\x6e\x99\x83\x83\x03\x22\x23\x23\x91\x93\x93\x83\ +\xd8\xd8\x58\x3c\xf2\xc8\x23\x8d\x1e\x50\x6d\x1e\x1e\x1e\x88\x8d\ +\x8d\x45\x76\x76\x36\xa6\x4f\x9f\x0e\x1b\x9b\x3b\x2f\x6b\x9b\xca\ +\xb3\xd9\x88\x48\xfb\x1a\x5c\xb8\xdf\x7f\xff\x3d\x72\x72\x72\x00\ +\x00\x36\x36\x36\x08\x0b\x0b\x43\x6e\x6e\x2e\x62\x62\x62\xe0\xea\ +\xea\xaa\xd8\x80\xa2\xb4\x6d\xdb\x16\x2b\x56\xac\x40\x4e\x4e\x0e\ +\x42\x42\x42\xa0\xfb\xff\xad\x67\xa9\xa9\xa9\x28\x2a\x2a\x92\x3c\ +\x1d\x11\x99\x83\x06\x17\xee\xad\xbd\xb7\x4f\x3d\xf5\x14\xf6\xed\ +\xdb\x87\xd8\xd8\xd8\x3a\xdf\x8c\xd2\xb2\x76\xed\xda\x21\x21\x21\ +\x01\x9b\x37\x6f\x46\x87\x0e\x1d\x50\x59\x59\x69\x92\x4f\xb0\x20\ +\x22\xed\x69\x50\xe1\xde\xbc\x79\x13\xe9\xe9\xe9\x88\x8f\x8f\xc7\ +\xde\xbd\x7b\xd1\xb3\x67\x4f\xa5\xe7\x92\xee\x99\x67\x9e\xc1\xe1\ +\xc3\x87\x31\x67\xce\x1c\xee\x56\x20\x22\x45\x34\x68\x1f\xee\xd9\ +\xb3\x67\xb1\x65\xcb\x16\x78\x79\x79\x29\x3d\x8f\xa6\xd8\xdb\xdb\ +\xe3\x9d\x77\xde\xc1\xd6\xad\x5b\x71\xfd\xfa\x75\x34\x6f\xde\x5c\ +\xf6\x48\x44\x64\xc2\x1a\x54\xb8\x5d\xbb\x76\x55\x7a\x0e\x4d\x7b\ +\xe6\x99\x67\x64\x8f\x40\x44\x66\x40\x95\xc7\xa4\x13\x11\xd1\xdd\ +\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\ +\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\x10\x16\ +\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\ +\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\ +\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\ +\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\ +\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\x88\x48\ +\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\ +\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\ +\x85\x4b\x44\x24\x88\x8d\xec\x01\x88\xe8\xde\x7e\xfd\xf5\x57\xac\ +\x5f\xbf\x5e\x5a\xbe\x8f\x8f\x0f\x7c\x7c\x7c\xa4\xe5\x2b\x29\x3b\ +\x3b\x1b\x49\x49\x49\xd2\xf2\x7b\xf6\xec\x09\x7f\x7f\x7f\x16\x2e\ +\x91\x56\x75\xec\xd8\x11\x9f\x7d\xf6\x19\xce\x9f\x3f\x2f\x25\x7f\ +\xe5\xca\x95\x38\x76\xec\x18\x1c\x1c\x1c\xa4\xe4\x2b\xe9\x1f\xff\ +\xf8\x07\xbe\xfb\xee\x3b\x29\xd9\x56\x56\x56\xf8\xf9\xe7\x9f\x7f\ +\xff\x7b\x29\x13\x10\xd1\x7d\x35\x6d\xda\x14\x4b\x96\x2c\x91\x96\ +\x7f\xee\xdc\x39\x2c\x5b\xb6\x4c\x5a\xbe\x52\xd2\xd2\xd2\xa4\x95\ +\x2d\x00\x4c\x9e\x3c\x19\x8f\x3f\xfe\x38\x00\x16\x2e\x91\xa6\x8d\ +\x19\x33\x06\x4f\x3f\xfd\xb4\xb4\xfc\x98\x98\x18\x5c\xbc\x78\x51\ +\x5a\x7e\x63\x55\x55\x55\x61\xf6\xec\xd9\xd2\xf2\x9d\x9c\x9c\x10\ +\x1d\x1d\x7d\xfb\xd7\x2c\x5c\x22\x8d\x8b\x8b\x8b\x83\x95\x95\x9c\ +\xff\x54\x4b\x4b\x4b\x31\x77\xee\x5c\x29\xd9\x4a\xf8\xf7\xbf\xff\ +\x8d\xe3\xc7\x8f\x4b\xcb\x5f\xb0\x60\x01\x5a\xb6\x6c\x79\xfb\xd7\ +\x2c\x5c\x22\x8d\xeb\xd9\xb3\x27\xfe\xfe\xf7\xbf\x4b\xcb\x4f\x48\ +\x48\xc0\xfe\xfd\xfb\xa5\xe5\x37\xd4\x95\x2b\x57\xb0\x70\xe1\x42\ +\x69\xf9\x5e\x5e\x5e\x98\x31\x63\xc6\x1d\x5f\x63\xe1\x12\x99\x80\ +\xc5\x8b\x17\xc3\xc9\xc9\x49\x4a\xb6\xc1\x60\x40\x78\x78\xb8\x94\ +\xec\xc6\x98\x3f\x7f\x3e\xae\x5e\xbd\x2a\x2d\x3f\x36\x36\x16\x36\ +\x36\x77\xee\x4b\x60\xe1\x12\x99\x80\x96\x2d\x5b\x62\xc1\x82\x05\ +\xd2\xf2\x77\xee\xdc\x89\x75\xeb\xd6\x49\xcb\xaf\xaf\xec\xec\x6c\ +\x7c\xf4\xd1\x47\xd2\xf2\x47\x8c\x18\x81\x21\x43\x86\xdc\xf5\x75\ +\x16\x2e\x91\x89\x98\x31\x63\x06\xbc\xbc\xbc\xa4\xe5\x47\x46\x46\ +\xa2\xb2\xb2\x52\x5a\x7e\x7d\xbc\xfa\xea\xab\xa8\xae\xae\x96\x92\ +\x6d\x6f\x6f\x8f\xe5\xcb\x97\xdf\xf3\x7b\x2c\x5c\x22\x13\x61\x63\ +\x63\x83\xd8\xd8\x58\x69\xf9\x39\x39\x39\x88\x8b\x8b\x93\x96\x5f\ +\x57\x5b\xb6\x6c\xc1\xc6\x8d\x1b\xa5\xe5\xcf\x9e\x3d\x1b\x1e\x1e\ +\x1e\xf7\xfc\x1e\x0b\x97\xc8\x84\x0c\x19\x32\x04\xc3\x87\x0f\x97\ +\x96\x1f\x1d\x1d\x8d\xa2\xa2\x22\x69\xf9\xf7\xa3\xd7\xeb\xa5\x5e\ +\x6f\x76\x77\x77\x47\x54\x54\x54\x8d\xdf\x67\xe1\x12\x99\x98\xe5\ +\xcb\x97\xc3\xde\xde\x5e\x4a\xf6\xb5\x6b\xd7\xf0\xaf\x7f\xfd\x4b\ +\x4a\x76\x5d\x7c\xfa\xe9\xa7\x38\x7c\xf8\xb0\xb4\xfc\xa5\x4b\x97\ +\xc2\xd1\xd1\xb1\xc6\xef\xb3\x70\x89\x4c\x8c\xa7\xa7\x27\x5e\x7d\ +\xf5\x55\x69\xf9\x9f\x7c\xf2\x09\x8e\x1c\x39\x22\x2d\xbf\x26\xd7\ +\xaf\x5f\x97\xfa\x87\xc1\x80\x01\x03\x10\x1c\x1c\x5c\xeb\xcf\xb0\ +\x70\x89\x4c\xd0\x6b\xaf\xbd\x06\x77\x77\x77\x29\xd9\x7a\xbd\x1e\ +\x11\x11\x11\x52\xb2\x6b\xb3\x78\xf1\x62\x14\x16\x16\x4a\xc9\xb6\ +\xb2\xb2\xaa\xd3\xf5\x6d\x16\x2e\x91\x09\x72\x74\x74\xc4\xd2\xa5\ +\x4b\xa5\xe5\x6f\xda\xb4\x09\x19\x19\x19\xd2\xf2\xff\xec\xf4\xe9\ +\xd3\x52\x6f\x28\x4e\x99\x32\xe5\xf6\x79\x09\xb5\x61\xe1\x12\x99\ +\xa8\xe0\xe0\x60\xa9\xe7\x2c\x44\x44\x44\x48\xdb\x7a\xf5\x67\x91\ +\x91\x91\xa8\xa8\xa8\x90\x92\xdd\xa2\x45\x0b\x2c\x5a\xb4\xa8\x4e\ +\x3f\xcb\xc2\x25\x32\x61\x1f\x7c\xf0\x81\xb4\x73\x16\x8e\x1e\x3d\ +\x8a\xf8\xf8\x78\x29\xd9\x7f\xf4\xc3\x0f\x3f\xe0\xeb\xaf\xbf\x96\ +\x96\xff\xe7\xf3\x12\x6a\xc3\xc2\x25\x32\x61\x8f\x3f\xfe\x38\x26\ +\x4f\x9e\x2c\x2d\x7f\xfe\xfc\xf9\x28\x2e\x2e\x96\x96\x6f\x34\x1a\ +\x31\x6b\xd6\x2c\x69\xf9\xdd\xba\x75\xbb\xeb\xbc\x84\xda\xb0\x70\ +\x89\x4c\x5c\x74\x74\x34\x5a\xb4\x68\x21\x25\xbb\xa8\xa8\xa8\xce\ +\xff\x3b\xad\x86\x2f\xbf\xfc\x12\x59\x59\x59\xd2\xf2\x63\x63\x63\ +\x61\x6d\x6d\x5d\xe7\x9f\x67\xe1\x12\x99\x38\xd9\xe7\x2c\x7c\xf8\ +\xe1\x87\x38\x79\xf2\xa4\xf0\xdc\x9b\x37\x6f\x4a\x3d\x3a\x72\xe4\ +\xc8\x91\xf0\xf5\xf5\xad\xd7\x6b\x58\xb8\x44\x66\x60\xfa\xf4\xe9\ +\xe8\xd6\xad\x9b\x94\xec\xca\xca\x4a\x29\x87\x7c\x2f\x59\xb2\x04\ +\x79\x79\x79\xc2\x73\x81\xdf\xcf\x4b\x68\xc8\xd3\x30\x58\xb8\x44\ +\x66\x40\xf6\x39\x0b\x29\x29\x29\xd8\xb1\x63\x87\xb0\xbc\xbc\xbc\ +\x3c\xa9\xdb\xe2\x22\x23\x23\x6b\x3c\x2f\xa1\x36\x2c\x5c\x22\x33\ +\xe1\xeb\xeb\x8b\x11\x23\x46\x48\xcb\x0f\x0f\x0f\x87\xc1\x60\x10\ +\x92\xf5\xda\x6b\xaf\xe1\xe6\xcd\x9b\x42\xb2\xfe\xac\x6d\xdb\xb6\ +\x98\x33\x67\x4e\x83\x5e\xcb\xc2\x25\x32\x23\x32\xcf\x59\xf8\xe5\ +\x97\x5f\xb0\x6a\xd5\x2a\xd5\x73\xb2\xb2\xb2\xb0\x7a\xf5\x6a\xd5\ +\x73\x6a\x72\xbf\xf3\x12\x6a\xc3\xc2\x25\x32\x23\x1e\x1e\x1e\x52\ +\x1f\x9a\xf8\xc6\x1b\x6f\xa0\xa4\xa4\x44\xd5\x8c\x59\xb3\x66\xc1\ +\x68\x34\xaa\x9a\x51\x93\x81\x03\x07\x62\xf4\xe8\xd1\x0d\x7e\x3d\ +\x0b\x97\xc8\xcc\x44\x45\x45\xa1\x6d\xdb\xb6\x52\xb2\x2f\x5e\xbc\ +\x88\x77\xde\x79\x47\xb5\xf5\x93\x93\x93\xf1\xc3\x0f\x3f\xa8\xb6\ +\x7e\x6d\xac\xad\xad\x1b\x7d\x1e\x30\x0b\x97\xc8\xcc\xc8\x3e\x67\ +\xe1\xdd\x77\xdf\x45\x6e\x6e\xae\xe2\xeb\x56\x54\x54\x34\xf8\xda\ +\xa9\x12\xa6\x4c\x99\x02\x6f\x6f\xef\x46\xad\xc1\xc2\x25\x32\x43\ +\xa3\x47\x8f\xc6\x80\x01\x03\xa4\x64\x97\x95\x95\xd5\x7a\x08\x77\ +\x43\xbd\xff\xfe\xfb\x38\x7d\xfa\xb4\xe2\xeb\xd6\x45\x7d\xce\x4b\ +\xa8\x0d\x0b\x97\xc8\x4c\xc5\xc5\xc5\x49\x3b\x67\x21\x29\x29\x09\ +\x7b\xf7\xee\x55\x6c\xbd\xc2\xc2\x42\xbc\xf5\xd6\x5b\x8a\xad\x57\ +\x5f\x0b\x17\x2e\x84\x8b\x8b\x4b\xa3\xd7\x61\xe1\x12\x99\xa9\xc7\ +\x1f\x7f\x1c\x53\xa6\x4c\x91\x92\xad\xf4\x19\x07\xf3\xe6\xcd\xc3\ +\xf5\xeb\xd7\x15\x5b\xaf\x3e\xba\x77\xef\x8e\xe9\xd3\xa7\x2b\xb2\ +\x16\x0b\x97\xc8\x8c\xc9\x3c\x67\x61\xef\xde\xbd\x48\x4c\x4c\x6c\ +\xf4\x3a\x87\x0e\x1d\xc2\x67\x9f\x7d\xa6\xc0\x44\x0d\x53\xdf\xf3\ +\x12\x6a\xc3\xc2\x25\x32\x63\x2e\x2e\x2e\x58\xb8\x70\xa1\xb4\xfc\ +\xa8\xa8\x28\x94\x97\x97\x37\x6a\x8d\xf0\xf0\x70\xe8\xf5\x7a\x85\ +\x26\xaa\x9f\xc0\xc0\x40\x0c\x1e\x3c\x58\xb1\xf5\x58\xb8\x44\x66\ +\x4e\xe6\x39\x0b\xb9\xb9\xb9\x58\xbe\x7c\x79\x83\x5f\x9f\x9e\x9e\ +\x8e\xad\x5b\xb7\x2a\x38\x51\xdd\x39\x38\x38\x34\xe8\xbc\x84\xda\ +\xb0\x70\x89\xcc\x9c\xb5\xb5\xb5\xd4\x73\x16\xde\x79\xe7\x1d\xe4\ +\xe7\xe7\xd7\xfb\x75\xd5\xd5\xd5\x52\x1f\x96\x39\x7b\xf6\x6c\xb4\ +\x6f\xdf\x5e\xd1\x35\x59\xb8\x44\x16\xc0\xd7\xd7\x17\x23\x47\x8e\ +\x94\x92\x5d\x52\x52\x82\xd7\x5f\x7f\xbd\xde\xaf\x5b\xb1\x62\x05\ +\x8e\x1d\x3b\xa6\xc2\x44\xf7\xd7\xae\x5d\x3b\x55\xb6\xb6\xb1\x70\ +\x89\x2c\xc4\xb2\x65\xcb\xa4\x9d\xb3\xb0\x6a\xd5\x2a\x1c\x38\x70\ +\xa0\xce\x3f\x7f\xf5\xea\x55\xa9\x67\xfc\x2e\x5d\xba\x14\x0e\x0e\ +\x0e\x8a\xaf\xcb\xc2\x25\xb2\x10\x1e\x1e\x1e\x88\x8c\x8c\x94\x92\ +\x6d\x30\x18\xea\xb5\x4d\x6c\xc1\x82\x05\xb8\x72\xe5\x8a\x8a\x13\ +\xd5\x6c\xd0\xa0\x41\x08\x0a\x0a\x52\x65\x6d\x16\x2e\x91\x05\x99\ +\x33\x67\x0e\xda\xb5\x6b\x27\x25\x7b\xc7\x8e\x1d\x48\x49\x49\xb9\ +\xef\xcf\x1d\x3f\x7e\x1c\x2b\x56\xac\x10\x30\xd1\xdd\x94\x38\x2f\ +\xa1\x36\x2c\x5c\x22\x0b\x22\xfb\x9c\x85\xd9\xb3\x67\xa3\xb2\xb2\ +\xb2\xd6\x9f\x79\xf5\xd5\x57\x51\x55\x55\x25\x68\xa2\x3b\x4d\x9d\ +\x3a\x15\x3d\x7a\xf4\x50\x6d\x7d\x16\x2e\x91\x85\x09\x0a\x0a\xc2\ +\xc0\x81\x03\xa5\x64\x9f\x3c\x79\x12\x1f\x7e\xf8\x61\x8d\xdf\xdf\ +\xb6\x6d\x1b\x36\x6c\xd8\x20\x70\xa2\xff\x71\x76\x76\x56\xfd\x81\ +\x98\x2c\x5c\x22\x0b\x14\x17\x17\xa7\xd8\xa7\xa7\xea\x6b\xd1\xa2\ +\x45\xb8\x7c\xf9\xf2\x5d\x5f\x37\x18\x0c\x08\x0f\x0f\x97\x30\xd1\ +\xef\x16\x2e\x5c\x08\x67\x67\x67\x55\x33\x58\xb8\x44\x16\xc8\xdb\ +\xdb\x5b\xda\x39\x0b\xc5\xc5\xc5\x78\xf3\xcd\x37\xef\xfa\xfa\x67\ +\x9f\x7d\x86\x83\x07\x0f\x4a\x98\xe8\xf7\xf3\x12\xa6\x4d\x9b\xa6\ +\x7a\x0e\x0b\x97\xc8\x42\x2d\x5a\xb4\x48\xf5\x77\x74\x35\x89\x8f\ +\x8f\xc7\xd1\xa3\x47\x6f\xff\xfa\xc6\x8d\x1b\x98\x37\x6f\x9e\x94\ +\x59\x00\x71\xef\xf8\x59\xb8\x44\x16\x4a\xe6\x39\x0b\xd5\xd5\xd5\ +\x88\x88\x88\xb8\xfd\xeb\xb7\xde\x7a\x0b\x05\x05\x05\x52\x66\x19\ +\x35\x6a\x14\x7c\x7c\x7c\x84\x64\xb1\x70\x89\x2c\xd8\xb4\x69\xd3\ +\xd0\xbd\x7b\x77\x29\xd9\x19\x19\x19\xd8\xb4\x69\x13\xce\x9c\x39\ +\x83\xf7\xde\x7b\x4f\xca\x0c\x6a\x9c\x97\x50\x1b\x1b\x61\x49\x44\ +\xa4\x39\xb7\xce\x59\xf0\xf5\xf5\x95\x92\x1f\x11\x11\x81\x47\x1f\ +\x7d\x14\x15\x15\x15\x52\xf2\x23\x23\x23\x85\xee\x4b\xe6\x3b\x5c\ +\x22\x0b\x37\x78\xf0\x60\x04\x06\x06\x4a\xc9\x3e\x72\xe4\x08\xbe\ +\xf9\xe6\x1b\x29\xd9\xed\xda\xb5\x13\xfe\x8c\x34\x16\x2e\x11\x61\ +\xd9\xb2\x65\xaa\x9c\x1d\xa0\x65\x32\xfe\x99\x59\xb8\x44\x84\xf6\ +\xed\xdb\x4b\x3b\x67\x41\x06\x1f\x1f\x1f\x8c\x1a\x35\x4a\x78\x2e\ +\x0b\x97\x84\x91\x75\x9d\x8e\xea\x46\xe6\x39\x0b\x22\xa9\x7d\x5e\ +\x42\x6d\x58\xb8\x24\x4c\x59\x59\x19\xfa\xf7\xef\x8f\xa8\xa8\x28\ +\xe4\xe4\xe4\xc8\x1e\x87\xfe\x44\xf4\x1d\x7b\x59\x64\xee\xcc\x60\ +\xe1\x92\x30\x4e\x4e\x4e\x78\xed\xb5\xd7\x10\x13\x13\x83\x8e\x1d\ +\x3b\xe2\x89\x27\x9e\x40\x6c\x6c\xec\x3d\x3f\xe6\x49\x72\x8c\x1a\ +\x35\x0a\x83\x06\x0d\x92\x3d\x86\x6a\x9c\x9d\x9d\xa5\x3e\xe3\x8d\ +\x85\x4b\x42\xbd\xf0\xc2\x0b\x18\x3b\x76\x2c\x00\xe0\xe7\x9f\x7f\ +\xc6\x2b\xaf\xbc\x02\x77\x77\x77\x04\x05\x05\x61\xc3\x86\x0d\xd2\ +\x4e\x89\xa2\xff\x91\x79\xce\x82\xda\x64\x7e\xba\x0e\x60\xe1\x92\ +\x04\xef\xbe\xfb\x2e\x9a\x37\x6f\x7e\xfb\xd7\xe5\xe5\xe5\x48\x4e\ +\x4e\x86\x9f\x9f\x1f\x3a\x75\xea\x84\x79\xf3\xe6\xe1\xf8\xf1\xe3\ +\x12\x27\xb4\x6c\x3d\x7a\xf4\xc0\xd4\xa9\x53\x65\x8f\xa1\x38\x2d\ +\xfc\x73\xb1\x70\x49\x38\x57\x57\xd7\x1a\x3f\x37\x7f\xf6\xec\x59\ +\x44\x47\x47\xa3\x4b\x97\x2e\xf0\xf2\xf2\x42\x4c\x4c\x4c\x83\x1e\ +\x40\x48\x8d\x23\xfb\x9d\xa0\x1a\xb4\xf0\xce\x9d\x85\x4b\x52\x84\ +\x85\x85\xa1\x43\x87\x0e\xb5\xfe\xcc\x6f\xbf\xfd\x86\xa8\xa8\x28\ +\xb8\xb9\xb9\xe1\xd9\x67\x9f\x45\x42\x42\x02\x4a\x4b\x4b\x05\x4d\ +\x68\xd9\x44\x9c\x0d\x2b\x52\x50\x50\x90\x26\xae\x4d\xb3\x70\x49\ +\x0a\x5b\x5b\xdb\x7b\x1e\xd1\x77\x2f\x06\x83\x01\x5b\xb7\x6e\xc5\ +\xf8\xf1\xe3\xe1\xe9\xe9\x89\xb0\xb0\x30\x64\x65\x65\xa9\x3c\x21\ +\x4d\x9d\x3a\x55\xda\xdd\x7c\x25\x39\x38\x38\x48\x7d\xca\xc5\x1f\ +\xb1\x70\x49\x9a\x71\xe3\xc6\xa1\x6b\xd7\xae\xf5\x7a\xcd\xa5\x4b\ +\x97\xf0\xc1\x07\x1f\xe0\xc9\x27\x9f\xbc\xfd\x28\xeb\x13\x27\x4e\ +\xa8\x34\xa1\x65\x93\xb9\x5f\x55\x49\x5a\xda\x5f\xcc\xc2\x25\x69\ +\x74\x3a\x1d\x66\xce\x9c\xd9\xe0\xd7\x9f\x3b\x77\x0e\x31\x31\x31\ +\xe8\xdc\xb9\xf3\xed\x2d\x66\x45\x45\x45\x0a\x4e\x48\xb2\x3e\x91\ +\xa5\x14\xad\x7d\x82\x8e\x85\x4b\x52\x8d\x1f\x3f\x1e\xae\xae\xae\ +\x8d\x5e\xe7\x8f\x5b\xcc\x5e\x7c\xf1\x45\x24\x27\x27\x73\x8b\x99\ +\x42\x4c\xf9\x9c\x05\xad\xcd\xce\xc2\x25\xa9\xec\xed\xed\xf1\xf2\ +\xcb\x2f\x2b\xb6\x5e\x45\x45\x05\xd2\xd3\xd3\x11\x14\x14\x84\x0e\ +\x1d\x3a\x60\xee\xdc\xb9\x77\x3c\x59\x80\xea\x4f\xc6\xa9\x5a\x4a\ +\x90\x79\x0a\x5a\x4d\x58\xb8\x24\xdd\xa4\x49\x93\xa0\xd3\xe9\x14\ +\x5f\xf7\xdc\xb9\x73\x78\xfb\xed\xb7\xf1\xd8\x63\x8f\xc1\xcb\xcb\ +\x0b\xf3\xe7\xcf\xc7\x99\x33\x67\x14\xcf\xb1\x04\x91\x91\x91\x68\ +\xdf\xbe\xbd\xec\x31\xea\x4c\xab\xd7\x9f\x59\xb8\x24\x5d\x87\x0e\ +\x1d\xd0\xb7\x6f\x5f\x55\x33\x7e\xfb\xed\x37\x2c\x58\xb0\x00\x1d\ +\x3a\x74\xc0\xd3\x4f\x3f\x8d\x4f\x3e\xf9\x04\x25\x25\x25\xaa\x66\ +\x9a\x13\x53\x3b\x67\x61\xfa\xf4\xe9\xe8\xd6\xad\x9b\xec\x31\xee\ +\xc2\xc2\x25\x4d\x18\x37\x6e\x9c\x90\x1c\x83\xc1\x80\x1f\x7f\xfc\ +\x11\x53\xa7\x4e\x45\xab\x56\xad\x6e\x7f\xa4\x58\xaf\xd7\x0b\xc9\ +\x37\x65\x81\x81\x81\xc2\x9e\xfd\xd5\x18\x32\x9f\xd5\x76\x3f\x2c\ +\x5c\xd2\x84\x91\x23\x47\x0a\xff\x14\x50\x59\x59\xd9\xed\x8f\x14\ +\x7b\x79\x79\x61\xf1\xe2\xc5\x38\x7b\xf6\xac\xd0\x19\x4c\x8d\x16\ +\x3e\xad\x75\x3f\x8b\x16\x2d\x42\x8b\x16\x2d\x64\x8f\x71\x4f\x2c\ +\x5c\xd2\x84\x56\xad\x5a\xe1\xa9\xa7\x9e\x92\x96\x7f\xec\xd8\x31\ +\xbc\xf1\xc6\x1b\xf0\xf0\xf0\xb8\xbd\xc5\xec\xd2\xa5\x4b\xd2\xe6\ +\xd1\xaa\xee\xdd\xbb\x63\xda\xb4\x69\xb2\xc7\xa8\x91\xb7\xb7\x37\ +\xa6\x4c\x99\x22\x7b\x8c\x1a\xb1\x70\x49\x33\x9e\x7b\xee\x39\xd9\ +\x23\x00\xb8\xf7\x16\xb3\xca\xca\x4a\xd9\x63\x69\xc6\xc2\x85\x0b\ +\xe1\xe2\xe2\x22\x7b\x8c\x7b\xd2\xfa\x3b\x70\xb3\x7f\x6a\xaf\xfe\ +\xcc\x19\x54\xae\x5f\x2f\x7b\x0c\xaa\x03\x5f\x7b\x7b\xcc\x97\x3d\ +\xc4\x1f\x54\x56\x56\x22\x3d\x3d\x1d\xe9\xe9\xe9\x68\xd1\xac\x19\ +\x46\xf6\xeb\x87\x97\x06\x0f\x46\xff\x67\x9e\x81\x4d\xc7\x8e\xd0\ +\x39\x39\xc9\x1e\x51\x8a\x5b\xe7\x2c\xcc\x98\x31\x43\xf6\x28\x77\ +\x18\x3d\x7a\x34\x06\x0e\x1c\x28\x7b\x8c\x5a\xe9\x8c\x46\xa3\x51\ +\x56\xf8\xcd\x39\x73\x50\xb1\x62\x85\xac\x78\xd2\x98\x6a\x00\x9e\ +\xa5\xa5\x28\x95\xf7\x5b\xb2\x4e\x7a\x58\x59\x61\xb4\xad\x2d\x46\ +\xf7\xe8\x01\xb7\xb1\x63\x61\x37\x6e\x1c\x74\x1a\x7d\xc7\xa7\x16\ +\xbd\x5e\x8f\x5e\xbd\x7a\xe1\xe0\xc1\x83\xb2\x47\x01\x00\x38\x3a\ +\x3a\x22\x3b\x3b\x1b\x6d\xdb\xb6\x95\x3d\x4a\x6d\x16\xf0\x92\x02\ +\x69\x86\x0d\x00\x6f\x2b\xed\xff\x96\x3c\x68\x30\xe0\xf5\xf2\x72\ +\x74\xde\xb7\x0f\x3e\x11\x11\x88\x7d\xe4\x11\x14\xbe\xf9\x26\x60\ +\x41\xcf\x6c\xd3\xda\x3e\xd7\x39\x73\xe6\x68\xbd\x6c\x01\xf0\x1a\ +\x2e\x69\x8c\x29\x14\xee\x2d\x06\x00\x99\x7a\x3d\x66\x5d\xbf\x8e\ +\x76\x0b\x17\x62\xb8\xbb\x3b\xd2\x56\xae\x44\x75\x75\xb5\xec\xd1\ +\x84\x18\x34\x68\x10\x82\x82\x82\x64\x8f\x01\x0f\x0f\x0f\x4d\x9d\ +\x97\x50\x1b\xd3\xf9\xdd\x4d\x16\xa1\x87\x86\x6f\x78\xd4\xa6\x02\ +\x40\x4a\x51\x11\xfc\x5f\x7e\x19\xed\xdd\xdd\x31\x73\xe6\x4c\x1c\ +\x38\x70\x40\xf6\x58\xaa\x5b\xba\x74\xa9\xf4\xb3\x0a\x96\x2d\x5b\ +\x06\x7b\x7b\x7b\xa9\x33\xd4\x15\x0b\x97\x34\xe5\x51\x13\x7a\x87\ +\x5b\x93\x0b\x05\x05\x88\x8b\x8b\x43\xaf\x5e\xbd\x30\x70\xe0\x40\ +\x7c\xfa\xe9\xa7\xb8\x76\xed\x9a\xec\xb1\x54\x71\xeb\x88\x4c\x59\ +\x7c\x7d\x7d\x31\x72\xe4\x48\x69\xf9\xf5\x65\xfa\xbf\xbb\xc9\xac\ +\xb4\x53\xe1\x4c\x05\x59\x8c\x46\x23\x76\xed\xda\x85\xc9\x93\x27\ +\xc3\xc5\xc5\xe5\xf6\x53\x2b\x6e\xde\xbc\x29\x7b\x34\x45\xcd\x9e\ +\x3d\x5b\xca\x39\x0b\xd6\xd6\xd6\x88\x8d\x8d\x15\x9e\xdb\x18\x2c\ +\x5c\xd2\x94\x16\x3a\x1d\x9a\x99\x51\xe9\xde\xa2\xd7\xeb\x6f\x3f\ +\xb5\xc2\xcd\xcd\x0d\xa1\xa1\xa1\xd8\xba\x75\x2b\x24\x6e\x12\x52\ +\x8c\x83\x83\x83\x94\x0f\x1b\x0c\x19\x32\x44\x93\xe7\x25\xd4\x86\ +\x85\x4b\x9a\xe3\x66\x86\x85\xfb\x47\xc5\xc5\xc5\xf8\xf2\xcb\x2f\ +\xf1\xec\xb3\xcf\xc2\xd3\xd3\x13\x51\x51\x51\xc8\xc9\xc9\x91\x3d\ +\x56\xa3\xd8\xda\xda\x0a\xcf\x6c\xd2\xa4\x89\xf0\xcc\xc6\x62\xe1\ +\x92\xe6\xb8\x9a\x79\xe1\xfe\xd1\xd9\xb3\x67\x11\x13\x13\x83\x2e\ +\x5d\xba\xe0\xf9\xe7\x9f\x47\x62\x62\x22\xca\xca\xca\x64\x8f\x45\ +\x2a\x61\xe1\x92\xe6\x38\x5a\x50\xe1\xde\xa2\xd7\xeb\x91\x91\x91\ +\x81\xb1\x63\xc7\xc2\xd9\xd9\xf9\xf6\x29\x66\x96\xb2\xc5\xcc\x52\ +\xb0\x70\x49\x73\x1c\x65\x0f\x20\x59\x79\x79\xf9\xed\x53\xcc\xda\ +\xb5\x6b\x87\x99\x33\x67\x62\xff\xfe\xfd\xb2\xc7\x22\x05\xb0\x70\ +\x49\x73\x1c\x2c\xf0\x1d\x6e\x4d\x2e\x5e\xbc\x88\xb8\xb8\x38\xf4\ +\xee\xdd\x1b\x5e\x5e\x5e\x88\x89\x89\x41\x7e\x7e\xbe\xec\xb1\xa8\ +\x81\x58\xb8\xa4\x39\xa6\x77\x2b\x44\x8c\xec\xec\x6c\x6c\xde\xbc\ +\x19\x3b\x76\xec\x30\x8b\xdd\x0d\x96\xc8\xec\x4f\x0b\x23\xd3\x53\ +\xce\x32\xb9\x43\xff\xfe\xfd\x11\x1a\x1a\x8a\xc0\xc0\x40\x38\x3b\ +\x3b\xcb\x1e\x87\x1a\x81\x85\x4b\x9a\x63\x5e\x1f\x0b\x68\x98\xf6\ +\xed\xdb\x63\xc2\x84\x09\x08\x0a\x0a\xc2\x63\x8f\x3d\x26\x7b\x1c\ +\x52\x08\x0b\x97\x34\xa7\xcc\x42\xdf\xe1\x36\x6b\xd6\x0c\x63\xc7\ +\x8e\x45\x48\x48\x08\xfa\xf5\xeb\x07\x2b\x33\xf8\x98\x33\xdd\x89\ +\x85\x4b\x9a\x63\x9e\xa7\x0e\xd4\xac\x4f\x9f\x3e\x08\x09\x09\x41\ +\x70\x70\xb0\x66\x9f\xa4\x40\xca\x60\xe1\x92\xe6\x9c\x37\x18\x64\ +\x8f\xa0\xba\xce\x9d\x3b\x63\xd2\xa4\x49\x78\xe9\xa5\x97\xe0\xee\ +\xee\x2e\x7b\x1c\x12\x84\x85\x4b\x9a\x52\x1b\x39\x74\xbf\x00\x00\ +\x03\x5d\x49\x44\x41\x54\x0d\xa0\xc0\x4c\x2f\x29\x3c\xf4\xd0\x43\ +\x18\x33\x66\x0c\x42\x43\x43\xd1\xbb\x77\x6f\xd9\xe3\x90\x04\x2c\ +\x5c\xd2\x94\x7c\xa3\x11\x7a\xd9\x43\x28\xc8\xd6\xd6\x16\xfe\xfe\ +\xfe\x08\x09\x09\xc1\xd0\xa1\x43\x61\x67\x67\x27\x7b\x24\x92\x88\ +\x85\x4b\x9a\x72\xc6\x4c\x2e\x27\x78\x79\x79\x21\x34\x34\x14\x2f\ +\xbd\xf4\x12\xdc\xdc\xdc\x64\x8f\x43\x1a\xc1\xc2\x25\x4d\x39\x60\ +\xc2\x85\xdb\xde\xca\x0a\xe3\xfa\xf7\xc7\xb8\xf8\x78\x3c\xda\xb5\ +\xab\xec\x71\x48\x83\x58\xb8\xa4\x29\x07\xf5\xa6\x75\x41\xa1\x99\ +\x4e\x87\x91\x36\x36\x08\x6e\xde\x1c\x3e\x71\x71\xb0\x1f\x3b\x56\ +\xf6\x48\xa4\x61\x2c\x5c\xd2\x94\x5f\x4d\xe0\x1d\xae\x0d\x80\x21\ +\x36\x36\x08\xb6\xb1\xc1\x30\x27\x27\x34\x1f\x3f\x1e\x0e\x11\x11\ +\xd0\x3d\xf4\x90\xec\xd1\x48\xe3\xa4\x16\xae\xd5\xc3\x0f\xc3\xba\ +\x67\x4f\x99\x23\x90\x86\x5c\xad\xae\xc6\xa9\xbd\x7b\x65\x8f\x51\ +\xa3\xf6\xf6\xf6\x08\x6e\xd5\x0a\x63\x1e\x79\x04\x9d\xbc\xbd\x61\ +\x33\x60\x00\x9a\x0c\x1b\x06\x5d\xd3\xa6\xb2\x47\x23\x13\x21\xb5\ +\x70\xed\x67\xce\x84\xfd\xcc\x99\x32\x47\x20\x0d\xf9\x36\x29\x09\ +\xfa\x3d\x7b\x64\x8f\x71\x87\x56\xad\x5a\x61\xe2\xc4\x89\x08\x09\ +\x09\x81\x97\x97\x97\xec\x71\xc8\xc4\xf1\x92\x02\x69\xc6\xa6\x4d\ +\x9b\x64\x8f\x00\xe0\xf7\x67\x74\x05\x06\x06\x22\x34\x34\x14\x83\ +\x07\x0f\x86\xb5\x89\x3e\xba\x9d\xb4\x87\x85\x4b\x9a\x60\x34\x1a\ +\xb1\x79\xf3\x66\x69\xf9\x3a\x9d\x0e\x43\x86\x0c\x41\x48\x48\x08\ +\xfc\xfc\xfc\xe0\xe4\xe4\x24\x6d\x16\x32\x5f\x2c\x5c\xd2\x84\x9f\ +\x7e\xfa\x09\x17\x2e\x5c\x10\x9e\xdb\xba\x75\x6b\x8c\x1d\x3b\x16\ +\xe3\xc7\x8f\x47\x8f\x1e\x3d\x84\xe7\x93\x65\x61\xe1\x92\x26\xac\ +\x5c\xb9\x52\x58\x56\xf3\xe6\xcd\x11\x1c\x1c\xcc\x53\xb9\x48\x38\ +\x16\x2e\x49\x57\x56\x56\x86\xa4\xa4\x24\x55\x33\x6c\x6c\x6c\x30\ +\x6c\xd8\x30\x84\x86\x86\xe2\xc5\x17\x5f\x84\xbd\xbd\xbd\xaa\x79\ +\x44\xf7\xc2\xc2\x25\xe9\x36\x6e\xdc\x88\x6b\xd7\xd4\x39\x94\xb1\ +\x63\xc7\x8e\x08\x09\x09\x41\x48\x48\x08\x3c\x3d\x3d\x55\xc9\x20\ +\xaa\x2b\x16\x2e\x49\xf7\xde\x7b\xef\x29\xba\x5e\xeb\xd6\xad\x31\ +\x7e\xfc\x78\x6e\xe5\x22\xcd\x61\xe1\x92\x54\xbb\x77\xef\xc6\xee\ +\xdd\xbb\x1b\xbd\x8e\xa3\xa3\x23\x46\x8e\x1c\xc9\xad\x5c\xa4\x69\ +\x2c\x5c\x92\x6a\xf9\xf2\xe5\x0d\x7e\xed\x1f\xb7\x72\xf9\xfb\xfb\ +\xe3\xc1\x07\x1f\x54\x70\x32\x22\xe5\xb1\x70\x49\x9a\x13\x27\x4e\ +\x20\x35\x35\xb5\xde\xaf\x73\x73\x73\xc3\x4b\x2f\xbd\x84\xd0\xd0\ +\x50\x5e\x32\x20\x93\xc2\xc2\x25\x69\x66\xcd\x9a\x05\x7d\x1d\x4f\ +\x07\x73\x71\x71\xb9\x5d\xb2\x7c\x5a\x02\x99\x2a\x16\x2e\x49\xb1\ +\x69\xd3\x26\x6c\xdc\xb8\xb1\xd6\x9f\x69\xd2\xa4\x09\x02\x02\x02\ +\xf8\xb4\x04\x32\x1b\x2c\x5c\x12\xae\xba\xba\x1a\xb3\x66\xcd\xaa\ +\xf1\xfb\xfd\xfb\xf7\x47\x68\x68\x28\x02\x03\x03\xe1\xec\xec\x2c\ +\x70\x32\x22\x75\xb1\x70\x49\xb8\x0f\x3f\xfc\x10\x47\x8f\x1e\xbd\ +\xe3\x6b\x2e\x2e\x2e\xb7\x3f\xfd\xd5\xa7\x4f\x1f\x49\x93\x11\xa9\ +\x8b\x85\x4b\x42\x1d\x39\x72\x04\x51\x51\x51\x00\x80\xa6\x4d\x9b\ +\x62\xc4\x88\x11\x08\x0d\x0d\x85\xaf\xaf\x2f\x3f\x62\x4b\x66\x8f\ +\x85\x4b\xc2\xe8\xf5\x7a\x4c\x9e\x3c\x19\x03\x06\x0c\x40\x48\x48\ +\x08\x02\x02\x02\xd0\xbc\x79\x73\xd9\x63\x11\x09\xc3\xc2\x25\x61\ +\x0a\x0b\x0b\xb1\x72\xe5\x4a\x3c\xfa\xe8\xa3\xb2\x47\x21\x92\x82\ +\x85\x4b\xc2\xb4\x69\xd3\x06\x6d\xda\xb4\x91\x3d\x06\x91\x34\xbc\ +\x68\x46\x44\x24\x08\x0b\x97\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\ +\x5c\x22\x22\x41\x58\xb8\x44\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\ +\x12\x11\x09\xc2\xc2\x25\x22\x12\x84\x85\x4b\x44\x24\x08\x0b\x97\ +\x88\x48\x10\x16\x2e\x11\x91\x20\x2c\x5c\x22\x22\x41\x58\xb8\x44\ +\x44\x82\xb0\x70\x89\x88\x04\x61\xe1\x12\x11\x09\xc2\xc2\x25\x22\ +\x12\x44\x67\x34\x1a\x77\xc8\x1e\x82\x88\xc8\x02\xac\xfa\x3f\xda\ +\x1e\x33\xf5\x9c\x7d\xbd\xea\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x09\xba\ +\xff\ +\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ +\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x08\x07\x06\x11\x08\ +\x07\x08\x16\x14\x15\x17\x16\x16\x1b\x13\x15\x11\x17\x1b\x20\x1f\ +\x1b\x17\x20\x1d\x1b\x19\x20\x1d\x1f\x1f\x24\x1f\x34\x2c\x1a\x26\ +\x31\x27\x1f\x17\x26\x37\x24\x31\x32\x2b\x3a\x3a\x3a\x23\x1f\x37\ +\x38\x37\x38\x37\x2d\x2e\x3a\x2b\x01\x0a\x0a\x0a\x0d\x0d\x0e\x1b\ +\x10\x10\x1a\x31\x25\x20\x25\x34\x37\x37\x34\x2c\x31\x36\x37\x32\ +\x34\x35\x37\x34\x34\x37\x37\x2c\x2c\x2c\x37\x34\x35\x37\x2f\x2c\ +\x2c\x34\x2c\x2c\x2c\x2c\x34\x2c\x2f\x2c\x34\x2c\x34\x34\x2c\x2c\ +\x2c\x2c\x2c\x2c\x34\x2c\x34\x2f\x34\xff\xc0\x00\x11\x08\x00\xa0\ +\x00\xa0\x03\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ +\x00\x01\x00\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x05\x06\x07\x04\x03\x02\x01\xff\xc4\x00\x40\x10\x00\x01\ +\x02\x04\x01\x08\x06\x07\x07\x02\x07\x00\x00\x00\x00\x00\x00\x01\ +\x02\x03\x04\x05\x11\x12\x06\x13\x15\x16\x21\x56\x93\x94\x31\x41\ +\x55\xa4\xd2\xd3\x14\x24\x51\x53\x61\x64\x71\x22\x32\x35\x75\x81\ +\x91\xb1\x33\x92\x23\x42\x43\x52\xa1\xd1\xf0\xff\xc4\x00\x18\x01\ +\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x03\x02\x04\x01\xff\xc4\x00\x25\x11\x01\x00\x02\x01\x03\x04\ +\x03\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x12\ +\x51\x04\x13\x52\xa1\x14\x33\x71\x34\x31\x32\x21\xff\xda\x00\x0c\ +\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xdc\x40\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\ +\x47\x28\x6f\xac\x0e\xf4\x8c\xfe\x0c\xc4\x1c\x19\x9c\xfe\x1c\x58\ +\xe3\x62\xfe\x9e\xcb\xdb\x37\xd3\xf0\x03\x8b\xd5\x3e\x6f\xbe\x00\ +\xf5\x4f\x9b\xef\x80\x3d\x53\xe6\xfb\xe0\x0f\x54\xf9\xbe\xf8\x03\ +\xd5\x3e\x6f\xbe\x01\xfb\x28\xb4\xd9\xd7\x3d\x92\x75\x07\x3d\x59\ +\x64\x88\xd6\x4c\xc5\x55\x62\xed\x4b\x39\x33\x97\x62\xec\x72\x59\ +\x6d\xd0\xbe\xc0\x3a\x7d\x02\x17\xbd\x8d\xc7\x8d\xe3\x03\x86\x04\ +\xcd\x2a\x69\x98\xe4\xa7\x62\xc6\x4e\x85\x74\xbc\x69\x88\x88\x8b\ +\xd3\x65\x56\x39\x51\x16\xca\x8b\x6f\x8a\x01\xe9\xea\x9f\x37\xdf\ +\x00\x7a\xa7\xcd\xf7\xc0\x1e\xa9\xf3\x7d\xf0\x07\xaa\x7c\xdf\x7c\ +\x00\x9e\x89\x7d\xbe\x97\xdf\x00\xb5\x64\xe6\x7f\x57\xa5\x3d\x2f\ +\x16\x3c\xc4\x2c\x79\xcb\xe2\xc5\x81\xb7\xc5\x7d\xb7\xbd\xef\x70\ +\x24\x40\x00\x00\x00\x00\x00\x00\x00\x00\x02\x2f\x28\x64\xdd\x31\ +\x4f\x7c\x79\x68\x38\xa3\x43\x63\xd6\x0d\xad\x75\x75\xaf\x82\xff\ +\x00\xed\x72\xa3\x51\x53\xe8\xbd\x28\x8a\x81\x0b\x21\x98\xac\xd4\ +\x19\x01\xaa\x91\x20\xac\x1c\xeb\xed\xd0\xe4\x72\xb5\x21\x22\xa7\ +\x5b\x5c\x99\xe5\xb7\x5e\x0b\x2e\xcd\x8a\x16\xe0\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x32\x62\xad\ +\x54\x93\x8b\x0a\x15\x22\x4a\x14\x45\x5a\x7c\x86\x3c\xf4\x45\x6d\ +\x91\x12\x2a\xa5\xac\xd5\xbf\xde\x5f\xd9\x0e\x9a\x62\xc7\xb3\x7d\ +\xe6\x52\xb5\xed\xbb\x6d\x61\x62\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\ +\xb1\xb7\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\ +\x8d\xbd\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\ +\x2c\x6d\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\ +\x63\x6f\x4f\xcc\x9a\xe4\xe2\x0d\x3f\x95\xbd\x8f\x2b\xcc\x3f\xcb\ +\x1b\x7a\x7e\x64\xd7\x27\x10\x69\xfc\xad\xec\x79\x5e\x61\xfe\x58\ +\xdb\xd3\xf3\x26\xb9\x38\x83\x4f\xe5\x6f\x63\xca\xf3\x0f\xf2\xc6\ +\xde\x9f\x99\x35\xc9\xc4\x1a\x7f\x2b\x7b\x1e\x57\x98\x7f\x96\x36\ +\xf4\xfc\xc9\xae\x4e\x20\xd3\xf9\x5b\xd8\xf2\xbc\xc3\xfc\xb1\xb7\ +\xa7\xe6\x4d\x72\x71\x06\x9f\xca\xde\xc7\x95\xe6\x1f\xe5\x8d\xbd\ +\x3f\x32\x6b\x93\x88\x34\xfe\x56\xf6\x3c\xaf\x30\xff\x00\x2c\x6d\ +\xe9\xf9\x93\x5c\x9c\x41\xa7\xf2\xb7\xb1\xe5\x79\x87\xf9\x63\x6f\ +\x4f\xcc\x9a\xe4\xe2\x17\x53\x99\x50\x00\x00\x00\x00\x01\x93\xe4\ +\x6f\xe2\x2c\xfc\xb6\x47\xf8\x71\xd3\x6f\xe7\x8f\xd4\xa3\xec\x9f\ +\xc5\xc4\xe6\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ +\x00\x00\x00\x00\x06\x4f\x91\xbf\x88\xb3\xf2\xd9\x1f\xe1\xc7\x4d\ +\xbf\x9e\x3f\x52\x8f\xb2\x7f\x17\x13\x99\x50\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x2c\xe0\x00\x00\x00\x00\x00\x19\x3e\x46\xfe\x22\ +\xcf\xcb\x64\x7f\x87\x1d\x36\xfe\x78\xfd\x4a\x3e\xc9\xfc\x5c\x4e\ +\x65\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x80\x00\x00\x00\ +\x00\x00\x63\x74\x0a\x9c\xad\x32\x76\x14\x49\xc7\x39\x11\xd4\xe9\ +\x14\x4c\x2d\x73\xb6\xd9\xcb\xd4\x9b\x0e\xca\xe3\xb5\xf0\x44\x57\ +\x94\x26\xd1\x5c\x93\x32\xb5\x53\xab\x92\x35\x28\xf9\x89\x47\x3d\ +\x56\xd7\x5c\x50\xde\x89\x6f\xaa\xa1\x1b\xe0\xbd\x23\x5b\x29\x5c\ +\x95\xb4\xe9\x05\x46\xb9\x23\x4d\x8f\x98\x9b\x73\xd1\x6d\x74\xc3\ +\x0d\xea\x96\xfa\xa2\x0a\x60\xbd\xe3\x5a\x96\xc9\x5a\xce\x92\xe5\ +\xd6\xda\x42\x7f\xa9\x13\x85\x13\xc2\x6f\xe2\xe5\xe1\x9e\xf5\x12\ +\x53\xd5\x19\x79\x09\x54\x99\x99\xc4\x8d\x5b\x74\x31\xca\xa9\x7f\ +\x6a\x22\x5d\x09\x53\x1d\xaf\x6d\xb0\xdc\xda\x22\x35\x94\x6e\xb6\ +\x52\x3d\xe4\x4e\x14\x4f\x09\x5f\x8b\x95\x9e\xed\x12\x52\x35\x19\ +\x79\xf9\x55\x99\x96\xc4\xad\x4b\xf4\xb1\xc8\xab\x6f\x62\x2a\x5d\ +\x49\x5f\x1d\xa9\x3b\x65\xa8\xb4\x4c\x6b\x08\xdd\x6d\xa4\x7b\xc8\ +\x9c\x28\x9e\x12\xbf\x17\x2f\x0c\x77\xa8\xea\xa7\x57\x24\x6a\x51\ +\xf3\x12\x8e\x7a\xad\xae\xb8\xa1\xbd\x12\xdf\x55\x43\x17\xc1\x7a\ +\x46\xb6\x6a\xb9\x2b\x69\xd2\x1f\x33\xb9\x43\x4e\x91\x99\x59\x79\ +\x97\x3d\x1c\x9d\x36\x86\xf5\x4f\xdd\x13\x69\xed\x3a\x7b\xda\x35\ +\x82\x72\x56\x27\x49\x78\xb3\x2a\xa9\x4f\x7a\x31\x8f\x88\xaa\xaa\ +\x88\x89\x9a\x89\xd3\xfd\xa7\xbf\x17\x23\xce\xed\x5d\xd5\x3a\xa4\ +\xad\x2d\x8d\x7c\xe2\xb9\x11\xca\xa8\x8a\xd6\x39\xdb\x7f\x44\xd8\ +\x4f\x1e\x2b\x64\xff\x00\x96\xad\x68\xaf\xfa\x8f\xd6\xca\x47\xbc\ +\x89\xc2\x89\xe1\x2b\xf1\x72\xb3\xdd\xa3\x44\x39\x94\x00\x00\x00\ +\x00\x00\x18\xdd\x02\x99\x2b\x54\x9d\x85\x0e\x71\xae\x54\x6d\x3a\ +\x45\x53\x0b\x9c\xdd\xb6\x72\x75\x2e\xd3\xb2\xb9\x2d\x4c\x11\x35\ +\xe5\x09\xac\x5b\x24\xc4\xad\x32\x14\x0a\x7d\x3e\x63\x3f\x2c\xc7\ +\x23\xad\x6f\xb5\x11\xeb\xff\x00\x0a\xa4\x6f\xd4\x5e\xf1\xa4\xa9\ +\x18\xeb\x13\xac\x3f\x6a\x34\x2a\x7d\x4a\x3e\x7e\x6a\x1b\xb1\x5a\ +\xd7\x6b\xdc\xdd\x9f\xa2\x8a\x67\xbd\x23\x48\x2d\x8e\xb6\x9d\x65\ +\xcc\x99\x29\x48\x45\xba\x43\x7f\x16\x27\x88\xdf\xcb\xcb\xcb\x3d\ +\x9a\x24\x6a\x14\xe9\x6a\x8c\xb2\x4b\xcd\x35\x55\xa8\xa8\xa9\x67\ +\x2a\x2d\xd3\xe2\x8b\x72\x34\xc9\x6a\x4e\xb5\x6e\xd5\x8b\x46\x92\ +\x8d\xd5\x3a\x47\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb3\xda\xa2\x4e\ +\x4e\x42\x5e\x4e\x53\xd1\x60\x35\x70\x6d\xd8\xe5\x55\xe9\xe9\xda\ +\xaa\x46\xf9\x2d\x6b\x6e\x9f\xf5\xa8\xac\x44\x68\x8c\xd5\x2a\x47\ +\xbb\x89\xc5\x89\xe2\x2d\xf2\xb2\xb1\xd9\xa3\xaa\x9d\x42\xa7\xd3\ +\x63\xe7\xe5\x61\xbb\x15\xad\x77\x3d\xce\xd9\xfa\xa9\x8b\xe7\xbd\ +\xe3\x49\x6a\xb8\xeb\x59\xd6\x1f\x33\xf9\x3f\x4e\x9f\x99\x59\x89\ +\x96\x3d\x5c\xb6\xbd\xa2\x3d\x3a\x3e\x08\xa2\x9d\x45\xe9\x1a\x41\ +\x6c\x75\x99\xd6\x5e\x2c\xc9\x4a\x43\x5e\x8e\x48\x4f\xd8\xb7\xdb\ +\x16\x22\xa7\xea\x98\xb6\x9a\xf9\x59\x79\x79\xda\xa3\xbe\xa7\x4c\ +\x95\xaa\x43\x6c\x39\xc6\xb9\x51\x16\xe9\x85\xce\x6e\xde\x8e\xa5\ +\xda\x4f\x1e\x4b\x63\xff\x00\xda\xb5\x6a\xc5\xbf\xd4\x76\xa9\xd2\ +\x3d\xdc\x4e\x2c\x4f\x11\x5f\x95\x95\x9e\xd5\x1a\x21\xcc\xa0\x00\ +\x00\x00\x00\x00\xc9\xf2\x37\xf1\x16\x7e\x5b\x23\xfc\x38\xe9\xb7\ +\xf3\xc7\xea\x51\xf6\x4f\xe2\xe2\x73\x2a\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x03\x1e\xc9\xa8\xb3\x10\ +\xe7\xe0\xb6\x4e\x13\x5c\xe7\x48\xd3\xda\x88\xe5\xb2\x2a\x2a\x3e\ +\xfb\x7a\x96\xc9\xb0\xe9\xb7\xd1\x1f\xa9\x47\xd9\x3f\x8b\xac\xbc\ +\x76\x47\x66\x26\x22\xa5\x95\x51\xc8\xe4\xb2\xb5\xc9\xd2\x8a\x9d\ +\x4a\x73\x2a\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x38\x00\ +\x00\x00\x00\x00\x06\x41\x92\xb1\x19\x06\xb1\x2b\x16\x2b\xd1\xad\ +\x49\x3a\x7a\xb9\x5c\xb6\x44\x44\x6c\x4b\xaa\xaf\x51\xd3\x6f\xa2\ +\x3f\x52\x8f\xb2\x7f\x16\x79\xfa\xac\x09\xfa\xa4\x38\xb4\xb8\x2e\ +\xc6\xe4\x5c\x6a\xeb\x35\x1c\xc6\xb9\x1a\xe4\x54\x55\x45\xc4\xd4\ +\x73\x55\x16\xdd\x0e\x4f\x6e\xce\x75\x52\x27\x80\x00\x00\x00\x00\ +\x00\x00\x00\x00\x0b\x38\x00\x00\x00\x00\x00\x06\x51\x93\x59\x3c\ +\xfa\xd6\x69\x61\x4f\xac\x2c\x32\x14\xf5\x5f\xf0\xd8\xf4\x5b\xe7\ +\x6d\xb1\xc9\xb2\xca\xc4\x5b\xfc\x4e\x8a\x66\xac\x53\x6d\xab\xaa\ +\x76\xa4\xcc\xeb\x12\xb0\x6a\x2c\xff\x00\xa5\xfa\x4e\xb3\xc4\xc5\ +\x7b\xff\x00\x46\x1f\xde\xb6\x1c\x5f\x5b\x6c\x3d\xee\xe2\xf0\xf6\ +\x6c\xbf\x93\xa3\x54\x6a\xdb\xd3\x13\x83\x0c\x77\x71\x78\x7b\x79\ +\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\ +\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\ +\x8d\x5b\x7a\x62\x70\x61\x8e\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\ +\xde\x98\x9c\x18\x63\xbb\x8b\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\ +\x27\x06\x18\xee\xe2\xf0\xf6\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\ +\x86\x3b\xb8\xbc\x3d\x9b\x2f\xe4\x6a\x8d\x5b\x7a\x62\x70\x61\x8e\ +\xee\x2f\x0f\x66\xcb\xf9\x1a\xa3\x56\xde\x98\x9c\x18\x63\xbb\x8b\ +\xc3\xd9\xb2\xfe\x46\xa8\xd5\xb7\xa6\x27\x06\x18\xee\xe2\xf0\xf6\ +\x6c\xbf\x91\xaa\x35\x6d\xe9\x89\xc1\x86\x3b\xb8\xbc\x3d\x9b\x2f\ +\xe4\xb7\x9c\xca\x80\x00\x00\x00\x04\x0d\x6a\xad\x2d\x37\x25\x1a\ +\x9d\x4c\x9e\x6b\xa3\x39\xaf\x86\xab\x05\xe8\xab\x05\x56\xed\x57\ +\x39\x5a\xbf\x61\x51\x6f\x64\xd8\xaa\xa9\x64\xe8\x55\x40\xe1\x95\ +\x56\xd3\x6a\x2d\x9c\x85\x0e\xd0\xf3\x79\xb8\x8d\x63\x7f\xca\x8b\ +\x78\x6a\x88\x9d\x28\xcb\xc4\x4c\x29\xd4\xf5\xf6\x22\x28\x59\x64\ +\xe7\x25\x67\xa0\x24\xc4\x94\xcb\x22\x31\x6f\x67\x43\x72\x39\x16\ +\xdb\x17\x6a\x6c\x03\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x29\ +\xf9\x47\x48\x85\x39\x94\x2e\x99\x9c\xa2\xa4\xc3\x73\x10\x5a\xc7\ +\x2c\x36\x3e\xce\x47\xc6\x57\x27\xda\xe8\xfb\xcc\xff\x00\xc8\x07\ +\x06\x81\xa6\x6e\x93\x79\x68\x40\x34\x0d\x33\x74\x9b\xcb\x42\x01\ +\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\x26\xf2\xd0\x80\x68\ +\x0a\x66\xe9\x37\x96\x84\x04\x8b\x16\x3c\x38\x69\x0e\x1d\x2e\x32\ +\x22\x22\x22\x22\x31\x11\x11\x13\x62\x22\x25\xf6\x01\xf5\x8e\x67\ +\xb3\x63\x7f\x62\x7f\xd8\x1c\x53\x74\xb9\x59\xd8\xd9\xe9\xdc\x9b\ +\x58\x8e\xb2\x26\x28\x90\x21\xb9\x6c\x9d\x57\x50\x3c\x74\x0d\x33\ +\x74\x9b\xcb\x42\x01\xa0\x69\x9b\xa4\xde\x5a\x10\x0d\x03\x4c\xdd\ +\x26\xf2\xd0\x80\x68\x1a\x66\xe9\x37\x96\x84\x01\x28\x34\xbb\xed\ +\xc9\x26\xf2\xd0\x80\xb7\x64\xdc\xbc\x59\x4c\x9d\x94\x96\x98\x66\ +\x17\x32\x04\x26\xb9\xab\xd4\xe4\x63\x51\x53\xf7\x02\x44\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x0f\xff\xd9\ +\x00\x00\x0f\x3e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x0f\x05\x49\x44\x41\x54\x78\xda\xed\x5d\x4d\x8f\x25\x55\ +\x19\x7e\xde\x53\xd5\x33\x3d\x03\x4c\xc3\xe0\x1f\x10\x91\x09\x8e\ +\x44\x18\x62\x94\x8d\x09\x19\x22\x31\x44\x25\xc6\x10\x09\x62\x5c\ +\x20\x02\x2a\x0b\x70\x65\xc2\xc6\xa8\x0b\x17\x46\x12\x12\x75\x12\ +\x16\x93\xb0\x70\x0b\xc4\x10\x4d\x98\x49\xc4\x64\x94\x88\xc8\xa2\ +\x51\xc1\x0f\x70\xe5\x47\xec\x61\x9a\x99\xe9\xe9\x7b\xeb\xbc\xaf\ +\x8b\x3a\xa7\xee\xa9\x53\x5f\xb7\xbe\xfa\xde\xee\x3e\xa7\x73\x52\ +\xf7\xa3\x6e\x77\xdf\x7a\x9e\xf7\x79\x9f\xf7\x9c\x53\x55\x40\x68\ +\xfb\xba\xd1\x90\xbf\x4c\x41\x51\x38\xa4\x7d\xc0\xa0\xc2\x63\x02\ +\x41\x41\xe5\xb6\xee\x63\x00\xb8\x80\x0b\xb2\x30\x02\xd4\x80\x1e\ +\xc8\xd0\x93\x0c\xfe\x8f\x47\x04\x71\xdf\xb3\x9f\x39\x8f\xf3\xb2\ +\x23\x04\x20\x10\x55\xfc\x9e\x00\xfc\x40\x4a\x30\x07\x09\x72\x44\ +\x00\x20\xf6\xb3\xf3\x12\x81\x06\x00\x9e\x2a\x1e\x87\xb6\x73\x2a\ +\x20\xee\x63\x00\x19\xf8\x4d\x44\xa0\x2e\xe0\x0b\x84\x1c\xc0\x6d\ +\x57\xde\xf3\xa0\x08\x03\x79\x01\xef\x47\x14\x94\x4b\x00\x51\x50\ +\x42\x20\xb6\xe0\x3b\x24\x10\x02\x61\x03\x1b\xd2\x9b\x00\x04\x22\ +\x49\x89\xe5\x02\xee\xf6\xa8\x82\x04\x81\x00\xc3\xa6\x02\xb1\xe0\ +\x1b\xe0\x45\x41\x31\x81\xb4\x21\x01\x03\xb0\xdb\x46\x12\x50\x07\ +\xf0\x7d\xd0\x63\xd3\x23\x87\x04\x2a\x90\x60\x14\x12\x88\x43\x02\ +\x0b\x3c\x2b\x28\x6d\x08\x90\x98\xae\x2d\x11\x0c\x19\x04\x40\x29\ +\x09\xa8\x23\xf8\x16\xf8\x95\xeb\x1f\x78\xe5\x7f\x01\xa6\x81\x9b\ +\x58\x9c\xc4\x64\x73\x01\x89\x00\xc2\x20\x61\x10\x33\x88\x35\x48\ +\x6b\x5c\x78\xfe\xbe\x63\x0a\x2a\x51\x50\x53\x02\x4d\x08\x34\x25\ +\xd0\x14\x40\x42\x20\xdd\x44\x02\x6a\x09\xbe\x8d\xf2\x15\x00\x07\ +\xae\x7f\xe0\x95\xff\x04\xb4\x16\x40\x02\x4b\x00\xd6\x50\x3a\xc1\ +\x85\x17\xee\xbf\x4d\x41\x6d\x13\xc8\xf6\x89\x25\x03\x00\x0d\x40\ +\x1b\x02\xb0\x4f\x02\xea\x08\xfe\xc1\xeb\x1f\x78\xe5\xdf\x76\xdf\ +\x1f\x7c\xf3\xf6\xca\xef\xf1\xf0\x27\x0f\x05\x30\x7b\xb4\x9f\x9d\ +\xbb\x0c\x88\x40\x44\xd2\xad\x66\xb0\xd6\xe0\x69\x82\xef\x9f\x7a\ +\x0d\xa4\x35\x88\xa7\xd8\x7c\xf1\xc1\x3b\x14\xd4\x16\x81\xb6\x08\ +\x74\x85\x40\x57\x00\x4c\x08\x34\x71\x48\x60\x7d\x41\x46\x02\xd5\ +\x12\xfc\x03\x6d\xc0\x0f\x6d\x00\x0f\x40\x04\x10\xa5\x5b\x10\xa0\ +\x08\xa4\x08\x14\x29\x7c\xe7\xa1\xdb\x00\x22\x80\x14\xd6\xee\x39\ +\x7d\x4e\x20\x47\x00\x5c\x03\xe0\x30\x80\x43\x00\x0e\x1a\xcc\x62\ +\xdf\x9f\x1d\xc5\x51\xaa\x54\x00\x43\x00\x37\xe7\xc7\xa5\x91\xff\ +\x8d\xdb\x1b\x5d\x84\x55\x80\xf5\xf5\xf5\x80\x66\x8b\x76\xfc\xf8\ +\x71\x00\xc0\xa9\xdf\x6e\xa5\x89\x80\x39\x53\x01\x4e\x34\x44\x6b\ +\x70\x92\x40\x6f\x4f\xf0\xc3\x67\x5f\x07\x71\x02\xd2\x09\x36\x5f\ +\x7a\xe8\x4e\x05\x75\x09\xc0\x45\x02\x5d\x36\x4a\xb0\x0d\x60\x4a\ +\xa0\xc4\xa8\x41\x96\x0e\x54\x0d\xf8\x6e\xf4\x97\x83\x1f\xda\x4e\ +\x4a\x81\x51\x81\x99\x2a\xa4\x68\x29\x7c\xfb\x2b\xb7\x64\xe8\xad\ +\xdd\x7d\xea\xac\x40\xae\x01\x70\x35\x80\xab\x00\xac\x96\xa8\x40\ +\x56\xa1\x51\xc5\x40\x8f\xeb\xf6\x0f\x18\xc3\xf7\xdf\x2e\xe0\x3f\ +\x7c\x47\xf0\x00\x7d\xda\xa9\x73\x46\x01\xac\x07\x60\x81\x30\x83\ +\x93\x04\x92\x24\xd0\xd3\x29\xf4\x64\x0a\xde\x9e\xe0\xc7\xcf\xbd\ +\x61\xcc\x21\x63\xf3\x57\x8f\x9d\x24\xd0\xfb\x04\xba\x08\xe0\x12\ +\x80\x2d\x02\x6d\x03\xb0\xc6\x90\x01\x70\xa6\x00\xce\xa4\x8e\x1b\ +\xfd\x31\x80\xb8\x2b\xf8\xa1\x8d\xec\x0d\x5c\x27\x4f\x84\x6f\x7d\ +\xe9\x78\xf6\xda\x91\xbb\x9e\x79\xd9\xa8\x80\xeb\x07\x56\x1c\x25\ +\x20\x00\xa4\x2a\x06\x87\x32\xf9\x77\xeb\xfc\xef\x3d\x76\x02\x2c\ +\xd2\xaa\x87\xd6\xaf\xd5\x1e\xdf\x2c\x99\xa7\xcf\x45\x04\x8f\x7e\ +\xf1\xe6\x19\x09\x4e\x3e\x7d\xc6\xa4\x81\x43\x00\x56\x05\x62\x53\ +\x41\x66\x06\x55\xc5\xc0\x90\x6b\xfe\x00\x00\xdf\x7d\xf4\x04\x58\ +\xd0\xba\x87\xd6\x97\x00\xcd\x5d\x84\x20\x48\x3b\x03\xf8\xda\x17\ +\x8e\x65\x48\x0a\xa4\xb6\x22\x88\x3d\xf9\x77\x15\xc0\x96\x7e\xf9\ +\x71\x89\x8e\x2d\x54\x01\xdd\xaa\x00\x7b\xdc\xc5\x4c\xef\x48\x59\ +\x47\xf1\x35\x6b\x1c\x8d\x09\xbc\x62\x08\xb0\x6d\x08\x60\xab\x01\ +\x8e\x9b\x52\x80\xcb\xc4\xf6\x89\x2a\x00\xd9\x5b\x01\x30\x03\xde\ +\x27\x40\x4e\x09\x0c\x46\x52\xc4\xea\xa0\x97\xff\x63\xb7\x12\x88\ +\x2b\xe0\x72\x55\x00\x00\xa0\xbb\x48\x80\x14\x19\x1d\x5a\xbb\xa6\ +\x0d\x9a\x59\x15\xe0\x75\x5d\xf0\x06\xf0\xbd\xd7\x8a\xd3\xdd\xfc\ +\xaf\x7c\x02\xb8\x24\x28\xcc\xeb\x33\x87\x28\x5f\x94\x07\xa8\x4d\ +\x01\x9c\x62\xc3\x6c\x94\x80\x0b\x0a\x50\x36\x53\x5b\xaa\x00\x65\ +\x24\x50\x33\x05\x68\x8e\xf2\xd0\xc6\x50\x80\x12\x02\xb0\xe9\x4e\ +\x0a\xd0\x52\x99\x02\x54\x19\xf0\x2e\x3b\x50\xe3\x03\x0a\xff\x48\ +\xc8\xf7\x3b\x4c\x80\x12\x05\x80\x89\x74\x71\xa3\xde\xe9\xc2\xa5\ +\x04\x28\x5b\xa8\x43\xf1\xbc\xb0\x26\x3d\x6b\xba\x50\x05\x74\xab\ +\x02\x12\x5d\xf4\x00\xd0\xe9\x88\x20\x9b\x2e\xae\x07\x30\xcf\x1b\ +\x02\xbb\x51\x01\x2a\xa5\x28\x28\xc0\x72\x28\x80\xb8\x2a\xe0\x46\ +\xbf\x14\xfc\x5a\xd9\x3a\x4d\xb4\x26\xc0\xb4\xa7\x02\x84\x2a\xa0\ +\x5b\x9b\x7a\x0a\x30\x9b\x0f\x98\xa9\x40\x4a\x02\xfb\x58\x5a\x95\ +\xec\xc3\x29\x40\x50\x81\x1d\x51\x00\xb8\x26\x90\xf3\x5e\xc0\x9a\ +\x42\xe1\x11\x08\x90\x70\x00\x63\x11\x2d\xd1\xf5\x04\xc8\xc0\x77\ +\xc8\x20\x0b\x53\x80\xd0\x46\x2f\x03\x0b\x04\xf0\xc1\xe7\x91\x14\ +\x60\x1a\xaa\x80\x85\x54\x01\x53\x2e\xf7\x00\x30\x6e\xdf\xe6\x7f\ +\x7f\x84\x30\x28\xc0\x1e\x57\x00\x70\xb9\x17\x18\x4d\x01\x92\x50\ +\x05\x2c\xc6\x03\xd4\x29\x80\xed\xe2\x6c\x47\x53\x00\x67\x99\xfa\ +\x5c\x2d\x54\x04\xc3\x56\x01\x3c\x53\x00\x3f\xfa\x61\x14\x00\xec\ +\x4d\x07\x2f\x34\x05\x84\x39\x82\xd1\x52\x40\xe9\xf4\x30\x66\x86\ +\x10\x63\xa4\x00\x0e\x1e\x60\x21\x8d\xcb\x08\xe0\x44\xbe\x78\x55\ +\x01\x46\x53\x00\x09\x55\xc0\x22\xaa\x00\x7b\xdc\xc5\x9b\x07\x16\ +\x13\xf6\xe2\x9e\x35\x94\x11\x65\x04\x0f\x10\xd6\x77\x2e\xa6\x89\ +\x34\xa7\x00\x37\x15\x8c\xa6\x00\x7d\x17\x78\x86\x2a\xa0\x63\x0a\ +\xa8\x20\x80\x7d\x6d\xd7\x10\x20\xb4\x81\x09\xe0\x02\x8e\xec\x04\ +\xe2\xd6\x4a\x1d\x08\xb0\x17\x08\xe0\x45\xfe\x28\x0a\x10\xf0\x5f\ +\x90\x07\xa8\x39\xfe\xd2\xb0\x5d\x2a\x05\x08\x55\x40\x37\xcf\x54\ +\xab\x00\xa8\x56\x83\x50\x05\xec\xf1\x2a\x00\x15\xf2\x3f\x9a\x09\ +\x94\x50\x05\x2c\x3f\x01\x64\x89\x09\x10\xda\xb8\x04\xe8\x22\xff\ +\xed\x3c\x40\xc0\x62\x31\x55\xc0\x1c\xc6\x4e\x7a\x98\xf5\xa0\x00\ +\xbb\x5c\x01\x0a\xef\x8d\x56\x06\x86\xb9\x80\x85\x54\x01\x52\x31\ +\x17\x50\x98\x17\xb0\xc8\x8b\x04\x0f\xb0\xaf\x14\xc0\x8f\xfa\xb1\ +\xca\x40\x1e\x88\xd1\xa1\x0d\xef\x01\xba\xe6\xff\xa0\x00\x7b\x45\ +\x01\xca\x06\x88\x02\x01\xf6\x2f\x01\x10\x66\x03\xf7\x50\x0a\x68\ +\x4b\x00\x60\x39\x87\x82\x43\x15\xd0\xb5\x0a\x58\x16\x05\x08\x98\ +\x2c\xd4\x04\x8e\xd5\x76\x6c\x1c\x20\x54\x01\x5d\x3d\x80\xb7\xfc\ +\x67\xde\x1e\x3c\xc0\xde\xf2\x00\x73\x4b\xbe\x8c\xa6\x00\x01\x8c\ +\x45\x56\x01\xf3\xe6\x7e\x0a\x55\xc0\x3e\x50\x00\x54\x03\x2f\xa3\ +\x55\x01\x3d\xbf\x48\xa8\x02\x3a\x56\x01\xcb\x63\x02\x03\x28\x4b\ +\x99\x02\x90\x9e\x86\x29\xbe\x1a\x2c\x5b\x0a\x08\x55\xc0\x08\x26\ +\x10\x5e\xde\x37\x8f\xdb\x40\xa5\xc2\x21\xde\xdf\x6d\xf4\x14\x70\ +\xe2\x47\x1b\xad\xf6\x27\xef\xb4\xf2\xa6\x1b\xd2\x53\xd3\xfb\xe8\ +\xf7\xf9\xa6\xd6\x74\xd6\xb4\xaf\x9c\x4d\xc7\xd1\x7f\x3b\xa6\xfa\ +\x14\x40\xce\x52\x30\x1a\x75\x55\x70\x08\x96\xc5\x78\x80\xa5\x51\ +\x80\x80\xc5\x52\x13\x80\x9c\x7d\xdb\x88\x5a\xf0\x00\xc1\x03\xf4\ +\x63\xe4\xd8\x39\x76\xaf\xb5\xc6\xe3\x21\xe3\xe2\x11\x14\x20\xb4\ +\x7e\x0a\x10\x02\x7a\xc9\x14\xa5\x27\x2e\x41\x01\x82\x02\x74\x1f\ +\x07\xe8\x54\x83\x53\xfd\x3e\x7b\x7d\xd2\x89\x5a\xee\x40\x73\xd8\ +\x02\xb7\xf6\xa7\x96\xe7\x06\xf6\x53\x00\xa9\xfe\x0e\x21\x55\x0c\ +\x4b\x1a\x1a\xa9\x3e\x8f\x77\x84\xd5\xa1\x8d\xa2\x1e\x43\x88\x65\ +\xdc\x0b\x64\x0a\xe0\x2f\x9c\x10\x54\x54\x08\x1a\x45\x01\xa8\xe6\ +\xa5\x1a\x22\x50\xf0\x00\xf9\x9c\x4b\xc3\x0c\x03\x08\x39\x1e\xa1\ +\x70\x2b\xa8\x9d\x52\x80\xa0\x02\x0b\x8d\x7e\x97\x04\x5d\x53\x71\ +\x2f\x13\x48\x01\xfc\xc5\x9b\xc3\x9e\x00\xc4\x6d\xc0\x0e\x6d\x49\ +\x89\x60\x64\x9f\x68\xc4\x14\xd0\x95\x18\x8a\x42\xc5\xd0\xc7\x03\ +\xd4\xdd\x01\x70\x67\xab\x80\xa0\x00\xcb\x5b\x05\x38\x91\xdf\x16\ +\xa7\x78\x90\x7f\x22\xb4\x1d\xab\xfd\xbb\x56\x0d\xe3\x55\x01\xa1\ +\xed\xea\x36\x8c\x02\x50\xf7\x9c\xe7\xbf\xfd\xee\x6b\x6f\xee\xe9\ +\x03\x7e\xd3\x27\x3e\x52\x1b\xc2\x6d\x3c\x40\xd9\x20\x50\xdb\x60\ +\x1d\x64\x1c\x20\xb4\x7d\xac\x00\x63\xb5\x9f\xde\xfb\x2f\xcf\x84\ +\x52\xb6\x75\xbb\x52\x0a\x44\x84\x28\x8a\xa0\x94\x42\x1c\xc7\x88\ +\xa2\x28\xb7\xad\xea\xee\x7e\xf6\xf3\x51\x14\xe5\x7e\xaf\x52\xaa\ +\xf4\xef\xba\xff\xd3\x3c\xed\x03\x5f\xfe\xcd\xee\xf6\x00\x41\x00\ +\xf6\xb9\x02\x54\x91\x9d\x5a\xae\xdb\x27\x8f\x32\xfb\x8d\x40\xca\ +\x3b\x20\xe2\x1f\x1f\x6f\x32\x5f\xaa\xc2\xde\x4b\xfe\xb9\x41\xa0\ +\x16\x07\x35\xac\x08\x0a\x0a\xb0\x3b\xda\xe9\xd3\xa7\x3b\x7d\xee\ +\xa9\xa7\x9e\x0a\x28\x07\x05\x08\x6d\x3c\x0f\xd0\xe0\x0e\x55\xc3\ +\x02\x80\x79\xd3\x95\xd6\x7a\x8f\x78\x80\xa6\xba\xbf\x62\xdd\x8f\ +\x34\x8c\x07\xf8\x6b\x02\x82\x02\x84\xb6\xa3\x1e\x60\xec\xc9\xa2\ +\x24\x49\xf6\x25\x40\x54\x26\x95\x34\xdc\xb9\x9a\x41\x01\x82\x02\ +\xb4\x64\x62\x21\xf2\xa9\xe5\x38\x40\x37\xe5\xd8\x2b\x1e\xa0\xed\ +\x79\x01\x22\x54\xba\x13\x51\x71\xee\x97\x82\x02\x84\xb6\x34\xe3\ +\x00\x43\x5b\x02\xde\xa7\xf7\xaf\x27\xd4\x17\x01\x83\x78\x00\x0a\ +\x23\xfa\xbb\xbc\x55\x5c\x2a\x74\x8e\x73\xc4\x5a\x8c\x03\xd0\x5c\ +\x91\x3e\x54\xce\x6f\xeb\x35\x76\x4d\x44\xb7\x3d\xbd\xc7\x5b\xfa\ +\x2d\xee\xed\x42\x21\x85\xa5\xc1\x99\x37\x90\x16\x0a\xe0\x58\x8b\ +\x10\x4c\x4b\x1f\xe9\xce\xc0\x50\x76\x71\x68\xe4\xaf\x2b\xef\x44\ +\x7e\x13\xa6\x59\x0a\x70\x77\xcc\x7d\x28\x5c\x21\x72\x09\x70\x97\ +\x22\xc0\x52\x22\xf5\x0d\x58\x95\x91\x21\x2e\x7b\x53\x20\x20\x10\ +\xa4\xcb\x4d\x68\x42\x1b\x1e\x7c\x1b\xf2\xe2\x44\x3e\x04\x60\x4e\ +\x7b\xee\x52\xf1\xe9\xfb\x34\x27\x68\xb1\x05\xdf\x82\xee\x93\x20\ +\x9d\x7b\x96\xd9\x3c\x75\xb6\x1a\x66\xde\x71\x82\x86\xfd\x68\xde\ +\xe3\xb0\x37\x59\x58\x6b\x6d\x72\x51\x0f\x40\x18\x04\x4e\xd1\x11\ +\x06\xc0\x06\x68\x36\xcf\x05\x90\x76\xd5\x52\x9c\xe6\x01\x05\x31\ +\x3f\xf9\x8c\x63\x15\x80\xd2\x7f\x82\x68\xf6\x4f\x85\x13\x05\x46\ +\x8e\x78\xf7\xb9\x73\x73\x60\x71\x22\xdf\xed\x7e\x9a\x98\xb3\x78\ +\x8c\x9b\x8c\x02\x89\x98\x55\x2b\x4e\x2a\x70\x89\x30\xd2\x01\xf0\ +\x23\xbe\x6b\x15\x20\xe6\xce\x9a\x6d\xba\xfb\xf7\x07\x53\x1e\x69\ +\x79\x5f\x57\xf1\xae\xff\x9e\x81\xad\x9d\xad\xe9\x62\xdf\x33\xfb\ +\xb5\xb8\x85\x78\x4e\x01\xb8\xec\x0e\x35\xc2\x20\x28\x27\xf2\x31\ +\xb2\x27\x90\x41\x47\x3e\x96\x86\x00\xad\x6e\xec\xeb\x3a\x7d\xce\ +\x47\xbd\x66\x80\x13\xe7\x31\x03\xda\x90\xc0\xca\xbf\x73\xb9\x18\ +\x34\xdc\x4a\x2a\xa7\x00\x25\x44\x10\x12\x36\x36\x80\xf3\x93\xce\ +\xf3\x5e\xa0\x4e\x86\x51\x80\x48\x45\xdd\x0e\x3b\x4b\x75\x27\x67\ +\x4b\x26\x09\x92\x98\xd9\x36\x67\x6b\xbf\x9f\xbf\xe6\x8e\xda\x7f\ +\x2f\x6a\x3a\x11\x20\x33\x7c\x62\x36\x56\xde\x4d\xe4\x8b\x89\x7a\ +\x9d\x98\x6d\xfa\x3a\x65\x04\xb0\x3d\x8f\xb9\xc1\xb8\x40\x86\xd2\ +\x14\xa0\xa0\x24\xb5\x19\x0c\x62\x4e\xbf\x28\x6b\x80\x94\x93\xff\ +\x07\x3a\xeb\xb3\x62\x51\xa4\x0c\x74\xa5\x08\x0b\x36\x33\xcf\xba\ +\x66\x30\x31\x08\x94\x6d\xad\xe1\x25\x33\xd1\x22\x22\xd9\xd6\xa6\ +\xa0\x3e\xcb\xc2\x33\x13\xed\x0f\x69\xd7\x12\xc0\xcb\xf9\x19\xe8\ +\x49\x0a\xbc\x7d\x2e\x46\xfe\x45\xb2\xad\x73\xcf\x00\x9f\x11\xb9\ +\x0b\xd0\x17\x4c\xa0\x11\x42\x30\x58\x14\x14\x13\xeb\x54\x4b\x92\ +\x04\x50\x2a\x25\x41\xd9\x24\xf5\x40\x04\xb0\x32\xc6\xde\x65\xb8\ +\x63\xd5\x6d\xda\x82\x35\x43\x93\x4e\xc1\x76\x7f\x88\x67\x91\x61\ +\xd3\xad\x4a\xa3\xce\x3d\x2f\x40\xd4\x30\x04\xc8\xe4\x99\x75\x3d\ +\x01\x72\xf5\x3d\x17\x73\x7f\x0e\x7c\xf3\xba\xe6\x59\xaa\x28\xde\ +\x3d\x92\x09\x54\x29\x0d\xbe\x02\x64\x9f\xb6\x2a\x40\x5a\x03\x4a\ +\xf0\xd6\xef\xd6\x71\xd3\xc7\x6f\x36\x57\x85\x70\xa7\x22\x69\x58\ +\x05\x30\x07\xc8\x27\x40\x57\x4f\xa0\x93\x14\x7c\x2d\x3a\x8b\x74\ +\x0b\x7a\xc4\x11\x48\x66\x04\x60\x62\x08\xcb\x28\x27\x86\xd8\xef\ +\x05\x5d\x47\x80\x62\xd9\x97\xca\x3e\x67\x52\x9f\x45\x7d\xf6\x98\ +\x67\xf9\xdf\x90\xe0\x9f\xeb\xef\xb8\x64\x4a\x00\x68\xd3\x0b\x44\ +\x70\x07\x82\x04\xf9\xc9\x27\x01\xa0\x2f\x3c\x7f\xdf\xb1\x6b\x3f\ +\xf7\xf3\xbf\x08\x29\xbc\xf5\xea\x3a\x8e\xdd\x7e\xac\x94\x00\x73\ +\xaf\x19\x6c\xba\x9e\x80\x39\x40\x7a\x9a\x3f\x50\x8a\xba\xcd\x5c\ +\x27\x93\x04\x60\x40\x62\xc9\xbe\xba\x68\x81\xc4\x02\x89\x04\xa2\ +\x05\x1c\x31\x38\x62\x28\xa5\xc0\x8a\x6b\x09\x90\xae\xbf\x6b\x4f\ +\x00\xfb\xbd\x90\x4c\x6b\x89\x4d\xae\xfb\xcf\x19\x40\x3d\x33\x7c\ +\x4e\xee\xcf\x08\x60\x4a\xc1\x77\xd7\xdf\xc9\x7e\xe9\xe6\xd9\x27\ +\x1f\x21\xd0\x14\x80\xed\x89\x4f\x82\x32\x0f\x20\x94\x16\x7f\x9c\ +\x1e\x1e\x49\x2e\xbc\x70\xff\xad\x6b\x9f\x7d\xee\x8f\x24\x0a\x6f\ +\xbf\xfa\x26\x3e\x7c\xe2\xa6\xe2\xf5\x61\xe6\x3d\x18\x4d\x27\x92\ +\x70\x52\x4a\x00\x74\x5c\x0f\x92\x4c\x0d\x01\x58\x80\xc8\x78\x82\ +\xc8\xf8\x82\x88\x21\x91\x21\x80\x4a\x09\xa0\x22\x03\x3c\x15\x09\ +\x60\xc1\xef\xa6\x00\x49\x33\x01\xfc\xe1\x5d\x91\xf2\x34\x20\xec\ +\xc8\xfe\x2c\xff\xe7\xc0\x3f\xf3\xc4\xe3\x04\xda\x06\x60\xbb\x25\ +\x40\x52\x50\x80\xf7\xf0\x9e\x5c\x8b\x6b\xc9\x73\x8a\x56\x36\xa6\ +\x04\x9a\x6c\xbe\xf8\xe0\x1d\x6b\xf7\x9c\x3e\x07\x22\xfc\xf5\xf7\ +\x7f\xc2\x8d\xb7\xde\x98\x33\x83\x32\x2f\x0f\x9a\x08\xa0\xcb\x09\ +\x70\xef\xe7\xef\xcd\x4b\x31\x66\xe7\x06\x82\xd2\x2a\xc1\x9e\xdb\ +\xe7\xf6\x64\x3b\x49\xa3\xdd\x46\xbd\x4e\x09\xc0\x3a\x05\x9d\x63\ +\x46\xa4\x22\xe8\x48\xa7\x9f\x57\xe9\xb9\x81\xa4\x28\x23\xc2\x20\ +\x04\x30\xdf\x0b\xd3\x69\x43\x6a\x93\x22\x01\x1c\x23\x28\xb6\xde\ +\xcf\x81\xcf\x3e\xf8\x4f\x00\xb8\x02\x60\xcb\x6c\x7d\x12\xe8\x9c\ +\x02\x38\xc3\xc1\x42\x29\x84\x56\x22\x12\x02\x4d\x05\xb2\x4d\xa0\ +\xad\xcd\x5f\x7c\xf5\x53\x6b\x9f\x79\xf6\xd7\x00\xe1\x6f\x7f\xf8\ +\x33\x3e\xf4\xb1\x1b\xdb\x9b\xc1\x8e\x04\xc8\xac\x86\x9b\x8b\x41\ +\x99\x64\x43\x01\xac\x38\x8b\x76\xbf\xe7\xa2\xdf\x2a\x80\xe2\x2c\ +\x05\x44\x2a\x02\xa9\xd9\xef\x1b\x8d\x00\x49\x5b\x02\x48\x9e\x0c\ +\x9a\x0b\xe4\xf0\xc0\x7f\x12\xc0\x65\x02\x5d\x02\x70\x09\xc0\x65\ +\x43\x84\x6d\x00\x13\x8f\x00\x1c\x97\xcc\x16\x89\x21\x02\x9b\x1d\ +\x27\x00\x22\x00\x31\x81\xe2\xcd\x97\x1e\xba\x73\xed\xee\x53\x67\ +\x41\xc0\xdf\x5f\x7f\x0b\x37\xdc\x72\x43\x3e\x0d\xf4\x24\x80\x32\ +\x66\x49\x27\xba\x74\x24\x30\x97\x8b\x31\xcb\xd5\x50\x80\x52\x0a\ +\x5a\x74\x0a\xb8\x94\x59\x9e\xd9\x73\x61\x41\x14\x45\x00\x03\x4a\ +\x2b\x48\x64\xca\xbe\x28\xad\xff\x6d\x0a\x20\xb3\x90\xdf\x2a\x8e\ +\x4b\x80\x56\xeb\xef\x33\x13\x98\xcc\x91\x02\x4a\xa6\x7c\x21\xb3\ +\xc8\xe7\xd9\xd0\x70\x0d\xf8\x17\x0d\x01\x2e\x39\x4a\x30\xf1\x7c\ +\xc0\x4c\x01\xce\xe3\xbc\x5c\x87\xeb\xc8\xf5\x00\x04\x4a\x90\x4e\ +\x19\x6f\x1b\x12\x28\x02\xa9\xcd\x5f\x7e\xfd\xe4\xda\xa7\x7f\xf2\ +\x32\x00\xfc\xe3\x8d\xb7\xf1\xc1\x8f\xde\x30\x9c\x02\xd8\x2a\x20\ +\xe1\x7a\x05\x30\x57\x47\x10\x65\x66\x2e\x23\x33\x88\xc3\x48\x41\ +\x14\xf3\x9f\xbb\x04\xf0\xd5\xc1\xa4\x03\x15\x29\xb0\x36\x26\x50\ +\xf3\x2c\xf2\x09\x33\x0f\x80\xbe\x1e\xc0\x9a\xc0\x64\xbe\x71\x00\ +\xb7\x1a\x40\xf9\xcd\xa1\x4b\x64\xdf\x82\xff\xbe\x21\xc0\x45\x4f\ +\x01\xdc\x14\x20\x28\x9e\x9b\x0a\x18\x12\xd8\x1e\x09\x24\x02\x70\ +\x00\xc0\x41\x00\x87\x00\x1c\x16\xc8\xd5\x00\xae\x39\x72\xd7\x33\ +\x2f\xf7\x1e\x07\x08\xad\x92\x10\x54\xba\xbc\xcb\x0e\xf2\xcc\xde\ +\xdb\x3c\xf3\xc4\xe3\x00\xb6\x08\x74\xd9\x01\xfe\x7d\x4f\x01\xb6\ +\x4b\x2a\x81\xd2\x35\xc7\x2e\x09\x94\xe9\x31\x80\x15\x81\xac\x02\ +\x58\x05\x70\x95\xe9\x57\x1f\x39\xf9\xf4\x99\xf9\xe7\x37\x43\x9b\ +\x7b\x16\xb0\x84\x15\x3e\xf0\x10\xc1\xe6\xd9\x27\x1f\x01\xb0\x4d\ +\xa0\x2d\x07\x70\x57\xfe\xaf\x54\x44\x3f\x57\xc6\xed\x51\x1c\x25\ +\x33\x06\x6e\x49\x10\x99\x6e\x95\x60\x15\xc0\x61\xd3\xaf\x12\xc8\ +\x61\xf3\xda\x41\xb3\x8f\xdd\x3f\x5c\x39\xbe\xd3\xd8\x18\x35\x69\ +\x44\x56\xa5\x11\x68\x62\x00\xbe\x62\xe4\xde\x1a\xbf\xcb\x35\xe0\ +\x0b\x00\xd9\xc0\x86\x54\xfe\xa5\xa3\x38\x6a\x6a\x42\x71\x49\x10\ +\x03\x58\x31\x20\xaf\x9a\x94\x60\xfb\xaa\x79\x7d\xc5\xec\xa7\x02\ +\x01\x46\x4b\x12\xd6\xa4\x27\x06\xdc\x89\x53\xf6\x6d\x79\xa6\xaf\ +\x34\xf2\x37\xb0\x21\x8d\x99\xdb\x92\xc0\x82\x69\xfc\x40\x6c\xba\ +\xab\x06\x36\xf2\x0f\x38\xef\x2b\xf4\xbf\xa5\x4d\x68\x79\x65\x70\ +\xcb\x04\x76\x06\x76\x26\xa6\x6f\x3b\x51\x3f\x71\xde\x2f\x05\x7f\ +\x2e\x60\x7c\x12\x38\xf2\xbe\xe2\xf4\x03\x02\xb1\x8f\x7d\xf9\x0f\ +\xe0\x0f\x27\xff\x6e\x0a\xc8\x0d\xd6\x39\x4a\xe0\x0e\xfd\xea\x32\ +\xd9\x6f\x51\x94\x55\x92\xc0\x1a\x43\x57\x11\xdc\xc8\xb7\x3d\x44\ +\xff\x78\x75\x82\x3b\xca\x91\x78\x5d\x7b\x43\xbe\x85\xc8\x6f\x5d\ +\xbc\x19\x12\xb8\x5d\x79\x06\x31\xf2\xc0\x0f\xf2\x3f\x2e\x01\xfc\ +\xa1\x2e\x8d\xe2\xac\x5f\x65\xe4\x77\xaa\xde\x1d\x25\x20\x4f\x0d\ +\x7c\xe0\x83\xf4\xef\x90\x19\x2c\x21\x42\x2e\xea\xeb\xc0\xef\x14\ +\x9d\x1e\x09\xc8\x23\x43\x13\xf8\x81\x14\xbd\x87\x87\x2a\x49\x20\ +\x28\x59\xf9\x53\x07\x3e\x00\xfc\x1f\x37\xdb\x9e\xd9\x19\x4a\x71\ +\xcf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\x54\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ -\x00\x00\x02\x93\x49\x44\x41\x54\x78\x9c\x75\x93\xbf\x6b\x93\x41\ -\x1c\xc6\x3f\xf7\x7a\x6f\x92\xb7\x69\x4c\x4c\xac\x69\xb4\x62\xab\ -\x42\x51\x41\xd0\xea\xa6\x4e\x82\xa0\x55\xd1\xd2\xad\xab\x68\x40\ -\x87\x4e\x92\xbf\x40\x27\x3b\x88\x28\xb8\xa9\xb8\x94\x54\xfc\xb1\ -\x08\x0e\x22\x22\x48\xad\x3a\xb8\xc4\xc1\xbe\xd4\x68\x0d\xfd\x95\ -\xa6\x4d\x93\xf4\xee\xbd\x73\x48\x2d\xd6\xda\xcf\x76\x5f\x9e\xe7\ -\x78\xee\xb9\x3b\xc1\xbf\x5c\x7b\x9e\x43\xca\x3e\xa4\xdb\x8d\x94\ -\x51\x00\xb4\xae\xa2\x55\x01\xad\xf3\xdc\x3e\x7b\x03\x80\xdc\xeb\ -\xeb\xc0\x4d\xb1\x6a\xbc\xfa\xec\x18\xae\x3b\x84\xe7\xf5\x74\xb6\ -\x6d\x16\xe9\xb8\xc7\x89\xee\x0c\x00\x6f\x0a\x93\x94\xe6\x6b\xf8\ -\x53\x15\x4b\xad\x36\xc6\x26\xf9\x18\xd7\xbd\x05\x20\x56\xcd\xa1\ -\xf0\x03\x3c\xaf\xab\xff\x60\x86\xce\x8e\x36\x00\xfc\xe2\x14\xc0\ -\x9a\xf5\xe8\xcf\x05\xfc\xd2\x3c\xfd\x87\x3a\x18\xfe\x54\x44\x02\ -\xe0\xca\x21\xc2\xe1\xae\x0b\x07\xd2\x6c\x6f\x4f\x32\xfc\xfe\x1b\ -\xfe\x74\x05\x2c\x20\x04\x7c\xfe\x41\x67\x5b\x8c\x43\x99\x18\xe7\ -\x7b\x76\x31\x51\x9c\x66\x7b\x26\x05\x1f\x27\x90\x5c\x7d\x9e\xc3\ -\x0d\xf5\x9c\xd9\xdf\xce\xb6\xf4\x16\x9e\x8e\x8e\xe3\xff\x9c\x29\ -\xa3\xd4\x0b\x4c\x70\x17\x00\xc7\xc9\xfa\x8d\x46\xaf\x3f\x39\x97\ -\x38\xad\x0d\x3b\x33\x49\xea\xcb\x1a\x8c\x45\xb2\x49\xf4\xed\x6d\ -\x11\x22\x99\x8a\xf3\x72\x6c\x1c\x7f\x72\xb6\xcc\xb2\xba\xc6\x9d\ -\x73\x8f\x56\xfb\xc9\xbd\x3e\x8e\x52\x03\x27\xf7\x65\x48\xa5\xe2\ -\xd4\x54\x80\x05\x30\x06\x89\x15\xdd\xed\x99\xad\x54\x97\x35\xfe\ -\xaf\x39\x50\xea\xc5\x1a\x33\x40\xa3\x71\x13\x0b\xaf\xbe\x14\xe1\ -\x4b\xb1\x39\xb3\xcd\x06\x25\xd8\x68\x34\x1e\xa3\x5a\x57\xa0\x35\ -\x18\x73\x77\xdd\xd5\xde\x3a\x25\xd6\xcd\x56\x90\x68\xcd\x42\x5d\ -\x21\x84\x80\x20\xd8\x48\xb7\x21\x12\x6b\xaa\xbf\x4a\xb3\xad\xad\ -\x89\xcd\xcd\x04\x8e\x93\x05\xde\xfd\x57\x9d\x7d\xf2\x10\x63\x06\ -\x56\xcf\x20\x9c\x45\x07\x63\x0b\x53\xa5\x59\x16\x1b\x8a\xce\x74\ -\x02\x74\xd0\x4b\x76\x64\xe0\x3f\xe6\x01\x82\xa0\x37\xb3\x33\xcd\ -\x9e\xfd\x7b\x41\x1b\xb0\xb6\x20\x71\x44\x7e\xa1\x5c\x39\xec\xce\ -\xb4\x8a\x50\x2c\x0e\xdf\x4b\x09\xac\xbc\xcd\xe5\xfc\x29\x1c\xa7\ -\xd9\x87\x31\x59\x94\xea\x45\xca\x84\x0d\x47\x58\x5c\x56\x60\x03\ -\x8b\x90\xf9\x66\x39\x97\x86\x47\x69\xd4\x8f\xb4\x74\xec\x40\x46\ -\x5b\x48\x56\xcb\xf8\xc5\xe9\x66\xcc\x15\xd2\x5b\x13\xd4\x52\xdb\ -\x00\xa8\x14\xbe\x42\x38\xf2\x81\xfb\xfd\x47\x9b\x2f\x51\xca\x41\ -\x8c\xfb\x60\x69\xe2\x7b\x97\xdc\xd1\x41\x3d\x12\x23\xb4\x3b\x86\ -\xa9\xd5\x00\x70\x22\x1e\x73\x02\x4c\x65\x01\x3d\x33\x0b\x6e\x68\ -\x1c\x29\x07\xe1\xcf\x5f\x00\xc8\x8e\x1c\x43\xe9\x21\x6a\x4b\x3d\ -\x44\x3c\x41\x38\x0c\xc9\x14\x00\x5b\xaa\x65\xe6\x1a\x01\xcc\x97\ -\x2d\x9e\x37\x86\x74\x07\xb9\x77\xf1\xed\xda\x0d\xfe\x70\x65\x24\ -\x87\xd6\x7d\x68\xd5\x8d\xd6\xd1\x95\x84\x55\xa4\x5b\x40\xca\x3c\ -\xf7\x2e\xde\xf8\x5b\xfe\x1b\x1c\xdc\x0e\x28\xb8\xe3\xe8\xf3\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ +\x00\x00\x06\x1b\x49\x44\x41\x54\x48\x4b\x6d\x56\x6b\x4f\x14\x57\ +\x18\x7e\x66\xf6\xc2\xc2\x82\xec\x80\x80\x08\x8a\x06\xa3\x68\xaa\ +\x91\xa8\xd5\xa6\xe9\x07\x7f\x80\x97\x06\x1b\xd3\x26\xd6\x0f\x6d\ +\xd2\x98\x34\x6d\x5a\x6d\xbf\x18\xdb\xd4\xa6\x69\xfa\xd1\xa6\x69\ +\x1b\x93\x9a\x4a\xe5\x8e\x28\x5e\x88\x92\x82\x45\x10\xd6\xae\x02\ +\x2a\x51\x63\xaa\xc6\x36\x15\x2f\x70\x16\xf6\xbe\xb3\x33\xbb\x7d\ +\xce\x41\xd6\x5b\x27\xd9\x6c\x76\x66\x78\x9f\xf7\xb9\xbc\xef\x41\ +\xfb\xae\xe9\xe4\x1d\x4f\x4e\xae\x4f\xd3\xa0\x2e\x3b\x6d\x21\x9d\ +\xce\xcc\xfc\x78\xe6\xb2\x52\x49\x38\x5d\x6e\xb8\xdd\x6e\x80\x8f\ +\x2d\xdb\x82\x65\x26\x5f\x7a\x6f\xf6\x86\xd3\xe9\x86\x69\xa5\xa6\ +\xb4\x03\x4d\x9d\x91\x3b\xd7\xaf\x7a\xa7\x84\x40\xd1\xdc\xb9\x28\ +\x99\x37\x1f\x0e\x87\x23\xfb\x87\xe9\x4c\x1a\x9a\x0e\x88\x7f\xc6\ +\x71\x6d\x74\x14\x73\x4a\x8b\x50\xba\x60\x01\xca\xe6\x57\xa1\xa8\ +\xb8\x84\x58\x44\xcb\xbc\xdc\x90\x6c\x26\x1e\x8b\x45\xb4\x1f\x5a\ +\xbb\xc4\xc5\xae\x76\x63\x6c\x78\x04\x0e\x97\x13\xaf\xbf\xb1\x01\ +\x05\x73\xe6\x40\x23\x25\xf9\x71\xb0\xba\x4b\x77\x60\x32\x18\x44\ +\xcf\xd9\x1e\x84\x23\x51\x58\xb0\x31\xaf\x62\x21\x76\x7e\xb2\x1b\ +\x19\x9d\x8c\xec\x17\x00\xa8\x86\xd3\xe9\x42\xca\x4a\x0a\xed\xe0\ +\xd1\xb3\xc2\xdf\xdd\x61\x5c\xbf\x32\x0a\x9d\x9d\x6f\xd8\xb0\x1e\ +\x05\x05\x05\x59\x00\x5d\xd7\xa1\xeb\x2e\x04\x09\xd0\x7b\xae\x17\ +\x89\x78\x0c\x69\xdb\xc6\x9c\x92\x52\xbc\xf7\xe9\x5e\x68\x0e\x17\ +\x32\x69\xfb\x79\xa9\x88\x27\x01\x28\x91\xd0\x0e\x75\xfe\x2e\x06\ +\x4f\xb7\x19\x63\x04\x70\x38\x9d\x58\xff\xea\x13\x00\x7d\xc6\x14\ +\x9d\x0c\x1c\x4e\x07\x82\x22\x88\x73\x7d\x7f\x20\x26\x01\x58\xd0\ +\x47\x80\x0f\x3e\xdf\x47\x00\xf7\x73\x00\x19\x4a\x0a\x68\xf4\xcb\ +\x05\x2b\x49\x80\x5f\xbb\x7a\xc4\x85\xce\x36\xe3\xda\x28\x25\x22\ +\xc0\xba\x75\xeb\xb2\x0c\x24\x80\x94\xc9\xc9\xfb\x82\x1e\x9d\xef\ +\x3f\x4f\x80\x38\xac\x54\x0a\x45\x65\x65\xf8\xf8\xcb\x6f\xa1\xd1\ +\xcc\x67\x19\x64\x9e\xf8\x21\x19\x24\x53\x94\xa8\xa5\x7b\x40\xf4\ +\x76\xb6\x1a\xa3\x01\xbf\x02\x58\xbb\x76\xad\x02\x90\xd2\xc8\xe2\ +\xf2\x92\xa6\x4b\x89\xfa\x07\xfa\x99\x1e\x9b\x05\xd3\xf0\xe6\x17\ +\x62\xdb\xce\xf7\xa1\xb3\x53\x80\x41\x90\x49\xc8\x68\x4a\x66\x8d\ +\xec\xdd\x34\x39\x65\xd9\x42\x3b\xda\x33\x24\x7a\x4f\xb4\x1b\x97\ +\xfd\xfd\x7c\xe8\x44\x6d\x6d\x2d\x7c\x3e\x9f\x2a\x9c\x35\x9a\x60\ +\x53\x53\x53\xe8\xbf\x30\x00\x33\x65\x61\xe9\x92\x0a\x14\x7a\x73\ +\x10\x33\xe3\x32\x43\x2c\xac\x23\x65\xba\x28\x9d\x83\x35\x74\x86\ +\x2a\x03\x17\x9b\xb5\xd3\x10\xda\xf1\xbe\x80\xe8\x39\xde\x6a\x04\ +\x06\xfb\x88\xec\xc0\xea\xd5\xab\x15\xc0\x6c\xf7\x33\x26\xeb\x08\ +\x4d\x4f\x63\x60\xd0\x8f\x48\xf4\x11\x2a\xca\xb7\xa3\xa0\xb0\x86\ +\xf7\xa3\xd0\x6c\x27\x65\x12\x58\xbc\x68\x0a\x05\xf9\x79\xb0\x59\ +\x55\xa2\x4a\xdf\x4c\xd3\x14\x5a\xd7\xd0\x25\xd1\xdd\xde\x6a\xf8\ +\x07\xfa\x64\xcb\x0a\xc0\x30\x8c\x6c\x2a\xb2\x00\xa1\x10\x01\x86\ +\x90\xce\x4c\x43\xcb\x7c\x84\x89\x07\x3e\x24\x12\xeb\x61\x14\x5f\ +\xc4\xc3\xf1\x7c\xd4\xbd\xd3\x8f\xea\xaa\x02\xd0\x9e\xac\xac\xb6\ +\x4d\x89\xce\x06\x46\xc5\x99\xd6\x66\x63\xb0\xaf\x97\x0c\x74\xac\ +\x5a\xb5\x0a\xc5\xc5\xc5\xea\xa5\x14\xdf\x8e\xd3\xd4\xa2\xa2\x22\ +\x4c\x4b\x06\x17\x06\xa9\x76\x08\x1e\xf7\x1e\x4c\x4c\x7a\x91\x8c\ +\xd7\x72\xe0\x46\x71\xef\xb6\x13\x5b\xeb\x2e\xa1\x6a\x41\x2e\xbb\ +\xce\x28\xc6\x32\x18\x96\x65\x09\xed\xdc\xe5\xeb\xe2\x74\x5b\x83\ +\xd1\xdf\xdb\xad\x24\x5a\xb9\x72\xa5\x2a\x28\x25\x22\x45\x84\xc3\ +\x61\x94\x96\x96\x2a\x89\x2e\x0c\x91\x81\x16\x85\x6e\xef\x86\x98\ +\x28\xa6\xe1\x2b\xe0\xc8\xb9\x01\x33\xec\xc4\x96\x37\xcf\xa1\x62\ +\x41\x01\xb3\x9f\x51\x73\x92\x66\x10\x78\x09\x6d\x68\xec\x96\xe8\ +\x6c\x69\x30\x7a\xcf\x74\xa9\x04\x48\x80\x59\x89\x24\x03\x99\x9e\ +\xf2\xf2\x72\x84\x29\xd1\xa0\x3f\x00\x2b\x1d\x41\x7e\xde\x2e\x4c\ +\x4d\xe6\x72\xaa\xd7\xa0\x7c\x61\x1f\xee\xdd\x34\xb0\xb9\x6e\x0c\ +\x15\x15\x39\x2c\xac\x53\xba\x04\x42\x7c\x5f\x01\x04\x6e\xfc\x25\ +\x3a\x5b\x1b\x8d\xee\x53\x27\x15\xc0\x8a\x15\x2b\xb2\x0c\xa8\x21\ +\x62\xb1\x18\x0a\x0b\x7d\x88\x44\xc2\xf0\xfb\x87\x60\x69\x71\xa4\ +\xcd\x0f\x31\xf1\xb8\x1c\x7a\x7a\x19\xcd\xbc\x8d\x78\x2a\x83\xad\ +\x5b\xc8\x60\x7e\x3e\xa3\x99\x51\xec\x5d\x8c\x6f\x32\xc9\x39\x18\ +\xb9\x75\x57\x9c\x6c\x6b\x36\x4e\x1d\xef\x50\x00\x35\x35\x35\xca\ +\x83\x67\x53\x24\x63\x27\x81\xfc\xfe\x3f\x61\x22\x08\xaf\x63\x17\ +\x26\x1e\xb9\xd8\xe5\x46\x2c\xaa\x3e\x89\x9b\x63\xe5\x78\xeb\x6d\ +\x32\xa8\xf4\xd0\x37\x25\xcd\x53\x0f\xae\xdf\xbd\x2f\x8e\xb5\x1c\ +\x31\x8e\xb7\xb7\x2a\x80\x65\xcb\x96\x3d\x07\xa0\xd6\x05\x4d\x8b\ +\xc7\x12\xf0\x07\x02\x88\x47\x27\x50\x6c\x6c\xe7\x20\xbd\x82\xa4\ +\x1d\x41\x32\xec\x65\xb2\x82\x58\xf3\xda\x4d\x14\xf9\x72\x69\xec\ +\x0c\x03\x39\x9c\x2a\x45\xb7\xfe\x1d\x17\x1d\x4d\x8d\xc6\xd1\xe6\ +\x26\x05\xb0\x74\xe9\xd2\x2c\x80\xec\x7c\x76\xd8\x62\xb1\x38\x2e\ +\x5d\xbe\x8c\x50\x78\x1a\x1b\x37\xae\xc7\xa2\x85\x95\x94\x2d\xc2\ +\xe7\x0e\x76\x9b\xc3\x61\xe6\xa0\x71\x07\xc9\x01\x93\x69\xcc\x02\ +\xdc\x7e\xf8\x50\x74\x34\x36\x1b\x2d\x0d\xf5\xbc\xe9\x44\x75\x75\ +\x35\xe6\xf2\x5c\x98\x95\x48\x7e\x4b\x06\xd1\x68\x14\x81\x4b\x01\ +\x6e\x03\x0d\xb9\x1e\x0f\x72\xbd\x79\x6a\x6f\xd9\xec\x38\x91\x48\ +\xaa\x01\x63\x2c\x65\xd7\x34\xda\x54\xeb\xc2\x4e\x93\xc1\xdf\x8f\ +\x27\x44\x7b\x53\xb3\xd1\x70\xf8\x90\x02\x58\xb2\x64\x89\x02\x98\ +\xbd\x9e\x32\x88\x61\x78\x64\x18\x51\x7a\x11\x67\x4a\xaa\x16\x2f\ +\x42\xfd\x6f\x0d\x2c\xc4\xb5\xcc\x38\xdb\x96\x8d\x24\xbf\x2d\x2b\ +\x45\x1f\x92\xea\x3b\x1a\x89\x08\x6d\x3c\x14\x16\xc7\x9a\x5b\x8c\ +\x5f\x7e\xfe\x51\x49\x24\x19\x94\x94\x94\x3c\x03\x20\x07\x5c\x57\ +\x26\x8f\xf0\x44\x93\xeb\x5a\xc6\xb7\xa2\xb2\x12\x07\x0f\xd5\xc3\ +\x95\xc3\x68\xb2\x6b\xb9\x05\x66\x9a\x91\xcb\x5a\x83\x87\x2c\x53\ +\x49\xae\x8a\x47\xd1\x98\x38\xd1\xd6\x66\xfc\xf4\xfd\x01\x52\x4a\ +\x33\xcb\x15\x28\xe3\x2a\x96\xfa\xab\x8d\x2a\xa7\x92\xc0\xb2\xe8\ +\x95\x6b\xd7\x38\xd9\x31\x04\xa7\x82\xf4\xaa\x06\x87\x8f\x34\xf1\ +\x3c\x70\xcc\x00\x3c\x77\xd1\x0b\x9e\xdd\x49\x33\x21\xb4\x50\x22\ +\x21\xda\x1a\x5b\x8c\x6f\xbe\xde\x8f\x6a\xca\xb3\x69\xf3\x66\x32\ +\x98\xcb\x21\x8a\x20\x22\xe5\x88\x27\x94\xc6\x93\x8f\xc6\xe1\x1f\ +\xf2\xe3\xfe\xf8\x03\xee\xab\x5a\xec\xdd\xf7\x05\x6a\x96\x2f\x87\ +\x99\x34\x5f\x28\x3e\xf3\x53\xfe\x73\x60\x4a\x80\x69\x1e\xcc\x23\ +\xc3\x57\xbc\x57\x79\xa2\xd5\x6d\xab\x43\x59\x69\x09\x4f\x5c\xb9\ +\x82\xe5\xc8\xd3\x38\x7e\x3c\x39\x2e\x34\x1c\xae\xc7\x57\xfb\xf7\ +\x63\xc7\x8e\x77\xb1\x67\xcf\x67\xc8\xcb\xcf\xe5\x1c\xc4\xe5\x52\ +\x7f\x09\x40\x4a\x25\x01\x42\xe1\x50\x44\x9b\x9c\x0e\xdf\xce\xf3\ +\x7a\x7c\x3a\x6f\xf2\x88\x43\x84\x49\x90\xa7\xa5\x9e\x3d\xc7\x99\ +\x1a\x1e\x1e\xc3\xa3\xc3\x78\xfc\xe0\x01\x19\x6e\xe2\x84\x9a\x34\ +\xda\xa6\x3c\xff\xdb\xbc\x02\xf5\xb8\x9d\x88\x9b\x56\xf0\x3f\xfe\ +\x19\x0e\x29\x33\x91\x8f\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ \x00\x00\x1d\x4d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -4555,27 +3999,1384 @@ qt_resource_data = "\ \x14\xaa\xab\xaa\x04\x5a\xea\x3e\x51\x45\x15\x9d\xf3\xff\x50\x6f\ \xde\x7e\xa0\x7b\xaf\xca\xfd\x5f\x39\x8f\xbf\x4e\xda\x91\x8c\x6d\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x3c\ +\x00\x00\x19\x52\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x02\x82\x00\x00\x02\x29\x08\x02\x00\x00\x00\xb9\x49\xce\x6f\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x19\x04\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x7f\xa8\x66\x85\x9d\xdf\xf1\xef\xd1\x69\x63\x56\x4d\x74\xad\ +\x43\xcc\xae\xb4\x66\xa5\x1b\x77\xda\x6e\x31\x18\x13\x2b\x81\x14\ +\xb2\xc5\xd4\x04\x49\x9b\x65\xcd\x42\x87\x66\xd8\x44\x98\xc6\x32\ +\x71\x9c\x16\xd9\x66\x30\x0d\xc1\x4c\x60\x23\x81\xa1\x4a\x98\x08\ +\xdd\xb2\x26\xb4\xfe\xc0\x42\x02\x6d\x13\x1a\x94\xac\xae\xb4\x62\ +\x0a\x75\xb1\x36\x4b\x58\x23\x61\xd2\x18\xb3\x9b\xd6\xcc\x30\x78\ +\xfa\xc7\xf1\x3e\x3e\x73\x9e\x7b\xef\x3c\x3f\xce\x39\xdf\xf3\xe3\ +\xf5\xc2\x3f\xee\xbd\x73\xe7\xde\x33\xe3\xbd\xf7\x3d\x9f\x73\xcf\ +\x7d\x4e\x51\x96\x65\x00\x00\x19\xf6\x64\x1f\x00\x00\x4c\x97\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\xd6\x54\x14\x45\xf5\x44\x59\x96\xb9\x47\x02\x0c\x57\xe1\x2b\x08\ +\xac\x6a\x16\xe0\x79\x3e\x95\x80\x35\xc8\x30\xac\x60\x3e\xc0\x77\ +\xde\xf2\x4b\xd5\x13\x5f\x7c\xf4\xff\xcd\xbf\x8e\xcf\x29\x60\x79\ +\x32\x0c\xcb\xaa\x8d\xe0\x59\x86\x2b\x62\x0c\xac\x41\x86\x61\x59\ +\x55\x86\x8f\xdf\xb6\xf7\xe0\x7d\x27\xe7\x5f\xae\xc7\xc0\xda\x64\ +\x18\x96\x35\xcb\x70\xf5\xac\x18\x03\x9b\x93\x61\x58\x56\x2d\xc3\ +\x33\x7a\x0c\xac\x4d\x86\x61\x59\x3b\x65\xb8\x22\xc6\xc0\x1a\x64\ +\x18\x96\xb5\x7b\x86\x67\xf4\x18\x58\x9e\x0c\xc3\xb2\x96\xcc\x70\ +\x65\xa5\x18\x87\x1e\xc3\x54\xc9\x30\x2c\x6b\xa5\x0c\xcf\x18\xc7\ +\xc0\x2e\x64\x18\x96\xb5\x5e\x86\x2b\xb5\x18\x87\x1e\x03\x11\x21\ +\xc3\xb0\xbc\x4d\x32\x3c\x63\x1c\x03\xf3\x64\x18\x96\xd5\x48\x86\ +\x67\xf4\x18\x08\x19\x86\xe5\x35\x9b\xe1\x8a\x18\xc3\xc4\xc9\x30\ +\x2c\xab\x8d\x0c\xcf\xcc\x7a\x5c\x2b\x71\x45\x8f\x61\xac\x64\x18\ +\x96\xd5\x52\x86\x17\xaf\xde\x9a\x31\x8e\x61\xf4\x64\x18\x96\xd5\ +\xea\xf7\x86\x23\xe2\xce\x5b\x7e\x69\xf1\xe7\x89\x67\xbf\x34\xff\ +\xac\x1e\xc3\x68\xc8\x30\x2c\xab\xa9\x0c\x2f\x7e\x3f\xb8\x96\xd5\ +\xc5\x9b\x38\xcd\x5e\x73\xfe\x59\x31\x86\x11\x90\x61\x58\xd6\x86\ +\x19\x3e\x67\x7d\x63\xe1\xf6\x4d\xee\xe6\x04\xa3\x27\xc3\xb0\xac\ +\xb5\x33\xbc\xcc\xfc\xdd\xf6\xb7\xd4\x5e\x2e\xc6\x30\x3e\x32\x0c\ +\xcb\x5a\x35\xc3\x6b\xd4\xb7\xf6\x7b\xdd\xcd\x09\x46\x4f\x86\x61\ +\x59\xcb\x67\x78\x93\x00\xcf\xbf\x85\xdd\x5f\xcd\xdd\x23\x60\x04\ +\x64\x18\x96\x75\xce\x0c\x6f\x5e\xdf\xda\x9b\x6a\xe3\x6e\x4e\x3e\ +\xe5\xa1\x57\x64\x98\x7c\x45\x31\x8c\x8f\xc3\x5d\x32\xdc\x60\x80\ +\xe7\xdf\xe0\x4a\xbf\x6b\xf7\x18\x87\x1e\x43\x2f\x0d\xe3\xcb\x1f\ +\x63\x55\x85\xad\xd2\xff\x0f\xc5\xc5\x0c\x37\x5e\xdf\xda\x5b\x6e\ +\xe4\x6e\x4e\xc6\x31\xf4\x99\x0c\x93\x60\xbe\xbe\xb1\x50\xaf\xde\ +\x7e\x4c\xce\x67\xb8\xbd\x00\x57\x36\xc9\xf0\xfc\x5b\x98\xa7\xc7\ +\xd0\x43\x32\x4c\x82\x59\x86\xe7\xc3\xd0\xff\x4b\x8a\x6a\xff\x7a\ +\x88\x16\xea\x3b\xb3\x79\x86\x6b\x6f\x6a\x66\xa7\x18\xf7\xed\x6f\ +\x1b\x26\x42\x86\xe9\xda\xb6\x31\x9b\x7f\xb6\x9f\x2b\x6d\xf7\x05\ +\x1f\xed\xdc\x79\xa9\xbd\xbb\x39\x6d\xfb\xe0\x21\x3d\xf9\xab\x86\ +\x49\x91\x61\xba\x36\x3b\xb5\x3b\x88\x4b\x8a\x3a\xae\xef\x4c\x1b\ +\x19\x9e\x7f\xcb\xf3\x66\xff\x2f\x7c\x35\x80\xee\xc9\x30\x5d\x5b\ +\xe6\x42\xa7\xf9\x67\xb3\x62\x9c\x15\xe0\x4a\x7b\x19\xde\xf6\xed\ +\xcb\x30\x64\xd9\x93\x7d\x00\x50\xbf\xe8\x69\x56\xbb\xaa\xc7\xb3\ +\x2a\x57\x2f\x9f\xd5\xb1\xa5\x66\xec\x54\xdf\xd9\x51\xb5\x5a\x5f\ +\x60\x6a\x64\x98\xbe\x58\xbc\x8d\x41\x55\xbe\x59\x86\xab\x27\x66\ +\x39\xac\x7a\xd9\x54\x8c\x77\xba\xfc\x6a\x7e\x01\x0b\x30\xd0\x38\ +\x19\xa6\x77\x6a\x3d\x6e\x7b\x1c\x9b\xbf\x40\x22\x19\xa6\xbf\xb6\ +\x3d\x59\xdd\xd4\x38\x3e\x67\x7d\x43\x80\x81\xf6\xc9\x30\x7d\xd7\ +\xf8\x38\xde\x36\xc0\xea\x0b\xa4\x90\x61\x06\x63\xc3\x71\xec\xe4\ +\x33\xd0\x43\x32\xcc\xc0\xac\x37\x8e\xe7\x99\xbf\x40\x7f\xc8\x30\ +\x43\xb5\xd2\x38\x0e\xf3\x17\xe8\x25\x19\x66\xd8\x96\x1c\xc7\x3b\ +\xfd\x2e\x80\x5c\x32\xcc\x48\xec\x3e\x8e\x2b\xb3\x41\xdc\xf6\x63\ +\x54\x01\x2c\x49\x86\x19\x95\xdd\xc7\x71\x9c\x7d\xb2\x7a\xd6\x6c\ +\x3d\x06\xb2\xc8\x30\xe3\xb4\xd2\x77\x8e\xf5\x18\xc8\x22\xc3\x8c\ +\xd9\x4a\x97\x55\x87\x93\xd5\x40\xe7\x64\x98\x49\x58\xe9\xee\x11\ +\xc6\x31\xd0\x19\x19\x66\x42\x56\xbd\x7b\x84\x71\x0c\xb4\x4d\x86\ +\x99\xa2\x95\x4e\x56\x1b\xc7\x40\x7b\x64\x98\x49\x5b\xe3\x4a\x2e\ +\x31\x06\x1a\x24\xc3\x60\x1c\x03\x69\x64\x18\xde\x60\x1c\x03\x1d\ +\x93\x61\xa8\x33\x8e\x81\xce\xc8\x30\xec\xc8\x38\x06\xda\x26\xc3\ +\x70\x0e\xe7\x1c\xc7\xf3\xf7\x71\x02\x58\x89\x0c\xc3\xb2\x76\x7a\ +\x0c\x90\x79\x07\xef\x3b\x69\x10\x03\xcb\x93\x61\x58\xcd\xe2\x63\ +\x80\x2c\xbe\x04\x60\x49\x32\x0c\x1b\xb1\x7d\x81\x4d\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\ +\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\ +\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\ +\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\ +\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\ +\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\ +\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\ +\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\ +\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\xf4\xd7\xc1\xfb\x4e\ +\x46\xc4\xf1\xdb\xf6\x66\x1f\x08\xd0\x16\x19\x86\x7e\xa9\xd2\xbb\ +\xf8\x12\x31\x86\x51\x92\x61\xe8\x8b\x5a\x80\xef\xbe\xfb\xee\xea\ +\x89\xa3\x47\x8f\xce\xff\xaa\x1e\xc3\x98\xc8\x30\x24\xdb\xa9\xbe\ +\xb5\x97\x54\x31\x0e\xe3\x18\xc6\x45\x86\x21\xcd\x39\x03\xbc\xed\ +\xaf\x1a\xc7\x30\x26\x32\x0c\x5d\x5b\xa9\xbe\x8b\x8c\x63\x18\x13\ +\x19\x86\xee\x6c\x18\xe0\x6d\x7f\xaf\x71\x0c\x83\x26\xc3\xd0\xba\ +\x06\xeb\xbb\x68\xdb\x71\x1c\x7a\x0c\x03\x21\xc3\xd0\xa2\x56\x03\ +\xbc\xed\x5b\x76\xb2\x1a\x86\x45\x86\xa1\x79\x9d\xd5\x77\x91\x93\ +\xd5\x30\x2c\x32\x0c\x0d\x9b\x6f\x70\x97\x01\xae\x71\x25\x17\x0c\ +\x82\x0c\x43\xf3\x12\xeb\x5b\xb3\xd3\x38\x06\x7a\x42\x86\xa1\x61\ +\xfd\x69\xf0\xbc\xda\x38\x06\x7a\x42\x86\x61\x42\x8c\x63\xe8\x1b\ +\x19\x86\x29\x32\x8e\xa1\x27\x64\x18\xa6\xab\x36\x8e\x8b\xa2\xa8\ +\x9e\x2d\xcb\x32\xed\x98\x60\x62\x64\x18\xa8\x8f\xe3\xaa\xc7\x62\ +\x0c\x1d\x90\x61\xe0\x75\xc6\x31\x74\x4f\x86\x81\x3a\xe3\x18\x3a\ +\x23\xc3\xc0\xf6\x8c\x63\xe8\x80\x0c\x03\xe7\xb0\xed\x38\x0e\x3d\ +\x86\x26\xc8\x30\xb0\x94\xc5\xbb\x47\x38\x59\x0d\x9b\x93\x61\x60\ +\x35\x4e\x56\x43\x83\x64\x18\x58\x93\x2b\xb9\x60\x73\x32\x0c\x6c\ +\xc4\x38\x86\x4d\xc8\x30\xd0\x0c\xe3\x18\xd6\x20\xc3\x40\x93\x8c\ +\x63\x58\x89\x0c\x43\xc3\x8e\x1e\x3d\xda\xcf\x7b\x1d\x76\xcc\x38\ +\x86\x65\xc8\x30\x34\xaf\x6a\x8f\x18\x87\x71\x0c\xe7\x22\xc3\xd0\ +\xb0\x13\x27\x4e\x1c\x38\x70\x20\xe6\x86\xa0\x1e\x87\x71\x0c\x3b\ +\x90\x61\x68\xde\x89\x13\x27\x22\xa2\x8a\x71\xe8\xf1\x1c\xe3\x18\ +\x6a\x64\x18\xda\x52\xc5\x38\x16\x7a\x2c\xc6\x61\x1c\xc3\x16\x19\ +\x86\xd6\xd5\x7a\x6c\x1c\xcf\x18\xc7\x20\xc3\xd0\x9d\x6d\x4f\x56\ +\x8b\x71\x18\xc7\x4c\x58\xe1\x03\x9d\x8e\x55\x5f\x61\x8f\xdf\xb6\ +\x37\xfb\x40\x36\x75\xf0\xbe\x93\x71\xf6\x1f\xa4\x7a\x49\xcc\xcd\ +\xdf\xdd\xcd\x7a\x5c\xd1\xe3\x99\x59\x8f\x2b\xbe\x4c\x31\x62\x32\ +\x4c\xd7\xa6\x90\xe1\x8a\x18\x6f\xa8\x16\xe3\xd0\x63\xc6\x48\x86\ +\xe9\xda\x74\x32\x3c\xa3\xc7\x1b\x32\x8e\x19\x31\x19\xa6\x6b\x53\ +\xc8\x70\xed\x7b\xc0\x33\xcb\xf4\x58\x8c\x77\xa1\xc7\x8c\x8f\x0c\ +\xd3\xb5\xe9\x64\x78\xa6\x56\x56\xe3\x78\x43\x62\xcc\x98\xc8\x30\ +\x5d\x9b\x60\x86\x67\xd6\xe8\xb1\x18\xef\x42\x8f\x19\x01\x19\xa6\ +\x6b\x53\xce\x70\xc5\x38\x6e\x96\x18\x33\x68\x32\x4c\xd7\x64\x78\ +\xc6\x38\x6e\x96\x1e\x33\x44\x32\x4c\xd7\x64\xb8\xc6\x38\x6e\x96\ +\x18\x33\x2c\x32\x4c\xd7\x64\x78\x27\xc6\x71\xb3\xf4\x98\x41\x90\ +\x61\xba\x26\xc3\xbb\x33\x8e\x9b\x25\xc6\xf4\x9c\x0c\xd3\x35\x19\ +\x5e\xd2\xe6\xe3\x38\xf4\x78\x8e\x1e\xd3\x4f\x32\x4c\xd7\x64\x78\ +\x25\xc6\x71\xb3\xc4\x98\xbe\x91\x61\xba\x26\xc3\xeb\xd1\xe3\x66\ +\xe9\x31\x3d\x21\xc3\x74\x4d\x86\x37\x21\xc6\xcd\x72\xf7\x08\xd2\ +\xc9\x30\x5d\x93\xe1\x46\xe8\x71\xb3\x8c\x63\xb2\xc8\x30\x5d\x93\ +\xe1\x06\x89\x71\xe3\xf4\x98\x8e\xc9\x30\x5d\x93\xe1\x36\xe8\x71\ +\xb3\xc4\x98\xce\xc8\x30\x5d\x93\xe1\xf6\xb8\xb5\x62\xe3\xf4\x98\ +\xb6\xc9\x30\x5d\x93\xe1\x0e\x18\xc7\xcd\x12\x63\xda\x23\xc3\x74\ +\x4d\x86\xbb\xe4\x01\x32\x9b\xa5\xc7\x34\x4e\x86\xe9\x9a\x0c\x77\ +\xcf\x38\x6e\x96\x18\xd3\x20\x19\xa6\x6b\x32\x9c\xc8\x38\x6e\x96\ +\x1e\xb3\x39\x19\xa6\x6b\x32\x9c\xce\x38\x6e\x96\x18\xb3\x09\x19\ +\xa6\x6b\x32\xdc\x1f\xee\x1e\xd1\x2c\x3d\x66\x0d\x32\x4c\xd7\x64\ +\xb8\x6f\x8c\xe3\x66\x89\x31\x2b\x91\x61\xba\x26\xc3\xbd\xa5\xc7\ +\xcd\xd2\x63\x96\x21\xc3\x74\x4d\x86\x7b\x4e\x8c\x9b\xe5\xee\x11\ +\xec\x4e\x86\xe9\x9a\x0c\x0f\x85\x1e\x37\xcb\x38\x66\x5b\x32\x4c\ +\xd7\x64\x78\x58\xc4\xb8\x71\x7a\xcc\x3c\x19\xa6\x6b\x32\x3c\x50\ +\x7a\xdc\x2c\x31\xa6\x22\xc3\x74\x4d\x86\x07\xcd\xdd\x23\x1a\xa7\ +\xc7\x13\x27\xc3\x74\x4d\x86\xc7\xc1\x38\x6e\x96\x18\x4f\x96\x0c\ +\xd3\x35\x19\x1e\x19\x0f\x90\xd9\xa0\x59\x8c\x7d\x65\x9e\x0e\x19\ +\xa6\x6b\x32\x3c\x4a\xc6\xf1\x26\x16\x7f\xa8\x29\x94\x78\x32\x64\ +\x98\xae\xc9\xf0\xb8\x19\xc7\x2b\xa9\x05\xb8\xfa\xeb\xaa\xfe\x42\ +\x7c\x71\x9e\x88\x3d\xd9\x07\x00\x8c\xca\x7c\x48\x66\x4f\xec\x1e\ +\xe3\xd9\xaf\x56\xaf\x3c\x2b\xd3\x88\x7b\xbc\x6d\x7d\x99\x26\x19\ +\x06\x9a\x57\x2b\xeb\xac\xca\xcb\xf4\x78\xf6\xca\xa3\xec\xb1\x00\ +\x53\x23\xc3\x40\x8b\x36\x1f\xc7\xb1\x95\xae\x41\xc7\x58\x7d\xd9\ +\x89\x0c\x03\xad\xdb\x64\x1c\xc7\xc0\x4f\x56\x0b\x30\xbb\x73\x89\ +\x16\x5d\x73\x89\x16\x53\xb8\xac\x7a\xbd\xfa\xce\xff\x19\x7d\x71\ +\x9e\x08\x19\xa6\x6b\x32\xcc\xcc\x28\x7b\xbc\x46\x80\x6b\x7f\x22\ +\x5f\x96\x27\x45\x86\xe9\x9a\x0c\x53\x33\x8e\x18\x6f\x3e\x7f\x43\ +\x80\x27\x49\x86\xe9\x9a\x0c\xb3\x93\x81\xf6\xd8\xfc\x65\x13\x32\ +\x4c\xd7\x64\x98\xdd\x0d\x25\xc6\xe6\x2f\x8d\x90\x61\xba\x26\xc3\ +\x2c\xa9\x9f\x3d\x5e\x7c\xe0\x49\xf3\x97\x4d\xc8\x30\x5d\x93\x61\ +\x56\xd2\x9f\x5b\x2b\x9a\xbf\xb4\x41\x86\xe9\x9a\x0c\xb3\x9e\xac\ +\x71\xac\xbe\xb4\x4a\x86\xe9\x9a\x0c\xb3\xa1\xce\xee\x1e\x21\xc0\ +\x74\xc0\xa3\x68\x01\x03\xd3\xf6\xdd\x23\x1a\x79\xdc\x2b\xf5\x65\ +\x49\x32\x0c\x0c\x52\x83\x77\x8f\x98\xc5\x78\xf3\xf9\xeb\x44\x08\ +\xab\x92\x61\x60\xd8\x1a\x1c\xc7\xb5\x5f\xdd\xdd\xe2\xb5\x63\xb0\ +\x06\x19\x06\xc6\xa0\x91\x71\xbc\xc6\xb7\x99\x17\xdf\x08\xac\x44\ +\x86\x81\x51\x59\x6f\x1c\x2f\x13\xd1\xf5\x2e\xd5\x86\xdd\xc9\x30\ +\x30\x42\xeb\x8d\xe3\x6d\xa9\x2f\xad\x92\x61\x60\xcc\xd6\x18\xc7\ +\x33\x02\x4c\x07\x64\x18\x18\xbf\x95\xc6\xb1\xfa\xd2\x25\x19\x06\ +\x26\x64\xf7\x71\x2c\xc0\x74\x4f\x86\x81\xc9\xd9\x69\x1c\xd7\x7e\ +\x15\x3a\x20\xc3\xc0\x74\xad\xf1\x03\x4b\xd0\x2c\x19\x06\xa6\x4e\ +\x7d\x49\x24\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\ +\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\ +\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\ +\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\xa4\ +\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\x40\ +\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\x00\ +\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\x03\ +\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\x30\ +\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\x0c\ +\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\xc8\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\ +\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\ +\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\ +\x64\x18\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\ +\x46\x86\x01\x20\x8d\x0c\x03\x40\x1a\x19\x86\xe6\x1d\x38\x70\xe0\ +\xc4\x89\x13\xd9\x47\x01\x0c\x80\x0c\x43\x2b\x0e\x1c\x38\x10\x11\ +\x62\x0c\xec\x4e\x86\xa1\x61\x77\xdf\x7d\x77\x44\x1c\x3d\x7a\x34\ +\xb6\x62\x1c\x7a\x0c\xec\x40\x86\xa1\x15\xf3\x31\x0e\xe3\x18\xd8\ +\x81\x0c\x43\x8b\xaa\x18\x87\x71\x0c\xec\x40\x86\xa1\x0b\xc6\x31\ +\xb0\x2d\x19\x86\xee\x18\xc7\x40\x8d\x0c\x43\x02\xe3\x18\xa8\xc8\ +\x30\xa4\x31\x8e\x01\x19\x86\x7c\xc6\x31\x4c\x96\x0c\x43\x5f\x18\ +\xc7\x30\x41\x32\x0c\xbd\x63\x1c\xc3\x74\xc8\x30\xf4\x94\x71\x0c\ +\x53\x20\xc3\xd0\x77\xdb\x8e\xe3\xd0\x63\x18\x05\x19\x86\x61\xa8\ +\x8d\xe3\x70\xb2\x1a\x46\x41\x86\x61\x60\x9c\xac\x86\x31\x91\x61\ +\x18\x2a\x57\x72\xc1\x08\xc8\x30\x0c\x9b\x71\x0c\x83\x26\xc3\xd0\ +\xb0\xd9\x3c\x9d\x05\xb2\x1b\xc6\x31\x0c\x91\x0c\x43\x5b\x52\x7a\ +\x6c\x1c\xc3\xb0\xc8\x30\x34\x6c\x16\xbc\x59\x02\xab\x22\x1a\xc7\ +\xc0\x22\x19\x86\xb6\xd4\x7a\x6c\x1c\x03\x8b\x64\x18\x5a\x57\x35\ +\xcf\x38\x06\x16\xc9\x30\x74\xc4\x38\x06\x16\xc9\x30\x74\xcd\x38\ +\x06\x66\x64\x18\x1a\xb6\xe4\xc4\x34\x8e\x81\x90\x61\x68\xcf\x4a\ +\x3d\x36\x8e\x61\x9a\x64\x18\x1a\x76\xfc\xb6\xbd\xd5\x13\x07\xef\ +\x3b\x59\x3d\xb1\x4c\xd5\x8c\x63\x98\x26\x19\x86\xb6\xd4\x7a\x3c\ +\xf4\x71\x1c\x7a\x0c\x2d\x90\x61\x68\x5d\xd5\xe3\xa1\x8f\xe3\x70\ +\xb2\x1a\x5a\x20\xc3\xd0\x91\xa1\x8f\xe3\x70\xb2\x1a\x5a\x20\xc3\ +\xd0\xb5\x81\x8e\xe3\x70\x25\x17\xb4\x40\x86\x21\x47\x83\xe3\x38\ +\x5c\xc9\x05\x83\x25\xc3\x90\x6c\xf3\x71\x1c\x7d\xba\x92\x4b\x8c\ +\x61\x25\x32\x0c\xbd\xb0\xc9\x38\x8e\x3e\x5d\xc9\x65\x1c\xc3\x4a\ +\x64\x18\xfa\x65\x8d\x71\x1c\x7d\xba\x92\xcb\x38\x86\x95\xc8\x30\ +\xf4\xd7\xf1\xdb\xf6\x1a\xc7\x30\x6e\x32\x0c\xbd\x66\x1c\xc3\xb8\ +\xc9\x30\x0c\x80\xef\x1c\xc3\x58\xc9\x30\x0c\xc9\xb6\xe3\x38\x86\ +\xf3\x18\x20\xc6\x31\xd4\xc8\x30\x0c\x8f\xbb\x47\xc0\x68\xc8\x30\ +\x0c\xd8\xd0\x1f\x20\xd3\xdd\x23\x40\x86\x61\x0c\x06\xfa\x00\x99\ +\xee\x1e\x01\x32\x0c\xe3\x31\xf4\x71\x1c\x4e\x56\x33\x3d\x32\x0c\ +\x23\x34\xd0\x71\x1c\xae\xe4\x62\x7a\x64\x18\x46\xcb\x38\x86\xfe\ +\x93\x61\x18\x3f\xe3\x18\x7a\x4b\x86\x61\x2a\xdc\x5a\x11\x7a\x48\ +\x86\x61\x72\x66\x0f\x55\x5d\x71\x6b\x45\x48\x24\xc3\x30\x5d\xf3\ +\x27\xab\x3d\x40\x66\xb3\x8a\xa2\xa8\x9e\x28\xcb\x32\xf7\x48\xe8\ +\x39\x19\x86\xa9\x5b\x63\x1c\x47\x9f\xae\xe4\xea\xf9\x38\xd6\x63\ +\x76\x27\xc3\xc0\xeb\xaa\x4e\x54\xd9\x30\x8e\x37\xb4\xf8\xc8\x24\ +\xd5\x5f\xac\x18\x53\x23\xc3\xc0\x59\xe6\x63\x1c\xc6\xf1\xc6\x6a\ +\x3d\x36\x8e\xa9\x91\x61\x60\x1b\xb3\x48\x18\xc7\x4d\xa9\xfd\x2b\ +\xc1\x38\xa6\x22\xc3\xc0\x6e\xb6\x1d\xc7\x31\x9c\xc7\x00\x31\x8e\ +\xe9\x39\x19\x06\xce\xad\x36\x8e\x63\x38\x8f\x01\x62\x1c\xd3\x73\ +\x32\x0c\xac\x60\x93\x93\xd5\x3d\x1c\xc7\x91\xdd\xe3\x6d\xc7\xb1\ +\x18\x4f\x8a\x0c\x03\xeb\x58\xe3\x4a\xae\x1e\x8e\xe3\xe8\xd9\xc9\ +\xea\x59\x8c\x95\x78\x3a\x64\x18\x58\xdf\xd0\xc7\x71\xf4\xe6\x64\ +\xf5\xec\x9f\x05\x15\x25\x9e\x0e\x19\x06\x1a\x30\xd0\x71\x1c\xd9\ +\x57\x72\xd5\xea\x5b\xfb\x07\x0a\x53\x20\xc3\x40\x63\x1a\x1c\xc7\ +\x31\xf6\x2b\xb9\xb6\x0d\x30\x13\x24\xc3\x40\xf3\x36\x1f\xc7\xd1\ +\xa7\x2b\xb9\x1a\x6c\xa4\xfa\x52\x23\xc3\x40\x5b\x3c\x06\xc8\x3c\ +\x01\x66\x5b\x32\x0c\xb4\x6e\xca\x0f\x90\xa9\xbe\xec\x4e\x86\x81\ +\x8e\x4c\x6d\x1c\xaf\x11\x60\x17\x67\x4d\x90\x0c\x03\x5d\x9b\xc2\ +\x38\x9e\xbd\xce\x92\xf3\x77\x3e\xc0\x7e\x54\x69\x52\x64\x18\xc8\ +\x31\xbe\x71\x5c\xb3\xc6\xfc\x15\xe0\x09\x92\x61\x20\xd9\x68\xee\ +\x1e\x51\x1d\xd2\x1a\xf3\x37\x04\x78\xc2\x64\x18\xe8\x85\xc1\xdd\ +\x3d\xa2\xf6\xad\xdf\x25\xa9\x2f\x35\x32\x0c\xf4\x4b\xff\x1f\x20\ +\x73\xbd\x8b\x9f\x05\x98\x6d\xc9\x30\xd0\x53\x7d\x7b\x80\x4c\xf5\ +\xa5\x0d\x32\x0c\xf4\x5a\x1f\xc6\xb1\x00\xd3\x1e\x19\x06\x86\xa1\ +\xfb\x71\xac\xbe\x74\x40\x86\x81\x21\xe9\xe6\xee\x11\x02\x4c\x67\ +\x64\x18\x18\xa4\x36\xee\x1e\xa1\xbe\x74\x4f\x86\x81\x01\x6b\xf6\ +\x31\x40\x16\x5f\x61\x17\x8b\x8f\xda\x21\xc0\xac\x41\x86\x81\x31\ +\x68\xe4\x01\x32\xcd\x5f\xba\x27\xc3\xc0\x78\xac\x3d\x8e\x97\xb9\ +\xa7\x82\xfa\xd2\x06\x19\x06\x46\x68\xbd\x71\xbc\x13\x01\xa6\x3d\ +\x32\x0c\x8c\xd6\x7a\xe3\x78\x46\x7d\xe9\x80\x0c\x03\xe3\xb7\xea\ +\x38\x16\x60\x3a\x23\xc3\xc0\x54\x9c\x73\x1c\xab\x2f\xdd\x93\x61\ +\x60\x72\x76\xba\xb5\x62\xed\x15\xa0\x03\x32\x0c\x4c\xd4\xe2\xad\ +\x15\xd5\x97\xee\xc9\x30\x30\x75\xea\xdb\x73\x87\x0e\x1d\x7a\xf3\ +\x9b\xdf\x1c\x11\x67\xce\x9c\xb9\xe8\xa2\x8b\x3e\xf3\x99\xcf\x64\ +\x1f\x51\x93\x64\x18\x80\x5e\x7b\xe8\xa1\x87\x0e\x1f\x3e\x7c\xea\ +\xd4\xa9\xef\x7e\xf7\xbb\x2f\xbd\xf4\x92\x0c\x03\x40\x47\xbe\xf9\ +\xcd\x6f\x5e\x79\xe5\x95\xb7\xdf\x7e\x7b\x44\xec\xdf\xbf\x7f\xdf\ +\xbe\x7d\xd9\x47\xd4\x30\x19\x06\xa0\xbf\x6e\xba\xe9\xa6\xef\x7f\ +\xff\xfb\x11\xf1\xd9\xcf\x7e\xf6\xf4\xe9\xd3\x9f\xfb\xdc\xe7\xb2\ +\x8f\xa8\x61\x32\x0c\x40\xaf\x1d\x3c\x78\xf0\x91\x47\x1e\x79\xfc\ +\xf1\xc7\x3f\xf5\xa9\x4f\x65\x1f\x4b\xf3\x64\x18\x80\xbe\x7b\xe0\ +\x81\x07\x6e\xbc\xf1\xc6\x0f\x7f\xf8\xc3\xdf\xf8\xc6\x37\x3e\xf8\ +\xc1\x0f\x66\x1f\x4e\x93\x64\x18\x80\x5e\x3b\x7c\xf8\xf0\xf9\xe7\ +\x9f\x5f\xdd\x8f\xf2\x89\x27\x9e\x90\x61\x00\xe8\xce\x63\x8f\x3d\ +\x76\xcf\x3d\xf7\x54\x4f\xbf\xf2\xca\x2b\xb9\x07\xd3\x38\x19\x06\ +\xa0\xbf\x8e\x1d\x3b\xf6\xc2\x0b\x2f\xdc\x7a\xeb\xad\xe7\x9d\x77\ +\x5e\x59\x96\x57\x5f\x7d\x75\xf6\x11\x35\x4c\x86\x01\xe8\xaf\x23\ +\x47\x8e\x1c\x39\x72\x24\xfb\x28\x5a\x24\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x80\x5e\x2b\x8a\x3f\x2b\xcb\xab\xb2\x8f\xa2\x2d\x32\x0c\x40\x7f\ +\x15\xc5\x03\x11\xbf\x9b\x7d\x14\x2d\x92\x61\x00\xfa\xec\xb7\x22\ +\xca\xa2\xf8\xfd\xb2\x1c\xdb\xbd\x95\x2a\x32\x0c\x40\x4f\x15\xc5\ +\xf1\x88\x7f\x1c\xf1\x5a\xc4\xde\xec\x63\x69\x8b\x0c\x03\xd0\x5b\ +\x7b\x23\xf6\x44\x94\x11\xd7\x15\xc5\x3b\xca\xf2\xfb\xd9\xc7\xd3\ +\x3c\x19\x06\xa0\x8f\x8a\xe2\xef\x45\x7c\x6d\x2b\xc3\x7b\x22\x6e\ +\xce\x3e\xa2\x56\xc8\x30\x00\xfd\xf4\x7b\x11\x7b\x22\xce\xdf\xca\ +\xf0\xde\xa2\x78\x4b\x59\xfe\x45\xf6\x51\x35\x4c\x86\x01\xe8\xa7\ +\xbd\x11\xe7\x47\x5c\x18\xf1\x97\x11\xe7\x47\xfc\x7a\xc4\x8d\xd9\ +\x87\xd4\x3c\x19\x06\xa0\x77\x8a\xe2\x78\xc4\xf5\x5b\x67\xa4\xab\ +\x35\xbc\x67\x94\x17\x6a\xc9\x30\x00\x3d\xb4\x37\xe2\x6d\x8b\x19\ +\x2e\x8a\xab\xcb\xf2\x85\xec\x63\x6b\x92\x0c\x03\xd0\x3b\x65\xf9\ +\xd1\xa2\xf8\xd1\xd9\x19\x3e\xbf\x2c\x8f\x45\x1c\xcb\x3e\xb4\x86\ +\xc9\x30\x00\x7d\x54\x96\x6f\x2b\x8a\x87\x23\xae\x8f\x78\x25\xe2\ +\xdb\x65\xf9\xa9\xec\x23\x6a\x85\x0c\x03\x40\x1a\x19\x06\x80\x34\ +\x32\x0c\x00\x69\x64\x18\x00\x5e\x77\xe4\xc8\x91\x53\xa7\x4e\x5d\ +\x7b\xed\xb5\xfb\xf7\xef\x8f\x88\xc3\x87\x0f\x5f\x7c\xf1\xc5\x47\ +\x8f\x1e\x6d\xef\x3d\xca\x30\x00\xbc\xee\xf4\xe9\xd3\x5f\xfb\xda\ +\xd7\xae\xba\xea\xaa\x88\x78\xec\xb1\xc7\x9e\x7c\xf2\xc9\x7d\xfb\ +\xf6\xb5\xfa\x1e\x65\x18\x00\x5e\x77\xef\xbd\xf7\xfe\xe0\x07\x3f\ +\xf8\xf9\xcf\x7f\x1e\x11\xaf\xbe\xfa\xea\xbe\x7d\xfb\xee\xbf\xff\ +\xfe\x56\xdf\xa3\x0c\x03\xc0\x1b\xf6\xef\xdf\x7f\xfc\xf8\xf1\x77\ +\xbc\xe3\x1d\x4f\x3d\xf5\xd4\xbb\xde\xf5\xae\xb6\xdf\x9d\x0c\x03\ +\xc0\x1b\x6e\xb9\xe5\x96\xef\x7c\xe7\x3b\x5f\xf8\xc2\x17\xde\xfb\ +\xde\xf7\x7e\xe2\x13\x9f\x68\xfb\xdd\xc9\x30\x00\x9c\xe5\x4b\x5f\ +\xfa\xd2\xbb\xdf\xfd\xee\xf7\xbd\xef\x7d\x1d\xbc\x2f\x19\x06\x80\ +\xba\xcb\x2e\xbb\xec\x63\x1f\xfb\x58\x07\xef\x48\x86\x01\xa0\xee\ +\xf4\xe9\xd3\x0f\x3f\xfc\xf0\x47\x3e\xf2\x91\xb6\xdf\x91\x0c\x03\ +\xc0\x1b\xae\xbb\xee\xba\xef\x7d\xef\x7b\x67\xce\x9c\x79\xe2\x89\ +\x27\x6e\xba\xe9\xa6\x47\x1f\x7d\xb4\xd5\x77\x27\xc3\x00\xf0\x86\ +\xa7\x9f\x7e\xba\xcb\x77\x27\xc3\xd0\x3b\x07\xef\x3b\x99\x7d\x08\ +\x40\x47\x64\x18\xfa\x62\xb1\xbe\xb3\x97\x1c\xbf\x6d\x6f\xe7\x87\ +\x03\xe3\x51\x3c\x58\x44\x44\x3c\x10\xe5\x7f\x2a\xb3\x8f\xa5\x4e\ +\x86\x21\x5f\x2d\xc0\x65\xf9\xfa\x57\x8a\xa2\x28\xe6\x5f\x41\x8c\ +\x61\x0d\xaf\x37\x38\x22\xfe\x69\x14\xff\xbc\x88\xd3\x11\x6f\x7e\ +\xe3\x57\xcb\x3f\x48\x0e\xb3\x0c\x43\x9a\x9d\xea\xbb\xf8\x92\xaa\ +\xc7\xc6\x31\xac\xef\xc5\x88\x5f\x8d\x78\x4f\xc4\x9f\x44\x54\x9f\ +\x58\xa7\x22\x9e\x49\x3e\xa8\x90\x61\x48\x71\xce\x00\xd7\x54\xaf\ +\x60\x1c\xc3\xaa\x8a\x7f\x52\xc4\x0d\x11\x7b\x23\xae\x8d\x28\x23\ +\x7e\x1c\xf1\x5a\xc4\x2f\x22\x7e\x11\xf1\x3f\xa3\x7c\x3a\xff\x1c\ +\xb5\x0c\x43\x77\x56\xad\x6f\x8d\x71\x0c\xcb\x2b\xfe\xa0\x88\xbd\ +\x11\xbf\x1b\xb1\x27\xa2\x8c\x78\x2d\xe2\x2f\x23\x22\xe2\x3d\x11\ +\xff\x21\xe2\xcf\xa2\xfc\xef\xf9\x0d\x0e\x19\x86\x6e\x6c\x18\xe0\ +\x9a\x6d\xc7\x71\xe8\x31\x44\x14\xbf\x57\xc4\x75\x11\x97\x47\xfc\ +\xe6\xdc\xc9\xe7\x97\x23\x7e\x1a\xf1\xa3\x88\xbf\x15\x11\x11\x2f\ +\x44\xf9\x6c\x2f\x1a\x1c\x32\x0c\xad\x6a\xb6\xbe\x35\xae\xe4\x82\ +\x99\xe2\xfa\x22\x6e\x8d\xb8\x3c\xe2\xb7\x23\xce\xdb\x9a\xbf\x7f\ +\xb1\x15\xe0\xff\x15\xf1\x5c\xc4\x53\x11\xff\x36\x22\x7a\xd4\xe0\ +\x90\x61\x68\x49\xab\x01\xae\x71\xb2\x9a\x29\x2b\xfe\x59\x11\xbf\ +\x19\x71\x57\xc4\x45\x5b\xf3\xf7\x17\x5b\xf5\x7d\x29\xe2\xb9\x88\ +\xef\x45\x7c\x3e\xe2\xef\x47\x1c\x8c\x88\x28\x6f\xed\x51\x83\x43\ +\x86\xa1\x71\xf3\x01\x6e\xb5\xbe\x8b\x5c\xc9\xc5\x74\x14\xef\x2b\ +\xe2\x1f\x45\xec\x8d\xb8\x25\xa2\xd8\x9a\xbf\xaf\x44\xfc\x34\xe2\ +\xe5\x88\xe7\x23\x9e\x8b\xf2\x8f\xcf\xfa\x04\x2c\x1e\x2c\xfa\xd6\ +\xe0\x90\x61\x68\x49\xc7\x01\xde\xf6\x5d\x1b\xc7\x8c\x52\x71\x47\ +\x11\xbf\x11\x71\x38\xe2\xc2\x88\x32\xa2\x8c\x78\x75\xab\xbe\x3f\ +\x8c\x78\x2e\xe2\xd9\x28\xff\x7c\x9b\x4f\xc0\x1e\x36\x38\x64\x98\ +\x2c\x23\x1e\x6a\x89\x01\xae\x59\x66\x1c\x7b\xe0\x4c\x7a\x6b\xeb\ +\x43\xf7\xc5\x37\x9e\xfd\x72\xc4\xe5\x11\x1f\x8c\x88\xad\xf9\xfb\ +\xd3\xad\x00\xff\x69\xc4\x73\x51\xfe\x49\x5f\x3e\xfb\x96\x57\xf4\ +\xe7\x4b\x06\xd3\x31\x0b\x43\x65\xa0\x31\x5e\xac\x5a\xf5\x92\xde\ +\x7e\x4e\xd5\xfe\xda\xe7\xf5\xf6\x98\x99\xac\x1d\x3f\x5c\xff\xf3\ +\xd9\xf3\xf7\xcf\x23\x9e\x8b\x78\x26\xca\x1f\x0d\xf5\x63\xd8\x1a\ +\x26\x81\xb3\xa6\x29\x6a\xe3\x78\xfe\x85\x30\x18\x3f\x89\x78\x39\ +\xe2\xe5\x88\xe7\x22\x9e\x8b\xf2\xbf\x0d\xfe\x03\x58\x86\xc9\xe4\ +\x92\xa2\xee\xcd\xfe\xce\x05\x98\x61\xf9\x2f\x11\x2f\x47\xfc\xf8\ +\x77\xe2\x5b\x11\x0f\x5f\x16\xe5\xff\x19\xc9\x07\xb0\x0c\x93\xcf\ +\x38\xee\x9e\x06\x33\x38\xaf\x45\x5c\x1a\xf1\xcb\x11\x57\x45\x7c\ +\xf8\x27\x71\x4f\x51\xfc\xcb\x51\x7c\x18\xcb\x30\x3d\x62\x1c\x03\ +\x3b\x79\x7e\x2b\xc3\x7f\x25\xe2\x57\x22\x7e\x35\xe2\xa1\xa2\x38\ +\x19\xf1\x78\xc4\x1f\x0d\xb9\xc7\x32\x4c\xef\x18\xc7\x40\x59\x96\ +\xb5\xeb\x18\xfe\x7d\xc4\x35\x11\xbf\x16\x71\x69\xc4\xa5\x11\x17\ +\x47\xbc\x35\xe2\x92\x88\xab\x22\xfe\xb0\x28\x4e\x46\xdc\x31\xcc\ +\x18\xcb\x30\xfd\x65\x1c\xc3\x94\xd5\x4a\xfc\x5f\xcb\x32\x22\xde\ +\x59\x14\xfb\x22\xae\x89\x78\xdb\x56\x8f\xff\x6a\xc4\x15\x11\x6f\ +\x8f\x78\xb8\x28\x7e\x1c\xf1\x54\xc4\x57\x07\xd5\x63\x19\xa6\xef\ +\x8c\x63\x98\xac\xc5\x8b\x18\xfe\xb4\x2c\x23\xe2\x4d\x45\xf1\xee\ +\x88\x6b\x22\xae\x8e\xf8\xe5\x88\x4b\x23\xde\x12\xf1\x96\x88\xb7\ +\x46\x5c\x15\xf1\xef\x8a\xe2\xc7\x11\x87\x06\x12\x63\x19\x66\x30\ +\x8c\x63\xa0\x72\x6a\x2b\xb1\xbf\x56\x14\x7f\x3b\xe2\x9a\x88\x2b\ +\xb6\x7a\xfc\xa6\x88\xb7\x45\x5c\x11\xf1\x68\x51\x9c\x8c\x78\x26\ +\xe2\xdf\x94\x65\x44\x3c\x53\x14\x2f\x45\x3c\x13\xf1\xfb\xdb\xe5\ +\xf9\xae\xbb\xee\x7a\xf5\xd5\x57\x6f\xb8\xe1\x86\x8f\x7e\xf4\xa3\ +\x11\x71\xe8\xd0\xa1\x2b\xaf\xbc\xf2\xd3\x9f\xfe\x74\x07\x7f\x16\ +\x19\x66\x60\x8c\x63\x60\xe6\x7f\x97\x65\x44\x9c\x57\x14\xef\x89\ +\xb8\x26\xe2\x6f\x6e\x5d\xc6\xf5\xd6\x88\x8b\x22\x2e\x8e\xb8\x2a\ +\xe2\x8f\x8a\xe2\x1f\x44\x5c\x1a\x51\x44\x9c\x8a\xf8\x57\x45\xf1\ +\xaf\x17\x4a\x7c\xe6\xcc\x99\xaf\x7f\xfd\xeb\x97\x5f\x7e\x79\x44\ +\x7c\xe5\x2b\x5f\xf9\xd6\xb7\xbe\x75\xf3\xcd\x37\x77\xf3\x47\x90\ +\x61\x86\xca\x38\x06\x2a\xaf\x6d\x65\xf5\xaf\x17\xc5\xdf\x89\xb8\ +\x26\xe2\x57\xb6\x7a\xfc\xa6\x88\xdf\x8a\x28\x23\x2e\x8e\x28\x22\ +\xae\x8e\xf8\x6b\x11\xff\xa2\x28\xbe\x70\x76\x89\x8f\x1d\x3b\xf6\ +\xb3\x9f\xfd\xec\x85\x17\x5e\x88\x88\x1f\xfe\xf0\x87\xef\x7f\xff\ +\xfb\x3f\xff\xf9\xcf\x77\x73\xf0\x7e\x84\x9f\x91\xe8\xfe\x01\x32\ +\x07\xf7\x60\x96\x30\x1d\xd7\x17\xc5\x35\x11\xef\x8c\xb8\x34\xe2\ +\x1f\x46\x5c\x10\x11\x11\xd5\xd7\x88\x97\x22\x5e\x89\xb8\x2b\xe2\ +\xf1\x85\x4f\xd5\x0f\x7d\xe8\x43\x45\x51\x5c\x78\xe1\x85\x0f\x3e\ +\xf8\x60\x67\x87\x6a\x0d\x33\x12\xdb\x8e\xe3\xb0\x8f\x61\x92\x9e\ +\x2a\xcb\x88\x78\x7b\x51\xfc\xdd\x88\xeb\x23\x2e\xd8\xfa\x6f\x4f\ +\xc4\xdb\x23\xde\x1e\x71\xcf\x76\xbf\xeb\xc6\x1b\x6f\x3c\x76\xec\ +\xd8\xc7\x3f\xfe\xf1\x2e\x0f\x55\x86\x19\x95\xda\x77\x8e\xc3\xc9\ +\x6a\x98\xb0\x97\xca\x32\x22\xfe\x63\x51\x5c\x32\x57\xe2\xea\xbf\ +\x77\x46\x7c\xb7\x28\x6e\x38\x7b\x10\x3f\xf9\xe4\x93\xd7\x5e\x7b\ +\xed\xf3\xcf\x3f\xdf\xe5\x41\xca\x30\xe3\xe4\x4a\x2e\xa0\xf2\x3f\ +\x22\x2e\x88\x78\xd3\x56\x80\xab\x27\x7e\x23\xe2\x6f\x44\xfc\xa4\ +\x28\x2e\xdb\xfa\x5a\x71\xe8\xd0\xa1\x4b\x2e\xb9\xe4\x91\x47\x1e\ +\xb9\xfd\xf6\xdb\x3f\xf9\xc9\x4f\xde\x7f\xff\xfd\xdd\x1c\x9e\x0c\ +\x33\x72\xae\xe4\x82\x89\xbb\xab\x2c\xdf\x3f\x77\xed\x48\x19\xf1\ +\x74\xc4\xff\x3d\x7b\x07\x7f\xf5\xab\x5f\xfd\xf6\xb7\xbf\xfd\xec\ +\xb3\xcf\x46\xc4\x97\xbf\xfc\xe5\x0f\x7c\xe0\x03\x5f\xfc\xe2\x17\ +\xef\xbc\xf3\xce\x0e\x0e\xcf\x25\x5a\x4c\x4b\x83\x57\x72\xb9\x44\ +\x0b\x46\xe3\x82\x0b\x2e\x28\xcb\xf2\xe6\x9b\x6f\x7e\xe8\xa1\x87\ +\xee\xb8\xe3\x8e\x7b\xef\xbd\xf7\x8a\x2b\xae\x78\xf1\xc5\x17\x3b\ +\x78\xd7\x32\xcc\x14\x35\x12\x63\x19\x06\x36\xe7\xa4\x34\x53\xe4\ +\x3b\xc7\x40\x4f\xc8\x30\x93\xe6\x3b\xc7\x40\x2e\x19\x06\xe3\x18\ +\x48\x23\xc3\xf0\x06\xe3\x18\xe8\x98\x0c\x43\x9d\x71\x0c\x74\x46\ +\x86\x61\x47\xc6\x31\xd0\x36\x19\x86\x73\xd8\x69\x1c\xcf\x2c\xbe\ +\x04\x60\x49\x7e\x6e\x18\x56\x53\xfb\x99\xe3\x79\x3e\x9b\x80\x55\ +\xc9\x30\xac\x69\xd6\x63\x9f\x44\xc0\xda\x64\x18\x00\xd2\xf8\xde\ +\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\x8d\ +\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\xd2\ +\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\x20\ +\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\x00\ +\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\x01\ +\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\x32\x0c\x00\x69\x64\x18\ +\x00\xd2\xc8\x30\x00\xa4\x91\x61\x00\x48\x23\xc3\x00\x90\x46\x86\ +\x01\x20\x8d\x0c\x03\x40\x1a\x19\x06\x80\x34\xff\x1f\xb7\x52\xe5\ +\x04\x91\x53\x12\xd0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x01\x39\ +\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\x06\x00\x00\x00\xaa\x69\x71\xde\ +\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\x2e\x23\x00\x00\ +\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xd9\x49\x44\x41\x54\x78\ +\x5e\xed\x9b\x31\x0a\xc3\x50\x14\xc3\xfe\xfd\x0f\xdd\x94\x52\x77\ +\x56\xc1\x04\x67\x90\x41\x9e\x02\xf1\xd3\xfe\xcf\x39\xe7\xba\x99\ +\xd7\x1f\xdf\x2c\xf9\xd4\x75\x23\xdf\x9f\x3c\x34\x0a\x48\xd1\x11\ +\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\x41\x01\x0a\x80\x11\ +\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\x19\x05\xa4\xe8\x88\ +\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\xa0\x00\x05\xc0\x88\ +\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\x8c\x02\x52\x74\x44\ +\x83\x02\x14\x00\x23\x96\x51\x40\x8a\x8e\x68\x50\x80\x02\x60\xc4\ +\x32\x0a\x48\xd1\x11\x0d\x0a\x50\x00\x8c\x58\x46\x01\x29\x3a\xa2\ +\x41\x01\x0a\x80\x11\xcb\x28\x20\x45\x47\x34\x28\x40\x01\x30\x62\ +\x19\x05\xa4\xe8\x88\x06\x05\x28\x00\x46\x2c\xa3\x80\x14\x1d\xd1\ +\xa0\x00\x05\xc0\x88\x65\x14\x90\xa2\x23\x1a\x14\xa0\x00\x18\xb1\ +\x8c\x02\x52\x74\x44\x83\x02\x14\x00\x23\x96\x51\xc0\xaf\xee\xe4\ +\xd1\xcf\xe7\xdf\xb9\xa5\x52\x55\x4f\x58\xa8\x78\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x2a\xaf\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\ +\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ +\x80\x00\x00\x00\x80\x00\x30\xe1\x31\x9a\x00\x00\x00\x06\x62\x4b\ +\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x29\xd8\ +\x49\x44\x41\x54\x78\xda\xed\x7d\x07\x9c\x1c\xd5\x99\xe7\x57\xd5\ +\x71\xba\x67\x7a\x72\xce\x1a\xcd\x28\x6b\x84\x32\x20\x59\x88\x8c\ +\x31\x02\x0c\xf6\x12\x4c\xb0\xe1\x6c\x6e\xd7\x5e\x73\xd8\xdc\x1a\ +\x9f\xf7\xd6\xbb\xe7\xb0\xbe\xb3\xd7\x61\xd7\xbb\x78\x77\xbd\x0b\ +\x36\xb6\x31\xc6\x5e\xc0\x60\x44\x30\x42\x08\xac\x41\x39\x80\xc2\ +\x04\x4d\xce\x79\xa6\x7b\x3a\x77\xdd\xf7\xbd\xaa\xea\xae\xaa\xae\ +\xea\x09\x0a\xdd\x23\xcd\xd3\xef\x53\x85\xee\xa9\xae\xf7\xbe\xff\ +\xfb\xd2\xfb\xde\x7b\x1c\x2c\x14\xa3\x62\x43\xaa\x42\x2a\x93\xa8\ +\x08\xc9\x6e\xf0\xdd\x31\x89\xda\x90\xba\xa4\x63\x78\x3e\x54\x92\ +\x5b\xe0\x33\x2b\x4e\xa4\xf5\x48\x5b\xa4\xe3\x52\x89\xe6\x5a\x42\ +\x48\xa7\x24\x6a\x40\x7a\x17\xe9\xc0\x7c\x01\xc5\xa5\x52\x6a\x90\ +\xfe\x0a\x69\x17\x92\x17\x49\x38\xcf\x34\x89\xf4\x2a\xd2\xe7\x90\ +\x4a\x17\x9a\x3f\x39\x25\x17\xe9\x4b\x48\x87\x2f\x00\xc3\xa7\xa3\ +\x3d\x48\x0f\x49\xd2\x67\xa1\x9c\xe7\xb2\x0e\xe9\x57\x17\xa8\xa7\ +\xcf\x45\x32\xfc\x0b\xd2\x92\x05\x1b\xe0\xdc\x97\x6d\x48\x5f\x47\ +\xba\x6a\x4e\xe2\x22\x37\x0f\x2a\x2a\x2b\xa1\xa4\xb4\x0c\x72\x72\ +\x72\xc0\xe5\x72\x61\x8b\x71\x60\xb3\xd9\x20\xe0\x0f\xd0\x29\x2b\ +\xa3\xa3\x23\x30\x3a\x32\x0a\xdd\x5d\x9d\xd0\xde\xde\x86\xd7\xa3\ +\x73\x7d\xdf\x17\xa4\xf7\x3d\xba\x00\x80\xb3\x2b\xf5\x48\x3f\x98\ +\x0d\xe3\x73\x72\x73\x61\xfd\xfa\x8d\xb0\xaa\x7e\x0d\xac\x46\xaa\ +\xad\x5b\x02\x4e\xa7\x13\x99\xcc\x69\x08\x62\xe7\xa0\xb9\x96\x3e\ +\x9f\x9c\x98\x80\xe3\xc7\x8e\xc1\xc9\x13\x1f\xc2\xfe\xfd\xfb\x60\ +\xef\xde\x3f\xb1\x7b\xb3\x28\xcf\x22\x7d\x0d\xa9\x65\x01\x00\xb3\ +\x2b\x99\x48\xdf\x45\x7a\x10\xc9\x3c\xdd\x97\x17\x23\x93\xaf\xbe\ +\xf6\x7a\xd8\xbe\xfd\x1a\x76\x1e\x65\x26\xe8\x30\x7b\x96\x20\xd0\ +\x7e\x7e\xf8\xd0\x41\xf8\xe3\x9b\x6f\xc0\x8b\x2f\xbe\x00\xed\x6d\ +\x6d\x33\xa9\x8b\x4f\xaa\xcb\x37\x90\xfc\x0b\x00\x98\xbe\xdc\x81\ +\xf4\x24\x52\x5e\x42\x84\x64\x66\xc1\x4d\x1f\xdb\x01\x3b\x6e\xbf\ +\x03\xaa\xab\x17\x19\x32\xd7\x62\x36\x83\xc5\x82\x64\x36\x81\x89\ +\x47\x32\xf1\x12\x43\x01\x78\x3a\x27\x9f\x2e\x22\xb0\xa3\x20\x08\ +\xc0\xfe\xa1\x46\x8f\xd0\x79\x44\xbc\x36\x02\xc9\xb1\xa3\x47\xe0\ +\x57\xbf\xfc\x05\xfc\xf6\xf9\xdf\xc0\xd4\xd4\xd4\x74\xf5\x6a\x93\ +\x00\xbd\x7b\x01\x00\xc6\xbd\x9e\x18\x7f\x57\xa2\x2f\x95\xa2\x1e\ +\xbf\xe7\xfe\xcf\xc0\x0d\x1f\xbd\x19\x6c\x76\x7b\x94\x31\x3c\x31\ +\x86\xe7\xc1\x6e\xb3\x42\x9a\xdd\x06\x36\xab\x05\xac\xc8\x78\x8e\ +\x3b\xfb\xa6\x89\x44\x22\x48\x82\x08\x10\x01\xe2\x24\xc5\xe4\xc4\ +\x38\x3c\xf7\xeb\x67\xe1\x1f\x7f\xf4\x43\x18\x1c\x1c\x9c\xee\x71\ +\xa4\xd2\xbe\x72\xae\xa5\xc1\x7c\x07\x00\x59\xf7\xcf\x4b\x11\x3b\ +\xdd\x42\x06\xdc\x7d\x0f\x3e\x04\xd7\xdd\xf4\x31\x30\x9b\xcd\x8a\ +\x5e\xce\x83\x13\x19\x9e\xee\x4c\x03\x67\x1a\x02\x82\x3f\xcf\x4d\ +\x21\x4b\x07\x42\x02\x80\x4a\xe2\x90\x41\xf9\xb3\xa7\x9f\x92\x80\ +\x30\x90\xe8\x29\x47\xf0\x6f\xee\xc4\x67\xb4\x2c\x00\x00\xe0\x01\ +\xa9\xe7\xeb\x86\x67\x9d\xce\x74\xb8\xf7\x81\xcf\xc0\x1d\x7f\x76\ +\x0f\x32\xde\xa2\x10\xed\x26\x70\xa5\x3b\x21\x33\xc3\x09\x66\x93\ +\x29\x29\x2f\x2e\x28\x1b\x5f\xa1\x76\xa6\x3c\x1e\x06\x82\x7f\xf9\ +\xe7\x1f\x83\xdf\x6f\xd8\xd1\xc7\x24\x69\xf7\xda\xa5\x0c\x80\x6f\ +\x4b\xe2\x50\xb7\x6c\xf9\xc8\x76\xf8\xef\x7f\xf9\x18\xe4\x17\x14\ +\x46\x7b\x1a\x31\x3e\x27\xcb\xc5\x18\x7f\x2e\xc4\xfb\xb9\x2c\x3c\ +\xaf\xb6\x43\x9a\x9b\x9a\xe0\xb1\x47\xbf\x08\xfb\xf6\xbd\x6f\xf4\ +\x27\x14\x6a\x7e\x14\xe9\xc7\x67\xfb\xdb\xa6\x79\xc6\x78\x7a\xdf\ +\x5f\x22\x3d\x62\xd4\xeb\xbf\xf8\xf8\x13\xf0\xc0\x43\x8f\x80\x03\ +\xcf\x09\xdf\x26\xd4\xef\x79\xd9\x2e\x28\x2e\xc8\x65\x7a\x3e\x15\ +\x8b\x52\x2d\x88\xf1\x87\x5c\xb8\xe7\xde\x4f\x61\x7d\x1c\xd0\xb0\ +\x77\x2f\x84\xc3\x71\x43\x08\x3c\xd2\x47\x25\xe9\xf7\xc7\x4b\x45\ +\x02\x98\x24\xff\xf8\x4e\x23\x97\xee\xab\x7f\xf3\x4d\x28\x2c\x2e\ +\x65\x95\xa2\xc6\xa4\xde\x5e\x98\x97\x8d\x2a\xe0\xec\x70\xee\xf5\ +\x05\xc0\x33\xe5\x05\x7f\x20\x08\x53\x3e\x1f\x84\x43\x61\x26\xc6\ +\xc9\x53\x20\x50\xd9\xed\x56\xb4\x25\x1c\x60\x47\x03\xf2\x6c\x05\ +\xb2\xd9\xcc\xa3\x44\xe0\xa3\x46\xea\x87\x1f\x1e\x87\xcf\x7c\xfa\ +\x41\x68\x6b\x6d\x4d\x64\x1c\xfe\x8f\x8b\x1d\x00\x09\x99\xbf\xfd\ +\xba\x1b\xe1\x2f\x1e\x7d\x9c\x45\xe8\xa8\xe1\xc8\xd8\x2b\x2d\xcc\ +\x63\x06\xde\xec\x99\xed\x87\xfe\x81\x61\xe8\x1b\x1e\x85\xa1\xe1\ +\x31\x18\x9d\x70\xa3\x3e\x0e\x48\x96\xbc\x44\xb2\xeb\x27\xc4\x2c\ +\x7c\x3a\x12\x18\x48\xcd\xe4\xe5\x66\x41\x19\xfe\x7e\x59\x71\x01\ +\xbe\xd3\xec\xa5\x0e\x49\x2d\x02\x17\x19\xa6\xf4\x6f\x02\xbd\x05\ +\x02\xc1\x9e\x77\x76\x9f\x73\x10\xcc\x17\x00\xfc\xc6\x88\xf9\xf7\ +\xdc\xff\x10\x7c\xf2\xde\xfb\xa3\xfa\x33\xc3\xe1\x80\xd2\xe2\xfc\ +\x59\x19\x78\x1e\xaf\x17\xda\x3a\xfb\xa0\xa3\xa7\x1f\x86\x47\xc7\ +\xa3\xd6\xba\xcc\xdc\x40\x30\x08\x3e\x34\xca\x48\x14\xfb\x08\x0c\ +\x51\x33\x4e\x94\x02\xd4\x63\xad\x16\x0b\xba\x94\x7c\x34\x1e\x40\ +\xff\xd1\xfb\x14\xe6\xe7\x40\x6d\x55\x19\xd4\x2d\xaa\x60\xde\xc6\ +\x8c\x19\x43\x21\x67\x94\x28\x62\xcc\x81\x43\x77\x32\x0c\x5f\xf9\ +\x9f\x8f\xc3\xd3\xe8\x2d\x18\x94\xbf\x47\x7a\xe2\x62\x04\xc0\xff\ +\x43\xfa\x72\xbc\xe1\x64\x82\x87\xff\xfc\x2f\xe1\xc6\x9b\x6f\x8d\ +\xba\x53\xf9\xb9\xd9\x28\xf2\x73\x60\xa6\x36\x5e\x77\xdf\x10\x9c\ +\x69\xef\x86\x9e\x81\xa1\x28\xc3\x43\xc8\xe4\x91\xf1\x09\x18\x9b\ +\x98\x84\x09\xb7\x1b\xc1\xe1\xd3\xd3\xc1\xfa\x3d\x17\x41\xe7\xb0\ +\xdb\x19\x39\xd3\xd2\xc0\x81\x44\xef\x26\x48\x60\xa8\xa9\x28\x81\ +\xd5\xcb\x6b\xa1\x1c\x01\x3a\xd3\x62\x45\x10\x30\x69\x20\x05\x93\ +\xfe\xcf\xdf\xfd\x2d\xf3\x14\x0c\xca\xe7\x67\x6b\x18\xa6\x3a\x00\ +\x68\xb8\xf4\xdf\xe3\x99\xcf\xc3\xa3\x7f\xf5\xd7\x70\xc5\x96\x6d\ +\xac\x61\xe9\xba\xb4\x28\x1f\xb2\x33\x33\x66\xc8\xf8\x41\x38\xd5\ +\xd2\x0e\x13\x93\x1e\xc6\x9c\x20\xea\xf4\xbe\xa1\x21\xe8\x1d\x1c\ +\x82\x71\x64\x7c\x44\x88\xf5\xf0\x00\x58\x60\x8a\x73\x82\x97\x4b\ +\x83\x20\xd8\x20\xcc\xa9\x23\xcc\x66\x21\x08\x56\xc1\x8f\xd6\x98\ +\x17\x1c\x82\x07\xbf\x1d\x8a\xbd\x27\xbe\x1b\xd9\x06\x59\x19\x2e\ +\x3c\x3a\x99\xe5\x46\x4f\x26\xa9\x70\xe5\xfa\x55\x50\x56\x54\x30\ +\x33\x10\x58\xcc\x4c\x95\xc8\x20\xf8\xc9\x93\x4f\xc2\x5f\x7f\xed\ +\xab\x46\xde\xc1\xc7\x66\xe3\x22\xa6\x32\x00\x36\x81\x98\x49\x13\ +\x17\xd3\xff\xdc\x17\x1e\x83\x6b\x6e\xb8\x99\x35\x08\x85\x68\x2b\ +\x4a\x0b\x99\x6f\x3f\x5d\x19\x1b\x9f\x84\x0f\x1a\x5b\x59\xef\x26\ +\xc6\xbb\xd1\xb0\x6b\xed\xec\x86\xee\xfe\x01\x08\x47\x22\xa2\x0d\ +\x00\x69\x30\xcc\xe7\xc1\x28\x97\x0b\xe3\x7c\x16\x04\x38\xfb\xac\ +\x5e\x3a\x2d\xe2\x81\x4c\x61\x0c\xb2\x85\x11\xc8\x8d\x0c\x80\x15\ +\x61\x23\xeb\xf5\x9c\xac\x4c\xc8\xc9\xcc\x8a\xaa\x27\xb2\x11\xb6\ +\x6d\x5a\xc3\xec\x86\xe9\x0a\x85\xa5\xd3\x24\x1b\x67\x1a\x49\x30\ +\x86\xdf\x59\x3f\xd3\x60\x51\xaa\x02\x80\x12\x37\x8e\x80\x98\x8b\ +\xa7\x2a\x77\xdd\xf7\x10\xdc\xf6\x89\xbb\x58\x43\x50\x8c\xbe\xba\ +\xa2\x18\x9c\x8e\xc4\xc6\x5e\x38\x1c\x81\xa6\xd6\x4e\x68\xef\xee\ +\x63\x8c\xf7\xa2\x25\x7f\xb2\xa5\x95\x31\x9e\x3a\x7b\x10\x31\xd6\ +\xc7\x97\x20\x95\xc2\x24\x9f\x79\x4e\x2b\x92\x15\x19\x86\xe2\x48\ +\x37\x14\x44\xfa\xd0\x92\x8d\xb0\xf7\xce\x71\xb9\x20\x3f\x27\x87\ +\xa9\x0c\x02\xc6\xda\x55\x4b\x60\xc3\xea\x65\xd3\x46\x23\x49\x15\ +\xb0\xa8\xa5\x04\x82\xc7\xbf\xf4\x98\x91\x4d\x40\x6d\xb7\x19\x66\ +\x10\x36\x4e\x55\x00\xfc\x5e\x12\x65\xaa\x72\xd5\xb5\x37\xc0\x67\ +\x3f\xff\x25\x49\xec\x73\x50\x5d\x5e\x02\x19\xe9\x8e\x84\x0f\x72\ +\x7b\xa6\xe0\xf8\xe9\x33\x30\x85\xba\x3c\x84\xa2\xbe\xa9\xad\x03\ +\x4e\xb7\xb6\xb3\x38\xbd\x1f\xfb\x67\xbb\x69\x11\xf4\xf0\xe5\x10\ +\xe1\xe2\x8d\xc6\xd2\x6c\x3b\xac\xaf\xca\x82\xa5\xc5\xe9\x50\x53\ +\xe0\x80\xa2\x4c\x3b\xa4\xdb\xd5\x02\xa9\x6f\xdc\x07\xfd\xe3\x7e\ +\x68\x1e\xf0\xc0\x91\xf6\x09\x38\xd2\x39\x0e\x1e\x7f\xbc\xcd\x40\ +\xaa\xa2\x2c\xdc\x0e\xe5\x91\x36\xa6\x26\x48\x6d\x15\xa2\xbf\x9f\ +\x93\x29\x02\x2e\x3f\x27\x0b\x6e\xbc\x6a\x13\xd6\x27\xb1\x24\x23\ +\xc3\xd0\x41\x20\x90\x0c\xc3\x4f\x7e\xe2\x4e\x23\xef\x60\x46\x9e\ +\x41\x2a\x02\x80\x42\xbc\x71\xb0\xae\xa9\x5b\x0a\xff\xfb\x5b\xdf\ +\x43\xf1\x29\xc6\xf3\x2b\x4b\x8b\xa6\xd5\xf9\xfd\xc3\x23\xac\xe7\ +\x93\x04\x18\x45\xc3\xae\xe1\xe8\x07\x0c\x10\xd4\xe3\xdb\x4c\x35\ +\xd0\xcd\x57\xa8\x18\x6f\x42\x50\x6d\xa9\xcb\x81\xdb\xd7\x16\xc1\ +\x0d\x2b\xf3\xa1\x2a\xcf\x31\xeb\x97\x0f\x85\x05\x38\xd0\x36\x06\ +\x7f\x38\x36\x00\xcf\xef\xef\x85\xd6\xa1\xa9\x38\x20\x94\x87\x5b\ +\xa1\x02\x81\x40\x12\x21\x0d\x0d\xc6\xb2\xc2\x42\xe6\x45\x10\x5d\ +\xb7\x75\x03\x54\x94\x14\x26\xfc\x0d\x8a\x3b\xc8\x20\x20\x17\xf1\ +\xba\x6b\xaf\x36\x8a\x13\x5c\x05\xd3\x8c\x22\xa6\x1a\x00\xa8\xe6\ +\x94\x49\x9b\xa5\xbc\x99\x8e\x46\xd4\x37\xbe\xfb\x4f\x90\x9b\x97\ +\xcf\x98\x5f\x54\x90\x0b\x45\xf9\xb9\x09\x1f\x44\x2e\x5d\x77\xef\ +\x00\x33\xe8\x1a\xb1\xc7\x1f\x39\xd9\xc8\xc4\xff\x00\x57\x08\x8d\ +\xe6\xe5\xa8\xdb\x6d\xd1\xef\xe6\x65\x58\xe1\xbf\x7d\xa4\x02\xee\ +\xda\x54\x0a\x85\x2e\xdb\x39\xad\xd0\xe1\x8e\x71\xf8\xe9\x9e\x0e\ +\x78\xe9\x70\x3f\x04\x42\x91\x98\xad\x80\x06\xe3\xd2\xd0\x07\x68\ +\x2b\x8c\x32\x63\xb1\x04\x41\x90\x99\x9e\xce\xea\xb7\x65\xc3\x6a\ +\x58\x5e\x5b\x9d\xf0\xb9\x14\xe3\xb0\x4b\x86\x21\x05\x8b\x6e\xba\ +\xe1\x7a\xbd\xf1\x83\x36\x10\xb3\x9b\xfd\xf3\x25\x14\x4c\x16\xff\ +\xfa\x38\xa3\xef\x8b\x8f\x43\x4d\xed\x12\x36\x70\x42\x22\xb2\x7c\ +\x9a\x1e\xd2\x89\xcc\xef\x1d\x1c\x66\x0c\x7f\x1f\x7b\xfd\xc9\x96\ +\x36\x14\xba\x26\x38\x61\x5a\x0d\xad\xe6\xda\xa8\x25\x9f\x9b\x6e\ +\x85\xc7\x6e\x58\x04\xff\xf7\x93\xcb\x99\xa8\x37\x9b\x38\xf0\x23\ +\x93\xce\x25\x65\x3b\x2d\x70\xcd\xb2\x3c\xb8\x73\x43\x09\xf8\x02\ +\x11\x38\xd9\x3b\xc9\xec\x8e\x10\x67\x85\x3e\x53\x19\x7b\x2f\xb2\ +\x13\x26\xd1\xe5\xa4\xf7\x25\xf7\xb1\xa3\xbb\x9f\x59\xfe\x05\x79\ +\xd9\x86\x75\x0c\x06\x83\x68\x13\x50\x9c\x80\x83\x82\x82\x42\x16\ +\x04\xdb\xfd\xf6\xdb\x71\x26\x88\x74\xdc\x35\x1f\x24\xc0\x95\x92\ +\xd5\xaf\xbe\xb9\xed\x6a\x78\xf8\x2f\x1e\x63\x3d\x83\x44\xe4\xd2\ +\x9a\xca\x84\xa1\xdd\x2e\x74\xf1\x06\x86\x46\x58\xf0\xe6\xed\x86\ +\x83\xe8\xde\x0d\x83\x07\x9c\x70\xdc\x72\x19\xba\x73\xe9\x22\xea\ +\xb1\xd6\x77\x6f\x2e\x83\x87\xb7\x55\x80\xc3\x6a\x3a\x7f\xad\x22\ +\xc4\xdf\x6a\x1d\x9c\x82\x6f\xbf\xd2\x04\x47\x3a\x62\x29\x62\xae\ +\xc8\x18\xac\x0a\x1d\x42\x27\x33\xc0\xa4\x40\x69\xa1\x38\x88\xb5\ +\xf9\xb2\x15\xb0\x6a\x69\x4d\xc2\x88\x61\x36\x7a\x10\xbc\x14\x31\ +\xbc\xe5\xe6\x9b\xf4\x06\x90\x28\xb3\x68\x25\x18\xa4\x97\xa5\x12\ +\x00\xf6\x6b\x7b\x7f\x7a\x7a\x06\x7c\xf3\xfb\x4f\x42\x86\x2b\x93\ +\x59\xbd\x8b\xab\xca\x12\x1a\x49\x7d\x03\xc3\x30\x38\x32\x0a\x81\ +\x40\x08\x5e\x7f\xaf\x01\x06\x87\x47\xd1\x27\xca\x82\x63\xe6\xb5\ +\xac\xc7\x31\xd7\x0b\x0d\xbb\xaf\xde\x52\x0b\x8b\x0b\xd3\x8d\x6b\ +\xcf\xcd\xb5\x99\x84\x69\x01\x20\x97\x17\x0e\xf4\xc2\x7f\xa0\x6a\ +\xf0\x05\x45\xb5\x60\x17\xbc\x50\x1f\x3c\x80\x50\xf5\x80\xcb\xe9\ +\x84\xb2\xa2\x22\x06\x82\x2b\xd6\xad\x82\x65\xb5\x55\xc6\x6e\x27\ +\xaa\x01\x97\x34\xc2\x49\xa3\x88\xd7\x6c\xdf\xa6\xa7\x0a\x28\x8c\ +\x7e\x77\x2a\xab\x80\x5b\x91\x1e\x8b\x73\xf9\x1e\xf8\x2c\xd4\x2e\ +\x59\x2e\x8a\xeb\xec\x4c\xb4\x94\xb3\x0d\x93\xab\xc9\xb7\x27\x86\ +\x53\x3a\xd6\xeb\xef\x36\xc0\x00\x1a\x80\xc4\xfc\xa3\xe6\xf5\x28\ +\xf2\xc5\x41\x1a\x32\xf0\x9e\xf8\x58\x2d\x64\xa1\xe8\x0f\xa0\x61\ +\x48\x3a\x59\x24\x01\xaf\x15\x14\xd2\x92\xf4\xbd\xb0\x01\x29\x9f\ +\xa3\xa4\xb8\x67\xc6\xbe\xbb\xa8\xc0\x09\xeb\xab\xb3\x98\x24\x20\ +\xaf\x21\x84\xef\x38\xc8\x17\x41\x6e\x64\x10\x84\xa0\x87\x49\x30\ +\x17\x4a\x03\x92\x68\x79\x39\x99\x0c\x14\x7a\xf5\xa6\x20\x16\xb9\ +\x87\x14\x0f\xa1\x51\x44\x3f\xba\xb8\x0d\x0d\x7b\xb5\x4d\x49\x12\ +\x80\x32\x8e\xfb\x53\x55\x02\xd0\x44\x8d\x35\xca\x1b\x65\x15\x55\ +\xf0\xbf\xbe\xf9\x0f\x2c\x68\x42\x41\x10\x32\x8a\x8c\xe2\xfb\xbe\ +\x40\x80\xe9\x7d\x4a\xbf\x7a\xab\x61\x3f\xb4\xb4\x77\x29\x98\x6f\ +\x66\xb5\xdc\x71\x59\x31\x7c\x7c\x5d\x91\xa6\xc6\x9c\xfa\x5a\xa7\ +\x35\xee\x58\x53\x08\xe9\x36\xf3\xac\x2a\xf3\x6e\xcb\x28\xb4\x28\ +\xad\x7f\xad\x24\x50\x44\x1a\x27\xbd\x21\xf8\xe1\x9b\xad\xd0\xdc\ +\xe7\x66\xdf\xa3\xa8\xe2\x65\xc1\x7d\x4c\x12\xe4\x65\x67\x33\x57\ +\x91\xec\x81\x1d\xd7\x6d\x85\x0c\xa7\xc3\x20\x04\xcd\x33\x37\x92\ +\xe2\x08\x94\x54\xb2\x79\xe3\x06\xbd\xcc\x22\x02\xc0\xed\xa9\x28\ +\x01\x6e\xd6\xeb\xfd\xf7\x7c\xfa\x11\x28\x29\x2b\x67\x86\x1f\x85\ +\x79\x29\xd8\xa3\xd7\xf9\x29\x82\x47\xa2\x9f\xac\xfd\x63\xa7\x9a\ +\xd0\xe7\x6f\x06\x0f\xe7\x84\xc3\x96\xcd\x10\x46\x97\x91\x92\xfe\ +\x6e\x5f\x57\x02\xd7\xae\xc8\x8f\xf5\xc4\x68\xcf\x8c\xc4\xf7\xd2\ +\xb0\x9a\x56\x97\x66\x80\xcd\xcc\xcf\xaa\x42\x8d\xa8\xe7\x7b\xc6\ +\xfd\xfa\xcf\x0c\x45\x54\xbf\x47\xf5\x5b\x53\xe1\x82\xe6\x41\x2f\ +\x8c\x79\x83\x0c\xb0\xc3\x7c\x3e\x14\x84\x7b\x21\xe0\xf3\xa0\xdf\ +\x6f\x65\x3d\xbc\x1f\xed\x9a\x9a\xaa\x32\x86\x52\x6d\x1b\x10\xf0\ +\x81\xd9\x48\x66\xb0\xe2\xf7\x69\x34\x74\xd7\xae\xb7\xb4\xaf\xb5\ +\x54\x52\x05\xc3\xaa\xb0\x7a\x0a\x00\xe0\xf3\xda\x1b\xd4\xfb\xeb\ +\xd7\x6d\x64\x56\x31\x55\x8a\x42\xa5\xea\xe1\xd7\x18\x8d\x8e\x4f\ +\x32\x10\x90\xc8\x27\x8b\x9f\x7c\xfc\x63\xd6\x75\x12\xf3\x79\xf8\ +\x68\x7d\x21\x6c\x5c\x94\x0d\xee\x40\x58\xa4\x20\x1d\x23\x0a\x52\ +\xdc\x0f\x4a\xe7\x74\x3f\x28\x92\x20\x08\xb3\xae\x90\x3f\xac\x78\ +\xb6\xea\xb9\x61\xf1\xb9\xf2\x6f\x4b\xf7\x09\x07\x0f\x5c\x59\x0e\ +\x15\xf9\x0e\x06\x58\x9f\xc9\x01\xc7\xb1\x0e\x11\x64\x76\x4f\x7f\ +\x3f\x53\x07\xc3\xa3\x13\x70\xf4\x44\xb3\x61\x3b\xb8\xdd\x53\x10\ +\x09\x8b\xef\x7b\xff\x03\x0f\x42\x7e\xbe\xee\x80\xd3\xa3\xa9\x26\ +\x01\x96\x48\x11\xab\x38\xdd\x5f\x54\x22\x46\x81\x69\xc0\xc4\x61\ +\x30\x8c\x4a\x09\x1a\x34\x62\x17\x0c\x85\xe0\xc5\x37\x76\xb3\xeb\ +\x0f\xad\x6b\x60\xc2\x9c\xc3\x4c\x7d\x62\xfc\x95\xb5\x39\x62\x6f\ +\x8b\x08\xf1\x47\xd5\x3d\x88\xbf\x8f\x74\x79\x55\x26\xa4\x59\x66\ +\xd7\x4c\xc7\x7b\x3d\xd0\x31\xe6\xd3\xfc\x46\x24\xfe\x1d\x14\x12\ +\x88\x3a\xf1\xb2\xe2\x0c\x38\x35\xe0\x01\x2f\xea\x75\x3f\x9f\x06\ +\x61\x64\x4f\x4e\x78\x08\xbc\x68\xd4\x65\xbb\x5c\x08\xf2\x51\xa8\ +\x2c\x2d\x64\x52\x21\xce\xfc\x94\xd2\x8e\x6d\x4c\x02\x98\x98\xd4\ +\x30\x90\x02\x3f\x22\x2f\x32\x55\x24\xc0\x83\xda\x1b\x39\xb9\xf9\ +\xb0\xb2\x7e\x9d\xd4\xfb\x2d\x90\x95\x99\xc1\xc4\x7b\x1c\x61\x83\ +\x4e\xba\x3d\xcc\xfa\x3d\x70\xfc\x04\x4c\x7a\x50\xec\x9a\x4b\x61\ +\xc8\x5a\xc4\x98\x5f\x96\xeb\x80\x4d\x35\xd9\x52\x4f\x96\x7b\x62\ +\x44\x73\x8d\x14\x92\xee\x85\xc2\x22\xb1\xf3\x18\xcd\x41\x00\xa0\ +\x04\x10\x62\xcf\x0d\x2a\x9e\xab\xfd\x6d\xcd\xbd\x00\xfe\xd8\x2d\ +\x28\xb1\xac\x56\x51\x75\x75\xda\x16\xc1\xa8\x29\x87\x8d\x5d\x8c\ +\x8c\x8f\x8b\x71\x8d\x23\x27\xf4\xdb\x03\x69\x92\x49\x81\x30\x7b\ +\xe7\x4f\xfe\xd9\x5d\xe0\x70\xc4\xd9\x0c\xe4\x07\xdf\x95\x4a\x2a\ +\xe0\x53\x71\x7e\xff\xf6\xeb\x58\x9e\x3e\x55\x96\xac\x5f\x60\x13\ +\x2d\x22\x71\x44\x89\x19\x54\x69\xb2\xfe\x0f\x7d\x78\x1a\x02\x68\ +\x45\x37\xdb\x57\xb0\x86\xb3\xd9\x4c\xb0\x6d\x49\x2e\xf8\x90\x09\ +\x53\xd8\xc0\x53\x7a\xc7\x90\xce\x7d\x9d\xef\x44\xe6\x02\x80\x88\ +\xe6\x77\x66\xf2\xdb\xd2\xd1\x6a\xe1\x61\x6b\x9d\x28\xc1\x48\x85\ +\x9d\xb2\xaf\x46\x49\xc0\x43\xff\xf0\x30\xcb\x4b\xe8\x1f\x1c\x41\ +\x9b\x67\x48\xb7\x4d\xe8\x73\xf7\x94\x8f\xb5\x1d\xb9\xce\x77\xdc\ +\xf9\x89\x69\x3b\x5d\x32\x01\x70\xa5\x76\xb4\x8f\x06\x48\x36\x5e\ +\xb1\x4d\x4a\xa0\x00\xec\xfd\x2e\x08\xe3\xb9\x1e\xf9\xfc\x41\x96\ +\xdb\xff\xee\xc1\xa3\xec\xfb\x2d\xb6\x65\x10\x32\x59\x29\x3a\x02\ +\x1b\xaa\xb2\x41\xc0\x07\x78\xb0\x51\x3d\xd8\xfb\x3c\xc1\x88\x74\ +\x3e\x0d\x85\x35\x47\x92\x00\x30\x7b\x04\x90\x48\x57\x3e\x43\x4d\ +\x82\xfe\xfd\xa0\xf4\xae\x78\x5e\x98\x69\x67\x12\x8c\x40\xe0\x35\ +\xa7\x43\x07\x4a\x02\x92\x78\x83\x23\x23\xe2\x50\xdf\x87\x4d\x86\ +\xed\x32\x81\x92\x50\xb6\x0b\xee\xbe\xe7\x5e\xbd\xd7\xa3\x45\x30\ +\xa2\xeb\x13\x98\x93\x08\x80\xdb\xe2\x06\x7c\xd0\xe7\xcf\x70\x65\ +\xb1\x97\xcf\x74\x65\x30\x40\xe8\x89\x60\x42\x3a\x01\x64\x68\x64\ +\x94\xb9\x7c\x53\xbc\x03\xfa\xec\xe5\xac\xf7\x53\x2c\x3f\xcf\x65\ +\x65\x3d\x4a\xca\x0e\x15\x6d\xe5\xe8\xb9\x74\x94\x5d\x3e\x4e\x50\ +\xbb\x83\x9c\xa0\x72\x11\xe7\x20\x00\x98\x28\x9f\x92\xe3\xfe\x82\ +\xc6\xfd\x13\x94\xae\xa1\x74\xad\xba\x2f\x9e\xaf\x44\xef\xa3\x6f\ +\xd2\x0f\x21\x7c\x4e\xa7\x7d\x31\x94\x05\xda\x60\x64\x62\x02\xa5\ +\x62\x0e\x0c\x8f\x4d\x30\x49\x50\x90\x97\x13\xff\xdb\xc1\x10\x93\ +\x8e\x34\x4e\x40\x93\x5c\x2b\xab\xaa\xf4\xe6\x22\xd2\x48\xeb\x4f\ +\x92\x2d\x01\xe2\x86\x7b\x2f\xdb\x70\x79\x34\xa7\x2e\xdb\x95\x8e\ +\xc7\x88\x2e\x51\x56\x2e\xe9\xfe\x7d\x68\xf5\xb3\x11\x8f\xb4\x3a\ +\x10\x4c\x26\xa6\x3a\x6a\x8b\xd2\xd1\x88\x12\x90\x22\xb1\x63\x98\ +\x48\xd0\x1c\xe5\x73\xe5\xb5\xe2\x5e\x44\xbc\x9e\x9b\x0a\x10\x14\ +\xcf\x96\x9e\x1f\xd2\xf9\xbd\x90\xe6\x9d\x14\xef\x4c\x12\xac\x3a\ +\xcf\xc9\x40\x1d\x32\x5b\x11\x04\x8b\x58\xc7\x18\x1e\x1b\x63\x58\ +\x6d\x6e\xed\x34\x6c\x9f\x49\x85\x14\xb8\xf5\xd6\xdb\x12\x76\xbe\ +\x64\x01\xa0\x12\x74\xd6\xe0\x59\xbe\x6a\x2d\x7b\x69\x8a\x6d\x3b\ +\x9d\x69\xba\xee\x4e\x44\xe2\x08\x8d\xef\x9f\x3a\xd3\x0e\x3e\xde\ +\x0e\xfd\x52\xef\xcf\xcf\xb4\x31\xa9\x11\xcf\x70\x05\x29\x99\x13\ +\x89\xa8\xef\x61\xa7\xd5\x7e\x67\x2e\x12\x80\xa2\xbb\xb1\x67\x6a\ +\x8f\x11\xfd\x77\x51\xbe\x13\xdd\x47\x20\x14\x62\x7d\x2c\x34\x56\ +\x81\x75\xeb\x4a\xab\x61\xb6\xc0\x28\x1a\x83\x24\x5b\x7a\x06\x86\ +\xc1\xeb\xf5\xeb\xb6\x11\xe5\x31\xca\x99\xca\xd7\x5c\x7b\x9d\x91\ +\x1a\x30\x25\x53\x05\x6c\xd1\xde\x28\x2e\xab\x80\x74\x34\x5c\x98\ +\x01\xc3\x92\x3c\x38\x5d\xf1\xcf\x66\xdd\x62\x83\x7c\xd8\xd4\xc2\ +\xbe\xdb\x93\x56\x89\xbd\x9f\x67\x62\x7d\xd8\x17\x82\x63\xfd\x6e\ +\x96\xb4\x91\x6e\x37\x81\xd3\x66\x21\x93\x40\x12\xff\x32\x29\x44\ +\x3e\xa7\x89\x00\xca\xf7\x84\xb3\x53\x01\x41\xb2\x51\x64\xd1\xa1\ +\x14\xf5\x4a\x35\xa0\x52\x01\xca\xfb\xca\x23\x82\xc0\x65\x87\xae\ +\x51\x2f\x1b\xcb\x18\xb0\x95\x42\xb1\xbf\x13\xdc\x1e\x0f\x0b\x13\ +\xd3\x90\x77\x6d\x75\xb9\x8e\x8a\x8c\xb0\x54\x76\xca\x23\xbc\x6c\ +\xed\x3a\x54\xab\x2e\xed\xfa\x04\xe9\xd2\xb8\xcb\xfb\xc9\x02\xc0\ +\xe6\x38\xfd\x5f\xb7\x4c\x0a\xba\x88\x89\x94\x91\x48\xc4\x30\xec\ +\x29\x20\x00\x3e\x68\x14\x07\xb7\xfa\x1c\x95\xac\x87\x10\x51\x1e\ +\xce\x98\x3f\x04\x63\xe8\x52\x81\x9b\xee\x79\x21\xcd\x4a\x40\x30\ +\xb3\x51\x3f\x3a\x8f\x46\xf5\x64\x9b\x80\x93\x1a\x9c\xce\x05\x41\ +\x6d\x37\x08\x73\x05\x00\x80\x4f\x4f\xb7\x83\x86\xd9\x33\x00\x80\ +\xcb\x61\x01\x6e\x02\x7b\x34\x36\x47\x2f\xd6\x95\x00\x30\x36\x39\ +\x01\x99\x19\x19\xd0\xd3\x37\x08\x35\x95\xfa\xeb\x4d\x91\x14\xb0\ +\x62\x07\x40\x5d\x02\x97\x5f\x7e\x05\xbc\xfe\xda\x4e\xbd\x4e\x98\ +\x3a\x00\xa8\xac\xa9\x8b\x46\xdd\x28\xef\x4d\xd0\x51\xbe\xd4\xf3\ +\x49\xc4\x8f\x90\x11\x34\x34\x02\xe3\x96\x6c\xf0\x59\x9c\x22\xd3\ +\xd8\x3c\x6f\x4e\x54\x6a\x1c\x27\x5d\x4b\x22\xdd\x1b\x42\xc5\x1c\ +\x62\xf7\x4d\x68\x59\xa7\x51\x82\x25\xba\x5b\x76\x8b\x09\x89\x97\ +\xa6\x64\x29\xa7\x6c\x0a\x33\x19\xd0\x4b\x2c\x01\x8c\x98\x0c\x89\ +\x18\xae\x73\x64\xed\x61\x06\x37\x4a\xb7\x31\x7b\x3e\xf8\x79\x1b\ +\xcb\x6a\x62\x51\x50\x74\x81\x03\x81\x20\x0b\xfa\x68\x0b\x4d\x70\ +\xc9\x12\xc4\x11\xcf\x0d\x1b\x36\xea\x01\x60\x73\x32\x55\xc0\xca\ +\xb8\xf0\x6f\x79\x35\xab\x14\x8b\x62\x59\x2c\xaa\xd4\x6c\xb9\x58\ +\x78\x13\xcb\x9e\x69\xe9\xe8\x62\xd7\xc3\xb6\x42\xa9\xf7\x2b\x99\ +\xae\xb8\x56\x9d\x8b\x47\x34\x1f\xc5\xc0\x0c\x8a\x49\xa0\xdc\x3d\ +\x8a\x1b\xa0\x54\xb1\x21\x10\x48\x3a\x58\x11\x20\x94\x18\x12\xd5\ +\x0b\x73\x40\x00\xe5\x66\xfb\xf5\x18\x3e\x53\xe6\x47\x04\xd5\x3d\ +\xbb\xd5\xcc\x42\xc6\x54\x46\xb0\xce\xc5\xde\x0e\xb4\x81\xbc\x90\ +\xee\x70\xa0\x6b\x38\xa6\x9b\x1d\x45\xd1\x43\xb9\x43\x2d\x5b\xbe\ +\x42\xef\x35\x97\x26\x0b\x00\x94\xe1\xa0\x8a\xed\xda\xd3\xd2\x20\ +\x2b\x37\x8f\xd5\x97\x16\x69\x30\x8a\xbf\x9b\xb1\xf7\x13\x00\xda\ +\xbb\x7a\x44\x00\x38\x8a\x12\x03\x80\x8f\x31\x5e\x75\x1e\x25\xf1\ +\x1a\x9b\x8a\x65\xef\x80\xe4\x3a\x92\x11\x6a\x25\x50\x98\x09\x30\ +\xc2\x9c\x00\x10\x00\x25\xc3\x61\xf6\x3d\x5f\x71\x6e\x46\x70\x52\ +\x50\x88\x2e\x46\x51\x0a\x10\x00\x68\x36\x13\xcd\x35\xa0\x99\x4c\ +\x85\x3a\xee\x60\x98\x42\xcc\x28\x1d\x68\x62\xc9\xaa\xd5\xab\x8d\ +\x00\x60\x4a\x06\x00\x16\x6b\x6f\xe4\x15\x14\x47\x99\x4e\xb1\x6c\ +\x43\x00\xa0\x74\x20\xbe\x75\xf7\x0f\xb2\x81\x12\x8f\x2d\x2b\x06\ +\x80\x28\xf3\xd5\x20\xa8\xc9\x49\x83\x2d\xe5\x2e\x35\xf3\x95\x36\ +\x40\xd4\x08\xe4\xe2\x8d\x42\x2c\x0e\xf3\xec\x1d\xa5\x75\x85\x4e\ +\x71\x49\x50\x3d\xfd\x0f\x9a\x58\x80\x4e\x3c\xe0\xd9\x0f\x07\xe3\ +\x00\x43\x93\x46\x43\x28\xb5\xc6\xd3\xf2\x00\x46\xc5\xe9\x6c\xf4\ +\xfa\x13\x6e\x8f\x61\x7b\xf9\x83\x21\x26\x4d\xc9\x08\xcc\xce\xce\ +\xd6\xae\x5e\x46\xbc\xaf\x4a\x06\x00\xe2\x72\xfd\x73\xf3\x0b\xa3\ +\x95\xa0\xb1\xff\x88\x9e\xfe\xa7\x49\x9f\xe8\xeb\x93\x68\x23\x1b\ +\xc0\x63\xc9\x84\x88\x34\xdc\x1b\xd7\xeb\x15\xbd\x7d\x4b\x85\x0b\ +\x9e\xba\xb9\xf6\x82\x56\xf0\xbe\x25\xb9\x8c\xe6\x5a\x9e\x21\x00\ +\x68\x02\x46\xbc\x99\x63\x06\x9d\xd7\x9a\x01\x41\xde\xc2\xda\x81\ +\xd2\xc0\x3c\x1e\x9f\x6e\x7b\xb1\xa0\x10\x4a\x00\x81\x0d\xa4\x71\ +\x50\x59\x59\xa5\xb7\x7c\x5d\x19\x9f\x0a\x00\x70\x65\x65\x47\x7d\ +\x58\x32\x68\xf4\x7c\x5b\x96\xf7\x86\x44\xf3\xf6\x58\x1c\xc0\xea\ +\x8a\x31\x5b\x26\x93\xf6\x5a\x16\x9d\xf3\xab\x04\xb5\x24\x80\xaa\ +\x5e\x53\x96\x0c\x16\x0d\x8d\xa0\x6b\x40\x23\xa1\x41\xec\xe9\x7a\ +\x6d\xa6\xbc\x5f\x5a\x56\xae\xf7\x53\x55\xc9\x68\x9d\xb8\x55\xbc\ +\x68\x31\x07\x39\x70\x61\x36\xf1\xba\x95\x21\xf7\x8f\xf4\x3f\x0d\ +\xfe\x30\x23\xc7\x92\x1e\x0f\x00\x15\xf3\x4d\x31\x49\x30\xcf\x4a\ +\x08\x5f\x3a\xc4\x89\xb6\x04\x23\x9a\x60\xaa\x90\x6e\xcc\xf3\x01\ +\x71\xd6\x32\x49\x46\xd9\xe0\x8b\x03\x40\x28\x06\x80\xec\x1c\xdd\ +\x0c\xe3\xac\x64\xa8\x80\x74\xed\x8d\x34\x47\x7a\x34\x06\x40\x15\ +\x22\x64\x6b\x0b\x2f\x4d\xff\xa6\x00\x07\xd3\x6f\x16\xbb\x9a\xe1\ +\xb2\x2b\xc8\xf3\xf1\x46\xdf\x3c\x2b\x61\x6d\x60\x0a\x14\x12\x80\ +\x18\x6f\x16\xa7\xc2\x51\xac\x84\x2d\x32\x15\xa4\x91\xd1\xf8\xf9\ +\x0c\x22\x00\x44\x15\x92\x9d\x9d\x93\x32\x00\xd0\x8d\xee\x29\x0d\ +\x19\x3d\xa3\x86\x52\xa0\x29\x06\x30\x2a\x49\x80\x30\xea\xc1\x78\ +\x00\xf0\x8a\x6b\x85\x71\x38\x2f\x01\xa0\x8d\x56\x0a\xd1\xba\xb0\ +\x51\x4f\x89\xc1\xd4\x29\x82\xc1\xb0\x6e\x9b\x89\xf6\xa3\xc0\x6c\ +\x07\xa3\x92\x0c\x00\x54\xc5\xa9\x00\x92\x00\x20\x5b\xbb\x26\xdd\ +\xca\xb0\xf9\x80\xd2\xb2\x29\xaa\x1e\xa1\x02\x81\xce\xf9\x3c\x54\ +\x01\x14\xe9\x64\xb1\x00\x4e\x1a\xad\x89\x28\x00\xad\xf1\x52\xa8\ +\x5d\x42\x61\x7d\x00\x90\x8a\x10\xa4\xe8\xa6\xc9\x20\xa1\x36\x25\ +\x24\x00\x27\x0f\xfb\x72\x82\xa1\x45\x2b\x57\x96\x53\x8a\xc7\x28\ +\xf3\xf9\x78\x2f\x40\x09\x82\xf9\x56\x94\xef\x1c\x6d\x0e\x86\x04\ +\x5d\x00\x80\xa0\xdf\x6e\x42\x24\x26\x59\x0d\x3d\xeb\x24\x54\xaf\ +\x4b\x7b\x83\x56\xcc\x94\x6d\x00\xb2\x5c\xf5\x66\xfe\x30\x43\x98\ +\xe7\xd4\x63\xfa\x51\xe6\xeb\xc4\x02\x78\x4e\x3d\xee\x3f\x1f\x01\ +\xc0\xc5\x78\xae\x02\x81\xd4\x06\xb2\x3c\x94\x57\x21\xd1\x1d\x37\ +\x91\x6c\x80\x50\x38\xa4\x6b\x6f\x26\x03\x00\x21\x3d\x65\x25\x57\ +\x20\x1c\x09\x83\x49\xe0\x75\x0d\x1a\xca\x00\xca\x76\x65\x48\x4d\ +\x11\x51\xeb\x7c\x3d\x00\xc8\x00\x99\xaf\x00\xd0\xed\xb5\x3c\xb6\ +\x8f\xd8\x84\x6c\x72\xa8\xb4\xae\xb1\xae\x0d\x10\xb5\xad\x38\x63\ +\x11\x90\x84\xea\xf9\xe2\x6e\xf8\xa6\xa2\x15\x20\x7d\x66\xd6\x11\ +\x4c\x64\xf1\x92\x04\x90\x33\x84\x6d\x61\x9f\x82\xf1\xa0\x6f\x07\ +\xf0\xf3\x58\x02\xa8\x7a\xbf\xa0\x92\xfb\x96\x90\x4f\xea\xe1\xa6\ +\xe8\x5a\x09\x11\x03\xbb\x49\x6e\xd7\x09\xfd\xe5\xea\xdd\xc9\x00\ +\x40\x9f\xf6\xc6\x14\x9b\x19\x2b\x56\x94\x2c\x5a\x9b\x35\xbe\x32\ +\x7e\xbf\xe8\xf3\xd2\x0c\x18\x86\xfe\xc0\xa4\x9a\xf1\x89\x8c\xc1\ +\xf9\x08\x00\x41\x4f\x09\x8a\x82\x3f\x2d\xe0\x96\x24\x40\x6c\x59\ +\x3c\x7d\xcf\x29\x66\x50\x8f\x48\xf9\x84\x9a\x32\x94\x12\x00\x98\ +\x18\x1f\x8d\x8a\x2a\x7f\x20\xa0\x3b\x0f\x80\xa6\x7f\x11\xd2\xe5\ +\x81\x0f\xa7\x6f\x42\x31\xe2\xc7\x19\x4b\x00\x1e\x2e\x12\x00\xc4\ +\x80\xe0\xf0\x4f\xb0\xde\xcf\x96\xa6\x93\x86\xc8\xf5\x8c\x40\x5a\ +\xf0\x42\x06\x40\x4f\x77\x97\xae\x3d\x96\x12\x46\xe0\xe8\xd0\x60\ +\xf4\x45\x7d\xd2\xa2\x8c\x71\x36\x00\x1a\x87\x94\xe9\x42\x53\xc4\ +\xb2\xd0\x0e\x08\xb9\xc7\xc5\x1c\x0e\x9e\x53\x8f\xf0\x69\xa4\x41\ +\x9f\x3f\x0c\xbb\xfa\x3d\x0a\x7f\x5a\x69\x42\x2b\x8f\x3a\xf7\xb1\ +\x5c\x9e\x69\x03\xbb\x69\x76\x28\x3a\xe9\x0e\x40\x1f\x0d\xdf\x0a\ +\x9a\x1e\x2c\xe8\x74\x68\xd5\x40\x91\xcc\x39\x4e\x63\xfc\xc5\x8a\ +\xd5\xef\x01\x6b\xc8\x0f\xce\x74\x27\xab\x4a\xa2\xc1\x33\x1a\x08\ +\x92\x3f\xeb\x68\x6f\x4f\x19\x00\x34\x6b\x6f\x0c\x0f\xf6\x45\xe3\ +\x00\x46\x00\x60\x0a\x6b\xca\x8b\xcc\x4f\x87\xaa\xb2\x62\x18\x3b\ +\xd1\x88\x52\x60\x14\xdc\x19\x79\x09\x43\xc2\xaf\xf5\x79\xe0\xb5\ +\x81\xa9\x69\x86\x8c\x95\x43\xc5\xca\x23\xc0\x99\xad\xe5\x50\x9d\ +\x36\x3b\x00\x7c\xa7\x75\x0c\x9e\xee\x76\x1b\x66\xf9\x30\xe6\x8a\ +\xbb\x4b\xc4\xc6\xfe\xe9\x9e\x7c\xad\x75\x5d\x85\x58\x54\x30\xd3\ +\x33\xc4\x6e\xb9\xa4\xd5\x44\xd2\xec\x09\x00\xc0\x54\x03\xaa\xd8\ +\x29\x0f\x0c\x0f\x0f\xe9\x7d\xa5\x8d\x4f\x12\x00\x54\x9e\x80\x17\ +\x5f\xd0\x43\x76\x00\xfe\x9b\xf2\xfa\x0d\x67\xbe\x4c\xb8\xa7\xd8\ +\x6a\x9c\x4b\x17\x55\xb2\xbf\xcb\x19\xef\x4e\x3c\x1e\xa0\xf5\x10\ +\x54\x83\x46\xbc\x7a\xf0\xc8\xa4\x47\x3c\xcc\xc9\x8a\x34\x7a\x9e\ +\xee\x98\x85\x81\x0d\x63\x20\xd5\xb2\x27\xc4\x5c\x08\x92\x82\x22\ +\x00\x6c\xba\x6d\x45\xff\x68\x64\x95\xc0\xd1\xd4\x78\x5a\xef\x2d\ +\x69\x29\x1e\x7f\x32\x00\x40\x43\xe5\x1f\x68\x6f\x76\xb6\x36\x4b\ +\x03\x18\x41\xb6\xfc\x89\xde\xe0\xc6\xf8\x84\x9b\x55\x7a\xd5\x12\ +\x31\xa5\x20\x77\xac\x5b\x57\xec\x1b\x0f\x10\xcd\xe4\x3e\xaf\x3e\ +\x72\x70\x16\x00\xd0\x3c\x4b\x0f\x78\xb3\xa4\xdc\xd1\x6e\x16\x11\ +\xcd\xc9\x74\xb1\x23\xb9\x82\x7a\x6d\x25\xce\x1f\x14\x81\x40\x5b\ +\xd4\x18\x00\x20\x69\x26\xd2\x01\xed\x8d\x9e\xce\xd6\xe8\xf6\x2a\ +\x24\xea\x75\x01\x30\xe9\x66\xc3\xa0\x25\x85\xf9\x50\x90\x9b\x0d\ +\x99\xe3\xfd\x60\x26\x77\x90\xd3\x46\x06\x13\xf4\x7e\x23\x29\x60\ +\xe2\xf5\x7b\xed\x9c\x42\x9b\x3a\x92\x65\x36\x80\x34\xf0\x6c\x32\ +\xdc\x43\x90\xe6\x77\xb3\x49\x33\x94\x1b\x61\xb3\x59\xa4\xc9\x33\ +\xf1\x6d\x25\x02\x43\x1c\x57\x39\xae\x0f\x80\x03\xc9\x04\x40\x43\ +\x9c\x04\x38\xd3\x18\x9d\xeb\xee\xf6\x78\xd9\x51\x8f\x06\x47\xc7\ +\x98\xe5\x7b\xf9\xda\x55\x40\x4b\x33\x17\xf7\x37\x69\x92\x40\x40\ +\x11\x1b\x80\x99\x49\x04\xbd\x3c\x02\xd3\x59\x04\x91\x54\xcf\x98\ +\xe6\xb7\xa6\x03\xaa\xa2\x4e\x45\xfd\x8d\xec\xf1\xc5\xf9\x79\x4c\ +\x12\xd2\x9a\xc4\x46\xed\xc4\x12\x6b\xa5\xc5\xae\x0f\x1c\xd8\xa7\ +\xf7\x96\xef\x26\x13\x00\x71\x8b\x41\xf5\xf5\x74\x82\x6f\x6a\x8a\ +\x81\x40\x4c\x73\xd2\x9f\xf5\xd2\xd7\x3f\xcc\x00\xf0\x91\x0d\x97\ +\xb1\xbf\x2b\xe9\x39\xa5\xef\x0a\x72\x73\xe8\x75\x4a\xa6\xd1\xd1\ +\x3c\x57\x15\x00\x06\xcf\xe4\xa7\x79\x0f\x0d\x78\x15\x52\x8d\xc7\ +\xba\x17\xf5\x35\xb3\x51\xd1\xa2\xbc\xbc\xa8\xfe\xd7\x6b\x23\xaa\ +\xba\x5d\xca\xad\x6c\x46\xfd\x3f\x32\x3c\xac\x17\x8c\x6b\x48\x26\ +\x00\xc8\x2a\x69\x53\x0f\x5c\x44\xa0\xe5\xf4\xf1\xe8\xe2\xcd\xb1\ +\xd9\x2d\x6a\xa2\x79\x71\x94\xf2\x4c\x4b\xa8\xd5\x2f\xab\x05\xe7\ +\xd4\x38\xe4\x0d\xb6\x19\xc7\x04\x38\x6e\x76\x52\x40\x66\xbc\xcc\ +\xb8\xb9\x4a\x00\x33\x37\x77\x5d\xcf\xc5\x07\xb3\x4a\xba\x4f\x80\ +\x25\x14\x80\xd2\xc2\x02\xb6\xfd\x0d\x89\x78\x79\xee\xa4\x96\xd8\ +\xd2\xb9\x92\x2a\xd8\xb5\xeb\x8f\x46\x12\xd8\x9f\x4c\x00\x50\x89\ +\x4b\x54\x6f\xfc\xe0\x88\xc2\xe0\xf3\x18\x7a\x03\xed\xdd\xfd\xac\ +\x07\xdc\xbc\xfd\x4a\xf6\x77\xd5\x2d\x07\xd4\x63\x01\x3a\x40\x90\ +\x43\xa6\x8c\x4c\x8a\x73\xca\x33\xa0\x6c\x23\xba\x67\xe6\xc4\x73\ +\xf9\x3b\xca\xf4\xf0\xd9\x98\x00\xd1\xbf\xe7\x63\xcf\x94\x9f\xab\ +\xf3\xfb\x5c\xd4\xe0\xd4\x1b\xcc\x12\x7b\x7f\xe5\x99\xc3\xec\xb2\ +\xba\xbc\x94\xd5\x85\xa2\x80\x46\xed\x43\x6b\x09\x45\x24\xfd\xff\ +\xd6\x9b\xaf\x27\x6c\xfb\x64\x02\xe0\xf9\x38\xa7\xb4\xf9\x24\xf8\ +\xbc\x53\x51\x83\x8f\x2d\x76\xa0\x33\x0f\xbe\xa3\xab\x8f\x05\x85\ +\x68\xe1\xa8\xa5\x35\x55\x90\x31\x39\x0c\xf9\x7d\x67\x14\xfa\x3f\ +\x1e\x04\x56\x33\x0f\x0e\xec\x39\x51\xb2\xe0\xb5\x55\x22\x3a\xb7\ +\x98\x58\x06\xb0\x78\xce\x8b\xe7\xb4\x7d\xcb\x1c\x84\x80\x95\xc6\ +\x2c\xe4\xdf\x50\x3e\x53\xfe\x3d\xf9\x5d\xa4\xdf\xa4\xb9\x08\xc6\ +\x11\x4d\x80\xd2\x8e\xe3\x60\x0b\x78\x59\xef\x4f\xc7\xde\x2d\xae\ +\x00\x62\xd2\x6d\x1b\x52\x11\x69\xa4\xff\xf1\x5f\x6b\xeb\x19\xa6\ +\x02\x12\xb5\x7d\x32\x01\xf0\x36\xc5\xa2\x55\xfe\x61\x28\x04\xa7\ +\x8e\x1d\x8c\x6e\xdc\x30\x4e\xb6\x00\xc4\x2f\x0c\x15\xc4\xcf\x5a\ +\xda\xbb\x59\x4c\xe0\xae\x5b\xc4\xc9\x8f\x8b\x4f\xfc\x89\xf5\x94\ +\x68\x10\x27\x3a\x27\x50\x6c\x48\x15\x23\x34\x4c\x56\x9d\x2b\xef\ +\x21\x83\xe6\xa2\x04\x68\xa2\x49\xdc\xb3\xb5\xbf\x67\x55\xdf\x8f\ +\x1b\xc2\x96\xde\xdf\xea\xf7\x42\x55\xe3\x01\x26\x29\x96\xd5\x54\ +\x4b\x3b\x89\x58\x0d\xb7\x22\xcf\xcc\x48\x17\xdd\x3f\x6c\xc3\x97\ +\xfe\xeb\xb7\x7a\xaf\x47\x2e\x41\x4b\x2a\x00\x80\xe2\x01\xcf\x6a\ +\x6f\x1e\xdd\xb7\x27\xea\xbe\x8c\x8c\x4d\x4a\xbb\x6f\xc6\x13\x2d\ +\x02\x4d\xe3\x06\x75\x55\x15\xb0\x75\xc3\x1a\x48\xf3\x4e\x42\xf5\ +\xc9\x06\x4d\x74\x8f\x8b\x36\x24\x4d\x09\x8b\x63\xbc\x4c\x8c\x61\ +\x9c\xe2\x33\x93\x78\xcf\x34\x37\x09\x60\x33\x71\x06\xbf\xa1\x03\ +\x0a\x24\x93\x49\xcb\xf8\x98\x04\xa8\x3b\xb6\x9b\xe9\xfe\x25\xd5\ +\x95\x6c\x61\x69\xb6\xc4\xbc\x89\xd7\x6d\x13\x71\x5d\x05\x27\x6b\ +\x3f\x5a\x2f\xf0\xd5\x97\x5f\xd2\x7b\xbd\xa7\xb4\xf6\x6a\x32\xcb\ +\x53\x71\x61\xe1\x81\x3e\x68\x6f\x39\xc5\x2a\x41\xfb\xf4\xb8\x15\ +\x73\xdd\x95\x44\x12\xe2\xd8\xa9\x16\xa6\x47\x3f\x75\xdb\x8d\x6c\ +\x42\x69\x79\xcb\x11\xc8\x1c\xe9\x51\xeb\x52\xe9\x18\xc1\xa3\x13\ +\x1b\xdd\x89\x8c\x76\x5a\xe4\x73\x0d\x99\xf8\xd8\x77\xa4\x23\x37\ +\x07\x19\x40\x2a\x20\xf6\x0c\x5e\x73\x1e\x4f\x02\xa7\x3f\xb9\xa5\ +\xa0\xab\x11\x0a\x7a\x5a\x58\xdd\x6a\x11\xe8\xe2\xc8\x9f\xc9\x70\ +\xa5\x30\xea\xfd\x72\x5c\xe0\xb5\x3f\xbc\x02\xe3\xe3\x63\x7a\xd6\ +\xff\x33\xa9\x04\x80\x83\x7a\x31\x81\x7d\xbb\x5f\x8f\xfa\xb0\x43\ +\xa3\xe3\x86\x15\x96\x17\x85\xa6\x8a\x3f\x72\xef\xc7\x51\x05\x08\ +\xb0\xa2\x61\x27\x1b\x30\xd1\xc6\xfa\xdd\x68\x15\x51\x2f\x67\x4c\ +\x36\x29\x99\x2e\x31\xcb\xa4\xb8\x56\x7c\x3e\x97\xd1\x64\x1b\xcf\ +\xa9\x9f\x65\x92\x40\x60\xe2\x62\x40\x93\x7e\x97\x24\xc1\x64\x44\ +\x88\x9b\xb2\xe6\x70\x8f\xc2\xd2\x03\x7f\x14\xd7\x0c\xae\x5f\xc9\ +\x18\x6f\x92\x36\xad\xd6\x6b\x0b\x16\x1a\xcf\xcc\x10\x3b\x07\xaa\ +\xd2\x5f\xfe\xec\x3f\xf4\x5e\x8d\x16\x8b\x4c\xb9\x75\x02\xe3\x96\ +\x89\xeb\x6e\x6f\x81\xae\xd6\x26\x56\x19\x5a\x0b\x88\x56\xbf\x32\ +\x02\xc1\xc1\x63\xa7\xd8\xb2\x28\xeb\x57\x2e\x85\x1b\xb7\x5d\x0e\ +\x76\xaf\x1b\x56\xbe\xfb\x0a\x70\xd1\xa9\xde\x22\x51\x32\xf9\x44\ +\x58\x50\x88\x64\x4e\x24\xa5\x0a\x50\x8a\x6e\xe9\xf3\xb9\x34\x10\ +\x01\x20\x2a\xf2\x55\xbf\xc1\x6b\x7e\x83\xc7\x77\x8a\xb0\x77\x8b\ +\x65\x36\xa3\x07\x19\xf0\xc1\xaa\x3d\x2f\x81\x39\x14\x84\x35\xcb\ +\xea\x20\x3b\xd3\x15\x4d\xff\x32\x6a\x07\x1a\x24\xe3\x4d\x26\xd6\ +\x69\xde\x78\xf5\x65\xe8\xd6\x1f\xfe\xfd\xae\x5e\xc8\x22\xd9\xe5\ +\x79\xbd\x11\xc2\x86\xb7\x77\x46\x2b\x47\x52\x80\x16\x83\xd4\x73\ +\x79\x28\x5e\xd0\x70\xe8\x03\xd6\x53\xee\xbb\xed\x26\x58\x59\xb7\ +\x08\xb2\x86\x7a\x60\x05\x81\x00\x04\x55\xaf\x3a\xe3\x0f\xb3\x31\ +\x72\x75\x4f\xd4\xf4\x54\x13\xa7\xba\xe6\xe6\xe8\x05\xa8\x9f\xc3\ +\xa9\x25\x8b\x74\x4d\xef\x42\xef\x14\x03\x2a\xde\x43\xa6\xaf\x7e\ +\xfb\x25\x70\x4e\x8c\x42\x75\x59\x09\xd4\xa1\xee\x97\x33\x7b\x8c\ +\xdc\x3e\x12\xfb\x04\x12\xb1\xf7\x07\xe1\xe7\x4f\xfd\xd4\xc8\xe8\ +\x3e\x18\x97\x33\x90\x02\x00\x60\xc1\x3f\xd0\x2c\x1a\x35\x39\x3e\ +\x0a\x39\x05\xc5\x90\x93\x5f\x18\x4d\x76\xa0\x95\xb1\xf5\x4c\x5f\ +\x5a\x13\x47\xde\x48\x62\x63\xfd\x0a\xd8\x77\xf4\x43\x88\xf4\x74\ +\x81\x73\x6c\x08\x06\x17\xd5\x45\x67\x09\x45\x90\xc6\xb1\x91\x6a\ +\xd2\xcc\xcc\x50\xb3\xe0\xb5\x85\x1d\x79\xe9\x48\xd7\xbc\x78\xe4\ +\xc5\xfb\x2d\xd8\x43\xf7\x04\xc2\xb0\x1b\x19\xb5\x9b\x8e\x81\x88\ +\x74\x94\x29\x24\x1e\xe9\x73\x1f\x51\x08\xce\x84\x22\xcc\xc2\xb5\ +\x50\xbe\x1e\x07\x22\xf1\xd2\xb9\x74\x9f\xfe\xbd\xef\x0e\x8a\xd3\ +\xd4\xa5\xd1\x5c\x53\x30\x00\xf5\xaf\x3d\x0f\x59\x83\xdd\x50\x94\ +\x97\x0b\x5b\xd7\x5f\x26\xa6\x7d\xa3\x48\x67\x0b\x66\x18\x98\xfe\ +\x94\x24\x43\x71\x01\x2a\xbf\xfd\xf5\x2f\xe0\xed\xb7\xde\xd0\x6b\ +\xe7\x07\x91\xda\x53\x11\x00\x20\x8d\x0e\xde\x43\x6a\x4c\x79\xb3\ +\xbf\xbb\x1d\x56\xac\xdd\xcc\x2c\x5f\xb2\xf8\xd3\xd2\x6c\xcc\xcf\ +\xd5\x2b\xb4\x60\x04\x2d\x9b\x9e\x97\x93\x05\x9b\xd6\xac\x80\x43\ +\x1f\x9c\x96\x40\x30\x8c\x20\x58\x12\x9d\x27\xe8\x25\x25\x88\x80\ +\x5a\x64\x37\x43\x9a\x89\x8b\x31\x9e\x81\x80\x8f\x9d\x4b\xe0\x20\ +\x64\x92\x29\x35\x26\x28\x8e\x2a\x12\x60\x2c\xa2\x38\x17\x20\xc6\ +\xfc\xe8\x51\x06\x82\x78\x44\x4d\x04\xbb\x27\x03\x30\xa4\xd8\x41\ +\xc4\x84\xf5\xab\x7f\xf5\x39\xc8\x1a\xe8\x66\xfb\x1f\x5e\x7d\xf9\ +\x7a\x56\x6f\x52\x6f\x04\x00\xa3\x42\x51\xbf\x3c\x29\x4d\x6e\x68\ +\x70\x00\xbe\xf5\xf5\xaf\x41\x30\x18\xd0\xeb\xfd\x7f\xab\xf7\xf7\ +\xa9\x02\x00\xc2\xf2\x19\x09\x04\xd1\x12\xf0\xfb\x98\x48\xab\xa8\ +\x59\x22\x65\x0b\x05\x59\x20\x44\x5e\xbb\x47\x4b\x9d\x3d\x03\x6c\ +\x1f\x21\xea\x11\x51\x10\x74\x77\x42\x76\x4f\x07\x0c\x57\xd5\x40\ +\xd8\x6e\x13\x27\x57\xe2\x03\xda\xb1\xf1\x8b\xad\x66\xc8\x35\xf3\ +\x0a\x49\x00\x6a\xa9\x10\x95\x04\x12\x71\x12\x69\xef\xf1\x10\xfb\ +\x4c\xc1\x68\x8b\x56\x0a\xe0\xf5\x60\x08\x2d\x74\x64\xfe\x58\x48\ +\x88\x66\x09\xa5\x8d\x8d\xc2\x65\x2f\xfe\x02\x5c\xc3\x03\xac\xe7\ +\x5f\x77\xe5\x26\x96\xcc\x11\xc0\xfa\x52\x2a\x9c\x91\xcf\x4f\x00\ +\x29\x2d\x2a\x60\xc3\xc2\x54\xfe\xe1\x3b\xdf\x80\x96\xe6\x46\x6d\ +\xdb\x12\x7a\x3e\x0e\x3a\x4b\xc5\xa7\x0a\x00\x28\xbb\xe3\x2a\xa9\ +\xf7\xd3\xb2\x25\xe9\x6a\x29\xd0\x09\x65\xd5\x8b\x21\x23\x33\x9b\ +\x89\x41\xb2\x05\x68\x10\x44\x17\x45\xd8\x03\xbb\xfa\x06\x20\x2b\ +\x23\x83\x6d\xce\xb8\x6d\xd3\x5a\x68\x6e\xef\x84\x89\xf6\x76\x28\ +\x68\x3a\x09\x13\x45\xa5\xe0\xcf\x14\xd7\x14\xa0\x3e\x72\x3a\x18\ +\x06\x2f\x36\x5e\x05\xad\x23\xc4\x7a\xbf\x42\x15\xc8\x60\x50\x31\ +\x9b\x57\x03\x21\x8e\xe9\x1a\x00\x70\x31\x49\x40\x6b\x07\xee\x99\ +\x0a\xc1\x1e\x4f\x90\x9d\xcb\x62\x3f\xaf\xf9\x34\xd4\xbf\xf4\x6b\ +\xb0\x7b\xdc\x50\x53\x59\x06\xd7\x5e\xb1\x11\x4c\x08\x4a\xca\x8c\ +\xa2\x95\xd0\x12\x8d\x38\x93\xca\xa3\x5d\xc4\xe8\xe2\xad\x37\x77\ +\xc2\xb3\xcf\x3c\xa5\xf7\xd5\x7f\x45\xfa\xa9\xe1\x73\x92\xc8\x78\ +\xda\x1d\x8c\x56\x0a\x5f\x3f\xdd\x17\x89\xf9\x77\x7f\xee\xcb\x60\ +\xb3\x8b\x5b\xb1\xe6\x66\xbb\xd8\xde\x3a\xc6\x63\x31\x1c\x6c\xdd\ +\x58\x0f\x55\xe5\xc5\x6c\xab\xb8\x9f\xbf\xf0\x2a\xec\xdc\xbd\x97\ +\xc5\x02\x3a\xd7\x6e\x82\xd6\x8f\x6c\x87\x08\x25\x4c\x48\x83\x35\ +\xd4\xe0\xf5\x68\x17\x6c\x40\xb5\x50\x68\xe6\x35\xab\x89\x68\x8e\ +\xfa\xc8\x33\x5c\xed\xa3\x1f\x7b\xfa\x41\x6f\x10\x0e\x7b\xc5\x9c\ +\x46\x26\xff\x51\x05\x99\xa7\xbc\xb0\x18\x99\x56\x72\xe2\x18\xab\ +\xd3\x26\x74\xf5\x28\xd1\x45\x5c\xe7\xcf\xcb\x3c\x9f\x44\x85\xda\ +\x80\x36\xd1\xa0\xbf\x1d\xec\xef\x83\x2f\x7c\xf6\x41\xf0\x78\xdc\ +\xda\xaf\x51\xa4\x95\xb2\x67\xc6\x8d\x9e\x93\x0c\x09\x40\x3b\x3e\ +\xbd\x0c\xe2\xd2\xe5\x25\x33\xf9\x83\xba\x65\x2b\xe1\x8a\xad\xdb\ +\xd1\xe2\xf7\x47\x55\x81\x0d\xc5\xb7\xc9\x60\xef\x20\x8a\x83\xb7\ +\x75\x8b\xc9\xc7\x25\x85\x79\xe8\x4a\xd5\x22\x18\x4a\xe0\xf8\xa9\ +\x66\x70\xb4\xb7\x42\xe1\x89\xe3\xe0\x77\xb9\x60\xaa\xa0\x80\xd9\ +\x05\x94\x58\xda\x4b\x2e\x65\x30\x02\xa7\x69\x8d\x3e\xfc\x3b\x3b\ +\xed\xf4\x89\x00\xb1\x72\x5a\x71\xaf\xe9\xfd\x1a\xfd\x4e\x6f\xd4\ +\x8b\x7c\x3e\x8c\xd2\x65\x27\x32\x9d\x8c\xc2\x1e\xc5\xa2\xd3\x1c\ +\x82\xa0\xf8\xe8\x21\x58\xfd\xbb\x67\x21\xab\xb7\x9b\x0d\xdc\xdc\ +\xbc\x7d\x0b\xeb\xfd\x6c\x09\x98\xf1\x49\x96\x10\x93\xa8\xb8\xf0\ +\x6f\x64\xbd\x1f\x40\x15\xf1\x37\x4f\x7c\x09\xfa\xfb\x7a\xf5\xbe\ +\x7a\x3f\x88\x9b\x71\x40\xaa\x48\x00\x52\xe6\x6f\x82\xce\x22\x11\ +\x46\x65\xe5\x9a\xf5\xf0\xe9\x3f\x7f\x8c\xb9\x39\xb4\x32\x48\xbb\ +\xc4\x58\x0a\x8a\xe4\x65\x67\xb1\xfd\x04\x12\x15\xda\x6c\xe2\x23\ +\x9b\xd6\x30\x51\x49\x03\x4c\xcf\xbc\xb0\x13\xf6\xec\x17\x33\x64\ +\x26\x0b\x8b\xa0\x75\xdb\x76\x18\x5a\xb1\x3c\x96\x1d\xa4\x18\xbb\ +\xa7\xc5\xa2\x8a\x50\x22\x14\xd0\x8e\x1c\x78\x9e\x21\x31\x5f\xd9\ +\x6a\x41\x04\x0c\x05\x72\x06\x91\x06\x90\xd1\x7d\x48\x21\xd6\xcb\ +\xa5\xde\x2e\xf5\x78\x0e\x8d\xb9\xc2\xc3\x47\xa0\x6a\xcf\x6e\x70\ +\x8c\x8e\xb0\x9e\xbb\x76\xc5\x12\x58\xbf\x6a\x39\xcb\xee\x21\x63\ +\x8f\x0c\x59\x5a\xd5\x23\x51\xa1\x94\xf9\xe2\x82\x3c\x71\xc1\x0c\ +\x7c\x8f\x1f\x7e\xf7\xdb\xb0\xeb\x8d\x9d\x7a\x5f\x35\xdc\x27\x28\ +\x59\x00\x58\x22\x59\xa3\x45\x73\x61\x7e\x26\x5a\xf8\xb4\x80\x24\ +\x85\x7f\xdb\xbb\x44\x10\x50\x74\x8c\xc4\xe0\x74\x5b\xc5\x53\x76\ +\x0c\xdb\xac\xb9\xb8\x80\xb9\x94\x8d\x6d\x1d\xf0\xec\xef\xdf\x80\ +\x53\x2d\x62\x4a\x82\x27\x2f\x0f\x7a\xd6\xaf\x87\xde\xf5\xeb\x20\ +\x44\x83\x29\xda\xc4\x10\x6d\x1e\x5f\x54\x15\x48\x59\xbc\x61\xe5\ +\x51\xcd\x78\xfb\xd0\x30\x14\xed\x3f\x08\x25\x07\x0f\x80\x5d\x9a\ +\x9d\x43\xbd\x7d\xcb\xba\x7a\x96\xd8\x29\xb0\x15\xcf\xdd\x30\x30\ +\x3c\x66\xb8\x36\xa2\x5c\x28\x07\x80\x24\x1a\x79\x42\x04\xa0\xe7\ +\x7f\xf5\x73\xf8\xe5\xcf\x74\xd5\x3b\x55\x6c\x4d\x22\xd1\x7f\xa1\ +\x01\x90\x90\xf9\xf9\x68\x9c\x95\x94\x57\x32\xcb\x77\x00\xc5\x62\ +\x47\x5b\x8b\x2e\xf3\x29\x26\x4e\x3d\xe0\x8d\x3d\xfb\xd8\xde\x7a\ +\x0c\x04\xc8\xfc\xec\xac\x0c\xdd\xb5\xf2\xb4\x65\x51\x45\x09\x6c\ +\xa8\x5f\x26\xa6\x52\xa1\xae\x3d\xd1\xd4\x0a\xaf\xec\x7a\x0f\x8e\ +\x9e\x6c\x62\x9f\x47\xb0\x61\xc7\xab\x2a\x61\x78\xe9\x12\x18\x59\ +\xbe\x14\x3c\x65\xc5\x20\x58\xcc\x3a\x49\x9e\x5c\x4c\xf7\x87\xd5\ +\x8c\xe7\xd1\x78\x73\x76\x74\x43\xee\x89\x53\x90\x7b\xf2\x34\x64\ +\x76\x76\x4a\x46\x1b\xc7\xb2\x99\x37\xa2\xae\xcf\xcb\xc9\x66\xba\ +\xde\xe7\xf3\xb3\xad\xeb\x3d\x53\xbe\x69\xdf\xdd\x81\x86\x6f\x61\ +\x7e\xae\xc4\x7c\x80\xd7\x5f\xfd\x3d\xfc\xeb\x3f\x7d\x5f\xef\xab\ +\xf4\xb0\x2d\x7a\x41\x9f\x64\x01\xc0\x90\xf9\x0e\x67\x06\xdc\x74\ +\xc7\x7d\xb0\x6c\x65\x3d\xdb\x09\x93\x18\x4c\x7e\x6d\x5f\x57\x3b\ +\x38\x32\x73\xd9\x16\x71\x4a\xe6\x93\x0b\xe8\x90\x62\x01\xbf\x79\ +\x65\x17\x74\xf6\x8a\x1b\x23\xd1\x75\xa6\x2b\x5d\xb4\x88\xa7\x29\ +\xf4\x5d\xda\x8b\x6f\xe5\x92\x45\xd1\x81\x95\x81\xa1\x51\x78\x67\ +\xff\x61\xd8\x7b\xe8\x38\xdb\x95\x23\x3a\x5c\x89\xa0\xf2\x94\x14\ +\x81\xa7\xa8\x10\x7c\x85\xf9\xe0\xcf\x72\xa1\xf1\x68\x51\x01\xc0\ +\x34\xe5\x07\xdb\xf8\x04\xa4\xf5\x0f\x80\x03\xdf\xc7\xd9\xdb\x07\ +\xbc\xa2\x27\x93\x4b\xba\xb2\xae\x06\x56\xd4\xd6\x30\xf0\xd2\xef\ +\xd1\xce\x26\x3d\xfd\x83\x4c\xa5\xcd\xa4\x50\xbd\x29\x36\x20\x8a\ +\x7d\x0e\x1a\xde\x7b\x07\x7e\x80\x2e\x1f\xed\x1d\x6c\x10\xf0\x79\ +\x7a\xc6\xc9\x2b\xc9\x64\xfe\x27\x3e\xfd\x05\x28\xaf\xa8\x54\x31\ +\xdf\xe9\xb0\x33\x0b\x9f\x72\xda\x3d\x68\x0c\xd1\xb5\x92\xf9\x14\ +\xf1\xa2\xcf\xa6\xb0\xd7\xfc\xe6\x0f\x6f\x31\xdf\x9f\x59\xfe\xc8\ +\x58\x32\xa8\x48\x4c\xce\xa4\x90\xc4\xa8\x5b\x54\x0e\xcb\x16\x57\ +\x32\x80\xc9\xc9\x94\xc4\x18\xda\x78\x8a\x16\xa2\x6e\xeb\xea\x8d\ +\xae\x49\x34\xd3\x42\xfb\x1b\x95\x22\x58\x2a\xcb\x4a\xa0\xa6\xa2\ +\x8c\x0d\x54\xb1\xa1\x5a\xb2\x15\x3c\x53\xd0\x37\x38\xcc\xf6\xff\ +\x99\xe9\x5e\x44\xd9\x99\xe9\xe2\x58\x80\xb4\x36\xc2\xae\x37\x5e\ +\x85\x7f\xfb\xf1\x0f\x8c\xd4\xc5\xdf\x23\x3d\x31\x9b\xf7\xe5\x52\ +\x91\xf9\x0e\x3c\x92\xc8\x63\xc1\x90\x50\x88\x9d\x2b\x99\x4f\xd3\ +\xc4\xc8\x4d\x1a\x1a\x1b\x87\x77\x1a\x0e\x63\xa3\x8e\x44\xc5\x2c\ +\x01\x80\xc0\xc2\xcd\x22\x88\x5f\x5c\x90\x83\xea\xa1\x94\x6d\x49\ +\x6b\x95\xa6\x53\x45\x04\x71\x7c\x9d\x40\x48\xc6\x19\xad\xc8\x49\ +\x7e\x39\x5b\xa2\x46\x1a\xa9\x24\x6f\x83\xa6\xab\xd3\xa2\xcc\xa4\ +\xcf\x29\x57\xdf\x2a\x2d\x73\x27\xc7\xe9\x29\x7f\x71\x10\x25\x0c\ +\x49\x99\xe9\xac\x7b\x95\x2b\x4b\xab\x9f\xa3\xaa\xa0\x7a\x73\x52\ +\x4a\xdb\x4b\xbf\xfd\x35\x3c\xfb\x73\x43\x97\x7e\x46\x46\xdf\x85\ +\x02\xc0\x59\x33\x9f\xa6\x3c\xd1\x7e\xb8\x62\xea\x93\xc0\x1a\x59\ +\xc9\x7c\x5a\x2e\x6e\x68\x64\x9c\x6d\x16\xd9\xdc\xde\x15\xd5\xa3\ +\xf2\x98\x39\x4b\x9d\x32\xcd\xde\xcb\x25\xf7\xaa\x28\x3f\x07\x45\ +\x6e\x96\xe8\x65\x58\xcd\xd1\xf9\x0a\xe2\x31\x12\xbb\x96\xf6\x2e\ +\x92\xcf\xe9\x3d\x89\xc9\x13\x93\x1e\x26\xde\x87\x11\xa0\x33\xd1\ +\xef\x71\xa3\x89\x58\xd7\xfc\x9c\x4c\x36\xeb\x97\xcd\x12\xc7\xdf\ +\xfc\xcf\x27\x7f\x04\x6f\xbf\xf9\x5a\xa2\x01\x35\xda\x0b\x28\x9c\ +\x0a\x00\x38\x67\xcc\x27\x9d\x4e\x3d\xd2\x24\xe9\x5c\xca\x16\xd6\ +\x32\xbf\x1f\x7b\xd6\x10\xf6\x4e\x5a\x29\x2b\x88\x3e\xb1\x1c\x2c\ +\xa2\x1e\x44\xd2\xc0\x4e\x01\x9f\xb3\x98\x22\x4e\x3d\x5a\x7c\x4f\ +\x3b\xdb\xba\x9e\xde\x8d\x63\xe3\x8c\x02\x0b\xec\x50\x0f\x27\x50\ +\xd2\xa8\x24\xad\xdf\x4b\xab\x79\xce\xb5\x50\x00\x8b\x36\xc9\xca\ +\x70\xa6\x45\x7b\xfd\xe8\xf0\x10\xfc\xe3\xf7\xbe\x05\x2d\x8d\xa7\ +\xce\x39\xf3\xcf\x07\x00\xce\x39\xf3\x69\xdd\x40\x32\x9a\x68\xce\ +\x20\xcd\x0a\x22\x11\xac\xc7\xfc\x9d\xcf\xff\x0c\x3d\x88\x2e\xb8\ +\xfe\xf6\x7b\xa1\xa4\x62\x51\xb4\x01\x59\x92\xa4\xdd\xaa\xbb\xe8\ +\x44\x2a\x15\x6a\x07\x0a\x61\xb3\xa4\x0f\x49\xdf\x1f\xda\xdf\xc0\ +\x7a\xbe\x7b\x72\xe2\xbc\x30\xff\x5c\x03\xe0\xbc\x31\x9f\xc4\x2a\ +\xcd\x16\xa2\x5e\x36\xc1\x7c\xe6\x78\xe6\xb7\x9c\x3a\x2e\xa9\x00\ +\x1e\xea\x37\x6d\x85\xcd\xdb\x6f\x42\xf1\x1d\xd3\x9f\xf4\x2c\xf6\ +\x4c\xb3\x29\xa5\x18\x4f\xe3\x1a\x2e\xf4\x76\x48\xbd\xc9\xeb\xfd\ +\x78\xdc\x93\xf0\xdc\x33\x3f\x85\xf7\x76\xbf\x95\xe8\x4f\x29\xb9\ +\xe3\xf1\xb3\xfd\x7d\x6e\xbe\x30\x9f\x8e\x64\x90\x91\x0a\x68\x47\ +\xeb\x9c\x00\xa0\x65\xbe\x76\xfc\x60\xcb\xf5\xb7\x42\xed\xf2\xfa\ +\x28\x08\x38\x4e\x5c\x35\xc3\x62\x31\x49\xc3\xca\xc9\x19\x0a\x21\ +\xf5\x44\x8c\x97\x53\xbc\xe5\xf7\x23\x7b\x62\xef\x3b\x6f\xc1\xef\ +\x7e\xf5\x34\xb8\xdd\x86\xde\x07\x8d\xee\x3d\x92\x68\x80\xe7\x42\ +\x03\xe0\x82\x31\x9f\x0c\x2a\xb2\xc4\xc9\x35\x6b\xed\xe8\x81\x57\ +\x9e\xfb\x4f\x5d\xe6\xab\x42\xc1\x95\x35\xb0\xf9\xaa\x1b\xa1\xac\ +\xba\x36\x0a\x02\x79\xcd\x41\x96\x61\xcb\x7c\xeb\x0b\x93\x18\x45\ +\x06\x25\x79\x32\x54\x5f\x4a\x69\x57\x02\xf3\xe8\xc1\x7d\xf0\xf2\ +\xef\x9e\x85\xae\x8e\xb6\x44\x8f\xa0\x3c\xaf\x3b\x91\xde\x3f\x57\ +\xef\xc4\xcd\x37\xe6\x4f\xf9\x7c\xcc\xf0\x6a\x3e\x7d\x0a\x9e\xfc\ +\xde\xdf\xcd\xf8\x45\x09\x08\x1b\xb7\x5d\x0f\x95\x35\x4b\xa3\x20\ +\x90\x89\x97\x17\xa1\xe4\xb9\x73\x2a\x18\x09\x5c\xe4\xca\xd2\x9a\ +\xfd\x36\x8b\x38\x93\x57\xf9\xdb\x34\x91\xe3\x83\xa3\x07\xe1\x0f\ +\x2f\x3c\x37\x1d\xe3\xa9\x50\x42\xe7\xc3\xa0\x49\xea\x4c\x26\x00\ +\x92\xc6\x7c\x22\x9f\x2f\x00\xff\xfe\x83\x6f\x40\x7f\x4f\xe7\xac\ +\x5e\x3a\xb7\xa0\x08\xea\x37\x6e\x85\xa5\xab\xd7\x81\x3d\xcd\x11\ +\x03\x82\x24\x9a\x39\x79\x35\x52\x4e\x4e\x08\x17\xa2\x4b\xfa\xc7\ +\x46\x1b\x63\x8d\x27\xc7\x1b\xe4\x69\x5e\xa4\x5a\x48\xb2\xb0\x2c\ +\x5e\x9e\x57\x49\x1d\xf9\xd9\x93\x13\x63\xb0\xef\x4f\xbb\xe1\xbd\ +\x5d\x6f\xc0\xc8\xf0\xe0\x74\xaf\x3c\x26\x8d\x9c\x3e\x7d\x3e\xa4\ +\x12\x37\x5f\x99\x4f\x29\x62\xaf\xa0\xfe\x3f\x79\x64\xbf\xf6\x15\ +\xfa\x66\x32\xe0\x64\xc2\x9e\x59\xb5\x78\x19\xd4\xad\x5c\x03\x35\ +\x4b\x56\x81\xdd\xe1\x88\x03\x81\x52\x44\x2b\x25\x86\x38\x20\x98\ +\xe8\xf3\xd8\x02\x8e\x32\xb9\x27\xc6\xe1\xc4\xf1\x43\x70\x78\xff\ +\x5e\x68\x39\x7d\x62\xda\x81\x1f\x45\x70\x87\x98\xdf\x7f\xbe\xd4\ +\x92\x79\xbe\x32\x3f\x10\x0c\x19\xad\x7d\xf8\x15\x10\x13\x21\x28\ +\xdd\x7c\xb1\x51\x25\x68\x1a\x1a\xd9\x0f\x44\x34\x39\xb3\xa8\xa4\ +\x1c\xca\x17\xd5\x41\x49\x79\x35\x94\x57\x2f\x06\x67\x7a\xba\xa2\ +\xd7\xab\x37\x92\x12\x17\x72\x16\x12\x7c\x0e\xcc\x7f\xef\xea\x6c\ +\x85\xf6\x96\x46\xf4\xe1\x4f\x42\x6f\x57\xc7\x6c\xda\xf8\x80\xc4\ +\xf8\xf7\xce\xb7\x5d\x62\x9e\xbf\xcc\x17\x60\xb0\xaf\x5b\xef\x1d\ +\x89\xf9\xaf\x80\x38\x03\x96\x36\xa7\xfe\x5a\x22\x20\x30\x91\x8e\ +\xbd\xb1\xb7\xab\x9d\x51\xd4\x3d\x73\x38\x21\x37\xbf\x08\xb2\xf3\ +\xf2\xc1\x85\x1e\x85\x03\x01\x61\xb7\x3b\xc4\x95\x3a\x68\x7f\x43\ +\xda\x20\x7a\xca\xcd\x24\x81\x17\x8f\x53\x1e\x37\x4c\x8c\x8d\xc2\ +\xf0\x60\x3f\x0c\x0d\xf4\x82\xcf\xeb\x9d\x0b\x3f\x28\x51\xe1\xeb\ +\x48\x2f\x5e\x28\x8f\x84\x9b\xaf\xcc\xef\x38\x73\x1a\x5e\x7c\xe6\ +\x27\x7a\xef\x59\xa4\x11\x99\xe4\xf8\x53\xca\xf9\x97\x41\x67\xbb\ +\xba\x14\x29\x3b\x25\x89\xf5\xda\x85\xfe\x61\x6e\x3e\x32\x7f\x64\ +\xa8\x1f\xfe\xeb\xe9\x7f\xc6\x5e\x17\xe7\x2b\xd3\xca\x23\x5b\x13\ +\xd4\xa3\x5e\xb2\xa4\x29\x7a\x96\x97\x64\xa6\x93\x4b\x47\xf3\xf4\ +\x9e\x04\x9d\x7c\xfd\x54\x02\xc0\x7c\x61\x3e\x48\x3d\x7d\x26\xe2\ +\x93\xa4\xc2\x55\x92\x4f\x7d\x23\xe8\xec\x61\x70\x9e\x0a\x05\xf4\ +\x5f\x96\x5c\xba\xf7\x52\x41\xf4\x70\x17\x11\xf3\xe9\x3d\xb7\x9f\ +\x85\x57\xb3\x45\x52\x11\x94\xa5\xbc\x12\xce\x7e\x21\x6d\xb7\xc4\ +\xf0\x06\x89\xe8\xfd\xba\x53\x4d\xf7\x70\x17\x09\xf3\xdb\x24\xe6\ +\x9d\x2b\x77\xc9\x24\x19\x8e\x55\x12\x15\x49\x64\x57\xd8\x19\x21\ +\x88\x2d\x70\xe1\x96\xce\xbb\xa4\x77\x21\x6a\x81\x79\x50\xb8\x8b\ +\x80\xf9\x7d\x92\x38\x3f\x0d\x0b\xe5\x9c\x00\x60\x81\xf9\x97\x30\ +\x00\x16\x98\x7f\x09\x03\xa0\x50\x0a\x44\x2c\x30\xff\x12\x2a\xbc\ +\xc2\xe8\x79\x61\x81\xf9\x97\x2e\x00\x1e\xd1\x8b\x92\x2d\x30\xff\ +\xd2\x51\x01\xad\xda\x60\xc8\x02\xf3\x2f\x1d\x09\xb0\x49\x2f\x12\ +\xb6\xe3\xee\x87\x17\x98\x7f\x89\x00\x20\x4e\xf4\xd3\x8a\x1c\x8b\ +\xeb\x96\x2e\x30\xff\x12\x01\x40\x96\xf6\x66\x75\x4d\xdd\x02\xf3\ +\x2f\x21\x00\xc4\xed\xd1\x46\x39\x6c\x0b\xcc\xbf\x74\x00\x10\xb7\ +\x9e\xe8\xe4\xd8\xe8\x02\xf3\x2f\x21\x00\xc4\x6d\x28\x73\xf4\xd0\ +\x3e\x88\xd0\xde\x74\x0b\xcc\xbf\x24\x00\x40\x49\x14\xaa\xd5\x85\ +\x68\x1b\xb7\x1f\x7f\xff\x3b\x6c\x1d\x9e\x05\xe6\x5f\xdc\x85\x22\ +\x80\xb4\x28\x4d\x81\xd6\x1b\xe8\xed\xe9\x86\xce\x8e\x36\xb8\xe9\ +\xa3\x37\x43\x1a\x4a\x82\x05\xe6\x5f\xbc\x00\xa0\x42\x59\xa8\x9f\ +\xa1\xf8\x8f\xf2\xc3\xb6\xd6\x33\xd0\xda\xda\x02\x3b\x6e\xd9\xc1\ +\x66\xb4\x2c\x30\xff\xe2\x05\x00\xa5\xb0\x1e\x03\x31\x57\x4e\x35\ +\x4f\xaa\xa5\xb9\x19\x9a\x9b\x9b\x60\xc7\x8e\x1d\x6c\x7a\xf6\x02\ +\xf3\x2f\x4e\x00\x30\x5e\x23\x9d\x00\x71\x59\x51\x15\x08\x9a\x1a\ +\x1b\xe1\xc4\xc9\x13\xb0\xf5\xaa\xab\xd9\x34\xed\x05\xe6\x5f\x9c\ +\x00\xa0\x72\xd2\x08\x04\xcd\x4d\x4d\x70\xfa\xe4\x29\xd8\x78\xc5\ +\x56\xc6\xe8\x05\xe6\x5f\x9c\x00\x48\x08\x02\xb2\x07\x9a\x9b\x1a\ +\x61\xcd\xba\xcd\xe0\xa5\xb5\x6c\x17\x98\x7f\x51\x02\x20\x21\x08\ +\x3a\x3b\xda\xd1\x38\x6c\x81\xe5\xf5\xeb\xc0\x87\x06\xe1\x02\xf3\ +\x2f\x4e\x00\x24\x04\x41\x6f\x77\x27\x9c\x69\x3a\x0d\x55\x8b\x97\ +\x42\x38\xc2\xa9\x98\xdf\xdb\xd5\x06\xbf\xff\xc5\xbf\x2d\x30\x7f\ +\x9e\x94\x99\x4c\x0c\xb9\x03\xc4\x59\xaa\x71\x79\xf2\xb4\x20\xd3\ +\xe2\x65\xab\xc1\x95\x95\x8b\x40\x08\x43\x4f\xc7\x19\xb6\xd7\x8f\ +\x41\x59\x60\xfe\x3c\x2e\x77\x48\x01\x23\x61\x8e\x44\x4b\x59\x2f\ +\x59\x68\xc6\x4b\x13\x04\x9d\x0b\xcc\xbf\x78\xca\x0d\x48\x83\xb3\ +\x60\xfe\x5e\x10\xb3\x8d\x17\xca\x45\x54\x72\x91\x68\x99\xea\xc9\ +\x04\x8c\xa7\x1c\xc3\xcf\x41\xea\xec\x49\xb4\x50\xce\xc2\x08\x34\ +\x2a\x4e\x10\x27\x54\xd2\xba\xf4\x72\x52\x09\xe5\x16\xd0\x44\xc8\ +\xf7\x17\x9a\x76\x7e\x94\xff\x0f\x30\x9e\x0d\x50\xa3\x3a\x2b\x27\ +\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\ +\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\x32\x2d\x31\x30\x54\x30\ +\x32\x3a\x30\x38\x3a\x34\x37\x2d\x30\x36\x3a\x30\x30\x48\x3f\xeb\ +\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\ +\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\x30\x31\x2d\x31\x37\x54\ +\x31\x30\x3a\x34\x33\x3a\x32\x34\x2d\x30\x36\x3a\x30\x30\x25\x20\ +\xe2\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0a\x6c\ +\xff\ +\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\ +\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x07\x14\x10\x12\x10\x11\ +\x13\x14\x15\x12\x14\x15\x16\x1e\x17\x17\x18\x18\x16\x17\x1b\x19\ +\x16\x1d\x1f\x26\x17\x1e\x20\x1f\x17\x1b\x1f\x1c\x28\x22\x1c\x1a\ +\x31\x1f\x1e\x1b\x2d\x38\x22\x25\x35\x31\x37\x2e\x31\x1c\x20\x33\ +\x38\x33\x2c\x37\x28\x39\x2e\x2d\x01\x0a\x0a\x0a\x0e\x0d\x0e\x1b\ +\x10\x10\x1a\x2b\x25\x20\x26\x2c\x37\x2f\x36\x38\x2f\x38\x2b\x37\ +\x2b\x37\x2e\x37\x2b\x37\x2c\x32\x31\x2f\x2c\x2b\x38\x37\x2c\x2b\ +\x2c\x2f\x2b\x2c\x2c\x2f\x37\x37\x37\x2f\x2f\x2b\x2d\x2c\x2c\x30\ +\x2c\x2c\x38\x2b\x2c\x37\x2c\x2c\x2c\xff\xc0\x00\x11\x08\x00\x66\ +\x00\x66\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\ +\x00\x00\x02\x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x06\x04\x05\x01\x02\x03\x07\xff\xc4\x00\x3c\x10\x00\x02\ +\x01\x02\x03\x06\x03\x05\x06\x05\x03\x05\x00\x00\x00\x00\x01\x02\ +\x11\x00\x03\x04\x12\x21\x05\x22\x31\x41\x51\x61\x06\x13\xa1\x14\ +\x15\x32\x71\x91\x23\x42\x52\x81\xd1\xd2\x54\x62\x92\xa2\xb1\x07\ +\x73\x82\x24\x33\x34\xc1\xf1\xff\xc4\x00\x19\x01\x01\x01\x00\x03\ +\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\ +\x05\x04\xff\xc4\x00\x25\x11\x00\x02\x01\x03\x04\x01\x04\x03\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x11\x41\x04\x12\x21\ +\x31\xa1\x14\x51\x61\x81\x91\xb1\xf0\xff\xda\x00\x0c\x03\x01\x00\ +\x02\x11\x03\x11\x00\x3f\x00\xf6\xab\x97\xd5\x48\x0c\xc1\x49\xe0\ +\x0b\x00\x4f\xad\x63\xda\x53\xf1\x2f\xf5\x8f\xd6\xbc\xbf\xc4\x7b\ +\x7e\xf6\x17\x1f\x8b\xf2\xc8\xd4\xa8\xd7\x88\x00\x0d\x07\x6d\x4d\ +\x5a\x5b\xda\xd8\x93\xb3\xce\x37\xcd\x39\x83\x46\x48\x11\xc6\x38\ +\xcc\xd7\xbb\xd0\xcb\x6c\x65\x7e\xed\xe4\xf2\xfa\xb8\xee\x71\xf6\ +\xbf\x81\xd4\xe2\xd6\x4e\xf8\xfe\xa1\xfa\xd1\xed\x6b\xf8\xc7\xf5\ +\x0f\xd6\xbc\xd7\x64\xf8\x9b\x1d\x89\xba\x96\x6d\xb0\xcc\xc7\x9f\ +\x00\x39\x93\xda\x9b\x3d\xa4\x79\x9e\xcb\xed\xa7\xda\x3a\x64\x19\ +\x67\x8c\x71\xf4\x9a\xc6\xa6\x8a\x54\xdd\xa4\xfe\x73\xd7\xbf\x45\ +\x86\xaa\x33\x57\x5f\xde\x4b\xdf\x6b\x5f\xc6\x3f\xa8\x7e\xb4\x7b\ +\x5a\xfe\x31\xfd\x43\xf5\xa4\x5b\x3b\x4b\x68\xb6\x2c\xe0\xe5\x43\ +\x83\xa9\xd7\x28\x5f\xc5\xf2\x8a\xb8\xbf\xb4\xed\xdb\x7f\x21\xf1\ +\xc4\x5d\x1a\x13\x90\x65\x07\xa1\xe9\xf5\xa9\x2d\x23\x8b\x4a\xf7\ +\xe2\xfc\x5d\xf1\xf4\x84\x75\x29\xf3\xd6\x39\xb7\x7f\x91\x85\xb1\ +\x8a\x38\xb8\x1f\xf2\x5f\xd6\xba\x2d\xc2\x40\x20\xc8\x3c\xc1\x11\ +\x5e\x5d\x8f\xf1\x7e\x2a\xd5\xcb\x96\xf3\xab\x85\x62\xb2\x38\x37\ +\x7e\x34\xc3\xfe\x9a\xe2\x9a\xe5\x8b\xc1\xb5\x8b\xa6\x3a\x09\x00\ +\x90\x3b\x4c\xd5\xad\xa2\x95\x2a\x7b\xd8\xa5\xaa\x8d\x49\xed\x43\ +\x8e\x73\xde\xb1\x9c\xf7\xad\x63\xb7\xad\x63\xf2\xf5\xaf\x19\xea\ +\x34\xc5\xe3\x0d\xb5\xce\x64\x89\x03\xea\x62\xa7\xa1\x90\x0c\x1d\ +\x7b\xd5\x26\xdc\x1f\x64\x74\xfb\xcb\xcf\xf9\x85\x5c\xd8\x1b\xab\ +\xa7\x2e\xb5\x01\xbc\x76\x3f\x5a\x28\x8e\xde\xb4\x55\x07\x8b\x78\ +\xe3\xff\x00\x3f\x13\xf3\x1f\xe1\x69\x97\x67\x61\x1e\xee\xc6\x29\ +\x6d\x0b\xb1\x73\x00\x71\x3b\xd5\xd7\xc5\x7e\x08\xbb\x7f\x10\xf7\ +\xed\x15\x21\xe0\x90\xcd\x04\x10\x00\xe9\xa8\xa8\xf8\x4f\x0c\x6d\ +\x2b\x2a\x12\xdd\xc0\x8a\x35\x81\x77\x4d\x7f\xe3\x5d\xb7\xa8\xa5\ +\x2a\x30\x4a\x49\x35\x67\xcd\xf0\x72\x55\x0a\x91\xab\x36\xe2\xec\ +\xee\xb8\xf9\x21\x78\x33\x0e\xf8\x4c\x6d\xa1\x88\x46\xb4\x6e\x2b\ +\x2a\xe6\xd2\x4e\x9c\x2b\xb8\xf0\xe6\x23\xde\x61\xbc\xb6\xc9\xe7\ +\x79\xb9\xfe\xee\x59\x9e\x3d\x79\x45\x72\xda\x1e\x16\xc7\xde\x60\ +\x6e\x11\x70\xae\x80\x9b\xbc\x3e\x5a\x54\x9f\x75\xed\x5c\xb9\x3c\ +\xc6\xcb\x11\xff\x00\x78\x4f\xd6\x26\x93\xd4\x45\xc9\xcd\x4e\x37\ +\x6a\xcf\xbb\x7d\x08\xd1\x92\x5b\x5c\x5d\x93\xba\xeb\xc9\x6f\x85\ +\xda\x56\xce\xd7\xbc\xb2\x35\xb4\x2d\x83\x3c\x58\x6a\x47\xcf\xf4\ +\xa8\x3b\x1b\x60\xa8\xc4\x5d\xb1\x89\xc2\x35\xc2\xf7\x1d\xd6\xf6\ +\xb9\x32\xf1\x02\x7a\xf1\xfa\xd5\x18\xf0\x56\x2c\x19\xc8\xb3\xc6\ +\x7c\xdd\x67\xe9\xc6\xad\x3d\xdd\xb5\x72\xe5\xf3\x1a\x3f\xdd\x13\ +\xf5\x89\xad\x72\x95\x28\xab\x53\xa8\xba\x4b\x38\xcf\x1f\xa3\x35\ +\x1a\x8d\xde\x70\xcb\x78\xce\x39\x14\x76\xf5\x85\xb7\x88\xbe\x8a\ +\x32\xaa\xb9\x00\x74\x14\xe9\xfe\x96\x8f\xb1\xc4\x7f\xbb\xff\x00\ +\xa1\x54\x97\x3c\x17\x8b\x62\x49\x45\x24\xea\x49\xbb\x24\xfc\xf4\ +\xa6\xff\x00\x06\x6c\x37\xc1\xd9\x75\xb9\x05\x9d\xf3\x10\x0e\x83\ +\x40\x22\x79\xd5\xd7\x6a\x69\xce\x8a\x84\x5d\xdf\x04\xd2\x50\xa9\ +\x0a\xae\x4d\x59\x0c\x31\xdb\xd6\xb1\xf9\x7a\xd1\x1d\xbd\x6b\x11\ +\xdb\xd6\xb8\xe7\x50\x83\xb6\xc7\xd9\x1d\x3e\xf2\xf3\xfe\x61\x57\ +\x56\x06\xea\xe9\xcb\xad\x52\x6d\xa1\xf6\x47\x4f\xbc\xbc\xff\x00\ +\x98\x55\xdd\x81\xba\xba\x72\xeb\x50\x1b\xc7\x6f\x5a\x28\x8e\xde\ +\xb4\x55\x01\x1d\xbd\x68\x8e\xde\xb4\x47\x6f\x5a\x23\xb7\xad\x01\ +\x15\x86\xa7\x4e\x7d\x6b\x11\xdb\xd6\xa1\xed\xbc\x23\x5e\xb3\x7e\ +\xd2\x31\xb4\xee\xa5\x55\xc1\x32\xa4\xf3\x11\xce\x97\xed\x78\x7f\ +\x1a\x92\xab\x8d\x66\x07\x31\xcc\xc3\x7b\x52\x4f\x48\xe1\x1f\x28\ +\xef\x50\x0d\x71\xdb\xd6\xb1\x1d\xbd\x69\x67\x6b\xd8\xb8\x12\xd2\ +\x36\x2a\xdd\xbb\x8b\x66\xe0\x76\x7b\x99\x49\xcc\x32\x87\xcb\x23\ +\x83\x46\xbd\x6a\x07\x96\x56\xce\x19\x5b\x1b\x68\xe4\x7b\x6d\x9f\ +\xcf\x92\xca\x1a\x08\xd3\xe2\x04\xee\x93\xc2\x7a\x70\xaa\x07\x58\ +\xed\xeb\x5a\xc7\x6f\x5a\x4d\xc3\xe1\x4b\x2e\x1b\x0a\xb8\xc4\x7b\ +\xb6\xee\x9b\xa4\x0b\xb2\xd7\x13\x78\x65\x2d\x1b\xc4\x1e\x3a\x72\ +\xe5\xc6\x87\x6b\x93\x91\x76\x8d\xbc\xea\x15\xda\x5d\x23\x2a\xc8\ +\x73\xc3\xf1\x03\xa7\x21\xc6\x28\x07\x28\xed\xeb\x58\x8e\xde\xb4\ +\xad\x30\x8f\x6f\xdb\x57\xce\xbb\xe5\xc3\xf9\x8a\x62\x20\xb4\x0e\ +\x0b\x98\x1d\x3e\x62\xb8\x61\xed\xdd\x53\x6a\xe1\xc7\xda\x65\x52\ +\xa5\xc9\x75\x87\x40\xcf\x32\x67\xa3\x28\x9d\x38\x73\xa8\x06\x1d\ +\xb4\x3e\xc8\xe9\xf7\x97\x9f\xf3\x0a\xbc\xb0\x37\x57\x4e\x5d\x69\ +\x7b\x68\xdf\x5b\x96\x33\xa1\x57\x52\xcb\x0c\xac\x18\x1d\xe0\x34\ +\x23\x4a\x61\xb0\x37\x57\x4e\x5d\x68\x0d\xe3\xb7\xad\x14\x47\x6f\ +\x5a\x2a\x80\x8e\xde\xb4\x47\x6f\x5a\x23\xb7\xad\x11\xdb\xd6\x80\ +\xae\xc7\xdf\x16\x96\xe5\xc6\x07\x2a\x02\xc6\x01\x26\x07\x18\x03\ +\x53\x55\x98\x6f\x12\x61\x9f\x37\xda\x04\x2a\x01\x21\xe5\x18\x02\ +\x33\x03\x07\x94\x55\xae\x22\xd0\x6c\xea\xcb\x21\xa4\x11\xd4\x1d\ +\x08\xaa\xdb\xdb\x03\x0e\xe0\x86\xb0\x86\x74\x3e\x83\xfc\x01\x50\ +\x15\xde\x21\x6c\x10\xb8\xcf\x89\x07\x3d\xbb\x6b\x3f\x1f\xc2\xcc\ +\x4a\xf0\xd0\xef\x29\xf9\x45\x42\xc5\xe1\x76\x6d\x9c\xac\x51\xa3\ +\xca\x62\xa5\x4d\xc2\x02\xa9\xcc\x72\xc1\xf8\x81\x83\xd7\x85\x49\ +\xf1\x1e\x51\x74\xaf\xb1\x36\x27\xcc\xb4\x03\x30\xcd\x94\x80\xc0\ +\x04\x68\x04\x46\xa4\xfd\x6a\xbb\x11\x8e\x2e\x50\xfb\xba\xe6\x6c\ +\x93\xaf\x99\x08\x19\xf2\xb0\x10\x38\xe5\x93\xa6\xb5\x41\x6b\x62\ +\xc6\x0a\xd3\xd9\xb8\x06\x56\x28\x5e\xdb\x33\x34\x2a\x6f\x4f\x13\ +\x00\x6f\x1d\x3b\xd7\x2b\xbb\x2f\x67\x10\x43\x64\x23\x29\x5d\x6e\ +\x36\x8a\x33\x12\x06\xba\x01\x27\xe5\xf9\x57\x2c\x0d\xe3\x72\xed\ +\x9b\x47\x04\x52\xc8\xb6\x50\x18\x71\xe5\xfc\x5b\xa6\x54\x02\xa4\ +\x28\xe1\xd4\x6a\x6a\x3e\x23\x68\xb9\x62\xc7\x67\xbb\xa8\x46\x30\ +\x03\xe6\x0d\x2f\x20\xca\xc1\x9e\xd3\xc7\x49\x9a\xc1\xee\xf8\x37\ +\xc5\xd0\xb2\xdd\xba\xf9\xe8\x95\x7f\x67\x6c\xeb\x48\x97\x1f\x2d\ +\xb4\x17\x65\x0b\x5c\x60\x05\xc1\xa4\xae\xbc\x60\x71\xe7\x5a\xe0\ +\x76\x56\xce\x76\x16\xed\x85\x66\xcb\x01\x7c\xc6\x32\xaa\x55\xe4\ +\x09\xe1\x25\x75\xfc\xab\x86\x2b\x69\x35\xd3\x69\x5f\x00\xec\x86\ +\xe6\xf0\x2a\xe4\xae\x60\x0e\x7f\x86\x32\xc9\x8d\x24\xf5\x02\xb9\ +\x60\xf1\xc1\x0a\xdc\x4d\x9b\x71\x2e\x84\x95\xdd\x61\x19\x8a\xa1\ +\x19\xb2\xf4\x00\xfc\x85\x64\x69\x95\xaf\xc7\x43\x06\x27\x02\x96\ +\x30\xfe\x5d\xb5\xca\x81\x81\x02\x4f\x36\x04\xfa\x9a\x65\xb0\x37\ +\x57\x4e\x5d\x69\x54\xe2\x9a\xf6\x17\xcc\x7b\x46\xcb\x16\x00\xa3\ +\x1d\x44\x30\x1d\x06\x87\x8f\xe7\x4d\x56\x06\xea\xe9\xcb\xad\x08\ +\x6f\x1d\xbd\x68\xa2\x3b\x7a\xd1\x54\x04\x76\xa2\x3b\x51\x97\xb5\ +\x19\x7b\x50\x14\xdb\x75\xae\xad\xab\xe6\xc2\x86\xbc\x14\xf9\x60\ +\xea\x0b\x72\x91\x22\x45\x2f\x5a\xda\x5b\x49\x65\x5f\x09\x6d\x9b\ +\x7a\x0a\xb6\xef\x13\x02\x67\xa4\x7c\xe7\x94\x53\x5d\xed\x0b\x48\ +\x03\x5e\xb5\xa0\xd7\x50\x24\x7c\xea\x02\x97\x11\x8b\xc5\x7f\xd2\ +\x95\xb4\x41\x65\x63\x78\x05\x0c\xa8\x40\x30\x27\x30\x33\x9a\x3e\ +\x62\x78\x54\x77\xc7\x63\x4d\xbc\x31\x16\x48\x72\xd6\xbc\xd0\x50\ +\x44\x18\xf3\x3e\xfe\xec\x6b\x11\x3f\x9d\x48\xdb\x1b\x1d\xaf\xdc\ +\x56\x17\xde\xd2\xe5\xc8\x51\x4f\xc4\x73\x06\x9e\x3a\x18\xd3\x4e\ +\x46\xab\x9f\xc3\x0f\xba\xa7\x18\xe4\x2a\x81\x04\x9d\x4e\x6c\xf2\ +\xc7\x34\x9e\x11\xf2\xa0\x3a\x26\x2f\x1f\xe4\xe1\x89\xb6\x3c\xd3\ +\x78\x8b\xdb\x83\x4b\x7a\xc3\x05\xcd\xbb\x3a\x75\x35\xd2\xe6\xd2\ +\xc7\x00\x0f\xb2\x21\x24\xac\x80\xe6\x44\x89\x3c\xf8\x03\xa4\xd6\ +\xf8\x1f\x0f\x35\xbb\xe9\x78\xdf\x67\x65\x05\x48\x96\xde\x07\x31\ +\xdf\x05\x8e\xb2\xdf\x2d\x04\x01\x51\xae\x78\x51\xc9\x2d\xed\x37\ +\x55\x8a\x14\xcc\x0b\x49\x04\xb1\x96\x96\x22\x77\xb9\x47\x0d\x22\ +\x80\x98\x31\x78\xb1\x6e\xe3\x1b\x28\x6e\x7d\x9f\x97\x6e\x48\x1a\ +\xfc\x72\x67\x58\x1a\xfe\x55\x1f\x0f\xb4\x71\xc5\xad\x67\xc2\x80\ +\x19\x94\x3c\x36\x88\x25\xc1\x61\xaf\xe1\x08\x75\xeb\x51\x6f\x6c\ +\x12\x86\xdb\x36\x2d\xe5\x18\x30\x24\x99\x61\x00\x15\x27\x37\xc1\ +\xa7\x28\x3d\x49\xaa\xeb\xd6\x72\x2e\x4f\x6d\xbb\x73\x74\x08\x59\ +\xcc\x48\x60\x74\x20\xf3\x02\x3e\xb4\x03\x86\xd8\x1f\x64\x74\xfb\ +\xcb\xfe\x45\x5f\xd8\x1b\xab\xa7\x2a\xf3\xec\x0d\x8b\xeb\x6e\xd5\ +\xab\x85\x8e\x67\x95\x0e\x4e\x72\x27\x34\xb4\x99\x00\x70\xd6\xbd\ +\x06\xd2\x42\x81\x1c\xa8\x0d\xe3\xb5\x14\x65\xed\x45\x50\x11\xda\ +\x88\xed\x44\x76\xa2\x3b\x50\x14\xbb\x73\x67\x8c\x45\xab\xf6\x1a\ +\x54\x5c\x52\xa4\x8e\x20\x1e\x95\x55\x6f\xc3\xb9\x2e\x5a\x74\xb8\ +\xea\xa9\x70\xb1\x4c\xec\x41\x5c\xa0\x2a\x71\xe0\x08\x9f\xfe\xd5\ +\xfd\xe1\xbc\xda\x73\xae\x71\xda\xa0\x13\x36\xd6\xce\xc3\xdb\xbe\ +\xa6\xf6\x20\xa3\x0b\xc7\x14\xa8\x10\x9e\x39\x12\x34\x99\xd5\x40\ +\xfc\xce\x9c\xc4\x1c\x62\xe0\xee\x11\x73\xda\x09\x2e\x2d\x15\xcb\ +\x69\xe7\x71\xb2\x86\x00\xfd\xec\xcd\x1a\xf2\xe4\x69\xe6\xfe\x06\ +\xdb\xb0\x67\xb6\x8c\xc0\x40\x24\x02\x40\x99\xd3\x4e\xb5\xc7\xdd\ +\x16\x38\xf9\x16\xb8\x65\xf8\x57\x87\x18\xe1\xc2\x68\x0a\x4b\x78\ +\xac\x3d\xdc\x51\x55\xb8\xf9\xef\x00\xeb\xba\xea\x1b\x28\x65\x80\ +\xda\x69\xba\x4f\x78\xe2\x6a\x37\xbc\x70\xa9\x73\x7b\x11\x70\x28\ +\x40\xfb\xc2\xe6\x56\x02\x57\x8c\x6b\xaa\x92\x3a\xc9\x89\xa6\x7b\ +\x5b\x3a\xd2\x10\xcb\x69\x14\x8e\x04\x28\x04\x71\xed\xdc\xfd\x6a\ +\x36\x33\x03\x62\xda\x33\x1b\x36\xe2\x0c\xee\x8d\x66\x67\x97\x73\ +\xf5\xac\x76\x47\xd8\xdf\xea\xaa\xa5\x6d\xd8\xb6\x04\xe0\x6c\xe2\ +\xf6\x96\x01\x2d\xbb\x5c\x4b\x6b\x0c\xb0\xd9\x08\x55\x27\x7a\x78\ +\x9d\x46\x9f\x2a\x7e\xbf\x6b\x0f\x83\x42\xe2\xd2\x27\x20\x14\x09\ +\x27\xa0\xd2\x95\x76\x02\xda\xc3\x35\xdc\x63\xa2\x87\xb9\xbb\x69\ +\x14\x0c\xc5\x7a\xc7\x20\x74\xd7\xb5\x5e\xec\xcd\x9b\x73\x13\x70\ +\x62\x31\x03\x41\xf0\x27\x25\x15\x91\xa5\xb6\xdd\xd9\x2b\x62\x60\ +\x9a\xe3\x1c\x4d\xd1\xbc\xdf\x08\xfc\x23\x90\x15\x7d\x1d\xab\x0a\ +\x91\xa0\x02\xb3\x1d\xaa\x90\x23\xb5\x14\x47\x6a\x28\x02\x3b\x0a\ +\x23\xb0\xa2\x8a\x02\x97\x6b\x60\xae\xb3\x4d\xbb\x9e\x58\xe6\x20\ +\x1f\xf2\x2a\x07\xbb\x71\x3f\xc4\x7f\x6a\xfe\xda\x28\xa8\x03\xdd\ +\xb8\x8f\xe2\x3f\xb5\x7f\x6d\x1e\xec\xc4\x7f\x11\xfd\xab\xfb\x6b\ +\x14\x50\xa6\x7d\xd9\x88\xfe\x23\xfb\x57\xf6\xd7\x2b\xfb\x12\xf5\ +\xc1\x0d\x7a\x47\xc8\x7e\xda\x28\xa0\x27\xec\x9f\x0d\xa5\xb3\x9d\ +\xfe\xd1\xba\x93\x57\xc1\x63\x90\xa2\x8a\xa4\x33\x1d\x85\x11\xd8\ +\x51\x45\x00\x47\x61\x45\x14\x50\x1f\xff\xd9\ +\x00\x00\x02\xe0\ \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\x06\x00\x00\x00\xaa\x69\x71\xde\ -\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\x2e\x23\x00\x00\ -\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\xdc\x49\x44\x41\x54\x78\ -\x5e\xed\x9b\x31\x0a\xc5\x40\x14\x02\xbd\xff\xa1\x93\x1f\x08\xfe\ -\x5a\x30\x09\x16\x23\x8c\xd5\x16\xeb\xf4\x4f\x92\xce\x51\x8e\xe0\ -\xcd\x13\xdc\x35\x98\xeb\x5f\xe7\xcb\x20\x00\x01\x72\x0d\x26\x18\ -\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\x82\ -\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\x26\ -\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\x60\ -\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\x0d\ -\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\xd7\ -\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\x72\ -\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\x20\ -\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\x00\x01\ -\x72\x0d\x26\x18\xd0\x82\x00\x04\xc8\x35\x98\x60\x40\x0b\x02\x10\ -\x20\xd7\x60\x82\x01\x2d\x08\x40\x80\x5c\x83\x09\x06\xb4\x20\xe0\ -\x2f\x60\x91\x4f\xce\xe7\x7f\x8e\x88\xcd\xd9\x93\x86\x7d\xc7\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x02\xa7\x49\x44\x41\x54\x78\x9c\x8d\x93\x4d\x48\x54\x51\ +\x18\x86\x9f\x3b\x1e\x1d\xa7\x71\x9c\xc9\x1f\xcc\x30\x1b\x49\x92\ +\x7e\xa0\xcc\xdc\x44\x45\x8b\xa0\x8d\x19\x2a\x6e\x62\x6a\x17\x35\ +\x54\x0b\x5d\xe9\xae\x9d\xb4\xa9\x85\x82\x41\xd0\xa2\xda\xd9\x18\ +\xe8\x2a\x08\x8a\x90\x20\x2a\xfa\x0f\x86\x0a\xad\x66\x94\x69\x9a\ +\x69\x9c\x99\xeb\xbd\xd7\x7b\xee\x3d\x2d\x46\x4b\x29\xa2\x77\xf7\ +\x9d\x73\xde\xe7\xfb\xbe\x17\x8e\xc6\xf0\x43\x05\x0c\x31\x72\xe4\ +\x32\x00\x17\xa7\x87\x11\xa2\x0f\x51\xde\x86\x10\x7e\x00\xa4\xd4\ +\x91\x76\x1c\x29\x63\x8c\x1e\x1f\x61\x8d\xb4\x15\x00\xd8\xf6\x20\ +\x8e\x3c\x89\xcf\xd7\x11\xae\xaf\xd6\x1a\x82\x3e\x0e\xb7\x35\x02\ +\xf0\x28\xbe\x40\x6a\xd1\x60\x2e\x9d\x57\x18\xc6\x73\x6c\x7b\x80\ +\xb1\xee\x99\x12\x60\xe8\x81\xea\x6f\x6f\x62\xe2\x45\x82\x70\x43\ +\x90\xce\xcd\x01\xc2\x4d\xf5\x00\xcc\x25\xd2\x00\xeb\xea\x89\xd7\ +\x0b\x60\x18\xb3\x2c\x5b\xa7\x19\xeb\x9e\x11\x28\x97\xcd\x8d\xb5\ +\xf4\x38\x2e\xcd\x4d\x75\x7c\x49\x66\x98\x78\xf2\x89\xb9\x74\x01\ +\x34\x0d\x94\x82\x57\x49\xc2\x75\xd5\x9c\xe8\xd8\x4a\x8f\xe3\x72\ +\xf7\xcd\x42\x0b\xca\xb9\x0a\x74\x96\x71\xe0\xf4\xa5\xbd\x2d\xf5\ +\xf8\xfd\x3e\x66\x13\x19\xa6\x5f\x7e\x25\xb7\xa8\xe7\x30\x8d\x3b\ +\x98\x46\x14\xcb\xba\x81\x2d\xbd\x39\xdd\x6c\x4e\x15\xac\xca\x3d\ +\xad\x9b\xd8\x54\x59\xc6\x87\xef\x7a\x23\xed\xfd\xcb\x02\xd7\x65\ +\xc9\x76\xd0\x80\xda\xda\x20\x47\x77\x38\xdc\x7f\x3f\x1f\xa2\x2a\ +\xf0\x96\x91\x23\x8f\x57\xb2\x7a\xcc\xf9\xa9\xc8\x5c\x32\x3d\x7a\ +\xcf\x75\x42\x87\x76\x37\xd3\xba\x21\xa9\x7d\xb4\xb4\x3e\x8d\xc1\ +\x7b\x0a\x05\x68\x6b\xa2\x5d\xad\xaf\x1c\x5b\x7b\x0a\x17\xa6\x6e\ +\x51\x51\x11\xe9\x3d\xbc\x8b\x6f\xa9\x2c\x33\xef\x12\x45\xf1\xc7\ +\xa3\x7f\xc9\x75\xc7\x91\x32\xa2\x9b\x36\xfe\x60\x00\x50\x7e\xf1\ +\xdf\xe6\x55\x39\x0e\x45\x4b\xa2\x94\x02\x29\x11\x9c\x9b\x2c\xa0\ +\xdc\xaa\x5f\x3b\x78\x3c\xb7\x19\xef\x39\xf5\x57\xb3\x52\x51\x1c\ +\x87\x82\x69\x53\xcc\xe5\x41\xb9\xba\x07\xa5\xe2\x48\x97\x6d\x3b\ +\x5b\x69\xdc\xd2\x00\x8e\xd3\x45\xf4\x6e\xe4\x0f\x73\x74\x32\x82\ +\x74\xba\xc2\x0d\x21\x8a\x96\x4d\x3a\x95\x05\x57\xc5\x05\x9a\x16\ +\x43\x39\xfb\x8a\xcb\xb6\xa6\x79\x2b\xc1\xe3\x09\x61\xdb\xa3\x9c\ +\x8d\x1d\xc3\xe3\x19\x5f\xd9\x3d\x8a\x2d\xbb\x70\x64\xc8\x0c\x04\ +\x59\xce\x2c\x52\xc8\xe5\x15\x5e\x6f\xac\x34\xf7\x99\x89\xa7\x58\ +\xe6\xfe\xea\xb6\xed\x00\xf8\x32\xdf\x48\x7d\xcf\xad\x69\xaf\x11\ +\x6e\xaa\x23\xeb\x0f\x21\xf5\x25\x96\x12\x49\xf0\x56\x3e\xe3\x7a\ +\x7f\x67\x29\x44\x21\x06\x70\x2b\x6e\xe6\x67\x3f\xb7\x88\xda\x1a\ +\xcc\xea\x1a\x2a\x02\x35\xb8\xa6\x51\x8a\xc5\xe7\x63\x5e\x81\x9b\ +\xd7\x91\xc9\x04\x78\xbd\xb3\x08\x31\x50\x42\xaf\xea\xdc\xe4\x41\ +\xa4\x7d\x15\xc3\xe8\x20\x18\xd2\x36\x7a\xcb\xf8\xe1\x0f\x95\xee\ +\xb2\x19\xb0\x2c\x30\x0d\x85\x6f\xc3\x73\xca\xc5\x00\xe3\xbd\x33\ +\xeb\x01\xbf\x41\xc3\x48\xd9\x87\xb4\xdb\x90\xd2\xbf\x32\xa1\x8e\ +\x28\x8f\x23\x44\x8c\x6b\xbd\xeb\xbe\xf3\x4f\x57\xf9\x31\xd1\xb0\ +\x87\x00\x45\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xcc\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x02\x93\x49\x44\x41\x54\x78\x9c\x75\x93\xbf\x6b\x93\x41\ +\x1c\xc6\x3f\xf7\x7a\x6f\x92\xb7\x69\x4c\x4c\xac\x69\xb4\x62\xab\ +\x42\x51\x41\xd0\xea\xa6\x4e\x82\xa0\x55\xd1\xd2\xad\xab\x68\x40\ +\x87\x4e\x92\xbf\x40\x27\x3b\x88\x28\xb8\xa9\xb8\x94\x54\xfc\xb1\ +\x08\x0e\x22\x22\x48\xad\x3a\xb8\xc4\xc1\xbe\xd4\x68\x0d\xfd\x95\ +\xa6\x4d\x93\xf4\xee\xbd\x73\x48\x2d\xd6\xda\xcf\x76\x5f\x9e\xe7\ +\x78\xee\xb9\x3b\xc1\xbf\x5c\x7b\x9e\x43\xca\x3e\xa4\xdb\x8d\x94\ +\x51\x00\xb4\xae\xa2\x55\x01\xad\xf3\xdc\x3e\x7b\x03\x80\xdc\xeb\ +\xeb\xc0\x4d\xb1\x6a\xbc\xfa\xec\x18\xae\x3b\x84\xe7\xf5\x74\xb6\ +\x6d\x16\xe9\xb8\xc7\x89\xee\x0c\x00\x6f\x0a\x93\x94\xe6\x6b\xf8\ +\x53\x15\x4b\xad\x36\xc6\x26\xf9\x18\xd7\xbd\x05\x20\x56\xcd\xa1\ +\xf0\x03\x3c\xaf\xab\xff\x60\x86\xce\x8e\x36\x00\xfc\xe2\x14\xc0\ +\x9a\xf5\xe8\xcf\x05\xfc\xd2\x3c\xfd\x87\x3a\x18\xfe\x54\x44\x02\ +\xe0\xca\x21\xc2\xe1\xae\x0b\x07\xd2\x6c\x6f\x4f\x32\xfc\xfe\x1b\ +\xfe\x74\x05\x2c\x20\x04\x7c\xfe\x41\x67\x5b\x8c\x43\x99\x18\xe7\ +\x7b\x76\x31\x51\x9c\x66\x7b\x26\x05\x1f\x27\x90\x5c\x7d\x9e\xc3\ +\x0d\xf5\x9c\xd9\xdf\xce\xb6\xf4\x16\x9e\x8e\x8e\xe3\xff\x9c\x29\ +\xa3\xd4\x0b\x4c\x70\x17\x00\xc7\xc9\xfa\x8d\x46\xaf\x3f\x39\x97\ +\x38\xad\x0d\x3b\x33\x49\xea\xcb\x1a\x8c\x45\xb2\x49\xf4\xed\x6d\ +\x11\x22\x99\x8a\xf3\x72\x6c\x1c\x7f\x72\xb6\xcc\xb2\xba\xc6\x9d\ +\x73\x8f\x56\xfb\xc9\xbd\x3e\x8e\x52\x03\x27\xf7\x65\x48\xa5\xe2\ +\xd4\x54\x80\x05\x30\x06\x89\x15\xdd\xed\x99\xad\x54\x97\x35\xfe\ +\xaf\x39\x50\xea\xc5\x1a\x33\x40\xa3\x71\x13\x0b\xaf\xbe\x14\xe1\ +\x4b\xb1\x39\xb3\xcd\x06\x25\xd8\x68\x34\x1e\xa3\x5a\x57\xa0\x35\ +\x18\x73\x77\xdd\xd5\xde\x3a\x25\xd6\xcd\x56\x90\x68\xcd\x42\x5d\ +\x21\x84\x80\x20\xd8\x48\xb7\x21\x12\x6b\xaa\xbf\x4a\xb3\xad\xad\ +\x89\xcd\xcd\x04\x8e\x93\x05\xde\xfd\x57\x9d\x7d\xf2\x10\x63\x06\ +\x56\xcf\x20\x9c\x45\x07\x63\x0b\x53\xa5\x59\x16\x1b\x8a\xce\x74\ +\x02\x74\xd0\x4b\x76\x64\xe0\x3f\xe6\x01\x82\xa0\x37\xb3\x33\xcd\ +\x9e\xfd\x7b\x41\x1b\xb0\xb6\x20\x71\x44\x7e\xa1\x5c\x39\xec\xce\ +\xb4\x8a\x50\x2c\x0e\xdf\x4b\x09\xac\xbc\xcd\xe5\xfc\x29\x1c\xa7\ +\xd9\x87\x31\x59\x94\xea\x45\xca\x84\x0d\x47\x58\x5c\x56\x60\x03\ +\x8b\x90\xf9\x66\x39\x97\x86\x47\x69\xd4\x8f\xb4\x74\xec\x40\x46\ +\x5b\x48\x56\xcb\xf8\xc5\xe9\x66\xcc\x15\xd2\x5b\x13\xd4\x52\xdb\ +\x00\xa8\x14\xbe\x42\x38\xf2\x81\xfb\xfd\x47\x9b\x2f\x51\xca\x41\ +\x8c\xfb\x60\x69\xe2\x7b\x97\xdc\xd1\x41\x3d\x12\x23\xb4\x3b\x86\ +\xa9\xd5\x00\x70\x22\x1e\x73\x02\x4c\x65\x01\x3d\x33\x0b\x6e\x68\ +\x1c\x29\x07\xe1\xcf\x5f\x00\xc8\x8e\x1c\x43\xe9\x21\x6a\x4b\x3d\ +\x44\x3c\x41\x38\x0c\xc9\x14\x00\x5b\xaa\x65\xe6\x1a\x01\xcc\x97\ +\x2d\x9e\x37\x86\x74\x07\xb9\x77\xf1\xed\xda\x0d\xfe\x70\x65\x24\ +\x87\xd6\x7d\x68\xd5\x8d\xd6\xd1\x95\x84\x55\xa4\x5b\x40\xca\x3c\ +\xf7\x2e\xde\xf8\x5b\xfe\x1b\x1c\xdc\x0e\x28\xb8\xe3\xe8\xf3\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x29\x01\ \x89\ @@ -5247,62 +6048,70 @@ qt_resource_name = "\ \x07\x03\x7d\xc3\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\ +\x00\x0f\ +\x0e\x5e\x8b\x87\ +\x00\x7a\ +\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0d\x2b\x57\xe7\ \x00\x5a\ \x00\x2d\x00\x58\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x08\x05\x80\x07\ +\x00\x62\ +\x00\x65\x00\x61\x00\x6d\x00\x32\x00\x2e\x00\x6a\x00\x70\x00\x67\ +\x00\x09\ +\x00\x95\x83\x87\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x46\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x07\xc9\x8e\x27\ +\x00\x6f\ +\x00\x75\x00\x74\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0d\x2c\x57\xe7\ \x00\x5a\ \x00\x2d\x00\x59\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0e\ -\x04\xfb\x01\x67\ -\x00\x72\ -\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0e\ -\x0e\xf6\xf7\x07\ -\x00\x7a\ -\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x0b\x80\x5c\x67\ +\x00\x62\ +\x00\x65\x00\x61\x00\x6d\x00\x2e\x00\x6a\x00\x70\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\x0d\ +\x01\xb0\xf0\x47\ +\x00\x64\ +\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0b\ +\x0a\xb8\x4e\xa7\ +\x00\x66\ +\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x01\xa6\x83\x87\ +\x00\x63\ +\x00\x6f\x00\x6c\x00\x57\x00\x33\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x07\xc7\xb7\xe7\ \x00\x69\ \x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0f\ -\x0e\x5e\x8b\x87\ +\x00\x0e\ +\x0e\xf6\xf7\x07\ \x00\x7a\ -\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x5f\x00\x30\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x05\xe2\x5f\x07\ \x00\x6c\ \x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x6a\x00\x70\x00\x67\ -\x00\x08\ -\x0b\x80\x5c\x67\ -\x00\x62\ -\x00\x65\x00\x61\x00\x6d\x00\x2e\x00\x6a\x00\x70\x00\x67\ -\x00\x0d\ -\x01\xb0\xf0\x47\ -\x00\x64\ -\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x09\ -\x08\x05\x80\x07\ -\x00\x62\ -\x00\x65\x00\x61\x00\x6d\x00\x32\x00\x2e\x00\x6a\x00\x70\x00\x67\ +\x00\x0e\ +\x04\xfb\x01\x67\ +\x00\x72\ +\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x7f\x42\x27\ \x00\x72\ \x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x63\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0b\ -\x0a\xb8\x4e\xa7\ -\x00\x66\ -\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0a\ -\x07\xc9\x8e\x27\ -\x00\x6f\ -\x00\x75\x00\x74\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0b\x2c\x57\xe7\ \x00\x58\ @@ -5312,23 +6121,25 @@ qt_resource_name = "\ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x18\x00\x02\x00\x00\x00\x10\x00\x00\x00\x03\ -\x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x00\xfa\x19\ -\x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x00\xc9\x03\ -\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x78\ -\x00\x00\x00\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xb4\xd5\ -\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x88\x51\ -\x00\x00\x01\x88\x00\x00\x00\x00\x00\x01\x00\x01\x1a\x3a\ -\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\xe4\xba\ -\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x00\xcf\x5b\ -\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x79\x0f\ -\x00\x00\x01\x6c\x00\x00\x00\x00\x00\x01\x00\x00\xfc\xe9\ -\x00\x00\x01\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x1b\x7a\ -\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\xbf\x45\ +\x00\x00\x00\x18\x00\x02\x00\x00\x00\x12\x00\x00\x00\x03\ +\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x7d\xc5\ +\x00\x00\x01\xb2\x00\x00\x00\x00\x00\x01\x00\x01\x4a\x6a\ +\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\xf7\xd0\ +\x00\x00\x00\xec\x00\x00\x00\x00\x00\x01\x00\x00\xd4\x27\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x01\x47\x86\ +\x00\x00\x01\x7a\x00\x00\x00\x00\x00\x01\x00\x01\x3d\x16\ +\x00\x00\x01\x40\x00\x00\x00\x00\x00\x01\x00\x01\x11\x26\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x96\x2f\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x68\x66\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x53\x07\ +\x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x00\xc4\xe5\ +\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xda\x7f\ +\x00\x00\x01\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x4d\x3a\ +\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x27\ +\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x47\ +\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x97\x6f\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x27\xc0\ -\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x89\x8e\ -\x00\x00\x00\x74\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x5c\ +\x00\x00\x01\x58\x00\x00\x00\x00\x00\x01\x00\x01\x12\x63\ " def qInitResources(): diff --git a/Connections/Shear/Finplate/ui_finPlate.py b/Connections/Shear/Finplate/ui_finPlate.py index d6c3b0c..c4b4b50 100644 --- a/Connections/Shear/Finplate/ui_finPlate.py +++ b/Connections/Shear/Finplate/ui_finPlate.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'finPlate.ui' # -# Created: Tue Aug 11 16:24:42 2015 +# Created: Wed Sep 30 17:44:35 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! @@ -258,14 +258,14 @@ class Ui_MainWindow(object): font.setWeight(50) self.txtFy.setFont(font) self.txtFy.setObjectName(_fromUtf8("txtFy")) - self.label_3 = QtGui.QLabel(self.dockWidgetContents) - self.label_3.setGeometry(QtCore.QRect(6, 155, 151, 25)) + self.lbl_ISsection = QtGui.QLabel(self.dockWidgetContents) + self.lbl_ISsection.setGeometry(QtCore.QRect(6, 155, 151, 25)) font = QtGui.QFont() font.setPointSize(11) font.setBold(False) font.setWeight(50) - self.label_3.setFont(font) - self.label_3.setObjectName(_fromUtf8("label_3")) + self.lbl_ISsection.setFont(font) + self.lbl_ISsection.setObjectName(_fromUtf8("lbl_ISsection")) self.comboConnLoc = QtGui.QComboBox(self.dockWidgetContents) self.comboConnLoc.setGeometry(QtCore.QRect(150, 40, 161, 25)) font = QtGui.QFont() @@ -277,6 +277,7 @@ class Ui_MainWindow(object): self.comboConnLoc.addItem(_fromUtf8("")) self.comboConnLoc.addItem(_fromUtf8("")) self.comboConnLoc.addItem(_fromUtf8("")) + self.comboConnLoc.addItem(_fromUtf8("")) self.txtFu = QtGui.QLineEdit(self.dockWidgetContents) self.txtFu.setGeometry(QtCore.QRect(150, 190, 161, 25)) font = QtGui.QFont() @@ -1509,10 +1510,11 @@ class Ui_MainWindow(object): self.menuGraphics.setTitle(_translate("MainWindow", "Graphics", None)) self.inputDock.setWindowTitle(_translate("MainWindow", "Input dock", None)) self.txtFy.setPlaceholderText(_translate("MainWindow", "000.0", None)) - self.label_3.setText(_translate("MainWindow", "

Column section *

", None)) + self.lbl_ISsection.setText(_translate("MainWindow", "

Column section *

", None)) self.comboConnLoc.setItemText(0, _translate("MainWindow", "Select Connectivity", None)) self.comboConnLoc.setItemText(1, _translate("MainWindow", "Column flange-Beam web", None)) self.comboConnLoc.setItemText(2, _translate("MainWindow", "Column web-Beam web", None)) + self.comboConnLoc.setItemText(3, _translate("MainWindow", "Beam-Beam", None)) self.txtFu.setPlaceholderText(_translate("MainWindow", "000.0", None)) self.label.setText(_translate("MainWindow", "

Connecting members

", None)) self.label_4.setText(_translate("MainWindow", "

Connectivity *

", None)) diff --git a/finfront.svg b/finfront.svg index 641a228..25d66dd 100644 --- a/finfront.svg +++ b/finfront.svg @@ -1,2 +1,2 @@ - \ No newline at end of file +2 @55.0mm c/c40.0mm40.0mm40mmPLT. 190X80X16Column ISSC 2503 nos 16Ø holesfor M20 bolts (grade 8.8)Beam ISMB 400 z 6 mm \ No newline at end of file diff --git a/saveINPUT.txt b/saveINPUT.txt index 7a2f8a1..83b3434 100644 --- a/saveINPUT.txt +++ b/saveINPUT.txt @@ -4,7 +4,7 @@ p1 (dp2 S'ColumSection' p3 -S'ISSC 200' +S'ISSC 250' p4 sS'fu (MPa)' p5 @@ -37,24 +37,24 @@ p16 (dp17 S'ShearForce (kN)' p18 -I240 +I140 ssS'Weld' p19 (dp20 S'Size (mm)' p21 -I8 +I6 ssS'Bolt' p22 (dp23 S'Grade' p24 -F4.8 +F8.8 sS'Diameter (mm)' p25 I16 sS'Type' p26 -S'Black Bolt' +S'HSFG' p27 ss. \ No newline at end of file diff --git a/test.svg b/test.svg new file mode 100644 index 0000000..1bf5b49 --- /dev/null +++ b/test.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/utilities/__init__.py b/utilities/__init__.py index 5498698..08f538d 100644 --- a/utilities/__init__.py +++ b/utilities/__init__.py @@ -18,7 +18,7 @@ def colorTheEdges(shp, display,color,width): Ex.Next() def setDefaultEdgeStyle(shp, display): - colorTheEdges(shp, display, Quantity_NOC_BLACK, 1.5) + colorTheEdges(shp, display, Quantity_NOC_BLACK, 2.2) #return shps -- cgit