diff --git a/src/Mod/Arch/ArchComponent.py b/src/Mod/Arch/ArchComponent.py
index f126ab5c9..69373ba59 100644
--- a/src/Mod/Arch/ArchComponent.py
+++ b/src/Mod/Arch/ArchComponent.py
@@ -478,9 +478,10 @@ class ArchSelectionObserver:
self.origin.ViewObject.Selectable = True
self.watched.ViewObject.hide()
FreeCADGui.activateWorkbench("ArchWorkbench")
- FreeCADGui.Selection.removeObserver(FreeCAD.ArchObserver)
+ if hasattr(FreeCAD,"ArchObserver"):
+ FreeCADGui.Selection.removeObserver(FreeCAD.ArchObserver)
+ del FreeCAD.ArchObserver
if self.nextCommand:
FreeCADGui.Selection.clearSelection()
FreeCADGui.Selection.addSelection(self.watched)
FreeCADGui.runCommand(self.nextCommand)
- del FreeCAD.ArchObserver
diff --git a/src/Mod/Arch/ArchStructure.py b/src/Mod/Arch/ArchStructure.py
index b512f15ed..3ad374b30 100644
--- a/src/Mod/Arch/ArchStructure.py
+++ b/src/Mod/Arch/ArchStructure.py
@@ -474,7 +474,7 @@ class _CommandStructure:
QtCore.QObject.connect(value5,QtCore.SIGNAL("pressed()"),self.rotate)
return w
- def update(self,point):
+ def update(self,point,info):
"this function is called by the Snapper when the mouse is moved"
if self.Height >= self.Length:
delta = Vector(0,0,self.Height/2)
diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py
index 4ae8037d6..cc0de8ebd 100644
--- a/src/Mod/Arch/ArchWall.py
+++ b/src/Mod/Arch/ArchWall.py
@@ -238,7 +238,7 @@ class _CommandWall:
FreeCADGui.doCommand('base.addGeometry(trace)')
FreeCADGui.doCommand('Arch.makeWall(base,width='+str(self.Width)+',height='+str(self.Height)+',align="'+str(self.Align)+'")')
- def update(self,point):
+ def update(self,point,info):
"this function is called by the Snapper when the mouse is moved"
b = self.points[0]
n = FreeCAD.DraftWorkingPlane.axis
diff --git a/src/Mod/Arch/ArchWindow.py b/src/Mod/Arch/ArchWindow.py
index 6a8e12b67..8eae4dbe2 100644
--- a/src/Mod/Arch/ArchWindow.py
+++ b/src/Mod/Arch/ArchWindow.py
@@ -23,7 +23,7 @@
import FreeCAD,FreeCADGui,Draft,ArchComponent,DraftVecUtils,ArchCommands
from FreeCAD import Vector
-from PyQt4 import QtCore,QtGui
+from PyQt4 import QtCore,QtGui,QtSvg
from DraftTools import translate
__title__="FreeCAD Window"
@@ -31,11 +31,14 @@ __author__ = "Yorik van Havre"
__url__ = "http://www.freecadweb.org"
WindowPartTypes = ["Frame","Solid panel","Glass panel"]
-AllowedHosts = ["Wall","Structure"]
+AllowedHosts = ["Wall","Structure","Roof"]
+WindowPresets = ["Fixed", "Open 1-pane", "Open 2-pane", "Sash 2-pane",
+ "Sliding 2-pane", "Simple door", "Glass door"]
+
+def makeWindow(baseobj=None,width=None,height=None,parts=None,name=str(translate("Arch","Window"))):
+ '''makeWindow(baseobj,[width,height,parts,name]): creates a window based on the
+ given base 2D object (sketch or draft).'''
-def makeWindow(baseobj=None,width=None,name=str(translate("Arch","Window"))):
- '''makeWindow(obj,[name]): creates a window based on the
- given object'''
if baseobj:
if Draft.getType(baseobj) == "Window":
obj = Draft.clone(baseobj)
@@ -43,32 +46,306 @@ def makeWindow(baseobj=None,width=None,name=str(translate("Arch","Window"))):
obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython",name)
_Window(obj)
_ViewProviderWindow(obj.ViewObject)
+ if width:
+ obj.Width = width
+ if height:
+ obj.Height = height
if baseobj:
+ obj.Normal = baseobj.Placement.Rotation.multVec(FreeCAD.Vector(0,0,-1))
obj.Base = baseobj
- if width:
- obj.WindowParts = ["Default","Panel","Wire0",str(width),"0"]
- else:
- obj.WindowParts = makeDefaultWindowPart(baseobj)
+ if parts:
+ obj.WindowParts = parts
+ else:
+ if obj.isDerivedFrom("Part::Feature"):
+ if obj.Shape.Wires:
+ i = 0
+ ws = ''
+ for w in obj.Shape.Wires:
+ if w.isClosed():
+ if ws: ws += ","
+ ws += "Wire" + str(i)
+ i += 1
+ obj.WindowParts = ["Default","Frame",ws,"1","0"]
if obj.Base:
obj.Base.ViewObject.DisplayMode = "Wireframe"
obj.Base.ViewObject.hide()
- #obj.ViewObject.ShapeColor = ArchCommands.getDefaultColor("Window")
return obj
-def makeDefaultWindowPart(obj):
- "returns a list of 5 strings defining a default window part from a 2D object"
- part = []
- if obj.isDerivedFrom("Part::Feature"):
- if obj.Shape.Wires:
- i = 0
- ws = ''
- for w in obj.Shape.Wires:
- if w.isClosed():
- if ws: ws += ","
- ws += "Wire" + str(i)
- i += 1
- part = ["Default","Frame",ws,"1","0"]
- return part
+
+def makeWindowPreset(windowtype,width,height,h1,h2,h3,w1,w2,o1,o2,placement=None):
+ """makeWindowPreset(windowtype,width,height,h1,h2,h3,w1,w2,o1,o2,[placement]): makes a
+ window object based on the given data. windowtype must be one of the names
+ defined in Arch.WindowPresets"""
+
+ def makeSketch(windowtype,width,height,h1,h2,h3,w1,w2,o1,o2):
+
+ import Part,Sketcher
+ width = float(width)
+ height = float(height)
+ h1 = float(h1)
+ h2 = float(h2)
+ h3 = float(h3)
+ w1 = float(w1)
+ w2 = float(w2)
+ o1 = float(o1)
+ o2 = float(o2)
+ # small spacing to avoid wrong auto-wires in sketch
+ tol = h1/10
+ # glass size divider
+ gla = 10
+ s = FreeCAD.ActiveDocument.addObject('Sketcher::SketchObject','Sketch')
+
+ def addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8):
+ "adds two rectangles to the given sketch"
+ idx = s.GeometryCount
+ s.addGeometry(Part.Line(p1,p2))
+ s.addGeometry(Part.Line(p2,p3))
+ s.addGeometry(Part.Line(p3,p4))
+ s.addGeometry(Part.Line(p4,p1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx,2,idx+1,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+1,2,idx+2,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+2,2,idx+3,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+3,2,idx,1))
+ s.addConstraint(Sketcher.Constraint('Horizontal',idx))
+ s.addConstraint(Sketcher.Constraint('Horizontal',idx+2))
+ s.addConstraint(Sketcher.Constraint('Vertical',idx+1))
+ s.addConstraint(Sketcher.Constraint('Vertical',idx+3))
+ s.addGeometry(Part.Line(p5,p6))
+ s.addGeometry(Part.Line(p6,p7))
+ s.addGeometry(Part.Line(p7,p8))
+ s.addGeometry(Part.Line(p8,p5))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+4,2,idx+5,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+5,2,idx+6,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+6,2,idx+7,1))
+ s.addConstraint(Sketcher.Constraint('Coincident',idx+7,2,idx+4,1))
+ s.addConstraint(Sketcher.Constraint('Horizontal',idx+4))
+ s.addConstraint(Sketcher.Constraint('Horizontal',idx+6))
+ s.addConstraint(Sketcher.Constraint('Vertical',idx+5))
+ s.addConstraint(Sketcher.Constraint('Vertical',idx+7))
+
+ def outerFrame(s,width,height,h1,w1,o1):
+ p1 = Vector(0,0,0)
+ p2 = Vector(width,0,0)
+ p3 = Vector(width,height,0)
+ p4 = Vector(0,height,0)
+ p5 = Vector(h1,h1,0)
+ p6 = Vector(width-h1,h1,0)
+ p7 = Vector(width-h1,height-h1,0)
+ p8 = Vector(h1,height-h1,0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceY',1,height)) #16
+ s.addConstraint(Sketcher.Constraint('DistanceX',0,width)) #17
+ s.addConstraint(Sketcher.Constraint('DistanceY',6,2,2,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceX',2,2,6,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,2,0,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceY',0,2,4,2,h1))
+ s.addConstraint(Sketcher.Constraint('Coincident',0,1,-1,1))
+ return ["OuterFrame","Frame","Wire0,Wire1",str(w1),str(o1)]
+
+ def doorFrame(s,width,height,h1,w1,o1):
+ p1 = Vector(0,0,0)
+ p2 = Vector(width,0,0)
+ p3 = Vector(width,height,0)
+ p4 = Vector(0,height,0)
+ p5 = Vector(h1,0,0)
+ p6 = Vector(width-h1,0,0)
+ p7 = Vector(width-h1,height-h1,0)
+ p8 = Vector(h1,height-h1,0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceY',1,height)) #16
+ s.addConstraint(Sketcher.Constraint('DistanceX',0,width)) #17
+ s.addConstraint(Sketcher.Constraint('DistanceY',6,2,2,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceX',2,2,6,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,2,0,2,h1))
+ s.addConstraint(Sketcher.Constraint('DistanceY',0,2,4,2,0.0))
+ s.addConstraint(Sketcher.Constraint('Coincident',0,1,-1,1))
+ return ["OuterFrame","Frame","Wire0,Wire1",str(w1),str(o1)]
+
+ if windowtype == "Fixed":
+ wp = outerFrame(s,width,height,h1,w1,o1)
+ wp.extend(["Glass","Glass panel","Wire1",str(w1/gla),str(w1/2)])
+
+ elif windowtype == "Open 1-pane":
+ wp = outerFrame(s,width,height,h1,w1,o1)
+ p1 = Vector(h1+tol,h1+tol,0)
+ p2 = Vector(width-(h1+tol),h1+tol,0)
+ p3 = Vector(width-(h1+tol),height-(h1+tol),0)
+ p4 = Vector(h1+tol,height-(h1+tol),0)
+ p5 = Vector(h1+h2,h1+h2,0)
+ p6 = Vector(width-(h1+h2),h1+h2,0)
+ p7 = Vector(width-(h1+h2),height-(h1+h2),0)
+ p8 = Vector(h1+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceX',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',10,1,6,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,1,6,1,tol))
+ wp.extend(["InnerFrame","Frame","Wire2,Wire3",str(w2),str(o1+o2)])
+ wp.extend(["InnerGlass","Glass panel","Wire3",str(w2/gla),str(o1+o2+w2/2)])
+
+ elif windowtype == "Open 2-pane":
+ wp = outerFrame(s,width,height,h1,w1,o1)
+ p1 = Vector(h1+tol,h1+tol,0)
+ p2 = Vector((width/2)-tol,h1+tol,0)
+ p3 = Vector((width/2)-tol,height-(h1+tol),0)
+ p4 = Vector(h1+tol,height-(h1+tol),0)
+ p5 = Vector(h1+h2,h1+h2,0)
+ p6 = Vector((width/2)-h2,h1+h2,0)
+ p7 = Vector((width/2)-h2,height-(h1+h2),0)
+ p8 = Vector(h1+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ p1 = Vector((width/2)+tol,h1+tol,0)
+ p2 = Vector(width-(h1+tol),h1+tol,0)
+ p3 = Vector(width-(h1+tol),height-(h1+tol),0)
+ p4 = Vector((width/2)+tol,height-(h1+tol),0)
+ p5 = Vector((width/2)+h2,h1+h2,0)
+ p6 = Vector(width-(h1+h2),h1+h2,0)
+ p7 = Vector(width-(h1+h2),height-(h1+h2),0)
+ p8 = Vector((width/2)+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',16,1,20,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('Equal',22,14))
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,2,16,1,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,1,18,2,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',9,1,19,2,tol))
+ wp.extend(["LeftFrame","Frame","Wire2,Wire3",str(w2),str(o1+o2)])
+ wp.extend(["LeftGlass","Glass panel","Wire3",str(w2/gla),str(o1+o2+w2/2)])
+ wp.extend(["RightFrame","Frame","Wire4,Wire5",str(w2),str(o1+o2)])
+ wp.extend(["RightGlass","Glass panel","Wire5",str(w2/gla),str(o1+o2+w2/2)])
+
+ elif windowtype == "Sash 2-pane":
+ wp = outerFrame(s,width,height,h1,w1,o1)
+ p1 = Vector(h1+tol,h1+tol,0)
+ p2 = Vector(width-(h1+tol),h1+tol,0)
+ p3 = Vector(width-(h1+tol),(height/2)-tol,0)
+ p4 = Vector(h1+tol,(height/2)-tol,0)
+ p5 = Vector(h1+h2,h1+h2,0)
+ p6 = Vector(width-(h1+h2),h1+h2,0)
+ p7 = Vector(width-(h1+h2),(height/2)-h2,0)
+ p8 = Vector(h1+h2,(height/2)-h2,0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ p1 = Vector(h1+tol,(height/2)+tol,0)
+ p2 = Vector(width-(h1+tol),(height/2)+tol,0)
+ p3 = Vector(width-(h1+tol),height-(h1+tol),0)
+ p4 = Vector(h1+tol,height-(h1+tol),0)
+ p5 = Vector(h1+h2,(height/2)+h2,0)
+ p6 = Vector(width-(h1+h2),(height/2)+h2,0)
+ p7 = Vector(width-(h1+h2),height-(h1+h2),0)
+ p8 = Vector(h1+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',16,2,20,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,2,14,2,-h2))
+ s.addConstraint(Sketcher.Constraint('Equal',23,15))
+ s.addConstraint(Sketcher.Constraint('DistanceX',12,1,20,1,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceX',13,2,20,2,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,1,16,1,tol))
+ wp.extend(["LowerFrame","Frame","Wire2,Wire3",str(w2),str(o1+o2+w2)])
+ wp.extend(["LowerGlass","Glass panel","Wire3",str(w2/gla),str(o1+o2+w2+w2/2)])
+ wp.extend(["UpperFrame","Frame","Wire4,Wire5",str(w2),str(o1+o2)])
+ wp.extend(["UpperGlass","Glass panel","Wire5",str(w2/gla),str(o1+o2+w2/2)])
+
+ elif windowtype == "Sliding 2-pane":
+ wp = outerFrame(s,width,height,h1,w1,o1)
+ p1 = Vector(h1+tol,h1+tol,0)
+ p2 = Vector((width/2)-tol,h1+tol,0)
+ p3 = Vector((width/2)-tol,height-(h1+tol),0)
+ p4 = Vector(h1+tol,height-(h1+tol),0)
+ p5 = Vector(h1+h2,h1+h2,0)
+ p6 = Vector((width/2)-h2,h1+h2,0)
+ p7 = Vector((width/2)-h2,height-(h1+h2),0)
+ p8 = Vector(h1+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ p1 = Vector((width/2)+tol,h1+tol,0)
+ p2 = Vector(width-(h1+tol),h1+tol,0)
+ p3 = Vector(width-(h1+tol),height-(h1+tol),0)
+ p4 = Vector((width/2)+tol,height-(h1+tol),0)
+ p5 = Vector((width/2)+h2,h1+h2,0)
+ p6 = Vector(width-(h1+h2),h1+h2,0)
+ p7 = Vector(width-(h1+h2),height-(h1+h2),0)
+ p8 = Vector((width/2)+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',21,2,17,2,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',16,1,20,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('Equal',22,14))
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,2,16,1,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,1,18,2,0.0))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',6,1,18,1,-tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',9,1,19,2,tol))
+ wp.extend(["LeftFrame","Frame","Wire2,Wire3",str(w2),str(o1+o2)])
+ wp.extend(["LeftGlass","Glass panel","Wire3",str(w2/gla),str(o1+o2+w2/2)])
+ wp.extend(["RightFrame","Frame","Wire4,Wire5",str(w2),str(o1+o2+w2)])
+ wp.extend(["RightGlass","Glass panel","Wire5",str(w2/gla),str(o1+o2+w2+w2/2)])
+
+ elif windowtype == "Simple door":
+ wp = doorFrame(s,width,height,h1,w1,o1)
+ wp.extend(["Door","Solid panel","Wire1",str(w2),str(o1+o2)])
+
+ elif windowtype == "Glass door":
+ wp = doorFrame(s,width,height,h1,w1,o1)
+ p1 = Vector(h1+tol,h1+tol,0)
+ p2 = Vector(width-(h1+tol),h1+tol,0)
+ p3 = Vector(width-(h1+tol),height-(h1+tol),0)
+ p4 = Vector(h1+tol,height-(h1+tol),0)
+ p5 = Vector(h1+h2,h1+h3,0)
+ p6 = Vector(width-(h1+h2),h1+h3,0)
+ p7 = Vector(width-(h1+h2),height-(h1+h2),0)
+ p8 = Vector(h1+h2,height-(h1+h2),0)
+ addFrame(s,p1,p2,p3,p4,p5,p6,p7,p8)
+ s.addConstraint(Sketcher.Constraint('DistanceX',8,1,12,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',8,1,12,1,h3))
+ s.addConstraint(Sketcher.Constraint('DistanceX',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceY',14,1,10,1,h2))
+ s.addConstraint(Sketcher.Constraint('DistanceX',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',4,1,8,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceX',10,1,6,1,tol))
+ s.addConstraint(Sketcher.Constraint('DistanceY',10,1,6,1,tol))
+ wp.extend(["InnerFrame","Frame","Wire2,Wire3",str(w2),str(o1+o2)])
+ wp.extend(["InnerGlass","Glass panel","Wire3",str(w2/gla),str(o1+o2+w2/2)])
+
+ return (s,wp)
+
+ if windowtype in WindowPresets:
+ default = makeSketch(windowtype,width,height,h1,h2,h3,w1,w2,o1,o2)
+ FreeCAD.ActiveDocument.recompute()
+ if default:
+ if placement:
+ default[0].Placement = placement
+ FreeCAD.ActiveDocument.recompute()
+ obj = makeWindow(default[0],width,height,default[1])
+ obj.Preset = WindowPresets.index(windowtype)+1
+ FreeCAD.ActiveDocument.recompute()
+ return obj
+
+ print "Arch: Unknown window type"
+
class _CommandWindow:
"the Arch Window command definition"
@@ -80,14 +357,29 @@ class _CommandWindow:
def Activated(self):
sel = FreeCADGui.Selection.getSelection()
+ p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch")
+ self.Thickness = p.GetFloat("WindowThickness",50)
+ self.Width = p.GetFloat("WindowWidth",1000)
+ self.Height = p.GetFloat("WindowHeight",1000)
+ self.Preset = 0
+ self.baseFace = None
+ self.wparams = ["Width","Height","H1","H2","H3","W1","W2","O1","O2"]
+
+ # auto mode
if sel:
obj = sel[0]
if Draft.getType(obj) in AllowedHosts:
- FreeCADGui.activateWorkbench("SketcherWorkbench")
- FreeCADGui.runCommand("Sketcher_NewSketch")
- FreeCAD.ArchObserver = ArchComponent.ArchSelectionObserver(obj,FreeCAD.ActiveDocument.Objects[-1],hide=False,nextCommand="Arch_Window")
- FreeCADGui.Selection.addObserver(FreeCAD.ArchObserver)
- else:
+ # make sure only one face is selected
+ sub = FreeCADGui.Selection.getSelectionEx()[0]
+ if len(sub.SubElementNames) == 1:
+ if "Face" in sub.SubElementNames[0]:
+ FreeCADGui.activateWorkbench("SketcherWorkbench")
+ FreeCADGui.runCommand("Sketcher_NewSketch")
+ FreeCAD.ArchObserver = ArchComponent.ArchSelectionObserver(obj,FreeCAD.ActiveDocument.Objects[-1],hide=False,nextCommand="Arch_Window")
+ FreeCADGui.Selection.addObserver(FreeCAD.ArchObserver)
+ return
+
+ elif obj.isDerivedFrom("Part::Part2DObject"):
FreeCADGui.Control.closeDialog()
host = None
if hasattr(obj,"Support"):
@@ -111,11 +403,162 @@ class _CommandWindow:
FreeCADGui.doCommand("Arch.removeComponents(win,host=FreeCAD.ActiveDocument."+sibling.Name+")")
FreeCAD.ActiveDocument.commitTransaction()
FreeCAD.ActiveDocument.recompute()
+ return
+
+ # interactive mode
+ if hasattr(FreeCAD,"DraftWorkingPlane"):
+ FreeCAD.DraftWorkingPlane.setup()
+ import DraftTrackers
+ self.tracker = DraftTrackers.boxTracker()
+ self.tracker.length(self.Width)
+ self.tracker.width(self.Thickness)
+ self.tracker.height(self.Height)
+ FreeCAD.Console.PrintMessage(str(translate("Arch","Pick a face on an existing object or select a preset")))
+ FreeCADGui.Snapper.getPoint(callback=self.getPoint,movecallback=self.update,extradlg=self.taskbox())
+ FreeCADGui.Snapper.setSelectMode(True)
+
+ def getPoint(self,point=None,obj=None):
+ "this function is called by the snapper when it has a 3D point"
+ self.tracker.finalize()
+ FreeCADGui.Control.closeDialog()
+ if point == None:
+ return
+ if not self.Preset:
+ if obj and (self.baseFace != None):
+ if Draft.getType(obj) in AllowedHosts:
+ # make sure only one face is selected
+ FreeCADGui.Selection.clearSelection()
+ FreeCADGui.Selection.addSelection(obj,"Face"+str(self.baseFace+1))
+ FreeCADGui.activateWorkbench("SketcherWorkbench")
+ FreeCADGui.runCommand("Sketcher_NewSketch")
+ FreeCAD.ArchObserver = ArchComponent.ArchSelectionObserver(obj,FreeCAD.ActiveDocument.Objects[-1],hide=False,nextCommand="Arch_Window")
+ FreeCADGui.Selection.addObserver(FreeCAD.ArchObserver)
else:
- FreeCAD.Console.PrintMessage(str(translate("Arch","Please select a base object\n")))
- FreeCADGui.Control.showDialog(ArchComponent.SelectionTaskPanel())
- FreeCAD.ArchObserver = ArchComponent.ArchSelectionObserver(nextCommand="Arch_Window")
- FreeCADGui.Selection.addObserver(FreeCAD.ArchObserver)
+ # preset
+ FreeCAD.ActiveDocument.openTransaction(str(translate("Arch","Create Window")))
+ FreeCADGui.doCommand("import math,FreeCAD,Arch,WorkingPlane")
+ if obj and (self.baseFace != None):
+ FreeCADGui.doCommand("pl = WorkingPlane.getPlacementFromFace(FreeCAD.ActiveDocument." + obj.Name + ".Shape.Faces[" + str(self.baseFace) + "])")
+ else:
+ FreeCADGui.doCommand("m = FreeCAD.Matrix()")
+ FreeCADGui.doCommand("m.rotateX(math.pi/2)")
+ FreeCADGui.doCommand("pl = FreeCAD.Placement(m)")
+ FreeCADGui.doCommand("pl.Base = FreeCAD.Vector(" + str(point.x) + "," + str(point.y) + ","+ str(point.z) + ")")
+ wp = ""
+ for p in self.wparams:
+ wp += p.lower() + "=" + str(getattr(self,p)) + ","
+ FreeCADGui.doCommand("win = Arch.makeWindowPreset(\"" + WindowPresets[self.Preset-1] + "\"," + wp + "placement=pl)")
+ if obj:
+ if Draft.getType(obj) in AllowedHosts:
+ FreeCADGui.doCommand("Arch.removeComponents(win,host=FreeCAD.ActiveDocument."+obj.Name+")")
+ siblings = obj.Proxy.getSiblings(obj)
+ for sibling in siblings:
+ FreeCADGui.doCommand("Arch.removeComponents(win,host=FreeCAD.ActiveDocument."+sibling.Name+")")
+ FreeCAD.ActiveDocument.commitTransaction()
+ FreeCAD.ActiveDocument.recompute()
+ return
+
+ def update(self,point,info):
+ "this function is called by the Snapper when the mouse is moved"
+ delta = FreeCAD.Vector(self.Width/2,self.Thickness/2,self.Height/2)
+ rot = FreeCAD.Rotation()
+ self.baseFace = None
+ if info:
+ if "Face" in info['Component']:
+ import WorkingPlane
+ o = FreeCAD.ActiveDocument.getObject(info['Object'])
+ self.baseFace = int(info['Component'][4:])-1
+ f = o.Shape.Faces[self.baseFace]
+ p = WorkingPlane.getPlacementFromFace(f,rotated=True)
+ if p:
+ rot = p.Rotation
+ delta = rot.multVec(FreeCAD.Vector(delta.x,-delta.y,-delta.z))
+ self.tracker.pos(point.add(delta))
+ self.tracker.setRotation(rot)
+
+ def taskbox(self):
+ "sets up a taskbox widget"
+ d = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Units").GetInt("Decimals",2)
+ w = QtGui.QWidget()
+ w.setWindowTitle(str(translate("Arch","Window options")))
+ lay0 = QtGui.QVBoxLayout(w)
+
+ # presets box
+ layp = QtGui.QHBoxLayout()
+ lay0.addLayout(layp)
+ labelp = QtGui.QLabel(str(translate("Arch","Preset")))
+ layp.addWidget(labelp)
+ valuep = QtGui.QComboBox()
+ valuep.addItems(["Create from scratch"]+WindowPresets)
+ valuep.setCurrentIndex(self.Preset)
+ layp.addWidget(valuep)
+ QtCore.QObject.connect(valuep,QtCore.SIGNAL("currentIndexChanged(int)"),self.setPreset)
+
+ # image display
+ self.im = QtSvg.QSvgWidget(":/ui/ParametersWindowFixed.svg")
+ self.im.setMaximumWidth(200)
+ lay0.addWidget(self.im)
+ self.im.hide()
+
+ # parameters
+ for param in self.wparams:
+ l = QtGui.QHBoxLayout()
+ lay0.addLayout(l)
+ lab = QtGui.QLabel(str(translate("Arch",param)))
+ l.addWidget(lab)
+ setattr(self,"val"+param,QtGui.QDoubleSpinBox())
+ wid = getattr(self,"val"+param)
+ wid.setDecimals(d)
+ wid.setMaximum(99999.99)
+ if param == "Width":
+ wid.setValue(self.Width)
+ elif param == "Height":
+ wid.setValue(self.Height)
+ else:
+ wid.setValue(self.Thickness)
+ setattr(self,param,self.Thickness)
+ l.addWidget(wid)
+ l.setEnabled(False)
+ QtCore.QObject.connect(getattr(self,"val"+param),QtCore.SIGNAL("valueChanged(double)"),self.setParams)
+
+ return w
+
+ def setParams(self,d):
+ for param in self.wparams:
+ setattr(self,param,float(getattr(self,"val"+param).value()))
+ self.tracker.length(self.Width)
+ self.tracker.height(self.Height)
+ self.tracker.width(self.W1)
+
+ def setPreset(self,i):
+ self.Preset = i
+ if i > 0:
+ FreeCADGui.Snapper.setSelectMode(False)
+ self.tracker.length(self.Width)
+ self.tracker.width(self.Thickness)
+ self.tracker.height(self.Height)
+ self.tracker.on()
+ if i == 1:
+ self.im.load(":/ui/ParametersWindowFixed.svg")
+ elif i == 2:
+ self.im.load(":/ui/ParametersWindowSimple.svg")
+ elif i == 7:
+ self.im.load(":/ui/ParametersDoorGlass.svg")
+ elif i == 4:
+ self.im.load(":/ui/ParametersWindowStash.svg")
+ elif i == 6:
+ self.im.load(":/ui/ParametersDoorSimple.svg")
+ else:
+ self.im.load(":/ui/ParametersWindowDouble.svg")
+ self.im.show()
+ for param in self.wparams:
+ getattr(self,"val"+param).setEnabled(True)
+ else:
+ FreeCADGui.Snapper.setSelectMode(True)
+ self.tracker.off()
+ self.im.hide()
+ for param in self.wparams:
+ getattr(self,"val"+param).setEnabled(False)
class _Window(ArchComponent.Component):
@@ -124,10 +567,19 @@ class _Window(ArchComponent.Component):
ArchComponent.Component.__init__(self,obj)
obj.addProperty("App::PropertyStringList","WindowParts","Arch",
str(translate("Arch","the components of this window")))
- obj.addProperty("App::PropertyDistance","HoleDepth","Arch",
+ obj.addProperty("App::PropertyLength","HoleDepth","Arch",
str(translate("Arch","The depth of the hole that this window makes in its host object. Keep 0 for automatic.")))
obj.addProperty("Part::PropertyPartShape","Subvolume","Arch",
str(translate("Arch","an optional volume to be subtracted from hosts of this window")))
+ obj.addProperty("App::PropertyLength","Width","Arch",
+ str(translate("Arch","The width of this window (for preset windows only)")))
+ obj.addProperty("App::PropertyLength","Height","Arch",
+ str(translate("Arch","The height of this window (for preset windows only)")))
+ obj.addProperty("App::PropertyVector","Normal","Arch",
+ str(translate("Arch","The normal direction of this window")))
+ obj.addProperty("App::PropertyInteger","Preset","Arch","")
+ obj.setEditorMode("Preset",2)
+
self.Type = "Window"
obj.Proxy = self
@@ -135,10 +587,19 @@ class _Window(ArchComponent.Component):
self.hideSubobjects(obj,prop)
if prop in ["Base","WindowParts"]:
self.execute(obj)
- elif prop == "HoleDepth":
+ elif prop in ["HoleDepth"]:
for o in obj.InList:
if Draft.getType(o) in AllowedHosts:
o.Proxy.execute(o)
+ elif prop in ["Width","Height"]:
+ if obj.Preset != 0:
+ if obj.Base:
+ if prop == "Height":
+ obj.Base.setDatum(16,obj.Height)
+ elif prop == "Width":
+ obj.Base.setDatum(17,obj.Width)
+ FreeCAD.ActiveDocument.recompute()
+
def execute(self,obj):
import Part, DraftGeomUtils
@@ -166,6 +627,10 @@ class _Window(ArchComponent.Component):
wires.remove(ext)
shape = Part.Face(ext)
norm = shape.normalAt(0,0)
+ if hasattr(obj,"Normal"):
+ if obj.Normal:
+ if not DraftVecUtils.isNull(obj.Normal):
+ norm = obj.Normal
thk = float(obj.WindowParts[(i*5)+3])
if thk:
exv = DraftVecUtils.scaleTo(norm,thk)
@@ -185,8 +650,7 @@ class _Window(ArchComponent.Component):
if not DraftGeomUtils.isNull(pl):
base.Placement = pl
elif not obj.WindowParts:
- # create default parts
- obj.WindowParts = makeDefaultWindowPart(obj.Base)
+ pass
else:
print "Arch: Bad formatting of window parts definitions"
@@ -195,7 +659,6 @@ class _Window(ArchComponent.Component):
if not base.isNull():
obj.Shape = base
-
def getSubVolume(self,obj,plac=None):
"returns a subvolume for cutting in a base object"
@@ -244,14 +707,20 @@ class _Window(ArchComponent.Component):
if f:
import Part
f = Part.Face(f)
- n = f.normalAt(0,0)
- v1 = DraftVecUtils.scaleTo(n,width)
+ norm = f.normalAt(0,0)
+ if hasattr(obj,"Normal"):
+ if obj.Normal:
+ if not DraftVecUtils.isNull(obj.Normal):
+ norm = obj.Normal
+ v1 = DraftVecUtils.scaleTo(norm,width)
f.translate(v1)
v2 = v1.negative()
v2 = Vector(v1).multiply(-2)
f = f.extrude(v2)
if plac:
f.Placement = plac
+ else:
+ f.Placement = obj.Placement
return f
return None
@@ -266,7 +735,7 @@ class _ViewProviderWindow(ArchComponent.ViewProviderComponent):
return ":/icons/Arch_Window_Tree.svg"
def updateData(self,obj,prop):
- if (prop in ["WindowParts","Shape"]) and obj.ViewObject:
+ if (prop in ["WindowParts","Shape"]):
if obj.Shape:
if not obj.Shape.isNull():
self.colorize(obj)
diff --git a/src/Mod/Arch/Arch_rc.py b/src/Mod/Arch/Arch_rc.py
index 6b3794720..5747fa102 100644
--- a/src/Mod/Arch/Arch_rc.py
+++ b/src/Mod/Arch/Arch_rc.py
@@ -2,7 +2,7 @@
# Resource object code
#
-# Created: Sun Oct 13 16:04:47 2013
+# Created: Thu Oct 17 13:56:34 2013
# by: The Resource Compiler for PyQt (Qt v4.8.5)
#
# WARNING! All changes made in this file will be lost!
@@ -27568,151 +27568,1188 @@ qt_resource_data = "\
\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\
\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\
\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\
-\x00\x00\x08\xee\
+\x00\x00\x0a\xde\
\x00\
-\x00\x58\xae\x78\x9c\xed\x5c\xdb\x72\xdb\x36\x10\x7d\xcf\x57\x60\
-\xf4\x9c\x5a\x17\x5f\xe5\xa1\xd5\x49\xe2\x38\x71\x27\x69\x9c\xda\
-\x4d\x1f\x3b\x10\xb9\x12\xd1\x90\x04\x0b\x80\x96\xd4\xaf\xef\x02\
-\xa4\x2e\xa4\x28\xca\xa2\x2e\xb4\x6c\x79\xda\x09\x49\x40\xbb\x8b\
-\xe5\xd9\xc5\x59\x10\xa4\xf5\xeb\xd0\xf7\xc8\x23\x08\xc9\x78\x70\
-\x55\x6b\x1e\x35\x6a\x04\x02\x9b\x3b\x2c\xe8\x5f\xd5\xfe\x7c\xb8\
-\xf9\xe5\xa2\xf6\x6b\xe7\x8d\x15\xb1\x69\xa7\x13\xec\xd4\x79\x43\
-\x2c\xdb\xa3\x52\x76\x3e\x45\xec\xf2\xf2\x9a\x51\x8f\xf7\xf1\x5f\
-\xaf\x7f\x0f\x4a\xe1\x8f\xe5\x3b\x61\xbb\x56\x3d\xee\x83\x9d\x07\
-\xcc\xe9\x83\x22\xe6\xfc\xaa\xf6\xfd\x2f\x73\x5a\x23\x01\xf5\xe1\
-\xaa\x56\x24\x43\xab\x22\x56\x28\x78\x08\x42\x8d\x92\x1f\xf4\x81\
-\xfb\xa0\xc4\xc8\x34\x12\x4b\x80\xad\xcc\x11\xb1\x86\x9d\x86\x55\
-\x1f\x26\x27\x23\x7d\x32\x4a\x4e\xd0\x02\xe5\x76\x4e\xcf\x4f\xad\
-\x7a\x7c\x18\x5f\x76\x81\xf5\x5d\xd5\x39\x6b\xb5\xad\x7a\x72\x6c\
-\x64\xd6\xc7\x42\xad\xfa\x58\x79\x9e\x25\x03\x16\x38\x7c\xf0\xc0\
-\x94\x07\x89\x31\x52\x09\xb4\xbd\xf3\x09\x02\x10\xd4\x23\x32\x19\
-\x8b\x55\x4f\x1a\xe6\x45\x7a\x74\xc4\xa3\xa9\x6f\x7e\xbc\xe7\xc3\
-\x2f\xe6\x52\x22\x31\xa3\x52\x86\xd4\x46\x41\xb5\x64\x00\x41\xe4\
-\x77\x41\x74\xce\xac\x7a\x72\x14\x9b\x3f\xab\x61\x4e\x84\x4f\x45\
-\x9f\x05\x19\x09\xed\x42\x09\x4c\x81\x3f\xf5\xe4\xec\xbd\xfc\x24\
-\x78\x14\xa2\xcd\xe3\xbb\xd9\x1f\x9f\xc7\xdd\xe7\x94\xab\xa9\xb3\
-\x66\xfc\x75\x0d\x3d\x1a\x79\x2a\xd7\x5f\xf3\xe6\x14\x7a\x2d\xd1\
-\x83\x80\x55\xcc\xa6\x5e\x7c\xf5\xef\xd6\x54\xe5\x74\x2c\x39\x82\
-\x3e\xcf\x09\x72\xb9\x60\xff\xf1\x40\xe5\x88\xca\x0a\x9b\xf7\xce\
-\x17\xda\x05\x6f\x2c\xc9\xd3\x27\xa9\x9f\xe7\xb8\x07\x86\x2a\xd5\
-\x61\xe2\xa2\xbf\xa8\xe7\x65\xdc\x92\xef\x9b\xf8\x62\x6c\xc8\x8c\
-\xa5\xf5\xb4\xa9\x73\x96\x6b\x60\x81\x98\x1b\xf4\xbd\xb9\x5c\x68\
-\x33\xf6\x05\xec\xaa\x30\x3f\x64\x4c\x07\x84\x54\xe7\xbb\xba\xbc\
-\xfc\x3c\x91\x67\xd5\xcd\xc5\x65\x03\x98\xc7\x3d\xfb\x0f\x3e\xb3\
-\x00\x6f\x8b\x54\x0e\xc2\xe4\xaa\xd6\xc8\xfa\x09\x7b\xa4\xae\x8c\
-\xa3\xfe\xa4\x91\x0a\xfa\x49\x6b\x12\xf0\xad\x46\x2a\xf6\xa7\x66\
-\x65\x05\x2e\xf0\x74\xec\xb8\x15\x3c\xbd\x1c\x23\xcd\x46\x59\x90\
-\xe8\x61\x5e\x6e\x13\x26\x69\xe3\x4d\xee\xbe\x13\xd0\xbb\xe6\x51\
-\xd7\x83\xfb\x90\x05\xb3\xb9\x40\xb7\x86\xd8\xea\x98\x56\x89\xad\
-\x5d\x3e\x5c\x12\x01\x3e\x1d\x32\x3f\xf2\x33\xe3\x8b\x25\x74\xda\
-\xf8\x77\xd4\xbe\x68\x4f\xfe\xce\x2f\x5a\x56\x3d\x69\x5c\x19\x53\
-\x8f\xd4\x8b\x20\x5f\x51\xab\xd1\x38\x6a\xa4\xff\xca\xeb\xd1\x2e\
-\xf8\x18\xe8\x19\x6b\x21\x78\xed\x99\x28\x37\x37\x11\x67\xcf\x27\
-\xde\xc4\x5c\x75\x77\x54\xb9\xcb\xb5\x7d\xe5\x4e\x3d\x99\xaa\x77\
-\x85\x98\x3c\xb8\x5f\x94\x44\xfb\x67\x13\xb5\xcf\x1d\xee\xc7\x7b\
-\x00\xf7\xe3\x46\x85\x78\x8f\x6f\xe3\x6b\x02\x7c\xbb\x24\xe0\x3f\
-\x70\x8f\x8b\x2a\xf0\x6e\x14\xbf\x8f\x94\xc2\x29\x3e\x8b\x76\x5b\
-\xb7\x75\xe3\xb6\xc2\x61\x71\xee\x3d\xb0\x30\x7f\x64\x0f\x2e\x93\
-\x04\xff\x53\x2e\x10\x27\x21\x83\x46\x30\xe9\xe1\xff\x01\x0c\x88\
-\x46\x0a\xe1\xdd\x7f\x90\x98\x67\xe9\xe1\x0a\x50\x31\x32\xb3\xe0\
-\xd0\xd7\x32\xdc\x40\x80\xd3\x69\x35\x4f\x74\x21\xe0\x64\x9a\xfa\
-\x02\x20\x88\x1b\xe3\xc3\x74\x73\x17\x83\x2c\x6e\x35\x47\x69\x4a\
-\x31\xa7\x6a\x2b\x01\x65\xee\xd6\xbe\xc6\x93\x55\x8f\x29\xf9\x84\
-\xaf\xa7\x9a\xd7\x65\xef\x6b\x71\xf7\x92\x51\x7b\xaf\x44\x64\xab\
-\x48\x40\x65\xf4\x7d\x09\xe5\x3a\x10\xf8\x8d\x13\xf8\xb2\x55\xde\
-\x17\x08\xfa\xcf\x9f\xc1\x9f\xec\x01\xa5\x69\x56\xc4\x68\x26\xd1\
-\x1e\xdf\xca\x7d\x4d\xc3\xa5\x50\x5f\x4c\x75\xf7\xbc\x6c\x3d\x3d\
-\x80\x7e\x39\xe8\x5f\x5d\xed\xda\x2c\xce\x85\xfb\x5e\xbc\x9e\xed\
-\x07\xe8\x2b\x46\xfd\xeb\xab\x60\x9b\xcd\x17\x5a\xc2\x2e\x5b\x9f\
-\x5f\xaf\x88\x9d\x20\x66\xb7\x95\x6c\xf3\xb4\xb1\xb8\x92\x6d\x9e\
-\xb5\x0b\x2a\xd9\xe6\xc5\x59\x45\x95\xec\xc4\x57\x87\x72\x76\xf1\
-\xc3\xa8\xd9\xd9\xa7\x4c\x18\x17\xe7\xf7\xc5\x61\xfc\x07\x74\xa9\
-\xa8\xae\x9e\x2d\xe6\x62\x87\x7a\x76\xe3\xf5\x6c\xd9\x25\xfa\x6b\
-\x86\x1d\x14\x6c\x15\x2a\x1b\xa0\x39\xc5\xc3\x5b\x46\x73\x8e\xda\
-\xed\x59\xee\xd1\xde\x0a\xcb\x39\xab\x84\xe2\x98\x38\x9f\xde\xc4\
-\xfd\xcc\xc1\xa5\x10\x5f\x76\x8d\xfe\x5b\xaf\x87\xe3\x7b\xe6\x78\
-\x3f\x7f\xfe\x78\x3f\xae\x86\xd3\x1b\xc0\x8f\xef\xe1\x2b\x82\x7b\
-\x31\x22\xf6\x98\xcf\x17\x53\x85\x95\x58\xf4\xc5\x69\x01\x8b\x6e\
-\x9e\x17\xb0\xe8\x76\xa3\x22\x12\x6d\xe0\x7c\x20\xd0\x8b\x09\xf4\
-\xd9\x7a\x04\xba\x18\x5d\x45\x2b\x9e\x7a\xe7\x60\x75\x04\xba\x78\
-\xd5\xea\x40\xa0\x37\x4d\xa0\xcb\xd6\x59\x37\x02\x3b\xc4\x8b\x08\
-\xcf\x39\xc9\x16\x2f\xfc\xaf\x92\x64\x8f\x8f\x17\xe7\xd8\x93\xd3\
-\x82\x14\x7b\x56\xd5\x3a\x45\x1c\xca\x7b\x9d\x63\x4b\x31\x86\xb2\
-\xa9\xef\x93\x96\xf9\xfc\x21\x5d\x9c\x21\x57\x81\x74\xbb\x00\xd2\
-\xcd\x8b\xe3\xa2\x6d\x24\x8d\xe3\x4a\x41\x6d\x6e\xd5\x5e\x23\x7b\
-\xcb\xec\x21\xb5\x51\xf7\xc9\x08\x74\xc1\xfe\x99\x57\xa3\xd9\xba\
-\x61\xf9\x72\x44\xe1\x1a\xf4\x6d\x8f\xa8\x64\x19\xda\x88\x03\xe7\
-\x2d\x19\xb8\x10\x90\x16\x91\xcc\x67\x1e\x15\x64\x40\x3d\x4f\x12\
-\x2a\x80\x74\x01\x7f\x82\xa1\x18\x04\x60\x2b\xdd\x53\xe1\xb4\x29\
-\x48\x14\x38\x20\xbc\x91\x6e\x93\x3f\x41\xa1\x1c\x49\x06\xcc\xf3\
-\xb0\x3f\xf9\x87\xb3\x00\x1c\x82\xf3\x36\x27\x3c\x80\xb7\x84\x06\
-\x8e\x59\xf0\x56\x03\x9e\x48\x4e\xba\xda\x1c\x67\x2e\xec\x52\x7e\
-\x89\x7b\x71\x0e\xf9\x0d\xad\x48\xb4\x75\xa9\x84\x19\x33\xf5\x50\
-\x43\x2e\x25\xc3\x42\xb1\xbc\xe6\x15\x22\x45\x3b\x44\x6f\xba\xba\
-\x4f\x4c\x78\x91\x91\x92\x6e\x4c\xc9\x9a\xe9\x57\xe2\x35\x91\xe9\
-\xe3\x96\xa7\xbd\x28\x72\x7b\xf3\x81\x30\x3f\xe4\x22\xbb\xc2\xb2\
-\xf6\x2b\x22\x9b\x7b\x41\xa4\xbd\x95\x9c\xb0\x64\xba\x2d\xca\x09\
-\x46\x78\x9c\x16\x30\x6a\x1d\x26\x43\x1c\x14\x71\xa0\x1b\xf5\x89\
-\x0f\x52\xd2\xbe\x89\x1c\xe6\x41\xe2\x5b\x1d\xf9\xda\xd3\x3d\xbc\
-\xb4\xc6\x23\xaa\x82\x2d\x71\x2e\x1f\x64\x0c\xd8\x49\xb0\xb2\x9e\
-\x7d\xad\xb5\xbe\xc8\x20\x5d\x1f\xb9\xa7\xdb\x40\xee\x66\xe7\xb2\
-\x09\x2c\xe3\x69\x86\x7a\x03\x3a\x92\x7a\x62\x8a\x91\x8b\x53\xd3\
-\x80\x29\xd7\xcc\x48\x38\x47\x81\x08\xa8\x47\xc2\x91\x72\x39\x4e\
-\x0b\x54\x48\x10\x6f\x09\x3c\xe2\x1c\xc1\x7a\xe4\xb6\x67\x7f\x0b\
-\x21\xb8\x77\x01\x05\x69\x35\x81\x44\x57\x78\xe0\x6c\x03\xf1\x37\
-\x5c\xd8\x90\xb6\x64\x27\x88\xef\x69\xbd\x38\xd2\x3b\xa3\xf9\x2e\
-\x51\x7c\x40\x7f\x0e\xfa\x8f\xb7\x92\xb7\xd7\xd8\x4f\xf0\x41\x00\
-\x55\x88\x74\x33\x59\x4a\xb3\x89\x00\xa8\xed\x12\xed\xd6\x64\x03\
-\x01\x51\xa3\x70\x2b\x0c\xcb\x4c\xd8\x48\x0d\x31\xaa\x02\x08\x14\
-\x86\xd8\xc8\xe8\xda\x4d\x9e\xb6\xcd\xc8\x11\xb6\xc6\x8c\x97\xc9\
-\xa9\x36\x50\x7d\x34\xb7\x82\xd8\x25\x6b\x55\xab\x66\x6c\xfc\x75\
-\xa0\xdf\xe9\x9d\x94\x10\x93\x4c\x4d\x25\x91\x51\x57\x09\x6a\xeb\
-\x95\x46\x89\x5d\x31\x6d\x8b\x01\x43\x42\xaf\xb9\x3d\x91\x2e\x0d\
-\xa7\x89\x1e\x21\xe1\x8c\x88\x4b\x1f\x21\x29\x53\x26\x82\xc7\x42\
-\xb6\x93\xb9\xef\x01\xd3\x35\xa2\x71\xa2\x6f\x57\x4c\x65\xac\xf8\
-\xdb\x44\xef\x21\x0a\xf2\xa2\x60\x85\x17\xb2\x57\x88\x82\x25\x0f\
-\xc4\x56\x8e\x82\x38\x5d\xeb\x5f\x4f\x23\x41\x2b\x64\xc3\x59\xce\
-\xa2\xe9\xcd\xed\x35\x89\x5f\xc5\xdf\x06\x9a\xef\x8c\xca\x89\x1d\
-\xa8\x76\x03\xea\x56\xc3\x75\x6c\xc2\xef\x46\xe7\x01\xd4\x0b\x40\
-\xbd\x02\x19\xc9\x5b\x9d\x2d\xbb\x2b\xf9\xe3\xd0\xf6\x22\x07\x88\
-\xc7\xa4\xba\x24\x15\x2c\xcf\x7e\x61\x01\x7c\x74\x98\x9a\x0b\x4c\
-\x0f\x1b\x40\x37\x94\x0e\xcb\x77\x9a\xce\xf8\xf4\x17\x99\xe4\x55\
-\xc7\x8c\x92\x70\x53\x09\x10\x24\x39\x4c\x31\x30\x25\x32\x24\x5e\
-\xe8\x09\xee\xe7\x2f\x37\x2c\x76\xc5\xd3\x9d\x5d\x2f\x01\x79\x8f\
-\xda\xe0\x72\xcf\x01\xf1\xb0\xf0\x1e\xe2\x68\xcc\x53\xbe\xb7\x78\
-\xf0\x3e\x62\x9e\xfe\x9c\xcb\x47\x0f\x7c\x1c\xe1\x9d\xe0\xc3\x91\
-\xbe\x7e\xe3\xf1\xc1\x03\x08\x9f\x61\x7d\x64\xce\x23\x11\x30\xe9\
-\x4e\x7b\xee\x6c\x92\xfb\xc9\xc2\x43\x0e\xc8\xcf\x01\x6b\x3e\x9b\
-\x2e\xbb\xa5\xe3\xd6\x00\x5e\xb3\x33\x9c\x23\x5c\x90\x55\x3c\xa5\
-\x59\x9a\x06\xd6\xa9\xab\x0a\x12\x01\x4e\xbf\xa6\xca\xc1\xc9\x98\
-\x2a\xe2\x47\x78\x39\xc3\x58\x63\x9f\xac\x11\x1e\x4f\x0c\xe1\xca\
-\x22\xf2\x9d\xfc\x8a\x43\x7c\x91\x31\xb9\xbd\x65\xec\xc9\x74\xfd\
-\xb4\x65\xec\xd6\x35\x11\xa0\x9f\xb2\xe0\xc9\xc6\xbf\x75\x34\xa5\
-\x0e\x6b\xa7\xa0\xf3\xad\x50\xeb\x25\xe4\xa4\x28\x74\x67\x16\x8e\
-\x59\xd0\xe3\xc2\x37\x9b\x54\x88\x13\xe9\x56\x52\xe0\xd6\x15\xf0\
-\xbb\x64\xd9\x3a\xd6\x00\xa2\x8a\xf5\x6b\x6d\xc0\x8f\x3f\xbe\x1e\
-\xd6\xb0\x17\x43\xf6\x62\xbd\x49\xb3\xec\x2b\xac\x1f\xd0\x4a\x2a\
-\x00\x27\x08\x3d\x43\xe9\xfa\xcf\xfe\x19\x20\x34\x88\xd0\x08\xad\
-\x6e\xa3\x57\xf1\x78\x0e\x1b\xbd\xd6\xd9\xe8\x55\x66\xeb\xf5\x1a\
-\xa9\x2f\x04\x9b\xf5\x74\x85\xa2\xb3\x90\x4f\x83\x11\x51\xcc\x87\
-\xf8\x75\xb3\x47\x06\x03\xc3\x63\x52\xd8\x1b\xf3\x17\x1a\x86\x1e\
-\xc3\x66\x2c\x6d\x6c\xc4\xa9\xee\xb5\x46\xbe\x2a\xfa\x6c\x56\x25\
-\x7b\xb6\x31\xf6\x34\x5f\x7c\x18\x8f\xfb\x55\x64\xc6\x54\xd8\x8f\
-\x19\xc0\xdc\xd7\xfa\x9e\x18\xf0\xd3\x70\xff\x91\x48\xca\x06\x7b\
-\xde\x88\x56\x0c\xf4\xb9\x30\x4f\x82\xbc\x95\x17\xe4\xe3\x10\x3f\
-\xc9\x0b\xf1\x6c\x80\xe7\x18\x97\x0d\xee\xd5\x79\xe0\x4c\xa7\x99\
-\x1e\xc9\x8c\x34\x7e\xbd\x33\xf9\x1c\xe7\x55\xed\xac\x46\xe2\xef\
-\x6a\x5e\xd5\x9a\xcd\x9a\x2e\xed\xad\x90\x0d\x7d\x1a\xf6\xa2\xc0\
-\x2c\x6f\x77\xfe\xbd\x33\xe7\x37\x82\xfb\x5f\x31\x6e\xef\x79\x24\
-\x6c\x40\xcb\xd3\xbd\xf4\xa7\x55\x31\x6a\xb9\x1f\x6b\x94\xc6\x92\
-\xd9\x2b\xb1\x95\x33\x9f\x5f\x9d\xd9\xd0\x36\xfd\xe4\xaa\xbe\xa5\
-\x43\x85\x4c\x45\x76\xbe\xdf\x45\xd2\x1d\xb7\x8f\x2f\xbe\x89\x5d\
-\x4c\x91\xc9\x68\x29\xf5\xf8\x93\xac\xf2\xc8\xd5\xde\x36\x57\x8d\
-\x07\xb2\x8a\x8b\x2d\xc9\x6c\xaf\xcb\xb5\x66\xde\xe4\x45\x26\x69\
-\x69\x9b\x33\x2b\x21\xa5\xf9\x1e\x9a\xb6\xee\xc4\x98\x71\x71\x9b\
-\x6f\xcc\xb4\x75\x27\xc6\xa4\xe6\xae\x7c\x8b\x32\x5d\xd6\x37\x2b\
-\x7d\xc1\x7c\x22\x58\x80\x34\x01\x21\x4d\xe8\x24\x5b\xd2\xf4\x53\
-\x21\x3c\xb7\xea\x11\xeb\xbc\xf9\x1f\x65\x89\x34\x4c\
+\x00\x64\x81\x78\x9c\xed\x5c\xeb\x6f\xdb\xc8\x11\xff\xee\xbf\x82\
+\x55\x70\xc0\x05\x15\x57\xfb\x7e\xc8\x96\x0f\x68\xd3\x6b\x02\x14\
+\xb8\xa2\x49\x91\xcf\xb4\x48\xdb\x6c\x28\x52\x20\x29\xcb\xce\x5f\
+\xdf\x59\x8a\xa4\x48\x89\x72\xfc\x90\xec\xe8\x4c\x0b\x86\xb4\x3b\
+\xb3\x8f\x99\xf9\xed\xcc\xec\x72\xa5\xb3\xdf\x6e\x67\x91\x73\x13\
+\xa4\x59\x98\xc4\x93\x01\x41\x78\xe0\x04\xf1\x34\xf1\xc3\xf8\x6a\
+\x32\xf8\xef\x97\xdf\x5d\x3d\x70\xb2\xdc\x8b\x7d\x2f\x4a\xe2\x60\
+\x32\x88\x93\xc1\x6f\xe7\x27\x67\x7f\x71\x5d\xe7\xef\x69\xe0\xe5\
+\x81\xef\x2c\xc3\xfc\xda\xf9\x14\x7f\xcb\xa6\xde\x3c\x70\x7e\xbd\
+\xce\xf3\xf9\x78\x34\x5a\x2e\x97\x28\x2c\x2b\x51\x92\x5e\x8d\xde\
+\x3b\xae\x7b\x7e\x72\x72\x96\xdd\x5c\x9d\x38\x8e\x03\xe3\xc6\xd9\
+\xd8\x9f\x4e\x06\x65\x83\xf9\x22\x8d\x0a\x46\x7f\x3a\x0a\xa2\x60\
+\x16\xc4\x79\x36\x22\x88\x8c\x06\x6b\xf6\xe9\x9a\x7d\x6a\x47\x0f\
+\x6f\x82\x69\x32\x9b\x25\x71\x56\xb4\x8c\xb3\x77\x0d\xe6\xd4\xbf\
+\xac\xb9\xed\x6c\x96\xac\x60\x22\xc6\x98\x11\xa6\x23\x4a\x5d\xe0\
+\x70\xb3\xbb\x38\xf7\x6e\xdd\x76\x53\x98\x63\x57\x53\x8a\x31\x1e\
+\x01\x6d\xcd\xf9\x30\xae\x71\x06\x0a\x9d\xc3\x7f\xcd\x5e\x55\xa0\
+\x2c\x59\xa4\xd3\xe0\x12\xda\x05\x28\x0e\xf2\xd1\x87\x2f\x1f\x6a\
+\xa2\x8b\x91\x9f\xfb\x8d\x6e\x2a\x7d\xb6\x46\x6d\x29\x39\xf6\x66\
+\x41\x36\xf7\xa6\x41\x36\xaa\xea\x8b\xf6\xcb\xd0\xcf\xaf\x27\x03\
+\x98\x5a\x51\xbc\x0e\xc2\xab\xeb\x1c\xec\x4d\x57\xe5\xd0\x9f\x0c\
+\x60\xc6\xb4\x28\x34\xd0\x40\x56\xd4\xb2\xa7\x71\x4d\xc1\x88\x6b\
+\xc4\x9d\xd4\x18\x66\x0a\x96\x6a\xca\x63\x3f\x99\xda\x39\x4c\x06\
+\xff\xf6\x52\x78\xcf\xa1\xc5\xd7\x30\xf6\x93\xe5\xe7\x70\x36\x8f\
+\x02\x64\xf5\x72\x0e\x2d\xce\xfc\xe0\x32\xb3\x2d\x57\x83\xdb\x12\
+\x1f\x38\xa3\x82\x54\x77\x66\x7b\xf2\x6f\xc2\x60\xb9\x66\xbc\xf0\
+\xb2\x95\x44\x8e\x33\xf7\xae\xc0\xfa\x51\x92\x4e\x06\xef\xe8\xd4\
+\xbe\x4a\xc2\x45\x92\xfa\x41\x5a\x91\x64\xf1\xd7\x22\x25\xa0\xa1\
+\x30\xbf\x5b\xe1\xbd\xec\xbb\x92\xd1\xf6\x5a\xd3\x3b\xa9\xd9\xb5\
+\x07\xf2\x80\x32\x37\x89\xdf\x93\x64\x36\x19\x30\x64\x84\x51\x46\
+\x6f\x52\xa7\xb7\x93\x01\x68\x8d\x62\x8a\x89\xd8\x22\xc2\x60\x5c\
+\x22\x66\x14\xa3\x5b\x44\xd0\xe9\xc2\x2e\x07\x77\x11\x87\x39\x40\
+\x6e\x7e\xbb\xd5\x7c\x91\xa6\x96\x21\xf2\xee\x02\x90\xb9\x78\x23\
+\x25\x53\x76\x9d\x2c\xaf\x52\xab\xbb\x4b\x2f\xaa\x95\x57\xd4\x2e\
+\x42\x3f\x80\xfe\xf2\x74\x11\x6c\xf6\x58\xd0\xdc\x8b\x8b\xe4\xb6\
+\x9b\xbe\x2c\x8c\xea\x96\xb8\x22\x86\x6e\xa9\xaa\xe4\xa8\xa1\x86\
+\x05\xdb\xc1\x72\xdb\xa1\xe8\x92\xd4\x65\x83\x92\x34\xf3\x6e\xc3\
+\x59\xf8\x3d\x00\xc1\x48\x85\x1c\x00\x9c\xe7\x7b\xb9\xb7\xc6\x4b\
+\x55\xa3\x0a\xd4\x01\x0b\xac\xf9\xf1\x7f\x3e\xfc\xbe\x2a\x41\x79\
+\x3a\x1d\x7f\x4d\xd2\x6f\x65\x11\xfe\x2c\x83\x77\x91\x2c\x60\xce\
+\x83\xf3\xba\xfa\xcc\x9f\x8e\x61\x95\xce\xbc\xfc\x3c\x9c\x01\x08\
+\xec\x02\xff\x2b\xac\xca\xb3\xd1\x9a\xd0\x62\xce\xef\xe6\xc1\xba\
+\xd3\x55\xb7\x69\xb0\x5a\xee\x9d\x3e\xcf\x9f\xce\x42\xdb\x68\xf4\
+\x39\x0f\xa3\xe8\x93\x1d\xa4\x14\xab\xd1\x69\x98\x47\xc1\x79\x31\
+\xe6\xea\x63\x25\xc5\xa8\x14\xa3\x14\x72\xd4\x90\xf2\x6c\x54\xe9\
+\xa0\x28\x5d\x6d\x68\x33\xf2\x2e\x82\x68\x32\xf8\x97\x85\x8c\x43\
+\xb6\x60\x90\x26\x8b\xf9\x2c\xf1\x83\x12\x54\x83\xb5\x66\x5b\x20\
+\xcb\x53\x2f\xce\xac\x1a\x2c\x5a\xe0\x63\x04\x91\xe1\x57\x3c\x74\
+\x0d\xa3\x88\x49\x4a\xf4\xfb\x5a\xff\xc1\x34\xaf\x64\xca\xf2\xbb\
+\x08\x7a\x2e\x56\xea\xf8\x1d\x2e\xfe\x4e\x2f\x41\xfa\xf1\xbb\xcb\
+\xe2\xaf\x28\xb8\xe5\x72\x1c\x93\x55\x31\x5d\x44\xc1\x38\xb8\x09\
+\xe2\xc4\xf7\x4f\xb3\x3c\x4d\xbe\x05\x75\xe3\x55\x71\x05\xcb\x31\
+\xad\x8a\x51\x18\x07\x20\xce\xf8\x62\x91\xe7\xcd\xba\xff\x25\x61\
+\x3c\x06\x09\xe3\xaa\x1f\x17\x4c\x10\xa4\x11\xe0\x2a\x1f\xf3\xaa\
+\x6e\x3d\x7c\x59\xe1\x7b\xe0\x02\xd2\xd4\xbb\x1b\xc7\x10\x13\x9b\
+\xb5\xc9\xe5\x65\x16\xe4\x63\x7c\x3a\xf3\xd2\x6f\x41\xba\xa2\xdf\
+\x84\x59\x78\x11\x46\xb6\x8b\xe2\x63\x14\x9c\xfa\x61\x36\x07\xfd\
+\x81\x43\xb7\xd3\x38\x4d\xc0\xb1\x5e\x46\xc9\xb2\xa6\x07\xb1\x07\
+\x6f\xee\x85\x37\xfd\x76\x55\xcc\x6f\xec\x4d\xc1\x07\x2c\xac\x5a\
+\x07\x95\xf6\xac\x11\xac\x36\xa9\xd1\xa2\xae\x2c\x17\xa4\x32\x88\
+\x30\x45\xb1\xaa\x09\xd5\x3a\x04\x0a\xd5\xda\x60\x5a\x53\x60\xf9\
+\x11\x42\x10\x53\x42\xaf\x2b\x61\xe1\x19\x4e\x90\x36\x46\xe9\x1a\
+\x86\xbd\xf1\xf6\x6e\x3c\xd0\xfa\xb6\xf1\x30\x22\x84\x63\x41\xb7\
+\x8c\x27\x0d\x52\x52\x48\x2a\xda\xc6\x13\xc8\x48\xc2\x64\xdb\x78\
+\x12\x62\x34\x66\xe2\xd1\xc6\x93\xc6\xc8\x0b\xff\x99\xc6\x43\x94\
+\x49\x2c\x89\x50\x6f\xc6\x8a\x6a\xd3\x8a\x12\x23\x63\xa8\xe0\x72\
+\xdb\x8a\x90\x58\x41\x38\xc4\xba\x65\x45\x8a\x11\xa6\x04\xb7\xad\
+\x28\x30\xb8\x4f\x22\xc8\xa3\xad\x68\xb0\x7d\x6d\x5a\xb1\xb4\x59\
+\x53\x67\x2b\x83\x91\xf9\xed\x8b\x2a\x8c\x33\x29\xdc\x2d\xe0\x33\
+\x85\x88\xc2\x52\x76\x00\x1f\x69\xa2\xb9\x36\xb2\xa5\x32\x8e\x38\
+\x36\x82\xe9\xa6\xca\x5c\xeb\xb6\xb0\x62\xca\xd4\xb5\x8d\xe0\x04\
+\x51\x2d\x0a\x7e\x25\x43\x97\xbc\x5f\xab\x74\xee\xe5\xd7\x3f\x56\
+\x69\x43\x69\xdd\xa0\x67\x0f\xc2\x7a\x01\xef\x63\xc4\xba\x4d\xa6\
+\x1c\xab\x72\x83\x05\x11\x43\xab\x66\x08\x24\x8c\x38\x60\x35\x89\
+\x31\x31\x43\xec\x40\xc4\x57\x08\x73\x29\x45\xcb\xe2\x56\xc1\xd6\
+\x52\x2e\x59\x57\xd7\xa9\x6b\x12\x83\xb6\xf2\x24\x75\x21\x89\xbd\
+\xf1\xf2\x45\x1a\xd8\x9c\xef\x35\x42\x0e\x79\x23\xce\x4a\x4b\xb6\
+\xb9\xf2\x08\x6c\xe7\x98\xa0\x9a\x6f\xe7\x0b\x1a\x19\xaa\x85\xe2\
+\xcd\x95\x67\x7d\x95\x90\x5c\xa9\xcd\x7c\xc1\x68\x4d\xe4\xeb\x18\
+\x0f\x19\xf0\x10\x0a\x1b\xfd\x46\xac\xa8\xd4\x56\xc8\x01\x2b\xb2\
+\xc2\x58\x5b\x56\xe4\x48\x53\xc2\x61\xbd\x6e\x58\x91\x80\x0d\x05\
+\xd9\x8f\x15\x8f\x20\xe4\x6c\x05\x1c\xd8\x72\x4b\xc1\xcd\x96\xbe\
+\x08\x83\xfc\x99\x18\xcd\x36\xe2\x0d\x44\x21\x41\x4d\x53\x5f\x04\
+\x82\x36\xb2\x99\x4e\x8f\xfa\x17\x42\xbd\xab\x0f\x81\x7b\x82\x89\
+\x44\x36\x9b\xe8\xed\xf8\x52\x76\x64\x8d\x7c\xa0\xb4\x24\xec\x64\
+\xa8\x14\xa6\x63\xeb\x23\x90\x90\x86\x43\x88\x6a\x59\x92\x21\xa3\
+\x30\x51\xac\xed\xc1\x24\xd4\x12\xfa\xf8\xad\x4f\x6f\xc9\xa7\x5b\
+\x72\x7b\x55\xee\xc3\x96\xb0\x2a\x61\xb1\x62\xa1\xef\xcd\xd6\x1f\
+\x96\x9f\x3f\xec\x44\xe1\xb9\xf9\x79\x3b\x5f\xa6\x12\x49\x4a\xb9\
+\xd4\x43\xd0\x03\x7c\x84\x1d\x21\x24\xc9\x42\x21\x90\x9e\xeb\x96\
+\x32\xad\x5c\x90\x9a\x3d\x21\x45\xde\xa5\x11\xc0\x73\x43\x0b\x1b\
+\xc5\x52\x29\xb0\x49\xd5\xb0\xe1\x27\x92\x42\x38\x7e\xb4\x7e\x6a\
+\x5d\xb4\xa5\x36\x0c\x76\x60\x92\xd1\xa1\x61\x1a\x09\xc2\xb4\x01\
+\xa1\xb5\x55\x85\xa2\xa4\x4b\x68\xb1\x3f\xa1\x5b\x30\xe8\x92\x98\
+\xec\x51\x50\x80\x27\xa2\x06\x4b\x02\xdb\x21\x8a\xa8\x62\x5a\x3b\
+\x2e\xa1\xc8\x86\x1c\x39\xc4\x5d\xa2\xaa\xa3\x17\xb5\xc8\x78\x30\
+\x65\xe6\x87\xa2\x36\x7c\xc2\x73\x84\xfd\xd1\x66\x7c\x6f\xa2\x1f\
+\x93\xff\x2d\x8c\x22\xc8\x6a\xa1\xf1\x62\xa5\x61\xc3\x14\x87\x95\
+\x46\x0c\xe2\x58\x73\xde\xb9\xd2\x5c\x76\xa4\x00\x14\x62\xe7\x52\
+\x13\x6a\x17\x00\x8f\x75\xb5\xad\x85\x85\xb0\x41\xb1\xa2\xf4\x01\
+\xc2\x6a\x57\x1e\xbd\xb8\x8f\xb0\x2d\xfb\x13\x58\x17\x52\x55\xa5\
+\x08\x7b\x98\x75\xe9\x6b\xfa\xd3\x37\xe0\x4d\x21\xcf\x44\x52\x2b\
+\xaa\x21\xc4\x81\x61\x28\x27\xc4\xd1\x06\x4c\xc5\x59\xb7\x51\x9a\
+\x47\xd8\xc7\x85\xc0\xe2\x81\x9f\x21\xc6\x46\x73\x1b\x39\xa8\xd4\
+\x36\x70\x14\x18\x34\xdd\xf8\xc3\xc7\x2a\xaa\xb1\xdb\x7d\xa2\xe9\
+\xc3\x45\xd5\x47\xeb\x59\x28\x46\x90\x03\x60\x6a\x85\xe5\x06\x19\
+\x81\x99\x3d\x94\xff\x81\xb4\xf2\x68\x93\x02\xa6\x90\xc6\xb0\xa9\
+\x62\x8f\x92\x17\x1c\xa9\x6b\xfa\xd4\xf4\xb0\xce\x54\xd9\xa3\x55\
+\xa5\xe4\xd0\x18\x6d\x8d\x24\xa4\x43\x15\x22\x4c\x30\xbd\xd3\x9d\
+\x32\x97\x3f\xe5\x19\xd1\x4f\x01\x45\x0a\xf0\xe3\x90\x82\xc3\xae\
+\xd7\x70\x64\xcf\x3d\xe4\xda\xcf\x74\xe6\xe2\xe5\xd2\x3b\x5e\x89\
+\x19\x32\xd2\x30\xa2\x1e\x25\x71\xb1\xf8\x9e\xe2\x60\xf3\xe0\xb6\
+\x3e\xc4\xbb\x9d\x45\xe3\xe2\x9e\x23\x74\x9d\x06\x59\x90\xde\xac\
+\xe1\x57\xe9\x23\x89\x73\x37\x0b\xbf\x07\x63\x8e\x41\xe8\x55\xd1\
+\x92\x40\x49\xe9\xcc\x8b\x56\x35\xcb\xe2\x48\xaa\xaa\xb2\xe2\x97\
+\x37\xd6\xc6\x84\x8a\x5f\x4e\xa3\x20\x07\x3d\xb8\x76\xa8\x30\xbe\
+\x1a\xdb\x8e\x96\x49\xea\xb7\x2a\x5a\x67\x2d\xf7\x3c\xfd\x28\xc6\
+\xbb\xf4\x66\x61\x74\x37\xfe\xec\xc5\x59\xeb\xd1\x02\x63\x08\x6b\
+\x82\x5b\x0f\xd4\xc0\xa5\x81\x5a\xa9\x61\x2d\x55\x5a\x35\x70\xac\
+\xd6\x2b\xa8\xbe\x2e\x69\x67\x5f\x4e\xcc\xde\x27\x10\xbf\x0c\xce\
+\xcf\x72\xa8\x88\x2b\xce\x06\x6f\x9a\x58\x1d\xd9\x16\x83\x35\xb5\
+\xe8\xde\x36\x80\xfe\x69\xa3\xbe\x73\x82\x3b\xa6\xd8\xa1\x7f\x52\
+\xeb\xbf\xd4\xf6\x45\x12\xf9\xa7\x6e\x65\x78\x77\xc5\x39\x0f\xa6\
+\xe1\x65\x38\xf5\xf2\x30\x89\x0b\xfd\x38\x7f\x03\xb6\xc1\xf9\xd7\
+\x4f\x1f\xbe\x7c\x3c\x1b\x15\xf3\x3a\x87\x77\x10\xff\x0d\x00\xc2\
+\x25\x18\x33\x44\x64\xfb\x3a\x08\x46\x92\x8b\xc6\xd5\xad\x26\x1e\
+\x1a\xb9\xe8\x3d\x88\xa8\x58\x1a\x77\x22\x66\x5e\x9e\x86\xb7\xf6\
+\xb6\x1e\x64\x83\x43\x6c\x5f\xef\x9f\x85\x1c\x57\xb5\xb1\xb3\x2d\
+\x4b\xb7\x34\x7b\x87\xce\xc7\x7f\x7c\xfa\xe7\xc7\x2f\x9d\xd8\x79\
+\xf2\x29\xf2\xcb\xdc\xf2\xd8\xba\x75\xa1\x8d\x52\x82\xad\xce\xde\
+\x28\xa6\xc2\x61\xb0\x73\x84\xdd\x22\xe1\xc5\xb5\x0b\xc2\x90\xfd\
+\xdc\x79\xeb\xa2\x4f\x74\x0e\x9a\xe8\x48\x6c\xaf\x6d\xc3\xde\xd1\
+\xa6\xa0\x02\x29\x26\x1d\x17\x9c\xa2\x32\x90\xfe\xdc\x93\xe7\x1c\
+\x69\xcc\x17\xe4\xc9\x09\xf7\x9e\x52\xee\x57\xd8\x64\x68\x24\xc0\
+\xaf\x91\xc7\x27\x76\xcf\x3e\x1f\xa8\x9c\xae\xbd\x18\x3e\x19\x78\
+\xe9\x74\x33\xa8\xf5\xeb\x72\xc7\xb3\xc9\xc2\xfb\x11\xd1\x91\x26\
+\xd9\x2f\x62\x80\x49\x25\xec\x43\x1a\x77\x66\xd7\x64\x08\x4d\x82\
+\x23\x4e\xa4\x96\x1d\xe4\xd4\x26\x43\x48\x61\x6e\x8f\xdd\x3b\xc8\
+\x77\x5d\xe4\x02\x46\x1c\x1c\x05\x20\x46\x9a\x61\xdd\xbd\x33\x05\
+\x24\x61\xd8\x37\x10\xce\x99\xe3\x62\xa4\x24\x23\x66\x58\x76\x00\
+\x35\xd5\xa7\x46\x55\xc9\x4e\xc1\xef\x57\x64\x3a\xac\x9a\x36\xab\
+\xea\x26\x78\x58\x37\x72\xaa\x21\x6a\x3e\x67\xab\x81\x65\x5a\xcd\
+\x08\x86\xa8\x27\x50\x0d\xb0\x39\x23\xea\x7c\xef\x4a\x2a\xd6\xdf\
+\x02\x80\xb1\x21\x71\xa4\x14\xeb\xa1\x01\xbf\x08\x1a\x50\x62\xd7\
+\xe5\xcb\x1e\xee\xcf\x85\x7b\xe3\x88\xb8\x07\xfc\x2b\x01\x1e\x54\
+\x2d\x95\x20\x2b\xbc\x53\x8e\x59\x8f\xf7\xc3\xe1\xbd\x77\xf0\xaf\
+\x8e\x77\xd8\x9e\x00\x3f\xe7\x2b\xff\x2e\x41\xf2\x1e\xef\x07\xc3\
+\x7b\x17\xa0\x7b\xbc\xbf\x2c\xde\xed\xb7\x78\xb9\x06\xb9\x8d\x81\
+\xdd\x38\xa3\x78\xe7\xb7\x49\x7a\xc0\x3f\x3f\xa1\xe9\x3d\xfc\xab\
+\x23\x1e\x5a\x42\x77\x82\xeb\x02\xf1\xb0\xef\x55\xac\x47\xfc\xc1\
+\x10\x6f\x7a\xc0\xbf\x32\xe0\x09\x43\x98\x0b\xc2\x48\x81\x77\x4e\
+\xb0\x30\x3d\xde\x0f\x97\xc2\xb3\x1e\xf0\xaf\x0d\x78\x8a\x04\x86\
+\xfe\xd4\x50\x1b\x05\x9d\xa8\xde\xc1\x1f\x32\x87\xef\x0f\x69\x7e\
+\x26\xc0\x53\xc4\x28\xe9\xf1\x7e\x38\xbc\xf7\xfe\xfd\x27\x80\x3b\
+\x87\x6d\x2a\x24\x34\x5a\xf7\xfe\xfd\xd0\x78\xef\xb8\x89\xf1\x33\
+\xe1\xdd\xab\xe1\xc6\x6b\x00\x71\x07\x60\x06\x2f\x97\xd9\xdf\xd4\
+\xa0\xf6\xd1\xf5\x3d\x5c\x0d\xa6\x1f\x00\x0f\x46\x95\x44\x0a\x59\
+\xe0\x4e\x0b\x85\x69\x8f\xbb\x83\xe1\x4e\xf5\xb8\x6b\xe0\x8e\x33\
+\x65\xcc\xd0\x48\x09\xae\x4f\xf3\xfe\x19\xcc\x01\x8f\xe8\x7a\xe0\
+\xd5\xc0\x53\x14\x29\x51\x24\x96\xf6\xe8\xa0\x8f\xb4\x07\xde\x49\
+\xfd\xe4\xa9\xe5\x4b\x22\x8f\x08\x82\x84\xd1\x8a\x74\x22\xef\xcf\
+\x7c\x59\x56\x08\xc4\x85\x04\x73\xb7\x2e\xcb\x72\x61\x7f\xc3\x05\
+\xb7\x6f\x68\xd5\xb7\x65\x3b\xb6\xe0\xfb\xbd\x3f\xdd\xb8\xd6\xbf\
+\x63\x92\x3b\xa6\xb9\xff\x6b\xb0\xe4\xcd\x5d\x9f\xee\x46\x84\x50\
+\xe5\x4f\x1b\x75\x23\xc2\xa5\x87\xc7\x84\xcb\x1f\x86\x8a\xad\xa9\
+\xee\x1f\x15\xf4\xcd\xa1\x82\x20\x0a\xa9\x20\x69\xdf\xa9\x37\x0a\
+\x09\xcc\x8c\xda\x05\x8a\x8e\x08\xb3\x77\x50\xb0\x36\x28\xb6\xe6\
+\xb9\x63\xa6\xfb\xff\xae\xc5\xdb\xc3\x04\x44\x6d\xc1\x25\x79\x2c\
+\x28\x5e\x06\x16\x8d\xdb\x4d\x3b\x26\xfb\x52\xc8\xf8\xe3\xed\x21\
+\xc3\xfe\x24\xb2\x62\xb8\xfd\xf3\xa2\x10\xa8\x19\xd2\x9c\xde\x83\
+\x8c\x97\x88\x22\x6c\xf3\x3b\x36\xdb\x93\xdd\x31\xdd\xfd\xfb\x8c\
+\x37\x98\x5d\x80\x4e\x35\x37\xe4\xb1\xc8\x60\x5d\x8f\xf6\x0f\xe1\
+\x35\x36\xfd\xc6\xf6\x84\x5f\x0a\x1d\x7f\x74\xa0\xe3\x6c\x74\x75\
+\x7e\x72\x66\x7f\x41\xff\xfc\xe4\xff\x41\xa8\x02\xe5\
+\x00\x00\x0b\x22\
+\x00\
+\x00\x69\x0c\x78\x9c\xed\x5d\xeb\x6f\xa3\x48\x12\xff\x3e\x7f\x05\
+\xe7\xd1\x4a\x3b\x3a\xd3\xee\xf7\xc3\x79\xac\x74\x37\xb7\xbb\x23\
+\x9d\xb4\xa7\xdb\x39\xed\x67\x62\x48\xc2\x0d\x06\x0b\x70\x9c\xcc\
+\x5f\x7f\xd5\x18\x30\x18\x3c\xe3\x4c\xec\xcc\x79\x8d\xad\xc8\xa6\
+\xbb\x68\xba\xaa\x7e\x5d\x8f\xa6\x4c\x2e\x7f\x7a\x9c\x47\xce\x43\
+\x90\x66\x61\x12\x5f\x8d\x08\xc2\x23\x27\x88\x67\x89\x1f\xc6\x77\
+\x57\xa3\xff\x7c\xfc\xd9\xd5\x23\x27\xcb\xbd\xd8\xf7\xa2\x24\x0e\
+\xae\x46\x71\x32\xfa\xe9\xfa\xcd\xe5\x5f\x5c\xd7\xf9\x7b\x1a\x78\
+\x79\xe0\x3b\xab\x30\xbf\x77\x3e\xc4\x9f\xb2\x99\xb7\x08\x9c\x1f\
+\xef\xf3\x7c\x31\x9d\x4c\x56\xab\x15\x0a\xcb\x46\x94\xa4\x77\x93\
+\x77\x8e\xeb\x5e\xbf\x79\x73\x99\x3d\xdc\xbd\x71\x1c\x07\xae\x1b\
+\x67\x53\x7f\x76\x35\x2a\x4f\x58\x2c\xd3\xa8\x20\xf4\x67\x93\x20\
+\x0a\xe6\x41\x9c\x67\x13\x82\xc8\x64\xb4\x21\x9f\x6d\xc8\x67\xf6\
+\xea\xe1\x43\x30\x4b\xe6\xf3\x24\xce\x8a\x33\xe3\xec\x6d\x83\x38\
+\xf5\x6f\x6b\x6a\x3b\x9b\x15\x2b\x88\x88\x31\x66\x82\xe9\x84\x52\
+\x17\x28\xdc\xec\x29\xce\xbd\x47\xb7\x7d\x2a\xcc\xb1\xef\x54\x8a\
+\x31\x9e\x40\xdf\x86\x72\x3f\xaa\x69\x06\x02\x5d\xc0\x5f\x4d\x5e\
+\x35\xa0\x2c\x59\xa6\xb3\xe0\x16\xce\x0b\x50\x1c\xe4\x93\xf7\x1f\
+\xdf\xd7\x9d\x2e\x46\x7e\xee\x37\x86\xa9\xe4\xd9\xba\x6a\x4b\xc8\
+\xb1\x37\x0f\xb2\x85\x37\x0b\xb2\x49\xd5\x5e\x9c\xbf\x0a\xfd\xfc\
+\xfe\x6a\x04\x53\x2b\x0e\xef\x83\xf0\xee\x3e\x07\x7d\xd3\xf5\x71\
+\xe8\x5f\x8d\x60\xc6\xb4\x38\x68\xa0\x81\xac\x7b\xcb\x91\xa6\x75\
+\x0f\x46\x5c\x23\xee\xa4\xc6\x30\x53\x90\x54\x53\x9e\xfa\xc9\xcc\
+\xce\xe1\x6a\xf4\x2f\x2f\x85\xcf\x1c\xce\x78\x9f\x24\xe9\x2f\x91\
+\x97\x65\xc8\x0a\xe5\x1a\xc8\x2f\xfd\xe0\x36\xb3\xa7\xad\xaf\x6c\
+\x8f\xf8\xc8\x99\x14\x5d\xf5\x48\x76\x18\xff\x21\x0c\x56\x1b\xc2\
+\x1b\x2f\x5b\xb3\xe3\x38\x0b\xef\x0e\x54\x1f\x25\xe9\xd5\xe8\x2d\
+\x9d\xd9\x77\xd9\x71\x93\xa4\x7e\x90\x56\x5d\xb2\x78\xb5\xba\x12\
+\x10\x4f\x98\x3f\xad\xc1\x5e\x8e\x5d\x31\x68\x47\xad\xfb\x7b\x7b\
+\xb3\x7b\xcf\x4f\x56\x20\xc9\xed\xce\xcf\x49\x32\xbf\x1a\x31\x64\
+\x84\x51\x46\x6f\xf7\xce\x1e\xaf\x46\xca\x20\xcc\x25\x27\xa6\xd3\
+\x09\x17\x13\x0a\x09\x65\xb0\x62\xdb\x9d\x20\xd0\xa5\x5d\x0b\xee\
+\x32\x0e\x73\xc0\xdb\xe2\xb1\x73\xfa\x32\x4d\x2d\x41\xe4\x3d\x05\
+\xc0\x73\xf1\x41\x4a\xa2\xec\x3e\x59\xdd\xa5\x56\x76\xb7\x5e\x54\
+\x0b\xaf\x68\x5d\x86\x7e\x00\xe3\xe5\xe9\x32\xd8\x1e\xb1\xe8\x73\
+\x6f\x6e\x92\xc7\xfe\xfe\x55\x18\x83\x10\xdc\x12\x54\xc4\xd0\x8e\
+\xa8\x4a\x8a\x1a\x67\x58\x74\x18\x2b\x49\x1e\x7b\x04\x5d\x76\xf5\
+\xe9\xa0\xec\x9a\x7b\x8f\xe1\x3c\xfc\x1c\x00\x63\xa4\x42\x0e\xa0\
+\xcd\xf3\xbd\xdc\xdb\xe0\xa5\x6a\x51\x05\xea\x80\x04\x16\xfc\xf4\
+\xdf\xef\x7f\x5e\x1f\xc1\xf1\x6c\x36\xfd\x23\x49\x3f\x95\x87\xf0\
+\xb2\x04\xde\x4d\xb2\x84\x39\x8f\xae\xeb\xe6\x4b\x7f\x36\x85\x25\
+\x3a\xf7\xf2\xeb\x70\x0e\x20\xb0\xab\xfb\xaf\xb0\x24\x2f\x27\x9b\
+\x8e\x16\x71\xfe\xb4\x08\x36\x83\xae\x87\x4d\x83\xf5\x5a\xef\x35\
+\x78\xfe\x6c\x1e\xda\x93\x26\xbf\xe7\x61\x14\x7d\xb0\x17\x29\xd9\
+\x6a\x0c\x1a\xe6\x51\x70\x5d\x5c\x73\xfd\xb5\xe2\x62\x52\xb2\x51\
+\x32\x39\x69\x70\x79\x39\xa9\x64\x50\x1c\xdd\x6d\x49\x33\xf2\x6e\
+\x82\xe8\x6a\xf4\x4f\x0b\x19\x87\x74\x60\x90\x26\xcb\xc5\x3c\xf1\
+\x83\x12\x54\xa3\x8d\x64\x5b\x20\xcb\x53\x2f\xce\xac\x18\x2c\x5a\
+\xe0\x6b\x04\x6e\xe1\x47\x3c\x76\x0d\xa3\x88\x49\x4a\xf4\xbb\x5a\
+\xfe\xc1\x2c\xaf\x78\xca\xf2\xa7\x08\x46\x2e\x56\xea\xf4\x2d\x2e\
+\x5e\x17\xb7\xc0\xfd\xf4\xed\x6d\xf1\x2a\x0e\xdc\x72\x39\x4e\xc9\
+\xfa\x30\x5d\x46\xc1\x34\x78\x08\xe2\xc4\xf7\x2f\xb2\x3c\x4d\x3e\
+\x05\xf5\xc9\xeb\xc3\x35\x2c\xa7\xb4\x3a\x8c\xc2\x38\x00\x76\xa6\
+\x37\xcb\x3c\x6f\xb6\xfd\x37\x09\xe3\x29\x70\x18\x57\xe3\xb8\xa0\
+\x82\x20\x8d\x00\x57\xf9\x94\x57\x6d\x9b\xcb\x97\x0d\xbe\x07\x26\
+\x20\x4d\xbd\xa7\x69\x0c\x0e\xb1\xd9\x9a\xdc\xde\x66\x41\x3e\xc5\
+\x17\x73\x2f\xfd\x14\xa4\xeb\xfe\x87\x30\x0b\x6f\xc2\xc8\x0e\x51\
+\x7c\x8d\x82\x0b\x3f\xcc\x16\x20\x3f\xb0\xe6\x76\x1a\x17\x09\x58\
+\xd5\xdb\x28\x59\xd5\xfd\x41\xec\xc1\x87\x7b\xe3\xcd\x3e\xdd\x15\
+\xf3\x9b\x7a\x33\xb0\x01\x4b\x2b\xd6\x51\x25\x3d\xab\x04\x2b\x4d\
+\x6a\xb4\xa8\x1b\xcb\x05\x29\x08\x32\x4c\x0a\x42\xeb\x8e\x6a\x1d\
+\x82\x09\x92\x84\x6b\x49\xea\x1e\x58\x7e\xc4\xaa\x49\x30\xa9\xeb\
+\x46\x58\x78\x86\x13\xa4\xa0\x8d\xd6\x30\x7c\x55\xe5\x21\x2c\x25\
+\xa7\xd2\x98\xf3\xd0\x22\x53\xa2\xa3\x45\x4e\x91\xa4\x58\x68\xd9\
+\xd5\x22\x47\x46\x1a\x6e\x74\x5b\x8b\xd2\xfa\x1e\x26\xda\x5a\x94\
+\x88\xc1\xe0\xcf\xd7\x22\x88\x5e\xde\xf8\xc3\x12\xdc\x4f\x79\x6a\
+\x5b\x79\x4c\x20\xf0\xe5\x5c\xb2\x8e\xf2\x24\x41\xc2\x50\xa9\x5a\
+\xba\xe3\x18\x81\x42\x19\x6d\xe9\x4e\x60\x64\x08\xa5\xec\xd9\xba\
+\x33\xd8\xbe\xb7\x75\x57\x6a\xaa\x29\xb2\xb5\x9a\xc8\xe2\xf1\x55\
+\xe5\xc5\xc1\x36\xb9\x1d\xb8\x33\x85\x88\x82\x55\xdf\x35\x5a\x12\
+\x69\xa2\xb9\x36\xb2\x29\x32\x0a\x36\x0e\x1b\xc1\x5a\x46\xcb\xb5\
+\x56\x0b\xe4\xae\x4c\xdd\xda\xf0\x4d\xe0\xd4\xa2\xe0\x47\x32\x76\
+\xc9\xbb\x8d\x48\x17\x5e\x7e\xff\x75\x91\x36\x84\xd6\x0f\x75\xb6\
+\x17\xd4\x0b\x74\x9f\x22\xd4\x6d\x2c\xe5\x58\x91\x1b\x2c\x88\x18\
+\x5b\x31\x53\xad\x19\x71\x40\x6b\x12\x63\x62\xc6\xd8\x01\x87\xaf\
+\x6c\x80\x2b\x45\x4b\xe3\x56\xc0\x1c\x34\xe5\x6e\x7c\xce\x26\x72\
+\x4d\x62\x90\x56\x9e\xa4\x2e\xc4\xb0\x0f\x5e\xbe\x4c\x03\x1b\xf2\
+\x7d\x0f\x8f\x43\xce\xc4\x56\xe9\x86\x49\xaa\xe2\x77\x48\xe5\x98\
+\xa0\x9a\x77\x1d\x8d\x46\x86\x6a\xa1\x78\x6b\xe5\x41\xa6\x22\x24\
+\x57\x6a\x3b\x5c\x30\x5a\x13\xf9\x7d\x94\x07\x86\x52\x73\x85\x8d\
+\x3e\x13\x2d\x2a\xd5\xf1\x38\xa0\x45\x56\x28\xab\xa3\x45\x8e\x34\
+\x25\x1c\xd6\xeb\x96\x16\xad\x0e\x05\x39\x8c\x16\x4f\xc0\xe5\x74\
+\x1c\x0e\x84\x46\x52\x70\xd3\x91\x17\x61\x88\x30\x62\x34\x6b\xc9\
+\x0b\x62\x64\xa2\x05\x35\x4d\x79\x11\x0c\x36\x51\x12\x90\xf9\x80\
+\xfa\xd7\x41\xbd\xcb\x1a\x7e\xa4\x4a\x77\xc0\x48\x49\x61\x44\x37\
+\x72\x10\x48\x40\x58\x05\xa6\xad\xa9\x49\x46\x10\x08\x8d\x28\xd6\
+\x46\x3e\x44\x19\x94\x03\x4a\xbe\x4b\xba\x73\x5e\x0a\x74\x75\x57\
+\x85\x8c\x60\x45\x54\x37\xd7\x21\x18\x69\x2e\x9b\xa1\xf1\x5a\x85\
+\x4a\x69\x42\x68\x7b\x31\x02\x2d\x27\x4c\x7d\x31\xb8\xdb\x2f\x9c\
+\xdb\x4f\x21\x2f\x0d\xe7\xda\xe1\x15\xe3\x08\xa2\x7d\x2e\xf5\x18\
+\xc2\x5a\x88\x85\xb5\x32\x10\x53\x09\x89\x88\x14\x8c\x74\x62\x2a\
+\xd6\xcc\xe2\xf7\x8e\xa8\x76\x49\x04\x60\xdc\x90\xc2\xd6\x61\x29\
+\x14\x48\x47\x34\x64\x85\x44\x52\xb0\xde\xcf\x96\x4f\x2d\x8b\x36\
+\xd7\xa0\x44\xc4\x0d\xc6\x74\x6c\x98\x46\x82\x30\x6d\xb9\xd6\x12\
+\x72\x5f\x45\x7b\xb9\x16\x87\xe3\xba\x85\x83\x3e\x96\xc9\x21\x39\
+\xa5\x18\x29\xcc\x19\x81\xf0\x99\x22\xaa\x98\xd6\x8e\x0b\xdc\x5b\
+\xd7\x2c\xc7\xb8\x8f\x55\x75\xf2\xac\x16\x1e\x12\x53\x66\xbe\xca\
+\x6a\xc3\x28\xbc\x84\xd9\xaf\x25\x6f\x07\x63\xfd\x94\x0c\x70\xa1\
+\x14\x45\x91\x81\x60\xc1\xe8\x62\xa5\x61\xc3\x14\x87\x95\x46\x0c\
+\xe2\x58\x73\xde\xbb\xd2\x5c\x76\xa2\x00\x54\x0a\xd9\x60\x4d\xf3\
+\x9e\xb5\x26\xd4\x2e\x04\x9e\xea\x72\x6b\x70\x2b\x80\x5b\xac\x28\
+\xdd\x83\x5b\xed\xca\xd3\xe7\xf7\x19\xda\x65\x7f\x06\xfd\x42\x98\
+\xaa\x14\x61\xfb\xe9\x97\x7e\x4f\x9b\x7a\x06\x16\x95\x40\x12\x6d\
+\x34\x55\x0a\xdc\x1c\x28\x86\x72\x42\x1c\x69\xa3\x24\x81\x45\xbf\
+\x56\x9a\xfb\x9e\xa7\x85\xc1\xe2\x26\x91\xe4\xd8\xba\x74\xeb\x3e\
+\xa8\xd4\xd6\x7b\x14\x20\x34\xfd\x00\xc4\xa7\xca\xaa\xe6\x08\x73\
+\x4c\xcd\xfe\xac\xea\x93\xb5\x2d\x00\x61\xad\x80\x59\x6a\x31\x6c\
+\x90\x11\x98\xd9\x9d\xdc\xaf\x70\x2b\x4f\x36\x32\xe0\x90\x6a\x42\
+\x10\x44\xd9\xb3\xf8\x05\x4b\xea\x9a\x21\x3e\x3d\xee\xed\x05\x8e\
+\xc0\x40\x2a\x25\xc7\x10\xa3\x22\x8d\x8d\x90\x16\x9d\x84\x09\xa6\
+\xd9\x2e\x73\xca\x5c\xfe\x2d\x37\x16\xfe\x2f\xa0\xc8\x14\xe2\x1c\
+\xe2\x70\x48\x7d\x0d\x47\x76\x03\x4b\x6e\xec\x4c\x6f\x40\x5e\x2e\
+\xbd\xd3\xe5\x98\x20\x2e\x0d\x23\xea\x59\x1c\x17\x8b\xef\x5b\x0c\
+\x6c\x1e\x3c\xd6\x3b\x78\x8f\xf3\x68\x5a\x14\xc6\xc1\xd0\x69\x90\
+\x05\xe9\xc3\x06\x7e\x95\x3c\x92\x38\x77\xb3\xf0\x73\x30\xe5\x18\
+\x98\x5e\x1f\xda\x2e\x10\x52\x3a\xf7\xa2\x75\xcb\xaa\xd8\x98\xaa\
+\x9a\x2c\xfb\x65\x95\xd3\x94\x50\xf1\xc3\x45\x14\xe4\x20\x07\xd7\
+\x5e\x2a\x8c\xef\xa6\x76\xa0\x55\x92\xfa\xad\x86\xd6\x8e\xcb\x17\
+\xb6\xcc\x8b\xeb\xdd\x7a\xf3\x30\x7a\x9a\xfe\xee\xc5\x59\xfb\x76\
+\xbf\x46\x20\xbe\xd6\xdd\x7e\xb0\x68\x20\x55\x6a\x58\x4b\x92\x56\
+\x0a\x1c\xab\xcd\x02\xaa\x2b\xec\xec\xe4\xcb\x79\xd9\x52\x40\xf1\
+\xc3\xe8\xfa\x32\x87\x86\xb8\xa2\x6c\xd0\xa6\x89\x15\x91\x3d\x63\
+\xb4\xe9\x2d\x86\xb7\x27\xc0\xf8\xb4\xd1\xde\x37\xbf\x1d\x33\xec\
+\x91\x3e\xa9\xa5\x5f\xca\xfa\x26\x89\xfc\x0b\xb7\x52\xbb\xbb\xa6\
+\x5c\x04\xb3\xf0\x36\x9c\x79\x79\x98\xc4\x85\x74\x9c\xbf\x01\xd9\
+\xe8\xfa\x8f\x0f\xef\x3f\xfe\x7a\x39\x29\xa6\x75\x0d\x9f\xc0\xfd\
+\x19\xc0\xc1\x25\x18\x33\x44\xa4\x6c\xe1\x81\x60\x84\x85\x56\xfd\
+\x78\x68\x84\xa2\x5f\x40\x44\x45\xd2\xb8\x8f\x3e\xf7\xf2\x34\x7c\
+\xb4\x05\x5e\x10\x0c\x8e\xb1\x7d\xbf\x7b\x11\x72\x1a\x6b\x7b\x07\
+\x33\x3b\xd8\x39\x38\x78\x7e\xfd\xc7\x87\x5f\x7e\xfd\xd8\x8b\x9e\
+\x6f\xde\x4b\x7e\x9d\xd2\x80\x2d\x5f\x0a\xc1\xba\x51\x4a\xb0\xf5\
+\x06\x1c\xc5\x54\x38\x0c\x52\x47\x48\x17\x09\x2f\xee\xd5\x13\x86\
+\xec\xf7\xde\x5b\xf5\x43\xa0\x73\xd4\x40\x47\x42\xc8\x6d\x14\x81\
+\x1c\x11\xcc\xa1\xb0\x55\x76\x8e\x0b\x66\x51\xd9\x9a\xbd\x2f\xc4\
+\x39\x27\xea\xf3\x85\xf9\xe6\x80\xfb\x40\x21\xf7\x77\x48\x32\xa4\
+\x4d\x20\x15\x79\x7e\x60\xf7\xe2\xfd\x81\xca\xea\xda\x62\xe2\xab\
+\x91\x97\xce\xb6\xdd\xda\xb0\x2e\x77\xdc\xa1\x2c\xac\x1f\x11\x3d\
+\x71\x92\x2d\xde\x87\x70\x46\x42\x1e\xc2\x64\x4f\xb7\x2d\xdf\xe7\
+\x88\x13\xa9\x65\x4f\x77\x6a\xa3\x21\x7b\x3b\x44\x32\xca\x7b\xba\
+\x9f\xfa\xba\xd7\x30\xc2\x88\x01\x62\xa4\x19\xd7\xc3\x3b\x9e\x53\
+\x13\x8f\xeb\x6f\x0e\x76\x08\xbc\x5d\x86\xc0\x7c\x53\x6b\x45\xbe\
+\x40\xd5\x20\xfa\xdc\xe7\xde\x37\x25\xdc\x90\x9f\x10\xad\x94\x81\
+\x04\x05\xec\x13\xcc\x44\x89\x5d\x95\x73\x03\xec\x5e\x0a\xbb\xc6\
+\x5e\xed\xd9\x03\xcf\x25\x10\xfd\x29\x41\x74\x01\x3c\xca\x31\x1b\
+\x80\x77\x3c\xe0\x0d\x16\x6f\x03\x3c\xbb\xdf\xc4\x38\x5f\x1b\x3c\
+\x09\x33\x18\x70\x77\x34\xdc\xf5\x01\xeb\x5c\x71\x47\x8a\x82\x09\
+\x0d\x13\x30\x06\xf2\x35\x46\xf1\xce\x22\xf5\x01\x79\x2f\x77\xb5\
+\x83\xc9\xab\xa1\x27\xe1\x4c\xa1\xb9\xa0\x05\xf2\x20\x43\x51\x6c\
+\x40\xde\xd1\x90\x67\x06\xe0\x55\xc0\xa3\x18\x09\x2e\x88\xad\x87\
+\x03\xe0\x71\x82\x85\x19\x80\x77\xbc\x20\x8f\x0d\xc8\xab\x90\xc7\
+\xe0\xaa\x18\x88\xc9\x58\x1b\x85\x94\x54\x83\xc9\x3b\x66\x98\x37\
+\x24\xb6\xbd\xc8\xa3\x88\x51\x32\x00\xef\x78\xc0\x1b\x2c\x5e\x13\
+\x77\x8c\x70\x8d\xc5\x58\xeb\xc1\xe2\x1d\x1b\x78\x3d\x37\x56\xcf\
+\x15\x78\x8a\x23\xcc\x30\x95\xac\x00\x9e\x16\x0a\xd3\x01\x78\x47\
+\x03\x9e\x1a\x80\x57\x03\x8f\x01\xda\x88\x04\x4f\x6b\xa4\x44\x9c\
+\x42\x86\x3b\x00\xef\x78\x1b\x2a\x03\xf2\x6a\xe4\x19\x86\x14\x23\
+\x62\x9d\xd6\x0e\xae\xf6\xc8\xc9\xc5\x10\xe4\xd5\xc0\x23\x5c\x20\
+\x6e\x94\xbd\x6b\xd6\x83\xbc\x3f\x73\xf5\x9b\x52\x88\x09\x80\x43\
+\xeb\xc7\xf9\x06\xc4\x41\x18\xc1\xed\x82\x8b\xba\xfa\xad\x27\x2b\
+\x3d\x6c\x3d\x64\xa3\x4a\x77\xc7\x24\x77\x4c\xf3\xf0\x55\x6d\xe4\
+\xec\xea\x21\xfb\x11\x21\x54\xf9\x78\x8b\x7e\x44\xb8\xf4\xf8\x98\
+\x70\xf9\x7e\xa8\xe8\x4c\xf5\xf0\xa8\xa0\x67\x87\x0a\x8d\x14\x44\
+\x82\xa4\x55\x24\x6b\x8c\x42\x02\x33\xa3\x76\x81\xa2\xc7\xc3\x1c\
+\x1c\x14\xac\x0d\x8a\xce\x3c\x77\xcc\xf4\xf0\xc5\xd3\xe7\x87\x09\
+\xae\xed\x43\xab\xc8\x73\x41\xf1\x3a\xb0\x68\xd4\x66\xec\x98\xec\
+\x6b\x21\xe3\xb7\xf3\x43\x86\x46\x1a\x42\x28\xcc\x5b\x8f\x48\x02\
+\x47\x0d\x99\x25\xa7\x5f\x40\xc6\x6b\x78\x11\xb6\x5d\x33\xdf\x9d\
+\xec\x8e\xe9\x1e\xde\x66\x9c\x5f\x74\x21\x09\x62\x9a\x1b\xa2\x9f\
+\x89\x0c\xd6\x77\xff\xf7\x18\x56\x63\xdb\x6e\x74\x27\xfc\x5a\xe8\
+\xf8\xad\x1f\x1d\xc3\x0f\x06\xbe\xe9\xc9\x1d\x04\x63\x85\x30\x93\
+\x6a\xf3\xe4\x8e\x4e\x5e\x5c\xfd\x5e\xe0\x54\x7f\x30\xb0\x79\xda\
+\x41\xf1\xdb\x15\x88\x8d\xc9\x7e\x4f\xb3\xf8\x13\x3c\xcf\x82\x60\
+\x02\x2b\x95\x09\xbe\xef\xf3\x1d\x5e\xfc\xbb\xf3\x61\x0f\xea\x00\
+\xa5\x15\x8d\x54\xff\xec\x77\xa1\x36\xb7\xb8\xed\xc6\xbb\x22\x58\
+\xf2\x61\xff\xf3\x88\xc5\x15\x43\xf9\x76\x2f\xf6\x84\x44\x5a\x0b\
+\x7e\xce\x1b\xa0\xe0\x4c\x34\x32\x5b\x8f\x0e\x6c\xee\x76\xf5\x41\
+\xe7\xf0\xfb\x5d\x7b\xee\x78\x75\x66\x7b\xf8\x0d\x2f\xd6\x0d\x45\
+\x2f\x27\x77\xd7\x6f\x2e\xed\xff\xf3\xb8\x7e\xf3\x3f\xa9\xc1\xcb\
+\x58\
+\x00\x00\x0a\x97\
+\x00\
+\x00\x62\x2b\x78\x9c\xed\x5c\xeb\x6f\xdb\xc8\x11\xff\x9e\xbf\x82\
+\x55\x70\x40\x82\x8a\xab\x7d\x3f\xe8\xc7\x01\x6d\xee\x9a\x00\x05\
+\xae\xe8\xa5\xc8\x67\x4a\xa4\x6d\x36\x14\x29\x90\x94\x65\xe7\xaf\
+\xef\x2c\x45\x52\xa4\x44\x25\x7e\x48\xbe\xea\x4c\x09\x86\xc4\x9d\
+\xdd\xe5\xce\xcc\x6f\xe7\xb1\x1c\xeb\xfc\xe7\xbb\x79\xec\xdc\x86\
+\x59\x1e\xa5\xc9\xc5\x88\x20\x3c\x72\xc2\x64\x96\x06\x51\x72\x7d\
+\x31\xfa\xcf\xe7\x5f\x5d\x3d\x72\xf2\xc2\x4f\x02\x3f\x4e\x93\xf0\
+\x62\x94\xa4\xa3\x9f\x2f\xdf\x9c\xff\xc5\x75\x9d\xbf\x67\xa1\x5f\
+\x84\x81\xb3\x8a\x8a\x1b\xe7\x53\xf2\x35\x9f\xf9\x8b\xd0\x79\x77\
+\x53\x14\x0b\x6f\x32\x59\xad\x56\x28\xaa\x1a\x51\x9a\x5d\x4f\xde\
+\x3b\xae\x7b\xf9\xe6\xcd\x79\x7e\x7b\xfd\xc6\x71\x1c\xb8\x6f\x92\
+\x7b\xc1\xec\x62\x54\x0d\x58\x2c\xb3\xb8\xec\x18\xcc\x26\x61\x1c\
+\xce\xc3\xa4\xc8\x27\x04\x91\xc9\x68\xd3\x7d\xb6\xe9\x3e\xb3\x77\
+\x8f\x6e\xc3\x59\x3a\x9f\xa7\x49\x5e\x8e\x4c\xf2\xb7\xad\xce\x59\
+\x70\xd5\xf4\xb6\xab\x59\xb1\xb2\x13\x31\xc6\x4c\x30\x9d\x50\xea\
+\x42\x0f\x37\xbf\x4f\x0a\xff\xce\xed\x0e\x85\x35\xf6\x0d\xa5\x18\
+\xe3\x09\xd0\x36\x3d\x1f\xd6\xcb\xcb\x41\xa0\x0b\xf8\x6b\xba\xd7\
+\x0d\x28\x4f\x97\xd9\x2c\xbc\x82\x71\x21\x4a\xc2\x62\xf2\xe1\xf3\
+\x87\x86\xe8\x62\x14\x14\x41\x6b\x9a\x5a\x9e\x9d\xbb\x76\x84\x9c\
+\xf8\xf3\x30\x5f\xf8\xb3\x30\x9f\xd4\xed\xe5\xf8\x55\x14\x14\x37\
+\x17\x23\x58\x5a\x79\x79\x13\x46\xd7\x37\x05\xe8\x9b\xae\xaf\xa3\
+\xe0\x62\x04\x2b\xa6\xe5\x45\x0b\x0d\x64\x4d\xad\x66\xf2\x1a\x0a\
+\x46\x5c\x23\xee\x64\xc6\x30\x53\x76\xa9\x97\xec\x05\xe9\xcc\xae\
+\xe1\x62\xf4\x2f\x3f\x83\xcf\x02\x46\x7c\x89\x92\x20\x5d\x7d\x48\
+\x97\xd3\x38\x44\x56\x2e\x97\x30\xe2\x3c\x08\xaf\x72\x3b\x72\x7d\
+\x73\x7b\xc5\x47\xce\xa4\x24\x35\x93\xd9\x99\x82\xdb\x28\x5c\x6d\
+\x3a\x4e\xfd\x7c\xcd\x91\xe3\x2c\xfc\x6b\xd0\x7e\x9c\x66\x17\xa3\
+\xb7\x74\x66\xdf\x15\x61\x9a\x66\x41\x98\xd5\x24\x59\xbe\x3a\xa4\
+\x14\x24\x14\x15\xf7\x6b\xbc\x57\x73\xd7\x3c\xda\x59\x1b\x7a\x2f\
+\x35\xbf\xf1\x81\x1f\x10\xe6\x36\xf1\x5b\x9a\xce\xa1\x19\xe9\x6d\
+\xc2\xec\xee\x62\x24\x0d\xa2\x8a\x4b\xc5\x77\x88\x70\x1f\x66\x90\
+\xa2\x8a\x29\xb3\x4d\x04\x71\x2e\xed\x4e\x70\x97\x49\x54\x00\xda\
+\x16\x77\x3b\xc3\x97\x59\x66\x3b\xc4\xfe\x7d\x08\xec\x96\x1f\xa4\
+\xea\x94\xdf\xa4\xab\xeb\xcc\x8a\xed\xca\x8f\x1b\xb9\x95\xad\xcb\
+\x28\x08\x61\xbe\x22\x5b\x86\xdb\x33\x96\x34\x77\x3a\x4d\xef\xfa\
+\xe9\xab\x52\x9f\x6e\x05\x29\x62\xe8\x8e\x94\xaa\x1e\x0d\xca\xb0\
+\x60\x7b\xba\xdc\xf5\xc8\xb8\x22\xf5\x89\xbf\x22\xcd\xfd\xbb\x68\
+\x1e\x7d\x0b\x81\x31\x52\x83\x06\xb0\xe6\x07\x7e\xe1\x6f\xa0\x52\
+\xb7\xa8\x12\x70\xd0\x05\xb6\xbb\xf7\xef\x0f\xbf\xae\xaf\xe0\x7a\
+\x36\xf3\xbe\xa4\xd9\xd7\xea\x12\x5e\xb6\x83\x3f\x4d\x97\xb0\xe6\
+\xd1\x65\xd3\x7c\x1e\xcc\x3c\xd8\xa0\x73\xbf\xb8\x8c\xe6\xa0\x7f\
+\xbb\xb7\xff\x0a\x1b\xf2\x7c\xb2\x21\x74\x3a\x17\xf7\x8b\x70\x33\
+\xe9\x7a\xda\x2c\x5c\xef\xf4\x5e\x73\x17\xcc\xe6\x91\x1d\x34\xf9\
+\xbd\x88\xe2\xf8\x93\xbd\x49\xc5\x56\x6b\xd2\xa8\x88\xc3\xcb\xf2\
+\x9e\xeb\xaf\x35\x17\x93\x8a\x8d\x8a\xc9\x49\x8b\xcb\xf3\x49\x2d\
+\x83\xf2\xea\x7a\x4b\x9a\xb1\x3f\x0d\xe3\x8b\xd1\x3f\x2d\x64\x1c\
+\xb2\x03\x83\x2c\x5d\x2e\xe6\x69\x10\x56\xa0\x1a\x6d\x24\xdb\x01\
+\x59\x91\xf9\x49\x6e\xc5\x60\xd1\x02\x5f\x63\x70\x0a\xef\xf0\xd8\
+\x35\x8c\x22\x26\x29\xd1\xef\x1b\xf9\x87\xb3\xa2\xe6\x29\x2f\xee\
+\x63\x98\xb9\xdc\xa4\xde\x5b\x5c\xbe\xce\xae\x80\x7b\xef\xed\x55\
+\xf9\x2a\x2f\xdc\x6a\x27\x7a\x64\x7d\x99\x2d\xe3\xd0\x0b\x6f\xc3\
+\x24\x0d\x82\xb3\xbc\xc8\xd2\xaf\x61\x33\x78\x7d\xb9\x86\xa5\x47\
+\x11\xa6\x82\x51\x43\x48\xdd\x1e\x47\x49\x08\x7c\x79\xd3\x65\x51\
+\xb4\xdb\xfe\x9b\x46\x89\x07\xac\x26\xf5\x84\x2e\xe8\x22\xcc\x62\
+\x00\x58\xe1\xf1\xba\x6d\xb3\x8e\xaa\x21\xf0\xc1\x0c\x64\x99\x7f\
+\xef\x25\xe0\x17\xdb\xad\xe9\xd5\x55\x1e\x16\x1e\x3e\x9b\xfb\xd9\
+\xd7\x30\x5b\xd3\x6f\xa3\x3c\x9a\x46\xb1\x9d\xa2\xfc\x1a\x87\x67\
+\x41\x94\x2f\x40\x90\x60\xd4\xed\x32\xce\x52\x30\xae\x57\x71\xba\
+\x6a\xe8\x61\xe2\xc3\x87\x3b\xf5\x67\x5f\xaf\xcb\xf5\x79\xfe\x0c\
+\x8c\xc1\xd2\xca\x77\x54\x8b\xd1\x6a\xc3\x8a\x95\x1a\x2d\x9a\xc6\
+\x7a\x67\x62\x8d\x24\x67\x64\x43\xa8\x37\xa4\xd2\xc8\x18\xc1\xb8\
+\x6c\x28\xb0\x0f\xb5\x40\x82\x52\x61\x74\xd3\x08\x3b\xd0\x70\x90\
+\x24\x97\x42\x35\x78\x7c\x49\x2d\x12\x64\x88\xe6\x0a\x1b\xfd\x3a\
+\xb4\xc8\x94\xd8\xd1\xa2\x31\x88\x60\x45\xf8\x8e\x12\xc1\xa1\x70\
+\xc9\xa9\x56\x6d\x25\x1a\x8c\x08\x38\x75\xb6\xa5\x44\x89\x24\x23\
+\x98\x3f\x5a\x89\xd2\x18\x39\x0d\x06\x25\x3e\x52\x89\x6a\x5b\x89\
+\x9c\x23\xab\xaa\x16\xa1\xd1\x22\x41\x5d\x82\x55\x22\x43\x5a\xee\
+\x28\x51\x60\x44\x31\xe5\x62\x50\xe2\x0b\x29\xd1\xa5\xcf\x53\x23\
+\xe1\x10\x40\xeb\xb6\x95\x7d\x96\x1a\x0d\xb6\xef\x6d\x35\x56\x4a\
+\x6b\x0b\xad\xd2\xd8\xe2\xee\x45\x25\xc6\x99\x14\xee\x8e\xf5\x62\
+\x0a\x11\x85\xa5\xa4\xbb\x12\x43\x1a\x10\xa5\x8d\xec\x8a\x0c\x71\
+\x0c\x9e\xa9\x83\x7c\xd7\x80\x20\x71\x2b\x3a\xee\xc4\x1c\x10\xac\
+\xc4\xe1\x3b\x32\x76\xc9\xfb\x8d\x48\x17\x7e\x71\xf3\x63\x91\xb6\
+\x84\xd6\x8f\x7a\xf6\x20\xb0\x97\xf8\x3e\x45\xb0\xdb\x18\xd9\xb1\
+\x22\x37\x58\x10\x31\xb6\x62\xa6\x5a\x33\xe2\x80\xd6\x24\xc6\xc4\
+\x8c\xb1\x03\x81\x9c\xb2\x11\x80\x14\x1d\x8d\x5b\x01\x5b\x4d\xb9\
+\x64\xd3\xdc\x64\x24\x69\x02\xd2\x2a\xd2\xcc\x85\xdc\xe4\xd6\x2f\
+\x96\x59\x68\x43\xf9\x3f\x24\x80\x78\x25\xd6\x4a\x4b\xb6\x13\xfd\
+\x41\x82\xce\x04\xd5\xbb\x81\x83\x8d\xfe\xac\xad\xe2\xed\x9d\x47\
+\x31\xc2\x42\x72\xa5\xba\x81\x03\xd8\x7d\xad\x89\x1c\xa2\xbf\x17\
+\xf1\x39\x6a\x27\x70\x00\x2d\x32\xd3\xeb\x71\x38\xd2\x94\x80\xcf\
+\xd1\x5b\x5a\x24\xa0\x43\x41\x0e\xa3\xc5\x13\x70\x39\x3b\x0e\x47\
+\x42\xd2\x29\xb8\xd9\x91\x17\x61\x88\x30\x62\x34\xdb\xf2\x37\xe0\
+\x85\x04\x35\x6d\x79\x11\x4c\x09\x92\x64\xc8\x79\x5e\x0c\xf5\xae\
+\x3e\x06\xee\x09\x26\x12\xd9\x68\x62\xd0\xe3\x4b\xe9\x91\xb5\xe2\
+\x81\x4a\x93\x02\x9c\x8d\x14\x46\xec\x46\x80\x02\x09\x69\x38\xb8\
+\xa8\x8e\x26\x19\x32\x0a\x13\xc5\xba\x16\x4c\x42\x2b\xa1\x8f\x0f\
+\x9a\x07\x4d\x3e\x5d\x93\xbb\xbb\xf2\x10\xba\x84\x5d\x09\x9b\x15\
+\x0b\xfd\xdd\x68\xfd\x61\xf1\x39\x7d\x91\xf8\xbc\x1b\x2f\x53\x89\
+\x24\xa5\x5c\xea\x31\xc8\x01\xbe\x1a\x43\x21\x48\x16\x0a\x01\xf7\
+\x5c\x77\x84\x69\xf9\x82\xd0\xec\x09\x21\xf2\x3e\x89\x00\x9e\x5b\
+\x52\xd8\xba\xac\x84\x82\xc1\xd9\x43\xc6\x4f\x24\x05\x77\xfc\x68\
+\xf9\x34\xb2\xd8\xca\x12\xa8\x4d\xc1\x24\xa3\x63\xc3\x34\x12\x84\
+\x69\x03\x5c\x6b\x2b\x0b\x45\x49\x1f\xd7\xe2\x70\x5c\x77\x70\xd0\
+\xc7\x32\x39\x28\xa7\x06\x51\x83\x25\x19\xdb\xb3\x4f\xaa\x98\xd6\
+\x8e\x4b\x28\xb2\x3e\x47\x8e\x71\x1f\xab\xea\xe4\x59\x2d\x43\x1e\
+\x4c\x99\xf9\x21\xab\x2d\xa3\xf0\x1c\x66\x7f\x94\x8d\x1f\x8c\xf5\
+\x53\x32\xc0\xa5\x52\x44\xb5\xd1\x78\xb9\xd3\xb0\x61\x8a\xc3\x4e\
+\x23\x06\x71\xac\x39\xef\xdd\x69\x2e\x3b\x51\x00\x0a\xb1\x77\xab\
+\x09\xb5\x0f\x80\xa7\xba\xdb\x36\xcc\x82\xdf\xa0\x58\x51\xfa\x00\
+\x66\xb5\x2b\x4f\x9e\xdd\x47\xe8\x96\xfd\x09\xb4\x0b\xb1\xaa\x52\
+\x84\x3d\x4c\xbb\x74\xb0\xa7\x47\xb6\xa7\x9a\x20\x8d\x85\x51\xe0\
+\xe3\x40\x33\x94\x13\xe2\x10\xa2\x10\xd6\x60\x38\xfb\xf5\xd2\x3e\
+\xc6\x3e\x2d\x10\x6a\x01\x59\x33\x31\x44\x00\xb3\xd6\x79\x50\xa9\
+\xad\xef\x28\x61\x68\xfa\x21\x88\x4f\x94\x55\x62\x38\x70\x45\x34\
+\x7d\x38\xab\xfa\x64\x8d\x0b\xc5\x08\xc2\x00\x4c\x2d\xb3\xdc\x20\
+\x23\x30\xb3\x07\xf3\x3f\xe0\x56\x9e\x6c\x5c\xc0\x14\xec\x59\x48\
+\xac\xd8\xa3\xf8\x05\x5b\xea\x9a\xc1\x9a\x1e\xf7\x69\x91\xb2\xc7\
+\xab\x4a\xc9\xb1\x31\xda\x2a\x49\x48\x87\x2a\x44\x98\x60\x9a\xed\
+\x33\xa7\xcc\xe5\x4f\x79\x4e\xf4\x7f\x01\x45\x48\x91\x0c\x87\x28\
+\x1c\x12\x5f\xb0\x38\xf6\xec\x43\x6e\xec\x4c\x6f\x38\x5e\x6d\xbd\
+\xd3\xe5\x98\x21\x23\x0d\x23\xea\x51\x1c\x97\x9b\xef\x29\x06\xb6\
+\x08\xef\x9a\x83\xbc\xbb\x79\xec\x95\xd5\xab\x30\x75\x16\xe6\x61\
+\x76\xbb\x81\x5f\x2d\x8f\x34\x29\xdc\x3c\xfa\x16\x7a\x1c\x03\xd3\
+\xeb\x4b\x4b\x02\x21\x65\x73\x3f\x5e\xb7\xac\xca\x63\xa9\xba\xc9\
+\xb2\x5f\x15\x23\x7a\x84\x8a\x9f\xce\xe2\xb0\x00\x39\xb8\xf6\x56\
+\x51\x72\xed\xd9\x89\x56\x69\x16\x74\x1a\x3a\xe7\x2d\xdf\x79\x02\
+\x52\xde\xef\xca\x9f\x47\xf1\xbd\xf7\xbb\x9f\xe4\x9d\xc7\x0b\x90\
+\xb6\x61\x4d\x70\xe7\xa1\x1a\x98\x34\x10\x2b\x35\xac\x23\x4a\x2b\
+\x06\x8e\xd5\x66\x07\x35\x45\xb0\x76\xf5\xd5\xc2\x6c\xc1\xae\xf8\
+\x69\x74\x79\x5e\x40\x43\x52\xf7\x6c\xf5\xcd\x52\x2b\x23\x3b\x62\
+\xb4\xa1\x96\xd3\xdb\x01\x30\x3f\x6d\xb5\xf7\x2e\x70\xcf\x12\x7b\
+\xe4\x4f\x1a\xf9\x57\xd2\x9e\xa6\x71\x70\xe6\xd6\x8a\x77\xd7\x3d\
+\x17\xe1\x2c\xba\x8a\x66\x7e\x11\xa5\x49\x29\x1f\xe7\x6f\xd0\x6d\
+\x74\xf9\xe5\xd3\x87\xcf\x1f\xcf\x27\xe5\xba\x2e\xe1\x13\xd8\x7f\
+\x05\x80\x70\x09\xc6\x0c\x11\xd9\x29\x09\x21\xc4\xd6\xe9\x81\x8f\
+\xeb\x05\x44\x2b\x18\xfd\x0e\x24\xea\x2e\xad\xc2\x88\xb9\x5f\x64\
+\xd1\x9d\xad\xc4\x24\x63\x32\xc6\xf6\xfd\xfe\x59\xd0\x71\x55\x17\
+\x3c\xbb\xcc\xec\x61\xe7\xe0\xe0\xf9\xf8\xcb\xa7\x7f\x7c\xfc\xdc\
+\x8b\x9e\x27\x9f\x25\xbf\x4c\xad\xc7\x4e\xed\x85\x36\x4a\x09\xb6\
+\x3e\x80\xa3\x98\x0a\x87\x41\xfa\x08\x29\x23\xe1\x65\xf1\x05\x61\
+\x48\xb4\x8b\xff\xda\xb5\x17\x43\xa8\x73\xd4\x50\x47\x42\xd0\x6d\
+\x14\xc1\x36\x99\xe2\x02\x29\x26\x1d\x17\xcc\xa2\x32\x6c\x7f\xe2\
+\x08\x91\xce\x89\x7a\x7d\x41\x9e\x1c\x72\x1f\x28\xe8\xfe\x03\xd2\
+\x0c\x8d\x04\x18\x36\xf2\xf8\xd0\xee\xd9\x27\x04\xb5\xd5\xb5\x55\
+\xff\x17\x23\x3f\x9b\x6d\xbb\xb5\x61\x5f\xee\x79\x42\x59\x5a\x3f\
+\x22\x7a\x02\x25\xfb\x5f\x36\xa0\x52\x09\x99\x08\x93\x3d\x64\xf0\
+\x4d\x82\x23\x4e\xa4\x96\x3d\xe4\xcc\x86\x43\x48\x61\x6e\xcf\xde\
+\x7b\xc8\xf7\x7d\xe4\x12\x46\x1c\x0c\x05\x20\x46\x9a\x71\x33\xbd\
+\xe3\x3b\x4d\xe7\x71\xf3\xcd\xc1\x0e\x81\xb7\xcb\x6c\x91\x23\xb5\
+\x56\xe4\x3b\xbd\x5a\x9d\xbe\xf5\xb9\xf7\xcd\xff\x5a\xb8\xd8\xc6\
+\x70\x94\x62\x3d\x36\x60\xa0\x60\x29\x4a\xec\xab\x85\x1c\x70\xf7\
+\x5c\xdc\xb5\x0e\x6c\x07\xe4\x01\xcf\x52\x09\xb2\x06\x1e\xe5\x98\
+\x0d\xc0\x3b\x1e\xf0\x06\x93\xb7\x01\x1e\x44\xce\x92\x31\xce\xd7\
+\x16\x4f\xc2\x12\x06\xe0\x1d\x0d\x78\x7d\xc8\x7a\xb5\xc0\xd3\x90\
+\xa6\x71\x0d\x0b\x30\x06\x32\x36\x46\xf1\xde\xff\x3b\x18\x90\xf7\
+\x7c\x5f\x3b\xd8\xbc\x76\x98\xa7\x0c\x48\x85\xeb\x12\x7a\x90\xa4\
+\x28\x36\x40\xef\x68\xd0\x33\x03\xf2\x6a\xe4\x11\x86\x30\x17\x84\
+\x91\x12\x78\x9c\x60\x61\x06\xe0\x1d\x2f\xcc\x63\x03\xf2\x1a\xe4\
+\x51\x24\x30\x18\x3d\x35\xd6\x46\x21\x25\xd5\x60\xf2\x8e\x19\xe7\
+\x0d\xa9\x6d\x2f\xf2\x28\x62\x94\x0c\xc0\x3b\x1e\xf0\x06\x8b\xd7\
+\xc6\x1d\x87\x9c\x02\x7c\xad\xd6\x83\xc5\x3b\x36\xf0\x7a\x9e\xad\
+\xbe\x56\xe0\x69\x8a\x24\x91\x42\x96\xb8\xd3\x42\x61\x3a\xe0\xee\
+\x68\xb8\x53\x03\xee\x5a\xb8\xe3\x4c\x19\x0d\x59\xad\x94\xf6\x47\
+\x34\xf8\x70\x86\x7c\xc4\x03\x95\x01\x79\x0d\xf2\x6c\xa1\xbe\x28\
+\x43\x3c\x9b\xd6\x0e\xae\xf6\xc8\xc9\xc5\x10\xe4\x6d\x82\x3c\x21\
+\x90\x30\x5a\x91\x5e\xe4\xfd\x99\x0b\xe0\x80\x71\x2e\x24\xa8\xbb\
+\x5d\x00\x67\xb8\xb0\xbf\xcd\x80\xbb\x35\x17\x4d\x01\x5c\x4f\x56\
+\x7a\xd8\x9a\xc8\x56\xa9\xee\x9e\x45\xee\x59\xe6\xe1\x0b\xdb\xc8\
+\xab\x2b\x89\xec\x47\x84\x50\xd5\x4f\x96\xf4\x23\xa2\xf5\xd3\x5c\
+\x47\xc3\x84\xcb\x1f\x86\x8a\x9d\xa5\x1e\x1e\x15\xf4\xd5\xa1\x82\
+\x20\x0a\xa1\x20\xe9\xd4\xc9\x1a\xa3\x90\xc0\xcc\xa8\x7d\xa0\xe8\
+\xf1\x30\x07\x07\x05\xeb\x82\x62\x67\x9d\x7b\x56\x7a\xf8\xfa\xe9\
+\xd7\x87\x09\xf0\xda\x82\x4b\xf2\x58\x50\xbc\x0c\x2c\x5a\xd5\x19\
+\x7b\x16\xfb\x52\xc8\xf8\xed\xf5\x21\x83\x20\x06\x21\xd4\xd6\x0f\
+\x66\x82\xa3\x66\x48\x73\xfa\x1d\x64\xbc\x84\x17\x61\xdb\x65\xf3\
+\xbb\x8b\xdd\xb3\xdc\xc3\xdb\x8c\x57\x18\x5d\x80\x4c\x35\x37\xe4\
+\xb1\xc8\x60\x7d\xcf\x7f\x8f\x61\x35\xb6\xed\xc6\xee\x82\x5f\x0a\
+\x1d\xbf\xf5\xa0\xe3\x7c\x72\x7d\xf9\xe6\xdc\xfe\xe0\xf9\xe5\x9b\
+\xff\x01\x7e\xe5\xc8\x4e\
+\x00\x00\x09\x86\
+\x00\
+\x00\x47\xd7\x78\x9c\xed\x5c\x6d\x6f\xdb\xc8\x11\xfe\x9e\x5f\xc1\
+\x2a\x38\x20\x41\xc5\xd5\xbe\xbf\xd0\x96\x0f\x68\x73\x69\x02\x14\
+\x68\xd1\x4b\x91\xcf\xb4\xb8\xb6\xd9\x50\xa4\x40\x52\x96\x9c\x5f\
+\xdf\x59\x8a\xa4\x48\x89\x4a\x6c\xc7\x76\xce\x67\x49\x30\xa4\xdd\
+\x99\x7d\x99\x99\x67\x67\x66\x77\x29\x9f\xfe\xba\x9e\x27\xde\xb5\
+\xcd\x8b\x38\x4b\xa7\x23\x82\xf0\xc8\xb3\xe9\x2c\x8b\xe2\xf4\x72\
+\x3a\xfa\xef\xa7\xf7\xbe\x1e\x79\x45\x19\xa6\x51\x98\x64\xa9\x9d\
+\x8e\xd2\x6c\xf4\xeb\xd9\xab\xd3\xbf\xf8\xbe\xf7\xf7\xdc\x86\xa5\
+\x8d\xbc\x55\x5c\x5e\x79\x1f\xd3\x2f\xc5\x2c\x5c\x58\xef\xcd\x55\
+\x59\x2e\x82\xc9\x64\xb5\x5a\xa1\xb8\xae\x44\x59\x7e\x39\x79\xeb\
+\xf9\xfe\xd9\xab\x57\xa7\xc5\xf5\xe5\x2b\xcf\xf3\x60\xdc\xb4\x08\
+\xa2\xd9\x74\x54\x37\x58\x2c\xf3\xa4\x62\x8c\x66\x13\x9b\xd8\xb9\
+\x4d\xcb\x62\x42\x10\x99\x8c\xb6\xec\xb3\x2d\xfb\xcc\x8d\x1e\x5f\
+\xdb\x59\x36\x9f\x67\x69\x51\xb5\x4c\x8b\xd7\x1d\xe6\x3c\xba\x68\
+\xb9\xdd\x6c\x56\xac\x62\x22\xc6\x98\x09\xa6\x13\x4a\x7d\xe0\xf0\
+\x8b\x9b\xb4\x0c\xd7\x7e\xbf\x29\xcc\x71\xa8\x29\xc5\x18\x4f\x80\
+\xb6\xe5\xbc\x1d\x57\x50\x80\x42\x17\xf0\xd7\xb2\x37\x15\xa8\xc8\
+\x96\xf9\xcc\x5e\x40\x3b\x8b\x52\x5b\x4e\xde\x7d\x7a\xd7\x12\x7d\
+\x8c\xa2\x32\xea\x74\xd3\xe8\xb3\x37\x6a\x4f\xc9\x69\x38\xb7\xc5\
+\x22\x9c\xd9\x62\xd2\xd4\x57\xed\x57\x71\x54\x5e\x4d\x47\x30\xb5\
+\xaa\x78\x65\xe3\xcb\xab\x12\xec\x4d\x37\xe5\x38\x9a\x8e\x60\xc6\
+\xb4\x2a\x74\xd0\x40\x36\xd4\xba\xa7\xa0\xa5\x60\xc4\x35\xe2\x5e\
+\x6e\x0c\x33\x15\x4b\x33\xe5\x20\xca\x66\x6e\x0e\xd3\xd1\xbf\xc3\
+\x1c\x3e\x4b\x68\xf1\x39\x4e\xa3\x6c\xf5\x3e\x5e\xdb\x08\x39\xb5\
+\x9c\x41\x83\xd3\xc8\x5e\x14\xae\xe1\x66\x6c\x57\xe2\x23\x6f\x52\
+\x91\xda\xbe\x5c\x47\xd1\x75\x6c\x57\x5b\xc6\xf3\xb0\xd8\x08\xe4\
+\x79\x8b\xf0\x12\x8c\x9f\x64\xf9\x74\xf4\x9a\xce\xdc\xbb\x26\x9c\
+\x67\x79\x64\xf3\x86\x24\xab\x57\x8f\x94\x81\x82\xe2\xf2\x66\x03\
+\xf7\xba\xef\x46\x44\xd7\x6b\x4b\x1f\xa4\x16\x57\x21\x88\x03\xba\
+\xdc\x25\x7e\xcd\xb2\xf9\x74\xc4\x90\x11\x46\x19\xbd\x4b\x9d\xad\
+\xa7\x23\xa1\x90\xd1\x86\x0c\x10\x61\x30\x29\x10\xc7\x9a\x30\xb1\
+\x4b\x04\x95\x2e\xdd\x6a\xf0\x97\x69\x5c\x02\xe2\x16\xeb\xbd\xe6\
+\xcb\x3c\x77\x0c\x49\x78\x63\x41\xe6\xea\x83\xd4\x4c\xc5\x55\xb6\
+\xba\xcc\x9d\xee\x2e\xc2\xa4\x55\x5e\x55\xbb\x8c\x23\x0b\xfd\x95\
+\xf9\xd2\xee\xf6\x58\xd1\xfc\xf3\xf3\x6c\x3d\x4c\x5f\x55\x36\xf5\
+\x6b\x58\x11\x43\xf7\x54\x55\x73\xb4\x48\xc3\x82\x1d\x60\x59\x0f\
+\x28\xba\x26\x0d\xd9\xa0\x26\xcd\xc3\x75\x3c\x8f\xbf\x5a\x10\x8c\
+\x34\xc8\x01\xbc\x85\x51\x58\x86\x5b\xbc\x34\x35\xaa\x42\x1d\xb0\
+\xc0\x92\x0f\xfe\xf3\xee\xfd\xa6\x04\xe5\xd9\x2c\xf8\x9c\xe5\x5f\
+\xea\x22\xbc\x1c\x43\x78\x9e\x2d\x61\xce\xa3\xb3\xb6\xfa\x34\x9a\
+\x05\xb0\x48\xe7\x61\x79\x16\xcf\x01\x04\x6e\x7d\xff\x15\x16\xe5\
+\xe9\x64\x4b\xe8\x31\x97\x37\x0b\xbb\xed\x74\xd3\x6d\x6e\x37\xab\
+\x7d\xd0\xe5\x45\xb3\x79\xec\x1a\x4d\x7e\x2f\xe3\x24\xf9\xe8\x06\
+\xa9\xc5\xea\x74\x1a\x97\x89\x3d\xab\xc6\xdc\x7c\x6d\xa4\x98\xd4\
+\x62\xd4\x42\x4e\x3a\x52\x9e\x4e\x1a\x1d\x54\xa5\xcb\x1d\x6d\x26\
+\xe1\xb9\x4d\xa6\xa3\x7f\x3a\xc8\x78\x64\x0f\x06\x79\xb6\x5c\xcc\
+\xb3\xc8\xd6\xa0\x1a\x6d\x35\xdb\x03\x59\x99\x87\x69\xe1\xd4\xe0\
+\xd0\x02\x5f\x13\x08\x0c\x6f\xf0\xd8\x37\x8c\x22\x26\x29\xd1\x6f\
+\x5b\xfd\xdb\x59\xd9\xc8\x54\x94\x37\x09\xf4\x5c\xad\xd4\xe0\x35\
+\xae\x5e\x27\x17\x20\x7d\xf0\xfa\xa2\x7a\x55\x05\xbf\x5e\x8e\x01\
+\xd9\x14\xf3\x65\x62\x03\x7b\x6d\xd3\x2c\x8a\x4e\x8a\x32\xcf\xbe\
+\xd8\xb6\xf1\xa6\xb8\x81\x65\x40\x9b\x62\x12\xa7\x16\xc4\x09\xce\
+\x97\x65\xd9\xad\xfb\x5f\x16\xa7\x01\x48\x98\x36\xfd\xf8\x60\x02\
+\x9b\x27\x80\xab\x32\xe0\x4d\xdd\x76\xf8\xba\x22\x0a\xc1\x05\xe4\
+\x79\x78\x13\xa4\x10\x12\xbb\xb5\xd9\xc5\x45\x61\xcb\x00\x9f\xcc\
+\xc3\xfc\x8b\xcd\x37\xf4\xeb\xb8\x88\xcf\xe3\xc4\x75\x51\x7d\x4d\
+\xec\x49\x14\x17\x0b\xd0\x1f\xf8\x73\x37\x8d\x93\x0c\xfc\xea\x45\
+\x92\xad\x5a\xba\x4d\x43\xf8\xf0\xcf\xc3\xd9\x97\xcb\x6a\x7e\x41\
+\x38\x03\x1f\xb0\x74\x6a\x1d\x35\xda\x73\x46\x70\xda\xa4\x46\x8b\
+\xb6\xb2\x5e\x90\xca\x20\xc2\x14\xc5\xaa\x25\x34\xeb\x10\x28\x54\
+\x6b\x83\x69\x4b\x81\xe5\x47\x08\x41\x4c\x09\xbd\xad\x84\x85\x67\
+\x38\x41\xda\x18\xa5\x5b\x18\xde\xd6\x78\xd2\x18\x79\x1e\xfd\xa0\
+\xf1\x10\x65\x12\x4b\x22\xa0\xb3\xcd\x8b\xbf\x0c\x73\x82\x1d\xf6\
+\xcd\x89\x11\x21\x1c\x0b\xba\x67\x4e\x69\x90\x92\x42\x52\xd1\x37\
+\xa7\x40\x46\x12\x26\xfb\xe6\x94\x10\xb4\x31\x84\x97\xbb\x9a\xd3\
+\x60\xf7\xde\x35\x67\x6d\xbc\xae\xce\x36\x96\x23\x8b\xf5\x93\x2a\
+\x8c\x33\x29\xfc\x3d\x95\x31\x85\x88\xc2\x52\x0e\xa8\x0c\x69\xa2\
+\xb9\x36\xb2\xa7\x32\x0e\xc1\xd7\x08\xa6\xbb\x2a\xf3\xdd\x12\xc0\
+\x8a\x29\xd3\xd6\x76\x1c\x1d\x78\xc8\xc4\xbe\x21\x63\x9f\xbc\xdd\
+\xaa\x74\x11\x96\x57\xdf\x57\x69\x47\x69\xc3\xe8\x67\xb7\xc2\x7a\
+\x05\xef\xe7\x88\x75\x17\x98\x3d\xa7\x72\x83\x05\x11\x63\xa7\x66\
+\x70\x4a\x8c\x78\x60\x35\x89\x31\x31\x63\xec\x41\xf4\x50\x08\x73\
+\x29\x45\xcf\xe2\x4e\xc1\xce\x52\x3e\xd9\x56\xb7\x69\x50\x96\x82\
+\xb6\xca\x2c\xf7\x21\x21\xba\x0e\xcb\x65\x6e\x5d\xfe\x70\x57\xbc\
+\x3f\x44\xec\x21\x2f\xc4\x59\x69\xc9\x76\x57\x1e\x81\x9d\x01\x13\
+\x54\xf3\xfd\xd8\xa3\x91\xa1\x5a\x28\xde\x5d\x79\x14\x23\x2c\x24\
+\x57\x6a\x37\xf6\x18\xad\x89\xfc\x39\xc6\x43\x06\x3c\x84\xc2\x46\
+\xbf\x10\x2b\xaa\x8e\xf6\xb7\x56\x64\x95\xb1\xf6\xac\xc8\x91\xa6\
+\x84\xc3\x7a\xdd\xb1\x22\x01\x1b\x0a\xf2\x30\x56\x7c\x06\x21\x67\
+\x2f\xe0\x48\xc8\x74\x05\x37\x7b\xfa\x22\x0c\x72\x31\xd8\xf3\xb1\
+\x9d\x78\x03\x51\x48\x50\xd3\xd5\x17\xc1\x94\x20\x48\x79\xd4\x11\
+\xf5\x4f\x84\x7a\x5f\x3f\x06\xee\x09\x26\x12\xb9\x6c\xe2\x9b\x79\
+\xc1\xed\x32\x01\x8a\x88\xe4\x42\x10\xa3\x9e\x24\x25\xe8\x87\x68\
+\x2a\x91\xa4\x94\x4b\x0d\x21\x5a\x21\x65\x94\x32\x10\x97\xa5\x42\
+\x14\x84\x23\x7b\x71\x19\xa2\xc1\x3d\xa2\xf2\x21\xd5\x00\xa8\x3b\
+\xea\xd8\x29\xd6\xda\xc1\xee\x3c\x05\x52\x5d\x49\xc1\x03\xdc\x59\
+\x3f\xad\x2e\xfa\x52\x1b\x06\x49\x9f\x64\x74\x6c\x98\x46\x82\x30\
+\xed\x84\xd6\x4e\x15\x8a\x0e\x0a\x2d\x1e\x4e\xe8\x1e\x1e\x86\x24\
+\x26\x0f\x28\x28\xe0\x14\x2c\x09\x9b\x2c\x30\x2f\xec\xb7\x14\xd3\
+\xda\xf3\x09\x20\x0e\x50\x2e\xc7\x78\x48\x54\xf5\xec\x45\xad\x9c\
+\x2c\xa6\xcc\x7c\x57\xd4\x8e\x73\xf8\x11\x61\xbf\x97\xff\x0f\x8a\
+\xfe\x02\xf2\x7f\x41\x36\xcb\x8c\xc3\x3a\x53\xb0\x5f\xa5\xdc\xad\
+\x33\x08\x8c\x8c\x74\xb6\x61\xdd\x65\xe6\xb3\x67\x8a\x3e\x21\x0e\
+\xae\x33\xa1\x0e\xa1\xef\xb9\x2e\xb5\x7b\x09\xcb\xfe\x0c\xe2\x4a\
+\xa4\x14\x61\xf4\x16\xe2\x6a\x9f\x1e\xbd\xcb\xe3\x9e\x2e\x60\x81\
+\xa4\x56\x54\x83\xc3\x07\xc3\x50\x4e\x88\xa7\x0d\x98\x8a\xb3\x61\
+\xa3\x74\xcf\x90\x9e\x17\x02\xab\xd3\x5b\x43\x8c\x8b\x6d\x90\xb1\
+\x60\x2a\xb5\x73\xa4\x15\x06\xcd\x30\xfe\xf0\x73\x15\xd5\xb8\x7c\
+\x9b\x68\x7a\x7b\x51\xf5\xb3\xf5\x2c\xb0\xb7\x60\x8a\x63\xea\x84\
+\xe5\x06\x19\x81\x99\x3b\x15\xfb\x8e\xb4\xf2\xd9\x46\x49\xc8\x02\
+\x34\x36\x86\xb2\x3b\xc9\x0b\x8e\xd4\x37\x77\x97\xb8\xb4\xeb\x76\
+\x63\xbd\x9e\x27\x41\x75\x69\x0e\x1d\xe7\xb6\xb0\xf9\xf5\xd6\x99\
+\x34\xda\xc8\xd2\xd2\x2f\xe2\xaf\x36\xe0\x18\x44\xde\x14\x1d\x09\
+\x54\x94\xcf\xc3\x64\x53\xb3\xaa\xb6\x8a\x4d\x95\x13\xbe\xbe\xff\
+\x0c\x08\x15\xbf\x9c\x24\xb6\x04\x2d\xf8\x6e\xa8\x38\xbd\x0c\x5c\
+\x47\xab\x2c\x8f\x7a\x15\xbd\xad\xcf\x37\xce\x3f\xaa\xf1\x2e\xc2\
+\x79\x9c\xdc\x04\xbf\x87\x69\xd1\x3b\x5c\x60\xb0\x83\xd1\x04\xf7\
+\x8e\xd4\x40\xa7\x1c\x09\x6a\x58\x4f\x91\x4e\x0d\x1c\xab\xad\x3f\
+\x68\x2f\xdf\xdd\xec\xeb\x89\xb9\xe7\x04\xc4\x2f\xa3\xb3\xd3\x12\
+\x2a\xd2\x86\xb3\xc3\x9b\x67\x4e\x47\xae\xc5\x68\x4b\xad\xba\x77\
+\x0d\xa0\x7f\xda\xa9\x1f\x9c\xe0\x81\x29\x0e\xe8\x9f\xb4\xfa\xaf\
+\xb5\x7d\x9e\x25\xd1\x89\xdf\x18\xde\xdf\x70\x2e\xec\x2c\xbe\x88\
+\x67\x61\x19\x67\x69\xa5\x1f\xef\x6f\xc0\x36\x3a\xfb\xfc\xf1\xdd\
+\xa7\x0f\xa7\x93\x6a\x5e\x67\xf0\x09\xe2\xbf\x00\x40\xf8\x04\x63\
+\x86\x88\xec\x5f\x08\x61\x24\xb9\xe8\x5c\x04\x76\xf1\xd0\x09\x86\
+\xdf\x40\xc4\xc0\xad\xc8\x3c\x2c\xf3\x78\xed\xee\x7e\x21\x1c\x8d\
+\xb1\x7b\xbf\xfd\x21\xe4\xf8\xaa\x8f\x9d\x7d\x59\x86\xa5\x79\x70\
+\xe8\x7c\xf8\xed\xe3\x3f\x3e\x7c\x1a\xc4\xce\xbd\x4f\x77\x9e\xe6\
+\x9e\x67\xef\xde\x45\x1b\xa5\x04\xdb\x6c\x85\x29\xa6\xc2\x63\x90\
+\xba\x42\xba\x4a\x78\x75\xf1\x42\x18\x72\xdf\x07\xef\x5d\x7e\x5e\
+\xd2\x7a\x9f\x48\xf3\xec\xd2\x56\x09\x31\xdf\x28\x48\x5e\x5d\x0c\
+\x14\x48\x31\xe9\xf9\xe0\x14\x95\x61\x52\x1c\xca\x5b\x99\xcf\x9f\
+\x69\xc4\x17\xe4\xde\x11\xff\x3e\x31\xbf\x27\x73\xe3\x81\xdc\x33\
+\x37\xd3\x51\x98\xcf\x76\x3d\xfc\x11\xa4\x07\x0e\xcf\x2b\x57\x40\
+\x04\xf6\xe5\x7e\x8c\x70\x4f\xb9\x41\x62\x2e\x99\x66\x6c\x88\x0c\
+\x9e\x5a\x70\xc4\x89\xd4\x72\x80\x9c\xbb\xdc\x00\x29\xd8\xb0\x31\
+\xca\x07\xc8\x37\x43\xe4\x0a\x49\x1c\xd6\x0d\x40\x46\x9a\x71\xdb\
+\xbd\x37\x03\x2c\x61\x64\x38\xe1\x9c\x79\x3e\x46\x4a\x32\x62\xc6\
+\x75\x07\x50\xd3\x7c\xeb\x54\xd5\xec\x14\xdc\x60\x43\xa6\xe3\xa6\
+\x69\xb7\xaa\x6d\x82\xc7\x6d\x23\xaf\x19\xa2\xe5\xf3\xf6\x1a\x38\
+\xa6\xcd\x8c\x60\x88\x76\x02\xcd\x00\xbb\x33\xa2\xde\xd7\xa1\x18\
+\xbb\x7d\xc4\xca\x27\x1a\x1c\x38\xd7\x20\xb7\x31\xe0\xcb\x19\xc5\
+\x07\x9f\x46\x38\x02\xfe\x87\x01\xaf\x07\xf2\xe4\x23\xe2\x9f\x16\
+\xf1\xd0\x12\xba\x13\x5c\x57\x88\x87\x38\xa1\xd8\x11\xf1\x8f\x86\
+\x78\x73\x04\xfc\x4f\x06\x3c\x24\xe3\x90\x09\x12\x46\x2a\xbc\x73\
+\x48\x0d\xcd\x11\xef\x8f\x97\xd2\xe8\x23\xe0\x7f\x36\xe0\x29\x12\
+\x18\xfa\x53\x63\x6d\x28\x62\x94\x1c\xfd\xfb\xe3\xe1\x9d\x1d\xe1\
+\xfe\xf3\xe1\xce\x21\x6b\x07\xff\xae\xb5\x82\x4e\xd4\x31\x9f\x79\
+\x44\xbc\x0f\x1c\x6b\xfe\x91\xf0\x1e\xb6\x70\xe3\x2d\x80\xb8\x07\
+\x30\x83\xb7\xcf\xdc\x23\xea\xd4\x9d\x03\x7d\x83\xab\xc3\xf4\x1d\
+\xe0\xc1\xa8\x92\x48\x21\x2b\xdc\x69\xa1\x30\x3d\xe2\xee\xd1\x70\
+\xa7\x8e\xb8\xeb\xe0\x8e\x33\x65\xcc\xd8\x48\x09\xae\x4f\x73\x71\
+\xc4\xdd\xe3\x9d\x58\x1c\x81\xd7\x02\x4f\x51\xa4\x44\x95\x58\xba\
+\x9d\xd4\x31\xd2\x3e\xf2\x4e\xea\x0f\x9e\x5a\x3e\x25\xf2\x88\x20\
+\x48\x18\xad\xc8\x20\xf2\xfe\xcc\x37\xcf\x42\x20\x2e\x24\x98\xbb\
+\x77\xf3\xcc\x85\xfb\x49\x04\xee\xdf\x30\xb6\x57\xcf\x03\x5b\xf0\
+\x87\x7d\x18\xa1\xf3\xdb\xb1\x03\x93\x3c\x30\xcd\x87\xbf\x53\x26\
+\x2f\xee\x59\x04\xf7\x4b\x63\xc5\x70\xff\x97\x96\xa0\x64\x86\x34\
+\xa7\xea\x00\x22\x7c\xe6\xd3\xc7\x47\x45\xef\x29\xd4\x03\x93\x3d\
+\x30\xdd\x87\x7f\x50\xe5\xe5\x21\x43\x80\x4e\x35\x37\xe4\xae\xc8\
+\x60\x43\xa7\xd4\x8f\x80\x0d\xdc\x79\x6c\xf2\xc0\x84\x9f\x0a\x1d\
+\xff\x1a\x40\xc7\xe9\xe4\xf2\xec\xd5\xa9\xfb\xc7\x14\x67\xaf\xfe\
+\x0f\x41\x2e\x87\x0e\
+\x00\x00\x0b\x4c\
+\x00\
+\x00\x69\xc2\x78\x9c\xed\x5d\xeb\x8f\x9b\x48\x12\xff\x9e\xbf\x82\
+\x73\xb4\xd2\x46\x67\xda\xfd\x7e\x78\x1e\x2b\xdd\xe5\xf6\x12\xe9\
+\xa4\x3d\x5d\x72\xca\x67\xc6\x30\x33\x5c\x30\x58\x80\xc7\x33\xf9\
+\xeb\xaf\x1a\x03\x06\x1b\xcf\x23\x63\x3b\xf1\x1a\x5b\x23\x43\x77\
+\x75\xd3\x55\xf5\xeb\x7a\x34\x0d\x73\xfe\xdb\xfd\x34\x72\xee\x82\
+\x34\x0b\x93\xf8\x62\x40\x10\x1e\x38\x41\x3c\x49\xfc\x30\xbe\xb9\
+\x18\xfc\xf7\xf3\xef\xae\x1e\x38\x59\xee\xc5\xbe\x17\x25\x71\x70\
+\x31\x88\x93\xc1\x6f\x97\x6f\xce\xff\xe2\xba\xce\xdf\xd3\xc0\xcb\
+\x03\xdf\x59\x84\xf9\xad\xf3\x31\xfe\x9a\x4d\xbc\x59\xe0\xfc\x7a\
+\x9b\xe7\xb3\xf1\x68\xb4\x58\x2c\x50\x58\x16\xa2\x24\xbd\x19\xbd\
+\x73\x5c\xf7\xf2\xcd\x9b\xf3\xec\xee\xe6\x8d\xe3\x38\x70\xdd\x38\
+\x1b\xfb\x93\x8b\x41\xd9\x60\x36\x4f\xa3\x82\xd0\x9f\x8c\x82\x28\
+\x98\x06\x71\x9e\x8d\x08\x22\xa3\xc1\x8a\x7c\xb2\x22\x9f\xd8\xab\
+\x87\x77\xc1\x24\x99\x4e\x93\x38\x2b\x5a\xc6\xd9\xdb\x06\x71\xea\
+\x5f\xd7\xd4\x76\x34\x0b\x56\x10\x11\x63\xcc\x08\xd3\x11\xa5\x2e\
+\x50\xb8\xd9\x43\x9c\x7b\xf7\x6e\xbb\x29\x8c\xb1\xab\x29\xc5\x18\
+\x8f\xa0\x6e\x45\xf9\x3c\xaa\x71\x06\x02\x9d\xc1\x5f\x4d\x5e\x15\
+\xa0\x2c\x99\xa7\x93\xe0\x1a\xda\x05\x28\x0e\xf2\xd1\xfb\xcf\xef\
+\xeb\x4a\x17\x23\x3f\xf7\x1b\xdd\x54\xf2\x6c\x5d\xb5\x25\xe4\xd8\
+\x9b\x06\xd9\xcc\x9b\x04\xd9\xa8\x2a\x2f\xda\x2f\x42\x3f\xbf\xbd\
+\x18\xc0\xd0\x8a\xd3\xdb\x20\xbc\xb9\xcd\x41\xdf\x74\x79\x1e\xfa\
+\x17\x03\x18\x31\x2d\x4e\x1a\x68\x20\xcb\xda\xb2\xa7\x71\x5d\x83\
+\x11\xd7\x88\x3b\xa9\x31\xcc\x14\x24\xd5\x90\xc7\x7e\x32\xb1\x63\
+\xb8\x18\xfc\xdb\x4b\xe1\x37\x87\x16\x5f\xc2\xd8\x4f\x16\x9f\x72\
+\x2f\xbb\x45\x56\x2c\x97\xd0\xe0\xdc\x0f\xae\x33\xdb\x70\x79\x6d\
+\x7b\xc6\x07\xce\xa8\xa8\xaa\xfb\xb2\x1d\xf9\x77\x61\xb0\x58\x11\
+\x5e\x79\xd9\x92\x21\xc7\x99\x79\x37\xa0\xfc\x28\x49\x2f\x06\x6f\
+\xe9\xc4\x7e\xcb\x8a\xab\x24\xf5\x83\xb4\xaa\x92\xc5\xa7\x55\x95\
+\x80\x80\xc2\xfc\x61\x09\xf7\xb2\xef\x8a\x45\xdb\x6b\x5d\xdf\x59\
+\x9b\xdd\x7a\xc0\x0e\xc8\x72\xbd\xf2\x5b\x92\x4c\xa1\x18\xe9\xf5\
+\x8a\xc9\xfd\xc5\x80\x29\x44\x30\x95\x1b\x8d\x26\x70\x19\x45\x11\
+\x65\x42\x50\xb3\x5e\x09\xc2\x9c\xdb\x79\xe0\xce\xe3\x30\x07\xac\
+\xcd\xee\x37\x9a\xcf\xd3\xd4\x12\x44\xde\x43\x00\xdc\x16\x3f\xa4\
+\x24\xca\x6e\x93\xc5\x4d\x6a\xa5\x76\xed\x45\xb5\xd8\x8a\xd2\x79\
+\xe8\x07\xd0\x5f\x9e\xce\x83\xf5\x1e\x8b\x3a\xf7\xea\x2a\xb9\xef\
+\xae\x5f\x14\xda\x74\x4b\x40\x11\x43\x37\x84\x54\x52\xd4\x18\xc3\
+\x82\x6d\x21\xb9\xef\x10\x71\x59\xd5\x25\xfd\xb2\x6a\xea\xdd\x87\
+\xd3\xf0\x5b\x00\x8c\x91\x0a\x33\x80\x34\xcf\xf7\x72\x6f\x85\x94\
+\xaa\x44\x15\x78\x03\x12\x98\xec\xe3\xff\xbc\xff\x7d\x79\x06\xe7\
+\x93\xc9\xf8\x4b\x92\x7e\x2d\x4f\xe1\x63\x09\xbc\xab\x64\x0e\x63\
+\x1e\x5c\xd6\xc5\xe7\xfe\x64\x0c\xd3\x73\xea\xe5\x97\xe1\x14\xd4\
+\x6f\x67\xf6\x5f\x61\x3a\x9e\x8f\x56\x15\x2d\xe2\xfc\x61\x16\xac\
+\x3a\x5d\x76\x9b\x06\xcb\x79\xde\x69\xec\xfc\xc9\x34\xb4\x8d\x46\
+\x9f\xf2\x30\x8a\x3e\xda\x8b\x94\x6c\x35\x3a\x0d\xf3\x28\x58\x15\
+\x9e\x8f\xca\xd1\x97\xbc\x8d\x1a\xcc\x9d\x8f\x2a\xd6\x8b\xb3\x9b\
+\x35\x21\x46\xde\x55\x10\x5d\x0c\xfe\x65\x91\xe2\x90\x0d\xed\xa7\
+\xc9\x7c\x36\x4d\xfc\xa0\xc4\xd2\x60\x25\xd0\x16\xb6\xf2\xd4\x8b\
+\x33\xcb\xbd\x05\x09\x1c\x46\xe0\x09\x7e\xc5\x43\xd7\x30\x8a\x98\
+\xa4\x44\xbf\xab\xc5\x1e\x4c\xf2\x8a\x95\x2c\x7f\x88\xa0\xe7\x62\
+\x6a\x8e\xdf\xe2\xe2\x73\x76\x0d\x4c\x8f\xdf\x5e\x17\x9f\xe2\xc4\
+\x2d\xe7\xdf\x98\x2c\x4f\xd3\x79\x14\x8c\x83\xbb\x20\x4e\x7c\xff\
+\x2c\xcb\xd3\xe4\x6b\x50\x37\x5e\x9e\x2e\xd1\x38\xa6\xd5\x69\x14\
+\xc6\x01\xb0\x33\xbe\x9a\xe7\x79\xb3\xec\x7f\x49\x18\x8f\x81\xc3\
+\xb8\xea\xc7\x05\xc9\x07\x69\x04\x70\xca\xc7\xbc\x2a\x5b\x5d\xbe\
+\x2c\xf0\xc1\x72\x79\x69\xea\x3d\x8c\x63\xf0\x81\xcd\xd2\xe4\xfa\
+\x3a\x0b\xf2\x31\x3e\x9b\x7a\xe9\xd7\x20\x5d\xd6\xdf\x85\x59\x78\
+\x15\x46\xb6\x8b\xe2\x30\x0a\xce\xfc\x30\x9b\x81\xfc\xc0\x80\xdb\
+\x61\x9c\x25\x60\x48\xaf\xa3\x64\x51\xd7\x07\xb1\x07\x3f\xee\x95\
+\x37\xf9\x7a\x53\x8c\x6f\xec\x4d\x60\xea\xcf\xad\x58\x07\x95\xf4\
+\xac\x12\xac\x34\xa9\xd1\xa2\x2e\x2c\xe7\xa1\x20\xc8\x30\x29\x08\
+\xad\x2b\xaa\xe9\xa7\x0c\x92\x84\x6b\x49\xea\x1a\x98\x75\xc4\xaa\
+\x49\x30\xa9\xeb\x42\x98\x6f\x86\x13\xa4\xa0\x8c\xd6\xe8\xeb\x95\
+\xb7\x73\xe5\x31\x25\x36\x94\xc7\x29\x92\x5a\xe1\x2e\xe5\x61\x44\
+\x88\x52\x4a\xb4\x95\x27\x91\xa1\x92\x88\xb6\xf2\x24\x62\x98\xb3\
+\x97\x2b\x4f\x1a\x23\xaf\xfc\x5e\x79\xcf\x53\x9e\x5a\x57\x1e\x28\
+\x03\xeb\x66\x79\xa5\x3b\x0a\x0a\x11\x52\x29\xd3\xd2\x1d\x07\x8d\
+\x6a\x45\x55\x4b\x77\x02\xe2\x29\x2c\x40\xa1\x2f\xd5\x9d\xc1\xf6\
+\xbb\xae\xbb\x52\x53\x4d\x91\x2d\xd5\x44\x66\xf7\x07\x95\x17\x07\
+\x93\xe4\x6e\xc0\xdd\x86\x42\x0a\x4b\xb9\x09\x77\x89\x34\xd1\x5c\
+\x1b\xd9\x14\x19\xc3\x48\x33\x4d\x48\x53\x62\xae\xb5\x55\x58\xb1\
+\x86\x70\x1b\x1e\x09\x5c\x59\x14\xfc\x4a\x86\x2e\x79\xb7\x92\xe8\
+\xcc\xcb\x6f\x9f\x96\x68\x43\x66\xdd\x48\x67\xcf\x42\x7a\x01\xee\
+\x63\x44\xba\x0d\x9c\x1c\x90\xb8\x21\x06\x6b\x39\xb4\x62\xa6\x5a\
+\x33\xe2\x80\xd2\x24\xc6\xc4\x0c\xb1\x03\x6e\x5e\x21\xcc\xa5\x14\
+\x2d\x85\x5b\x01\x73\x6c\x84\xbb\xd2\xd4\x2a\x4c\x4d\x62\x90\x56\
+\x9e\xa4\x2e\x04\xac\x77\x5e\x3e\x4f\x03\x1b\xdf\xfd\x08\x3f\x43\
+\x4e\xc4\x54\x69\xc9\xd6\x27\x1e\x81\x9c\x8d\x09\xaa\xf9\xa6\x9f\
+\xd1\xe0\x51\xb4\x50\xbc\x35\xf1\x24\x64\x79\x02\x14\xbd\x1e\x24\
+\x18\xad\x89\xfc\x31\xca\x03\x60\x6a\xae\xb0\xd1\x27\xa2\x45\xf0\
+\xfd\x1d\x5a\x64\x85\xb2\x36\xb4\xc8\x91\xa6\x84\xc3\x7c\x5d\xd3\
+\xa2\x50\x92\x51\xb2\x1b\x2d\x1e\x81\xc7\xe9\xf0\xd0\x50\xca\xcd\
+\x86\xbc\x08\x43\x84\x11\xa3\x59\x4b\x5e\x60\xf1\xb8\x22\xb8\x25\
+\x2f\x48\xdd\x09\x84\xd1\x20\xf3\x1e\xf5\x87\x41\xbd\xab\xf7\x81\
+\x7b\x50\x2b\x84\x6b\x46\xb0\x5e\x8f\x87\xd2\x23\x73\x89\x2b\xd7\
+\x75\x29\x6c\x02\x23\x8c\xd8\x0c\x01\x05\x12\xd2\x70\x70\x52\x4d\
+\x5d\xda\xdc\xc6\x68\xc5\x59\xdb\x86\x41\x1a\xa4\x08\x7d\x79\xd4\
+\xdc\xeb\xf2\xfb\x75\xf9\x5a\x4d\xe2\x2e\x4d\x6a\x82\x88\x34\xba\
+\x8f\x29\x0e\x3a\x2b\xb5\x6b\xf6\x32\x2f\x95\x40\x54\x58\x7f\xdb\
+\x6b\xf3\x90\xda\xdc\xc7\xcc\x04\x7f\x89\x11\xc1\x42\x3f\x9a\x47\
+\x3f\x2f\x73\x7e\xde\x1a\xd1\x6b\x33\xe7\x76\x26\xcb\x19\xc2\x82\
+\x60\x66\x86\x60\x5d\x40\x1e\x98\x72\x48\x5f\x29\x43\x4a\x0b\x2a\
+\x5b\xc2\xb4\x7c\xb1\xe6\x32\xe9\xb3\x93\xd7\x6d\x12\x01\x3c\x37\
+\xa4\xb0\x76\x5a\x0a\x05\x32\x6d\x6d\x8c\x24\x92\x42\xa0\xfc\x62\
+\xf9\xd4\xb2\x68\x73\x4d\x08\x45\xdc\x60\x4c\x87\x86\x69\x24\x08\
+\xd3\x06\xb8\x06\x01\x48\xaa\x1a\xf1\x50\x83\x6b\xb1\x3b\xae\x5b\
+\x38\xe8\x62\x99\xec\x92\x53\x8a\x91\xc2\x9c\x91\xa1\xe1\x14\x51\
+\xc5\xb4\x76\x5c\xe0\xde\x46\x83\x72\x88\xbb\x58\x55\x47\xcf\x6a\
+\x91\x8c\x60\xca\xcc\x93\xac\x36\x8c\xc2\x6b\x98\x7d\x6a\x9d\x6c\
+\x67\xac\x1f\x93\x01\x2e\x94\x22\x15\x12\x98\x6b\x23\x8a\x99\x86\
+\x0d\x53\xd6\xbe\x10\x83\x38\xd6\x9c\x77\xce\x34\x97\x1d\x29\x00\
+\x15\x41\x8a\x80\x73\xed\x9a\x6b\x42\x6d\x43\xe0\xb1\x4e\xb7\x06\
+\xb7\x02\xb8\xc5\x8a\xd2\x67\x70\xab\x1b\xa9\xce\xd1\xf2\xfb\x02\
+\xed\xb2\x3f\x83\x7e\x21\x8a\x55\x8a\xb0\xe7\xe9\x97\xfe\x48\x9b\
+\x7a\x02\x16\x95\x50\x05\x21\x11\x55\x0a\xdc\x1c\x28\x86\x72\x42\
+\x1c\x69\xa3\x24\x81\x45\xb7\x56\x9a\x77\x98\x8e\x0b\x83\xc5\x5d\
+\x78\xc9\xb1\x75\xe9\xd6\x7d\x50\xa9\xad\xf7\x28\x40\x68\xba\x01\
+\x88\x8f\x95\x55\xcd\x11\xe6\x98\x9a\xe7\xb3\xaa\x8f\xd6\xb6\x30\
+\x89\x34\xa6\xc2\x30\x8b\x61\x83\x8c\xc0\xcc\xde\x34\x7b\x82\x5b\
+\x79\xb4\x91\x81\xe0\x88\x32\xcd\x0d\x7f\x11\xbf\xb4\xb5\x00\xb1\
+\x5b\x8e\x7f\x9a\xfc\xd3\xd4\xf9\x27\x44\x11\x98\x89\x2a\xff\xa4\
+\xba\xe3\xee\xa9\x4d\x3f\xfb\x90\x7d\xdf\x37\xb7\x21\xf9\x37\x9c\
+\x71\x35\x34\x46\xc3\x3c\x35\x42\x3a\xe0\x73\x08\x13\x4c\xb3\x6d\
+\x1e\x86\xb9\xfc\x7b\x6e\x6b\xff\x14\xb3\xd3\x2e\xd2\x49\x3b\x27\
+\x81\x61\x8e\xec\x82\x90\x5c\x99\xde\xce\x1c\xa5\xb4\x46\xc7\xcb\
+\xb1\x5d\xca\x52\x5a\xeb\x17\x71\x5c\xd8\xa3\xef\xf1\x39\x79\x70\
+\x5f\xaf\x6e\xde\x4f\xa3\x71\xb1\xff\x1a\xba\x4e\x83\x2c\x48\xef\
+\x56\xf0\xab\xe4\x91\xc4\xb9\x9b\x85\xdf\x82\x31\xc7\xc0\xf4\xf2\
+\xd4\x56\x81\x90\xd2\xa9\x17\x2d\x4b\x16\xc5\x5a\x5d\x55\x64\xd9\
+\x2f\x37\xd4\x8e\x09\x15\xbf\x9c\x45\x41\x0e\x72\x70\xed\xa5\xc2\
+\xf8\x66\x6c\x3b\x5a\x24\xa9\xdf\x2a\x68\x2d\x42\x3d\x72\xc3\xb6\
+\xb8\xde\xb5\x37\x0d\xa3\x87\xf1\x27\x2f\xce\xda\x7b\xcd\x34\x02\
+\xf1\xb5\xb6\x9a\x81\x91\x07\xa9\x52\xc3\x5a\x92\xb4\x52\xe0\x58\
+\xad\x26\x50\xbd\x8d\xdb\x0e\xbe\x1c\x97\xdd\x71\x2e\x7e\x19\x5c\
+\x9e\xe7\x50\x10\x57\x94\x0d\xda\x34\xb1\x22\xb2\x2d\x06\xab\xda\
+\xa2\x7b\xdb\x00\xfa\xa7\x8d\xf2\xae\xf1\x6d\x19\x61\x87\xf4\x49\
+\x2d\xfd\x52\xd6\x57\x49\xe4\x9f\xb9\x95\xda\xdd\x25\xe5\x2c\x98\
+\x84\xd7\xe1\xc4\xcb\xc3\x24\x2e\xa4\xe3\xfc\x0d\xc8\x06\x97\x5f\
+\x3e\xbe\xff\xfc\xe1\x7c\x54\x0c\xeb\x12\x7e\x81\xfb\x13\x80\x83\
+\x4b\x30\x66\x88\xc8\xd6\x96\x10\x42\x30\x78\x39\xad\xba\xf1\xd0\
+\x88\xce\x1f\x41\x44\x45\xd2\xd8\xc5\x35\xf5\xf2\x34\xbc\xb7\x9b\
+\x8a\x21\x3e\x1e\x62\xfb\x7d\xf7\x2a\xe4\x34\xe6\xf6\x16\x66\xb6\
+\xb0\xb3\x73\xf0\x7c\xf8\xc7\xc7\x7f\x7e\xf8\xdc\x89\x9e\xef\x0e\
+\x6f\x0e\xb3\x31\x6d\xcd\x97\x12\xc4\xa8\x64\x94\x2f\xd7\x24\x29\
+\x04\xbd\x36\xf8\x55\x90\x41\x13\x5e\xec\x14\x23\x0c\xd9\xe3\xce\
+\x8d\x62\x7d\xa0\xb3\xd7\x40\x47\x41\x16\x42\x85\x54\xd2\x46\xe5\
+\xc2\xee\xec\x76\x5c\x30\x8b\xca\xee\x13\x7f\x24\xce\x39\x52\x9f\
+\x2f\xf5\x77\xe7\x20\x7b\xcb\x42\x0e\x90\x77\x19\x69\xa8\x5d\xc3\
+\x7a\x69\x64\xf7\xea\x35\x93\xca\xec\xda\x07\x57\x2e\x06\x5e\x3a\
+\x59\xf7\x6b\xfd\xc4\xdc\x72\xd7\xb6\x30\x7f\x44\x74\x04\x4a\xc5\
+\x73\x62\x1a\x49\x48\x44\x98\xec\xa8\x06\xe7\x04\x2a\xe7\x44\x6a\
+\xd9\x51\x9d\xda\x70\xc8\xde\x22\xb2\x06\xb9\xa3\xfa\xa1\xab\xba\
+\x8e\x97\x01\x31\xd2\x0c\xeb\xee\x1d\xcf\xa9\x89\x87\xf5\x91\x83\
+\x1d\x02\x5f\x97\x21\xb0\xdf\xd4\x9a\x91\x47\xa8\x1a\x44\xdf\xba\
+\xfc\xfb\xea\xb9\x21\x02\x19\x0a\x57\x4c\xd8\xb5\x58\x18\x00\x35\
+\x4a\x6c\xdb\xb8\xdd\xc3\xee\xb5\xb0\x6b\x2c\x30\x9c\x3c\xf0\x14\
+\x52\xd2\x3e\x9e\xc8\x0b\xe0\x51\x8e\x59\x0f\xbc\xfd\x01\xaf\xb7\
+\x78\x2b\x8b\x07\x61\x98\x20\x8c\x2c\x81\xc7\x25\x0c\xa1\x07\xde\
+\xde\x80\xd7\x85\xac\x13\x05\x9e\x0b\x4d\x95\x04\x0f\x2b\x21\x66\
+\x84\x8c\x8d\x51\xbc\xf5\x21\xa9\x1e\x79\xaf\xf7\xb5\xbd\xcd\x5b\
+\xd9\x3c\x01\x3c\x73\x4e\x54\x81\x3c\x48\x51\x14\xeb\x91\xb7\x37\
+\xe4\x99\x1e\x78\x15\xf0\xa8\x41\x90\x5d\x28\xbb\x1d\x12\x80\xc7\
+\x21\xe0\x33\x3d\xf0\xf6\x17\xe5\xb1\x1e\x79\x35\xf2\x34\x32\x4c\
+\x19\xad\x87\xda\xd8\x5c\x43\xf5\x26\x6f\x9f\x61\x5e\x9f\xd9\x76\
+\x22\x8f\x22\x46\x49\x0f\xbc\xfd\x01\xaf\xb7\x78\x4d\xdc\x69\xae\
+\xad\xaf\xd5\xba\xb7\x78\xfb\x06\x5e\xc7\xad\xd5\x9f\x09\x78\x13\
+\x07\x0f\x31\x32\x9c\x70\xce\x1c\x17\x03\x1c\x18\x31\x15\xb8\xa0\
+\xa4\x3a\x6a\x14\x95\xe4\x14\x90\x56\x55\xd3\x61\xd5\xb4\x59\x54\
+\x37\xc1\xc3\xba\x91\x53\x5d\xa2\xa6\x73\x36\x1a\x58\xa2\xe5\x88\
+\x56\x88\x87\xc3\xf2\x02\xeb\x23\xa2\x4f\xae\x20\x72\x84\x19\xa6\
+\x92\x15\x78\xd7\x02\x90\xdf\xe3\x7d\x6f\x78\x57\x3d\xde\x7f\x34\
+\xde\x19\x80\x9c\x48\x43\x86\x46\x4a\xc4\xa9\xe6\xfd\x8a\xf9\x1e\
+\x97\x8f\x7a\xc0\xff\x68\xc0\x1b\x86\x14\x23\xf6\xd6\xa4\x21\x7d\
+\x3c\xb3\xef\x0c\xee\x27\x8f\xa4\x4f\x00\xef\x84\x0b\xc4\x8d\x22\
+\xba\x13\xf0\x7f\xe6\xbd\x8d\x8a\x20\xad\x05\xc7\x6b\xaf\xbb\x12\
+\xf6\x1d\x41\xb8\xbd\x9b\xa6\xde\xdb\xd8\xb1\xe2\xb0\xdb\xdd\xae\
+\x8d\x3d\xd8\x5b\x06\xb9\x65\x98\xbb\xdf\xb3\x48\x4e\x6e\xb7\x6b\
+\x37\x22\x84\x2a\x5f\x9d\xd5\x8d\x08\x97\xee\x1f\x13\x2e\x7f\x1e\
+\x2a\x36\x86\xba\x7b\x54\xd0\x93\x43\x05\x51\x48\x2a\xc2\x74\xfb\
+\x15\x9e\xc6\x3e\x09\xce\x8c\xda\x86\x8a\x0e\xcf\xb6\x73\x54\xb0\
+\x36\x2a\x36\x07\xba\x65\xa8\xbb\xdf\x1c\x7f\x7a\xa8\x10\xf6\x65\
+\x54\x1c\xa2\x84\x97\xa1\xe2\x30\xb8\x68\x6c\xbd\xd9\x32\xd8\x43\
+\x21\xe3\x8f\xd3\x43\x06\x4c\x43\x6d\x9f\x27\x68\x3f\x33\x81\x39\
+\x64\xd2\x9c\x3e\x82\x8c\x43\xf8\x11\xb6\xfe\x4c\xc4\xe6\x60\xb7\
+\x0c\x77\xf7\x36\xe3\x04\xe3\x0b\x48\x31\x08\xe3\x86\xbe\x10\x19\
+\xac\xeb\xee\xfe\x3e\xac\xc6\xba\xdd\xd8\x1c\xf0\xa1\xd0\xf1\x47\
+\x37\x3a\x0e\xf9\x30\xf0\x46\x06\xdd\x95\x66\x3f\xf6\xb4\x8c\x7d\
+\x6f\xbb\x56\x42\xaa\xa1\x7d\x2c\x98\x49\xa5\xb9\x63\x5f\xfd\xae\
+\xb4\xe1\x5d\x0f\x64\x40\xee\xb9\x2a\x7c\x62\x93\xfe\xa3\x39\x1d\
+\x1e\x36\xfe\x2d\x43\xff\x7a\xf8\xbd\xbe\x1e\x7e\xf3\x9d\x7a\xbb\
+\x78\x41\xbc\x16\x48\x68\xa6\xea\x7f\x91\x33\xba\xb9\x7c\x73\x6e\
+\xff\x13\xc9\xe5\x9b\xff\x03\x51\x32\xf5\xb2\
+\x00\x00\x09\x6c\
+\x00\
+\x00\x64\xd6\x78\x9c\xed\x5d\x6d\x77\x9b\xb8\x12\xfe\xde\x5f\xa1\
+\xe3\xcf\xdd\xf8\x2d\x71\xe3\x1c\xc7\x7b\xda\xa6\x69\x73\x4f\x7b\
+\x9b\x6e\x72\xbb\x1f\xf7\xc8\x30\x36\xda\x02\x62\x85\x88\xed\xfd\
+\xf5\x77\x24\xb0\x31\x18\x43\x0c\x76\x88\x13\xe7\xec\x9e\x02\x92\
+\x67\x46\xe2\x99\xd1\x33\x83\x8c\x07\xbf\xcf\x1c\x9b\x3c\x80\xf0\
+\x19\x77\x2f\x1b\xed\x93\x56\x83\x80\x6b\x70\x93\xb9\x93\xcb\xc6\
+\xff\xee\xaf\x7f\x3b\x6f\xfc\x3e\x7c\x33\x08\x58\xdc\xe9\x14\x3b\
+\x0d\xdf\x90\x81\x61\x53\xdf\x1f\x7e\x0e\xd8\xc5\xc5\x15\xa3\x36\
+\x9f\xe0\xbf\xf6\xe4\x0e\xa4\xc4\x0f\xfb\xef\x85\x61\x0d\x9a\x61\
+\x1f\xec\x3c\x65\xe6\x04\x24\xd1\xe7\x97\x8d\x1f\x7f\xea\xd3\x06\
+\x71\xa9\x03\x97\x8d\x3c\x19\x4a\x15\x19\x78\x82\x7b\x20\xe4\x3c\
+\xfa\xc0\x04\xb8\x03\x52\xcc\x75\x23\x19\x08\x30\xa4\x3e\x22\x83\
+\xd9\xb0\x35\x68\xce\xa2\x93\xb9\x3a\x99\x47\x27\x68\x81\xb4\x86\
+\x67\xbd\xf6\xa0\x19\x1e\x86\x97\x2d\x60\x13\x4b\x0e\x7b\xa7\xdd\
+\x41\x33\x3a\xd6\x32\x9b\x0b\xa1\x83\xe6\x42\x79\x96\x25\x53\xe6\
+\x9a\x7c\x7a\xcf\xa4\x0d\x91\x31\xbe\x14\x68\xfb\xf0\x33\xb8\x20\
+\xa8\x4d\xfc\x68\x2c\x83\x66\xd4\xb0\x2e\xd2\xa6\x73\x1e\xc4\x73\
+\xf3\xf3\x03\x9f\x7d\xd5\x97\x22\x89\x29\x95\xbe\x47\x0d\x14\xd4\
+\x88\x06\xe0\x06\xce\x08\xc4\xb0\x37\x68\x46\x47\xa1\xf9\xab\x1a\
+\xd6\x44\x38\x54\x4c\x98\x9b\x92\xd0\xcf\x95\xc0\x24\x38\xf1\x4c\
+\xae\xde\xcb\xcf\x82\x07\x1e\xda\xbc\xb8\x9b\x93\xc5\x79\xd8\x7d\
+\x4d\xb9\x8c\x27\x6b\x65\xbe\xae\x60\x4c\x03\x5b\x66\xce\xd7\xba\
+\x39\xb9\xb3\x16\xe9\x41\xc0\x4a\x66\x50\x3b\xbc\xfa\x57\x27\x56\
+\x19\x8f\x25\x43\xd0\x97\x35\x41\x16\x17\xec\x5f\xee\xca\x0c\x51\
+\x69\x61\xeb\xb3\xf3\x95\x8e\xc0\x5e\x48\xb2\xd5\x49\xe2\xe3\x19\
+\xd3\x03\x33\x99\xe8\xb0\x9c\xa2\x3f\xa9\x6d\xa7\xa6\x25\x7b\x6e\
+\xc2\x8b\xa1\x21\x2b\x96\x36\x93\xa6\xae\x59\xae\x80\x05\x62\x6d\
+\xd0\x77\xfa\x72\xae\xcd\xd8\x17\xb0\xab\xc4\xf8\x90\x32\x1d\x10\
+\x52\xc3\x1f\xf2\xe2\xe2\xcb\x52\xde\xa0\xa9\x2f\x16\x0d\x60\x1d\
+\xf7\xec\x5f\xf8\xc2\x5c\xbc\x2d\xbe\x34\x11\x26\x97\x8d\x56\x7a\
+\x9e\xb0\x47\xe2\xca\xc2\xeb\x4f\x5b\x09\xa7\x5f\xb6\x46\x0e\xdf\
+\x69\x25\x7c\x3f\x36\x2b\x2d\x70\xc3\x4c\x87\x13\xb7\xc5\x4c\x17\
+\x63\xa4\xdd\x2a\x0b\x12\x35\xcc\x8b\x7d\xc2\x24\x69\xbc\x8e\xdd\
+\xb7\x02\xc6\x57\x3c\x18\xd9\x70\xe7\x31\x77\x35\x16\xa8\x56\x0f\
+\x5b\x4d\xdd\xea\x63\xeb\x88\xcf\x0a\x3c\xc0\xa1\x33\xe6\x04\x4e\
+\x6a\x7c\xa1\x84\x61\x1f\xff\x4e\xfa\xe7\xfd\xe5\xdf\xbb\xf3\xce\
+\xa0\x19\x35\x6e\x8d\xa9\x07\x6a\x07\x90\xad\xa8\xd3\x6a\x9d\xb4\
+\x92\x7f\xe5\xf5\xa8\x29\xf8\xe4\xaa\x15\x6b\x23\x78\x8d\x15\x2f\
+\xd7\x37\x11\x57\xcf\x47\xde\xc4\x4c\x75\xb7\x54\x5a\xc5\xda\xbe\
+\x71\xb3\x19\x2d\xd5\x4f\x85\x98\x2c\xb8\x9f\x97\x44\xfb\x17\xed\
+\xb5\xcf\x1d\xee\xdd\x03\x80\x7b\xb7\x55\x23\xde\xc3\xdb\xf8\x9a\
+\x00\xdf\x2f\x09\xf8\x8f\xdc\xe6\xa2\x0e\xbc\x6b\xc5\x1f\x02\x29\
+\x71\x89\x4f\xa3\xdd\x50\x6d\xa3\xb0\x2d\x77\x58\x9c\xdb\xf7\xcc\
+\xcb\x1e\xd9\xbd\xc5\x7c\x82\xff\x49\x0b\x88\x19\x91\x41\x2d\x98\
+\x8c\xf1\x7f\x17\xa6\x44\x21\x85\xf0\xd1\xdf\x48\xcc\xd3\xf4\x70\
+\x0b\xa8\x68\x99\x69\x70\xa8\x6b\x29\x6e\x20\xc0\x1c\x76\xda\xa7\
+\x2a\x11\x30\x53\x4d\x13\x01\xe0\x86\x8d\xe1\x61\xb2\x79\x84\x4e\
+\x16\xb6\xea\xa3\x24\xa5\x58\x53\xb5\x17\x87\xd2\x77\xeb\x50\xfd\
+\x69\xd0\x0c\x29\xf9\x92\xaf\x27\x9a\xab\xb2\xf7\x4a\xdc\xbd\xa4\
+\xd7\xde\x49\x11\x18\x32\x10\x50\x1b\x7d\x2f\xa0\x5c\x47\x02\xbf\
+\x73\x02\x5f\x36\xcb\xfb\x0a\xee\xe4\xf9\x33\xf8\xd3\x03\xa0\x34\
+\xed\x9a\x18\xcd\xd2\xdb\xc3\x5b\x79\xa8\x61\xb8\x14\xea\xf3\xa9\
+\xee\x81\xa7\xad\x67\x47\xd0\x17\x83\xfe\xd5\xe5\xae\xed\xfc\x58\
+\x78\xe8\xc9\x6b\xef\x30\x40\x5f\x33\xea\x5f\x5f\x06\xdb\x6e\xbf\
+\xd0\x14\xb6\xa8\x3e\x5f\x2d\x89\x5d\x22\xe6\x69\x33\xd9\xf6\x59\
+\x6b\x73\x26\xdb\xee\xf5\x73\x32\xd9\xf6\x79\xaf\xa6\x4c\x76\x39\
+\x57\xc7\x74\x76\xf3\xc3\xa8\xd5\xd5\xa7\x8c\x1b\xe7\xc7\xf7\xcd\
+\x6e\xfc\x07\x8c\xa8\xa8\x2f\x9f\xcd\xe7\x62\xc7\x7c\x76\xe7\xf9\
+\x6c\xd9\x12\xfd\x15\xc3\x0e\x12\xf6\x0a\x95\x1d\xd0\x9c\xfc\xe1\
+\x15\xd1\x9c\x93\x7e\x7f\x95\x7b\xf4\xf7\xc2\x72\x7a\xb5\x50\x1c\
+\xed\xe7\xf1\x4d\x3c\xcc\x18\x5c\x0a\xf1\x65\x6b\xf4\xdf\xc7\x63\
+\x1c\xdf\x33\xc7\xfb\xbb\xe7\x8f\xf7\x6e\x3d\x9c\x5e\x03\x7e\x71\
+\x0f\x5f\x11\xdc\xf3\x11\x71\xc0\x7c\x3e\x9f\x2a\x6c\xc5\xa2\xcf\
+\xcf\x72\x58\x74\xfb\x5d\x0e\x8b\xee\xb7\x6a\x22\xd1\x1a\xce\x47\
+\x02\xbd\x99\x40\xf7\xaa\x11\xe8\x7c\x74\xe5\x55\x3c\xd5\xce\xc1\
+\xfa\x08\x74\x7e\xd5\xea\x48\xa0\x77\x4d\xa0\x3b\xa5\xb7\xfd\x1d\
+\x42\x69\xbc\x68\xbf\x5a\x7e\xd1\x24\x2e\x96\xe8\x7b\xba\x2c\x96\
+\x84\xbb\x6b\x2b\x94\x48\x0a\xcb\x93\x09\x26\x73\xd6\xe9\xee\x87\
+\xc9\xd4\x56\x9f\x0c\x83\xcc\xab\x2b\xc9\x77\xca\xd6\x26\x0f\xa3\
+\x24\x5f\x90\x98\x3c\xd6\xd7\xc2\x00\x79\x74\xb6\xdd\x3a\xdb\xeb\
+\x7b\x12\xd0\x29\xbb\x57\xf9\xde\x62\xc6\x2f\x17\x7c\xff\xb9\x3b\
+\x5c\xd1\xb3\x8e\xc7\x7a\x9c\x5c\x0c\xf8\x25\x3a\x5d\x8d\x3e\xb7\
+\x04\xd2\xa1\xba\xdd\x9e\x53\x9c\x76\xee\x43\x82\xfc\x3c\x21\xff\
+\xf9\xc0\x31\x4f\xd8\x75\x9e\x50\xf6\x79\xcc\xb5\xc0\x0e\xe1\xc3\
+\xc6\xe7\x5c\x8c\xc9\xdf\x20\xb4\x4d\x31\xa6\xdb\xdd\x5c\x8b\x39\
+\x3d\xcb\x29\xc5\xf4\xea\x7a\x9e\x19\x06\xab\x83\xae\xc5\x94\xaa\
+\x2c\x96\x2d\x91\x7c\x56\x32\x9f\x3f\xa4\xf3\x2b\x29\xdb\x40\xba\
+\x9f\x03\xe9\xf6\x79\x37\x6f\xbb\x79\xab\x5b\x2b\xa8\xf5\xad\x3a\
+\x68\x64\xef\x7b\x09\x6e\xe5\x2d\xc1\x9b\x10\x68\x81\xf1\x2b\x8b\
+\x9e\x1a\xaa\xa1\xf8\xb1\x65\x2e\x31\xbd\x19\x2b\x3e\xaa\xb7\xab\
+\x68\x71\x60\xbe\x25\x53\x0b\x5c\xd2\x21\x3e\x73\x98\x4d\x05\x99\
+\x52\xdb\xf6\x09\x15\x40\x46\x80\x1f\x41\x57\x74\x5d\x30\xa4\xea\
+\x29\x71\xd9\x14\x24\x70\x4d\x10\xf6\x5c\xb5\xf9\xbf\x40\xa2\x1c\
+\x1f\x29\xad\x6d\x63\x7f\xf2\x37\x67\x2e\x98\x04\xd7\x6d\x4e\xb8\
+\x0b\x6f\x09\x75\x4d\xbd\x31\x46\x4e\x79\x24\x39\xea\x6a\x70\x5c\
+\xb9\xb0\x4b\x79\x16\xbc\x39\x86\xfc\x07\xad\x88\xb4\x8d\xa8\x0f\
+\x2b\x66\xaa\xa1\x7a\xdc\xf7\x19\x72\xd4\xf2\x9a\xb7\xf0\x14\x35\
+\x21\xea\xcb\x19\x77\x91\x09\x2f\xd2\x53\x92\x8d\x09\x59\x2b\xfd\
+\x4a\x7c\x9d\x3c\xde\x96\xf5\xb8\x2f\x94\xdf\x5c\x7f\x24\xcc\xf1\
+\xb8\x48\x3f\x89\xad\xfc\x55\xf2\xc6\xce\x82\x42\x7f\x2f\x31\xa1\
+\x60\xb9\xcd\x8b\x09\x5a\x78\x18\x16\xd0\x6b\x4d\xe6\x7b\x38\x28\
+\x4c\x5f\x47\xc1\x84\x38\x98\x5f\xd1\x89\xf6\x1c\x66\x43\x34\xb7\
+\xca\xf3\xd5\x4c\x8f\xf1\x52\x85\x2c\x36\xe7\xab\x33\x16\x9f\xa6\
+\x0c\x78\x12\x67\x65\x63\xe3\x4a\x69\x7d\x91\x4e\x5a\x1d\xb9\x67\
+\xfb\x40\xee\x6e\xd7\xb2\x25\x2c\xc3\x65\x86\xda\x53\x3a\xf7\xd5\
+\xc2\x14\x22\x17\x97\xa6\x29\x93\x96\x5e\x91\x70\x8d\x02\xe1\x52\
+\x9b\x78\x73\x69\x71\x5c\x16\xa8\xf0\x41\xbc\x25\xf0\x80\x6b\x04\
+\x1b\x93\x9b\xb1\xf1\xdd\x03\xf7\xce\x02\x14\xa4\xd4\xb8\x3e\x4e\
+\x85\x0d\xe6\x3e\x10\x7f\xcd\x85\x01\x49\x4b\x9e\x04\xf1\x63\xa5\
+\x17\x47\x7a\xab\x35\xdf\x46\x8a\x8f\xe8\xcf\x40\x7f\x77\x2f\x71\
+\xbb\xc2\xbe\xe3\x8f\x02\xa8\x44\xa4\xeb\xc5\x32\xac\x2e\x02\x35\
+\x2c\xa2\xa6\x35\xda\x68\x4c\xe4\xdc\xdb\x0b\xc3\xd2\x0b\x36\x52\
+\x43\xf4\x2a\x17\x5c\x89\x2e\x36\xd7\xba\x9e\x26\x4e\x1b\x7a\xe4\
+\x08\x5b\x6d\xc6\xcb\xe4\x54\x3b\xc8\x3e\xda\x7b\x41\x6c\x41\xad\
+\x6a\xdb\x88\x8d\x9f\x76\xb1\x2d\x4e\x21\x96\x91\x9a\xfa\xc4\x0f\
+\x46\x52\x50\x43\x55\x1a\x7d\xec\x8a\x61\x5b\x4c\x19\x12\x7a\xc5\
+\xed\x89\x6f\x51\x2f\x0e\xf4\x08\x09\x73\x4e\x2c\xfa\x00\x51\x9a\
+\xb2\x14\xbc\x10\xb2\x9f\xc8\x7d\x07\x18\xae\x11\x8d\x4b\x7d\x4f\
+\xc5\x54\x16\x8a\xbf\x2f\xf5\x1e\xbd\x20\xcb\x0b\xb6\x78\x71\xd3\
+\x16\x5e\x50\xb0\x71\x6e\x6b\x2f\x08\xc3\xb5\xfa\x74\xec\x09\x4a\
+\x21\x9b\xad\x72\x16\x45\x6f\x6e\xae\x48\xf8\xca\xae\x7d\xa0\xf9\
+\x56\xab\x5c\xda\x81\x6a\x77\xa0\x6e\x3b\x5c\x87\x26\xfc\x57\xeb\
+\x3c\x82\x7a\x03\xa8\xb7\x20\x23\x59\xd5\xd9\xb2\xdf\x5e\xfc\x34\
+\x33\xec\xc0\x04\x62\x33\x5f\x5e\x90\x1a\xca\xb3\x5f\x99\x0b\x9f\
+\x4c\x26\xd7\x1c\xd3\xc6\x06\x50\x0d\xa5\xdd\xf2\xbd\xa2\x33\x0e\
+\xfd\xcd\x8f\xe2\xaa\xa9\x47\x49\xb8\xce\x04\x08\x92\x1c\x26\x19\
+\xe8\x14\x19\xa2\x59\x18\x0b\xee\x64\x97\x1b\x36\x4f\xc5\xe3\x27\
+\xbb\x59\x02\xf2\x36\x35\xc0\xe2\xb6\x09\xe2\x7e\xe3\x3d\xc4\xd1\
+\xe8\xa7\x7c\x6f\xf1\xe0\x43\xc0\x6c\xf5\xda\xc7\x4f\x36\x38\x38\
+\xc2\x5b\xc1\x67\x73\x75\xfd\xda\xe6\xd3\x7b\x10\x0e\xc3\xfc\x48\
+\x9f\x07\xc2\x65\xbe\x15\xf7\x7c\xb2\x45\xee\x17\xf3\x8e\x31\x20\
+\x3b\x06\x54\xdc\xc3\x5a\x76\xeb\xf7\x8d\x06\xbc\x62\x67\xb8\x46\
+\x58\x50\xcb\x3e\x8e\xc2\x30\x50\x25\xaf\xca\x09\x04\xb8\xfc\xea\
+\x2c\x07\x17\x63\x2a\x89\x13\xe0\xe5\x14\x63\x0d\xe7\xa4\x82\x7b\
+\x3c\xd2\x85\x6b\xf3\xc8\xf7\xfe\x37\x1c\xe2\x8b\xf4\xc9\xfd\x95\
+\xb1\x97\xcb\xf5\xe3\xca\xd8\x9d\x2b\x22\x40\x3d\x65\xc1\x93\x9d\
+\xbf\x13\x35\xa6\x0e\x95\x43\xd0\xbb\xbd\x50\xeb\x02\x72\x92\xe7\
+\xba\x2b\x85\x63\xe6\x8e\xb9\x70\xf4\x26\x15\x62\x06\xaa\x95\xe4\
+\x4c\xeb\x16\xf8\x2d\x28\x5b\x87\x1a\x40\xd4\x51\xbf\x56\x06\xfc\
+\xfc\xe3\xdb\xb1\x86\xbd\x19\xb2\xe7\xd5\x16\xcd\xb2\xaf\xba\xf9\
+\x88\x56\x52\x01\xb8\x40\xa8\x15\x6a\x65\x4f\xa0\x50\x08\xad\xef\
+\x0b\x21\xf9\xe3\x39\x6e\xf4\xaa\xb2\xd1\xab\xcc\xae\xd3\x0a\xa1\
+\xcf\x03\x83\x8d\x55\x86\xa2\xa2\x90\x43\xdd\x39\x91\xcc\x81\xf0\
+\xb5\x14\x0f\x0c\xa6\x9a\xc7\x24\xb0\xb7\xe0\x2f\xd4\xf3\x6c\x86\
+\xcd\x98\xda\x18\x88\x53\xd5\xab\x42\xbc\xca\x7b\xbd\x6e\x2d\xdb\
+\x45\xd1\xf7\x14\x5f\x7c\x5d\xfb\x45\x13\x6e\xbf\x60\x00\x6b\x6f\
+\xf5\x7e\xa4\xc3\xc7\xee\xfe\x33\x92\x94\x76\xf6\xac\x11\x6d\xe9\
+\xe8\x6b\x6e\x1e\x39\x79\x27\xcb\xc9\x17\x2e\x7e\x9a\xe5\xe2\x69\
+\x07\xcf\x30\x2e\xed\xdc\xdb\xf3\xc0\x95\x4e\x2b\x3d\xa2\x15\x69\
+\xb1\xf7\x3b\x7a\x6d\xff\x65\xa3\xd7\x20\xe1\xfb\xf7\x2f\x1b\xed\
+\x76\x43\xa5\xf6\x03\x8f\xcd\x1c\xea\x8d\x03\x57\x97\xb7\x87\xff\
+\xdc\xea\xf3\x6b\xc1\x9d\x6f\xe8\xb7\x77\x3c\x10\x06\xa0\xe5\xc9\
+\x5e\xea\x27\x18\xd0\x6b\xb9\x13\x6a\xf4\xb5\x25\xab\x57\x42\x2b\
+\x57\x7e\xa6\x61\x65\x43\x5b\xfc\xd3\x0c\xea\x96\xce\x24\x32\x15\
+\x7f\xf8\xe3\x36\xf0\xad\x45\xfb\xe2\xe2\x9b\x70\x8a\x29\x32\x19\
+\x25\xa5\x19\xfe\x74\x83\x7f\x62\xa9\xd9\xd6\x57\xf5\x0c\xa4\x15\
+\xe7\x5b\x92\xda\x5e\x97\x69\xcd\xba\xc9\x9b\x4c\x52\xd2\x76\x67\
+\x56\x44\x4a\xb3\x67\x28\x6e\x7d\x12\x63\x16\xc9\x6d\xb6\x31\x71\
+\xeb\x93\x18\x93\x58\xbb\xb2\x2d\x4a\x75\xa9\x6e\x56\xf2\x82\xfe\
+\x29\x11\x01\xbe\x76\x08\x5f\xbb\x4e\xb4\x25\x4d\x3d\x15\xc2\xf3\
+\x41\x33\x60\xc3\x37\xff\x07\x0b\x4f\x8f\x28\
+\x00\x00\x09\xf8\
+\x00\
+\x00\x54\x69\x78\x9c\xed\x5c\xeb\x6f\xdb\xc8\x11\xff\xee\xbf\x82\
+\x55\x70\xc0\x05\x15\x57\xfb\x7e\xd0\x8f\x03\xda\xdc\x35\x01\x0a\
+\x5c\xd1\xa4\xb8\xcf\xb4\xb8\xb6\xd9\x50\xa4\x40\x52\x96\x9c\xbf\
+\xbe\xb3\x94\x48\x91\x12\xe5\xc4\x89\x65\x57\x27\x49\x08\x44\xee\
+\xcc\x2e\x77\x66\x7e\xf3\x58\xee\xc6\x17\xbf\x2c\x26\x89\x77\x6f\
+\xf3\x22\xce\xd2\xcb\x01\x41\x78\xe0\xd9\x74\x9c\x45\x71\x7a\x7b\
+\x39\xf8\xcf\xa7\xdf\x7c\x3d\xf0\x8a\x32\x4c\xa3\x30\xc9\x52\x7b\
+\x39\x48\xb3\xc1\x2f\x57\x67\x17\x7f\xf1\x7d\xef\xef\xb9\x0d\x4b\
+\x1b\x79\xf3\xb8\xbc\xf3\x3e\xa4\x9f\x8b\x71\x38\xb5\xde\xcf\x77\
+\x65\x39\x0d\x46\xa3\xf9\x7c\x8e\xe2\x55\x23\xca\xf2\xdb\xd1\x5b\
+\xcf\xf7\xaf\xce\xce\x2e\x8a\xfb\xdb\x33\xcf\xf3\xe0\xb9\x69\x11\
+\x44\xe3\xcb\xc1\xaa\xc3\x74\x96\x27\x15\x63\x34\x1e\xd9\xc4\x4e\
+\x6c\x5a\x16\x23\x82\xc8\x68\xb0\x66\x1f\xaf\xd9\xc7\xee\xe9\xf1\
+\xbd\x1d\x67\x93\x49\x96\x16\x55\xcf\xb4\x78\xd3\x62\xce\xa3\x9b\
+\x86\xdb\xcd\x66\xce\x2a\x26\x62\x8c\x19\x61\x3a\xa2\xd4\x07\x0e\
+\xbf\x78\x48\xcb\x70\xe1\x77\xbb\xc2\x1c\xfb\xba\x52\x8c\xf1\x08\
+\x68\x6b\xce\x6f\xe3\x0a\x0a\x50\xe8\x14\xfe\x35\xec\x75\x03\x2a\
+\xb2\x59\x3e\xb6\x37\xd0\xcf\xa2\xd4\x96\xa3\x77\x9f\xde\x35\x44\
+\x1f\xa3\xa8\x8c\x5a\xc3\xd4\xfa\xec\x3c\xb5\xa3\xe4\x34\x9c\xd8\
+\x62\x1a\x8e\x6d\x31\xaa\xdb\xab\xfe\xf3\x38\x2a\xef\x2e\x07\x30\
+\xb5\xea\xf6\xce\xc6\xb7\x77\x25\xd8\x9b\x2e\xef\xe3\xe8\x72\x00\
+\x33\xa6\xd5\x4d\x0b\x0d\x64\x49\x5d\x8d\x14\x34\x14\x8c\xb8\x46\
+\xdc\xcb\x8d\x61\xa6\x62\xa9\xa7\x1c\x44\xd9\xd8\xcd\xe1\x72\xf0\
+\xaf\x30\x87\xdf\x12\x7a\xbc\xcb\xb2\xfc\x63\x3c\x99\x26\x16\x39\
+\xad\x5c\x01\xff\x45\x64\x6f\x0a\xd7\x6f\xf9\x68\x77\xc7\x07\xde\
+\xa8\x22\x35\x43\xb9\x71\xa2\xfb\xd8\xce\xd7\x8c\xd7\x61\xb1\x94\
+\xc7\xf3\xa6\xe1\x2d\xd8\x3e\xc9\xf2\xcb\xc1\x1b\x3a\x76\xdf\x15\
+\xe1\x3a\xcb\x23\x9b\xd7\x24\x59\x7d\x3a\xa4\x0c\xf4\x13\x97\x0f\
+\x4b\xb4\xaf\xc6\xae\x25\x74\xa3\x36\xf4\x5e\x6a\x71\x17\x46\xd9\
+\x1c\x54\xb9\x49\xfc\x92\x65\x13\x68\x46\x7a\x93\x30\x5e\x5c\x0e\
+\x14\x47\x94\x4b\x4e\xc8\x16\x11\x9e\x63\x0c\x32\x4c\x52\xbc\x45\
+\x04\x65\xce\x9c\x1f\xf8\xb3\x34\x2e\x01\x6b\xd3\xc5\x56\xf7\x59\
+\x9e\x3b\x86\x24\x7c\xb0\x20\x6e\xf5\x53\x0f\x53\xdc\x65\xf3\xdb\
+\xdc\xa9\xed\x26\x4c\x1a\xbd\x55\xad\xb3\x38\xb2\x30\x5e\x99\xcf\
+\xec\xe6\x88\x15\xcd\xbf\xbe\xce\x16\xfd\xf4\x79\x9c\x82\xfc\xfe\
+\x0a\x50\xc4\xd0\x2d\x2d\xad\x38\x1a\x8c\x61\xc1\x76\xb0\x2c\x7a\
+\x74\xbc\x22\xf5\xa9\x7f\x45\x9a\x84\x8b\x78\x12\x7f\xb1\x20\x18\
+\xa9\x41\x03\x48\x0b\xa3\xb0\x0c\xd7\x50\xa9\x5b\x54\x05\x38\x60\
+\x01\x67\x0f\xfe\xfd\xee\xb7\xe5\x1d\xdc\x8f\xc7\xc1\x1f\x59\xfe\
+\x79\x75\x0b\x1f\xc7\x10\x5e\x67\x33\x98\xf3\xe0\xaa\x69\xbe\x88\
+\xc6\x01\xb8\xe7\x24\x2c\xaf\xe2\x09\xd8\xdf\x79\xf6\x5f\xc1\x1d\
+\x2f\x46\x6b\x42\x87\xb9\x7c\x98\xda\xf5\xa0\xcb\x61\x73\xbb\xf4\
+\xf3\xde\x60\x17\x8d\x27\xb1\xeb\x34\xfa\x58\xc6\x49\xf2\xc1\x3d\
+\x64\x25\x56\x6b\xd0\xb8\x4c\xec\x55\xf5\xcc\xe5\x65\x2d\xc5\x68\
+\x25\xc6\x4a\xc8\x51\x4b\xca\x8b\x51\xad\x83\xea\xee\x76\x43\x9b\
+\x49\x78\x6d\x93\xcb\xc1\x3f\x1d\x64\xbc\x2d\xe8\xdd\xe6\xd9\x6c\
+\x3a\xc9\x22\xbb\x02\xd5\x60\xad\xd9\x0e\xc8\xca\x3c\x4c\x0b\xa7\
+\x06\x87\x16\xb8\x4c\x20\x25\xfc\x8c\x87\xbe\x61\x14\x01\xa6\x89\
+\x7e\xdb\xe8\xdf\x8e\xcb\x5a\xa6\xa2\x7c\x48\x60\xe4\xca\x49\x83\
+\x37\xb8\xfa\x9c\xdf\x80\xf4\xc1\x9b\x9b\xea\x53\xdd\xf8\x2b\x4f\
+\x0c\xc8\xf2\x36\x9f\x25\x36\xb0\xf7\x36\xcd\xa2\xe8\xbc\x28\xf3\
+\xec\xb3\x6d\x3a\x2f\x6f\x97\xb0\x0c\x68\x7d\x9b\xc4\xa9\x05\x71\
+\x82\xeb\x59\x59\xb6\xdb\xfe\x9b\xc5\x69\x00\x12\xa6\xf5\x38\x3e\
+\x98\xc0\xe6\x09\xe0\xaa\x0c\x78\xdd\xb6\x7e\xfc\xaa\x21\x0a\xc1\
+\xfb\xf3\x3c\x7c\x08\x52\x48\x86\xed\xd6\xec\xe6\xa6\xb0\x65\x80\
+\xcf\x27\x61\xfe\xd9\xe6\x4b\xfa\x7d\x5c\xc4\xd7\x71\xe2\x86\xa8\
+\x2e\x13\x7b\x1e\xc5\xc5\x14\xf4\x07\x91\xdc\x4d\xe3\x3c\x83\x88\
+\x7a\x93\x64\xf3\x86\x6e\xd3\x10\x7e\xfc\xeb\x70\xfc\xf9\xb6\x9a\
+\x5f\x10\x8e\x21\x06\xcc\x9c\x5a\x07\xb5\xf6\x9c\x11\x9c\x36\xa9\
+\xd1\xa2\x69\x5c\x39\xa4\x20\x2e\x96\x08\x42\x1b\x42\xed\x87\xca\
+\x20\x49\xb8\x96\xa4\xa1\x80\xfb\x11\x67\x26\xc1\xa4\x6e\x1a\x5d\
+\x3c\xe2\x04\x29\x68\xa3\x0d\x0c\x5f\xd4\x78\x08\x4b\xc9\xa9\x34\
+\xe6\x38\xac\xc8\x94\xd8\xb2\x22\xa7\x08\xf2\x81\xd0\x72\xdb\x8a\
+\x1c\x19\x69\xb8\xd1\x5d\x2b\x4a\x64\x84\x61\xa2\x6b\x45\x89\x18\
+\x0c\xfe\x74\x2b\x1a\xec\xbe\x9b\x56\x5c\xd9\xac\xad\xb3\xa5\xc1\
+\xc8\x74\xf1\xa2\x0a\xe3\x80\x6f\x7f\x4b\x65\x4c\x21\xa2\x00\x39\
+\xdb\xc0\x97\x48\x13\xcd\xb5\x91\x6d\x95\x51\xf0\x13\x6c\x04\xeb\
+\x00\xdf\x77\xc8\xc7\x8a\x29\xd3\xb4\xb6\xe2\x1b\x04\xc6\xc4\xfe\
+\x4c\x86\x3e\x79\xbb\x56\xe9\x34\x2c\xef\xbe\xae\xd2\x96\xd2\xfa\
+\x41\xcf\xbe\x09\xeb\x15\xbc\x0f\x11\xeb\x2e\x1f\x7b\x4e\xe5\x06\
+\x0b\x22\x86\x4e\xcd\x54\x6b\x46\x3c\xb0\x9a\xc4\x98\x98\x21\xf6\
+\x20\x69\x28\x84\xb9\x94\xa2\x63\x71\xa7\x60\x0e\x96\xf2\xd7\x71\
+\x6b\x5d\xfd\x64\x29\x68\xab\xcc\x72\x1f\xea\xa0\xfb\xb0\x9c\xe5\
+\xd6\x95\x0d\xaf\x11\xb5\xc8\x91\x04\x2b\x2d\xd9\xa6\xe7\x11\x58\
+\x0a\x30\x41\x35\xdf\x0e\x56\x1a\x19\xaa\x85\xe2\x1d\xcf\x53\x48\
+\x08\xc9\x95\xda\x4c\x39\x46\x6b\x22\x5f\xc7\x78\xc8\x40\x84\x50\
+\xd8\xe8\x23\xb1\xa2\x6a\x69\x7f\x6d\x45\x56\x19\x6b\xcb\x8a\x1c\
+\x69\x4a\x38\xf8\xeb\x86\x15\x9d\x0d\x05\x79\x1e\x2b\x1e\x40\xca\
+\xd9\x4a\x38\x90\x5e\xa5\xe0\x66\x4b\x5f\x84\x21\xc2\x88\xd1\xac\
+\xa3\x2f\xa8\xb3\x88\x16\xd4\xb4\xf5\x45\x30\xc4\x44\x49\x40\xe7\
+\xaf\x54\x68\x11\x89\xc9\xb1\x44\x2e\xc0\xbc\xcf\x7c\xe2\xeb\x2d\
+\x43\x22\x0a\xf5\x26\xeb\x2b\x99\x61\x35\x4f\x94\xc6\xb4\x6d\x49\
+\xa8\x98\x35\x26\x4c\x6c\xc4\x2f\x85\x38\x31\x84\x3d\x5a\x19\xd4\
+\xb6\x6b\xd9\x62\xe3\x76\x65\x1a\x0c\x6e\x64\x8c\x24\x92\x02\xd0\
+\x9f\x5c\x19\x34\xa6\xe8\xe6\x5f\x42\x28\xe2\x06\x63\x3a\x34\x4c\
+\x23\x41\x98\x36\x90\x74\xb5\x84\x52\x53\x51\xb2\x95\x74\x21\xd4\
+\x8b\xa7\xa7\xdc\x5d\x52\x77\x2a\xa0\x3e\x91\xc9\x73\x4a\x4a\x31\
+\x52\x98\x33\x02\x95\x06\x45\x54\x31\xad\x3d\x1f\xa4\x77\x51\x4c\
+\x0e\x71\x9f\xa8\xea\xe0\x45\xad\x82\x09\xa6\xcc\x7c\x55\xd4\x96\
+\x0b\xfc\x88\xb0\x5f\xab\x73\x7b\x45\x3f\x82\x3a\x17\xa2\x86\x81\
+\x5a\xc2\x68\xf0\x33\x05\x97\x4a\x83\x9b\x11\x58\xb7\x61\x08\x26\
+\xbd\x6e\xe6\xb3\x03\x45\x9f\x82\x45\x97\x76\xa5\x5f\x8f\xa3\x09\
+\xb5\x0b\x7e\x87\xea\x6b\xdf\x27\x2d\xfb\x53\xc8\x2b\x91\x52\x84\
+\xd1\x6f\x90\x57\xfb\xf4\x14\x60\xf6\x1a\x60\x08\x14\xdf\x46\x53\
+\xa5\x20\xe6\x83\x61\x28\x27\xc4\x93\xae\x64\x10\x58\xf4\x5b\xa5\
+\xfd\xbe\xe4\xb0\x30\x58\xbd\xa0\x94\x1c\xbb\xfc\x06\x55\x0b\xa6\
+\xb2\x8a\xa6\x15\x08\x4d\x3f\x00\xf1\xa1\x8a\xaa\x39\xc2\x1c\x53\
+\xf3\xed\xa2\xea\x83\x8d\x2d\x00\x61\xad\x40\x58\xea\x30\x6c\x90\
+\x11\x98\xb9\x37\x40\x5f\x91\x56\x1e\x6c\xa6\xe4\x02\x31\xa8\x09\
+\x28\x7b\x92\xbc\x10\x49\x7d\xf3\x7a\xb1\xf4\x7b\xe4\x3f\xb8\x68\
+\x4a\x39\x82\x00\xa9\x94\x1c\x42\xc9\x06\x4b\x3b\x23\xa4\x43\x27\
+\xac\xf0\x98\x66\xbb\xc2\x29\xf3\xf9\xf7\xbc\x90\xfc\xbf\x80\x22\
+\x14\xa5\x9c\x63\xc3\x60\x1d\x68\x38\x12\x46\x50\xb9\x8e\x33\xfc\
+\x11\xd7\x3b\x5c\x89\x09\xe2\xd2\x30\xa2\x9e\x24\x71\xe5\x7c\xdf\
+\x13\x60\x4b\xbb\x68\xde\xe1\x2c\x26\x49\x50\x1d\xc8\x80\xa1\x73\
+\x5b\xd8\xfc\x7e\x0d\xbf\x5a\x1f\x59\x5a\xfa\x45\xfc\xc5\x06\x1c\
+\x83\xd0\xcb\x5b\x47\x02\x25\xe5\x93\x30\x59\xb6\xcc\xab\x77\x12\
+\x75\x93\x13\x7f\xb5\xc3\x1e\x10\x2a\x7e\x3a\x4f\x6c\x09\x7a\xf0\
+\xdd\xa3\xe2\xf4\x36\x70\x03\xcd\xb3\x3c\xea\x34\x74\x5e\x3f\x3c\
+\xf2\xaa\xad\x7a\xde\x4d\x38\x89\x93\x87\xe0\x63\x98\x16\xdd\xad\
+\x26\x8d\x40\x7d\x9d\x9d\x26\x88\x68\xa0\x55\x6a\x58\x47\x93\x4e\
+\x0b\x1c\xab\xb5\x03\x35\x07\x3b\xdc\xe4\x57\xf3\x72\x47\x50\xc4\
+\x4f\x83\xab\x8b\x12\x1a\xd2\x9a\xb3\xc5\x9b\x67\x4e\x45\xae\xc7\
+\x60\x4d\xad\x86\x77\x1d\x60\x7c\xda\x6a\xef\x9b\xdf\x8e\x19\xf6\
+\x68\x9f\x34\xda\x5f\xe9\xfa\x3a\x4b\xa2\x73\xbf\x36\xbb\xbf\xe4\
+\x9c\xda\x71\x7c\x13\x8f\xc3\x32\xce\xd2\x4a\x3b\xde\xdf\x80\x6d\
+\x70\xf5\xc7\x87\x77\x9f\xde\x5f\x8c\xaa\x69\x5d\xc1\x2f\x48\x7f\
+\x04\x70\xf0\x09\xc6\x0c\x11\x29\x3b\x78\x20\x18\x61\xa1\x55\x3f\
+\x1e\x5a\xa5\xe8\x23\x88\xe8\xd9\x7f\x9b\x84\x65\x1e\x2f\xdc\xe1\
+\x02\x28\x06\x87\xd8\x7d\xdf\xfe\x10\x72\x5a\xbe\xbd\x43\x98\x1d\
+\xe2\x3c\x3b\x78\xde\xff\xfa\xe1\x1f\xef\x3f\xf5\xa2\xe7\x9b\x02\
+\xe8\xeb\x6d\x29\x6e\xe4\x52\x28\xd6\x8d\x52\x82\x2d\xdf\x46\x51\
+\x4c\x85\xc7\x60\xe9\x08\xcb\x45\xc2\xab\x3d\x3e\xc2\x90\xbb\xee\
+\xdd\xe2\x3b\x15\x3a\x7b\x2d\x74\x24\x94\xdc\x46\x11\x58\x23\x42\
+\x38\x14\xee\x84\x87\xe7\x43\x58\x54\xee\xbc\xc8\x23\x75\xce\x81\
+\xe6\x7c\x61\xbe\xbb\xe0\x7e\xa6\x92\xfb\x15\x16\x19\xd2\x2d\x20\
+\x15\x79\x7a\x61\xf7\xc3\xef\x07\xea\xa8\xeb\x0e\xb2\x5d\x0e\xc2\
+\x7c\xbc\x99\xd6\x4e\x7e\xb9\x63\x73\xaa\x8a\x7e\x44\xf4\xd4\x49\
+\xee\xe0\x28\x94\x33\x12\xd6\x21\x4c\xf6\x90\x21\x37\x09\x8e\x38\
+\x91\x5a\xf6\x90\x73\x57\x0d\xb9\xbd\x01\xc9\x28\xef\x21\x3f\xf4\
+\x91\x97\x30\xc2\x88\x01\x62\xa4\x19\x36\xc3\x7b\xa1\xd7\x30\x0f\
+\x9b\x2b\x0f\x7b\x04\xbe\x3e\x43\x10\xbe\xa9\x8b\x22\x8f\x70\xb5\
+\x98\xbe\xf4\xa5\xf7\xf5\xf1\x41\xb7\x95\xa6\x95\x32\xb0\x40\x81\
+\xf8\x04\x33\x51\x62\xd7\x89\x9b\x13\xec\x7e\x14\x76\xad\x77\xb5\
+\x47\x0f\x3c\x9f\x40\xf5\xa7\x04\xd1\x15\xf0\x28\xc7\xec\x04\xbc\
+\xfd\x01\xef\x14\xf1\xd6\xc0\x73\xef\x9b\x18\xe7\xcb\x80\x27\x61\
+\x06\x27\xdc\xed\x0d\x77\x7d\xc0\x3a\x56\xdc\x91\xea\xf4\x80\x86\
+\x09\x18\x03\xeb\x35\x46\xf1\xce\xc3\xad\x27\xe4\xfd\x78\xaa\x3d\
+\x85\xbc\x06\x7a\x12\x7a\x0a\xcd\x05\xad\x90\x07\x2b\x14\xc5\x4e\
+\xc8\xdb\x1b\xf2\xcc\x09\x78\x35\xf0\x28\x46\x82\x0b\xe2\x0e\x87\
+\x01\xf0\x38\xc1\xc2\x9c\x80\xb7\xbf\x64\x7b\x5a\x5e\x34\xc8\x63\
+\xf0\x54\x0c\xcc\x64\xa8\x0d\x45\x8c\x92\x53\xc4\xdb\x1f\xf0\xd8\
+\x09\x77\x2d\xdc\x31\xc2\x35\x16\x43\xad\x15\x52\x52\x9d\x52\xed\
+\x1e\x81\xd7\xb3\xbd\x75\xac\xc0\x53\x1c\x61\x86\xa9\x64\x15\xf0\
+\xb4\x50\x98\x9e\x80\xb7\x37\xe0\xa9\x13\xf0\x1a\xe0\x31\x40\x1b\
+\x91\x90\x69\x8d\x94\x88\x53\x58\x67\x9c\x80\xb7\xbf\x65\xed\x09\
+\x79\x0d\xf2\x0c\x43\x8a\x11\xb1\x5c\x5c\x9c\x52\xed\x9e\x17\x17\
+\xa7\x22\xaf\x01\x1e\xe1\x02\x71\xa3\xdc\xde\x45\x0f\xf2\xfe\xcc\
+\x67\x90\x94\x42\x4c\x00\x1c\x3a\xff\xb5\xd2\x80\x3a\x60\x8d\x8f\
+\xbb\xdb\xde\xcd\x19\xa4\x9e\x55\xe9\xf3\x9e\x4a\x6b\x9d\x95\xdc\
+\x31\xc9\x1d\xd3\x7c\xfe\xb3\x45\xe4\xe8\x4e\xa5\x69\xa4\x20\xe7\
+\x93\xce\xa1\x34\x63\x14\x12\x98\x19\xb5\x03\x10\x7d\x0b\xc6\xe7\
+\x86\x84\xcf\xba\xa0\xd8\x9a\xe7\x8e\x99\x3e\xff\x61\x45\x7a\x74\
+\x98\xe0\xda\xfd\x71\x09\xf2\x54\x50\xbc\x0c\x2c\x5a\x7b\xa1\x3b\
+\x26\xfb\x52\xc8\xf8\xfd\xf8\x90\xa1\x91\x86\x64\x89\x79\xe7\x4f\
+\x19\x40\x48\x86\x35\x04\xa7\x8f\x20\x83\xbe\x08\x32\xd4\x66\xc8\
+\xd8\x9c\xec\x8e\xe9\x3e\x7f\xcc\x38\xbe\x3c\x22\x09\x62\x9a\x1b\
+\xa2\x9f\x88\x0c\xd6\xb7\xdf\xb2\x8f\xa8\xb1\x19\x37\xb6\x27\xfc\
+\x52\xe8\xf8\xbd\x07\x1d\x17\xa3\xdb\xab\xb3\x0b\xf7\x07\xf3\xae\
+\xce\xfe\x07\x57\xf6\x87\xfc\
\x00\x00\x08\x61\
\x00\
\x00\x3a\xf2\x78\x9c\xed\x5b\xdb\x8e\xdb\xc8\x11\x7d\x9f\xaf\x60\
@@ -34162,11 +35199,41 @@ qt_resource_name = "\
\x06\x36\xb8\xbd\
\x00\x41\
\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x74\x00\x2d\x00\x50\x00\x54\x00\x2e\x00\x71\x00\x6d\
+\x00\x1a\
+\x07\xdf\xa8\x87\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x53\
+\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\
+\x00\x17\
+\x03\xf9\xe7\x67\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x44\x00\x6f\x00\x6f\x00\x72\x00\x47\x00\x6c\x00\x61\
+\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\
+\x00\x1a\
+\x09\xd5\xe5\x67\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x44\
+\x00\x6f\x00\x75\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\
+\x00\x19\
+\x08\xb8\x0d\xe7\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x46\
+\x00\x69\x00\x78\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\
+\x00\x19\
+\x0e\x94\xe2\xa7\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x53\
+\x00\x74\x00\x61\x00\x73\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x11\
\x06\x3d\x16\x19\
\x00\x61\
\x00\x72\x00\x63\x00\x68\x00\x70\x00\x72\x00\x65\x00\x66\x00\x73\x00\x2d\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\x75\x00\x69\
\
+\x00\x18\
+\x02\x21\x7d\x27\
+\x00\x50\
+\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x73\x00\x44\x00\x6f\x00\x6f\x00\x72\x00\x53\x00\x69\x00\x6d\
+\x00\x70\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x11\
\x0a\x60\x78\x07\
\x00\x41\
@@ -34347,7 +35414,7 @@ qt_resource_name = "\
qt_resource_struct = "\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\
-\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x41\
+\x00\x00\x00\x10\x00\x02\x00\x00\x00\x07\x00\x00\x00\x41\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x26\x00\x00\x00\x1b\
\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x17\x00\x00\x00\x04\
\x00\x00\x01\x2e\x00\x00\x00\x00\x00\x01\x00\x02\x9d\x23\
@@ -34373,45 +35440,51 @@ qt_resource_struct = "\
\x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x02\x52\xbc\
\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xbc\xaa\
\x00\x00\x02\x3e\x00\x00\x00\x00\x00\x01\x00\x05\x84\xf1\
-\x00\x00\x05\x00\x00\x01\x00\x00\x00\x01\x00\x07\x4a\x29\
-\x00\x00\x07\xec\x00\x01\x00\x00\x00\x01\x00\x08\x04\x07\
-\x00\x00\x07\xcc\x00\x00\x00\x00\x00\x01\x00\x07\xf0\x45\
-\x00\x00\x08\x80\x00\x00\x00\x00\x00\x01\x00\x08\x1d\xe7\
-\x00\x00\x07\x9e\x00\x01\x00\x00\x00\x01\x00\x07\xe9\x64\
-\x00\x00\x03\x02\x00\x01\x00\x00\x00\x01\x00\x06\xc8\x54\
-\x00\x00\x03\x30\x00\x01\x00\x00\x00\x01\x00\x06\xcf\x29\
-\x00\x00\x03\xc0\x00\x01\x00\x00\x00\x01\x00\x06\xee\x67\
-\x00\x00\x07\x2e\x00\x01\x00\x00\x00\x01\x00\x07\xd3\x6c\
-\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\xa6\x22\
-\x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x06\xf7\xbf\
-\x00\x00\x05\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x65\xf2\
-\x00\x00\x03\x54\x00\x01\x00\x00\x00\x01\x00\x06\xd7\xcc\
-\x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x07\x09\x8e\
-\x00\x00\x04\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x42\x61\
-\x00\x00\x07\x7c\x00\x01\x00\x00\x00\x01\x00\x07\xe0\x6b\
-\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x6c\xb5\
-\x00\x00\x08\x44\x00\x01\x00\x00\x00\x01\x00\x08\x14\x34\
-\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x06\xe0\xba\
-\x00\x00\x08\xba\x00\x01\x00\x00\x00\x01\x00\x08\x2c\x56\
-\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x07\x20\xbe\
-\x00\x00\x07\x0e\x00\x01\x00\x00\x00\x01\x00\x07\xca\xfe\
-\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x07\x60\xa2\
-\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x07\x89\xe2\
-\x00\x00\x08\xde\x00\x00\x00\x00\x00\x01\x00\x08\x36\x85\
-\x00\x00\x02\xda\x00\x01\x00\x00\x00\x01\x00\x06\xbf\xef\
-\x00\x00\x04\x4a\x00\x01\x00\x00\x00\x01\x00\x07\x18\xfc\
-\x00\x00\x08\x16\x00\x01\x00\x00\x00\x01\x00\x08\x0c\x4c\
-\x00\x00\x06\x0c\x00\x00\x00\x00\x00\x01\x00\x07\x77\xdf\
-\x00\x00\x07\x52\x00\x01\x00\x00\x00\x01\x00\x07\xd8\x83\
-\x00\x00\x05\x5a\x00\x01\x00\x00\x00\x01\x00\x07\x58\x28\
-\x00\x00\x06\xc4\x00\x01\x00\x00\x00\x01\x00\x07\xae\x64\
-\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x07\x39\x62\
-\x00\x00\x03\xa0\x00\x01\x00\x00\x00\x01\x00\x06\xe8\x4f\
-\x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x07\x94\xad\
-\x00\x00\x06\xe4\x00\x00\x00\x00\x00\x01\x00\x07\xb8\x9e\
-\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x07\x2a\x66\
-\x00\x00\x05\x26\x00\x01\x00\x00\x00\x01\x00\x07\x50\xd8\
+\x00\x00\x06\x4e\x00\x01\x00\x00\x00\x01\x00\x07\x8a\x20\
+\x00\x00\x09\x3a\x00\x01\x00\x00\x00\x01\x00\x08\x43\xfe\
+\x00\x00\x09\x1a\x00\x00\x00\x00\x00\x01\x00\x08\x30\x3c\
+\x00\x00\x09\xce\x00\x00\x00\x00\x00\x01\x00\x08\x5d\xde\
+\x00\x00\x08\xec\x00\x01\x00\x00\x00\x01\x00\x08\x29\x5b\
+\x00\x00\x04\x50\x00\x01\x00\x00\x00\x01\x00\x07\x08\x4b\
+\x00\x00\x04\x7e\x00\x01\x00\x00\x00\x01\x00\x07\x0f\x20\
+\x00\x00\x05\x0e\x00\x01\x00\x00\x00\x01\x00\x07\x2e\x5e\
+\x00\x00\x08\x7c\x00\x01\x00\x00\x00\x01\x00\x08\x13\x63\
+\x00\x00\x07\xe0\x00\x01\x00\x00\x00\x01\x00\x07\xe6\x19\
+\x00\x00\x05\x3c\x00\x00\x00\x00\x00\x01\x00\x07\x37\xb6\
+\x00\x00\x07\x02\x00\x01\x00\x00\x00\x01\x00\x07\xa5\xe9\
+\x00\x00\x04\xa2\x00\x01\x00\x00\x00\x01\x00\x07\x17\xc3\
+\x00\x00\x05\x68\x00\x00\x00\x00\x00\x01\x00\x07\x49\x85\
+\x00\x00\x06\x2e\x00\x01\x00\x00\x00\x01\x00\x07\x82\x58\
+\x00\x00\x08\xca\x00\x01\x00\x00\x00\x01\x00\x08\x20\x62\
+\x00\x00\x07\x2e\x00\x01\x00\x00\x00\x01\x00\x07\xac\xac\
+\x00\x00\x09\x92\x00\x01\x00\x00\x00\x01\x00\x08\x54\x2b\
+\x00\x00\x04\xc4\x00\x01\x00\x00\x00\x01\x00\x07\x20\xb1\
+\x00\x00\x0a\x08\x00\x01\x00\x00\x00\x01\x00\x08\x6c\x4d\
+\x00\x00\x05\xba\x00\x01\x00\x00\x00\x01\x00\x07\x60\xb5\
+\x00\x00\x08\x5c\x00\x01\x00\x00\x00\x01\x00\x08\x0a\xf5\
+\x00\x00\x06\xd4\x00\x01\x00\x00\x00\x01\x00\x07\xa0\x99\
+\x00\x00\x07\x84\x00\x01\x00\x00\x00\x01\x00\x07\xc9\xd9\
+\x00\x00\x0a\x2c\x00\x00\x00\x00\x00\x01\x00\x08\x76\x7c\
+\x00\x00\x04\x28\x00\x01\x00\x00\x00\x01\x00\x06\xff\xe6\
+\x00\x00\x05\x98\x00\x01\x00\x00\x00\x01\x00\x07\x58\xf3\
+\x00\x00\x09\x64\x00\x01\x00\x00\x00\x01\x00\x08\x4c\x43\
+\x00\x00\x07\x5a\x00\x00\x00\x00\x00\x01\x00\x07\xb7\xd6\
+\x00\x00\x08\xa0\x00\x01\x00\x00\x00\x01\x00\x08\x18\x7a\
+\x00\x00\x06\xa8\x00\x01\x00\x00\x00\x01\x00\x07\x98\x1f\
+\x00\x00\x08\x12\x00\x01\x00\x00\x00\x01\x00\x07\xee\x5b\
+\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x07\x79\x59\
+\x00\x00\x04\xee\x00\x01\x00\x00\x00\x01\x00\x07\x28\x46\
+\x00\x00\x07\xa6\x00\x00\x00\x00\x00\x01\x00\x07\xd4\xa4\
+\x00\x00\x08\x32\x00\x00\x00\x00\x00\x01\x00\x07\xf8\x95\
+\x00\x00\x05\xe4\x00\x00\x00\x00\x00\x01\x00\x07\x6a\x5d\
+\x00\x00\x06\x74\x00\x01\x00\x00\x00\x01\x00\x07\x90\xcf\
+\x00\x00\x03\xf2\x00\x01\x00\x00\x00\x01\x00\x06\xf5\xea\
+\x00\x00\x02\xec\x00\x01\x00\x00\x00\x01\x00\x06\xc1\xdf\
+\x00\x00\x03\xca\x00\x01\x00\x00\x00\x01\x00\x06\xec\x7a\
\x00\x00\x02\xb2\x00\x01\x00\x00\x00\x01\x00\x06\xb6\xfd\
+\x00\x00\x03\x5a\x00\x01\x00\x00\x00\x01\x00\x06\xd7\xa0\
+\x00\x00\x03\x20\x00\x01\x00\x00\x00\x01\x00\x06\xcd\x05\
+\x00\x00\x03\x92\x00\x01\x00\x00\x00\x01\x00\x06\xe1\x2a\
"
def qInitResources():
diff --git a/src/Mod/Arch/Resources/Arch.qrc b/src/Mod/Arch/Resources/Arch.qrc
index 01f6b91b7..ff80a77c8 100644
--- a/src/Mod/Arch/Resources/Arch.qrc
+++ b/src/Mod/Arch/Resources/Arch.qrc
@@ -39,6 +39,12 @@
icons/Arch_Rebar.svg
icons/Arch_Rebar_Tree.svg
ui/archprefs-base.ui
+ ui/ParametersWindowDouble.svg
+ ui/ParametersWindowSimple.svg
+ ui/ParametersWindowFixed.svg
+ ui/ParametersWindowStash.svg
+ ui/ParametersDoorSimple.svg
+ ui/ParametersDoorGlass.svg
translations/Arch_af.qm
translations/Arch_de.qm
translations/Arch_fi.qm
diff --git a/src/Mod/Arch/Resources/ui/ParametersDoorGlass.svg b/src/Mod/Arch/Resources/ui/ParametersDoorGlass.svg
new file mode 100644
index 000000000..4de9b4a02
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersDoorGlass.svg
@@ -0,0 +1,506 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/ParametersDoorSimple.svg b/src/Mod/Arch/Resources/ui/ParametersDoorSimple.svg
new file mode 100644
index 000000000..a7f03f414
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersDoorSimple.svg
@@ -0,0 +1,413 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/ParametersWindowDouble.svg b/src/Mod/Arch/Resources/ui/ParametersWindowDouble.svg
new file mode 100644
index 000000000..69f84f4e7
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersWindowDouble.svg
@@ -0,0 +1,473 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/ParametersWindowFixed.svg b/src/Mod/Arch/Resources/ui/ParametersWindowFixed.svg
new file mode 100644
index 000000000..6cfe32590
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersWindowFixed.svg
@@ -0,0 +1,344 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/ParametersWindowSimple.svg b/src/Mod/Arch/Resources/ui/ParametersWindowSimple.svg
new file mode 100644
index 000000000..4a7c862fc
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersWindowSimple.svg
@@ -0,0 +1,466 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/ParametersWindowStash.svg b/src/Mod/Arch/Resources/ui/ParametersWindowStash.svg
new file mode 100644
index 000000000..cf753b6f4
--- /dev/null
+++ b/src/Mod/Arch/Resources/ui/ParametersWindowStash.svg
@@ -0,0 +1,498 @@
+
+
+
+
diff --git a/src/Mod/Arch/Resources/ui/archprefs-base.ui b/src/Mod/Arch/Resources/ui/archprefs-base.ui
index 434c21e86..3a1090009 100644
--- a/src/Mod/Arch/Resources/ui/archprefs-base.ui
+++ b/src/Mod/Arch/Resources/ui/archprefs-base.ui
@@ -6,8 +6,8 @@
0
0
- 575
- 629
+ 561
+ 643
@@ -359,6 +359,101 @@
+ -
+
+
+ Width:
+
+
+
+ -
+
+
+ The default width for new windows
+
+
+ 99999.990000000005239
+
+
+ 1000.000000000000000
+
+
+ WindowWidth
+
+
+ Mod/Arch
+
+
+
+ -
+
+
+ Height:
+
+
+
+ -
+
+
+ The default height for new windows
+
+
+ 99999.990000000005239
+
+
+ 1000.000000000000000
+
+
+ WindowHeight
+
+
+ Mod/Arch
+
+
+
+ -
+
+
+ Thickness:
+
+
+
+ -
+
+
+ The default thickness for new windows
+
+
+ 99999.990000000005239
+
+
+ 100.000000000000000
+
+
+ WindowThickness
+
+
+ Mod/Arch
+
+
+
+
+
+ -
+
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
-
diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py
index 2d314464f..e26a33dbb 100644
--- a/src/Mod/Draft/DraftGui.py
+++ b/src/Mod/Draft/DraftGui.py
@@ -778,11 +778,11 @@ class DraftToolBar:
else:
self.cmdlabel.setText(title)
- def selectUi(self):
+ def selectUi(self,extra=None):
if not self.taskmode:
self.labelx.setText(translate("draft", "Pick Object"))
self.labelx.show()
- self.makeDumbTask()
+ self.makeDumbTask(extra)
def editUi(self):
self.taskUi(translate("draft", "Edit"))
@@ -854,14 +854,15 @@ class DraftToolBar:
else:
self.layout.setDirection(QtGui.QBoxLayout.LeftToRight)
- def makeDumbTask(self):
+ def makeDumbTask(self,extra=None):
"create a dumb taskdialog to prevent deleting the temp object"
class TaskPanel:
- def __init__(self):
- pass
+ def __init__(self,extra=None):
+ if extra:
+ self.form = [extra]
def getStandardButtons(self):
return int(QtGui.QDialogButtonBox.Cancel)
- panel = TaskPanel()
+ panel = TaskPanel(extra)
FreeCADGui.Control.showDialog(panel)
#---------------------------------------------------------------------------
diff --git a/src/Mod/Draft/DraftSnap.py b/src/Mod/Draft/DraftSnap.py
index e56c49660..5066ccf66 100644
--- a/src/Mod/Draft/DraftSnap.py
+++ b/src/Mod/Draft/DraftSnap.py
@@ -83,8 +83,8 @@ class Snapper:
self.lastExtensions = []
# the trackers are stored in lists because there can be several views, each with its own set
self.trackers = [[],[],[],[],[],[],[],[],[]] # view, grid, snap, extline, radius, dim1, dim2, trackLine, extline2
-
self.polarAngles = [90,45]
+ self.selectMode = False
# the snapmarker has "dot","circle" and "square" available styles
if self.snapStyle:
@@ -368,7 +368,7 @@ class Snapper:
winner = self.snapToVertex(self.snapInfo)
# setting the cursors
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(winner[2])
self.tracker.setMarker(self.mk[winner[1]])
self.tracker.on()
@@ -413,7 +413,7 @@ class Snapper:
tsnap = self.snapToExtOrtho(last,constrain,eline)
if tsnap:
if (tsnap[0].sub(point)).Length < self.radius:
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(tsnap[2])
self.tracker.setMarker(self.mk[tsnap[1]])
self.tracker.on()
@@ -426,7 +426,7 @@ class Snapper:
tsnap = self.snapToExtPerpendicular(last)
if tsnap:
if (tsnap[0].sub(point)).Length < self.radius:
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(tsnap[2])
self.tracker.setMarker(self.mk[tsnap[1]])
self.tracker.on()
@@ -457,7 +457,7 @@ class Snapper:
if self.isEnabled('extension'):
if np != e.Vertexes[0].Point:
p0 = e.Vertexes[0].Point
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(np)
self.tracker.setMarker(self.mk['extension'])
self.tracker.on()
@@ -492,7 +492,7 @@ class Snapper:
de = Part.Line(last,last.add(ve)).toShape()
np = self.getPerpendicular(de,point)
if (np.sub(point)).Length < self.radius:
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(np)
self.tracker.setMarker(self.mk['parallel'])
self.tracker.on()
@@ -509,7 +509,7 @@ class Snapper:
for p in np:
dv = point.sub(p)
if (self.radius == 0) or (dv.Length <= self.radius):
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(p)
self.tracker.setMarker(self.mk['intersection'])
self.tracker.on()
@@ -557,7 +557,7 @@ class Snapper:
np = self.getPerpendicular(de,point)
if ((self.radius == 0) and (point.sub(last).getAngle(v) < 0.087)) \
or ((np.sub(point)).Length < self.radius):
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(np)
self.tracker.setMarker(self.mk['parallel'])
self.tracker.on()
@@ -574,7 +574,7 @@ class Snapper:
if np:
dv = point.sub(np)
if (self.radius == 0) or (dv.Length <= self.radius):
- if self.tracker:
+ if self.tracker and not self.selectMode:
self.tracker.setCoords(np)
self.tracker.setMarker(self.mk['grid'])
self.tracker.on()
@@ -790,8 +790,12 @@ class Snapper:
def setCursor(self,mode=None):
"setCursor(self,mode=None): sets or resets the cursor to the given mode or resets"
-
- if not mode:
+ if self.selectMode:
+ for v in self.views:
+ v.unsetCursor()
+ self.views = []
+ self.cursorMode = None
+ elif not mode:
for v in self.views:
v.unsetCursor()
self.views = []
@@ -846,6 +850,13 @@ class Snapper:
self.toolbar.hide()
self.mask = None
self.lastArchPoint = None
+ self.selectMode = False
+
+ def setSelectMode(self,mode):
+ "sets the snapper into select mode (hides snapping temporarily)"
+ self.selectMode = mode
+ if not mode:
+ self.setCursor()
def setAngle(self):
"keeps the current angle"
@@ -974,7 +985,7 @@ class Snapper:
if hasattr(FreeCAD,"DraftWorkingPlane"):
self.ui.displayPoint(self.pt,last,plane=FreeCAD.DraftWorkingPlane,mask=FreeCADGui.Snapper.affinity)
if movecallback:
- movecallback(self.pt)
+ movecallback(self.pt,self.snapInfo)
def getcoords(point,relative=False):
self.pt = point
diff --git a/src/Mod/Draft/DraftTrackers.py b/src/Mod/Draft/DraftTrackers.py
index 06a283e0d..c1d71f71b 100644
--- a/src/Mod/Draft/DraftTrackers.py
+++ b/src/Mod/Draft/DraftTrackers.py
@@ -744,10 +744,14 @@ class boxTracker(Tracker):
right = lvec.cross(normal)
self.cube.width.setValue(lvec.Length)
p = WorkingPlane.getPlacementFromPoints([bp,bp.add(lvec),bp.add(right)])
- self.trans.rotation.setValue(p.Rotation.Q)
+ if p:
+ self.trans.rotation.setValue(p.Rotation.Q)
bp = bp.add(lvec.multiply(0.5))
bp = bp.add(DraftVecUtils.scaleTo(normal,self.cube.depth.getValue()/2))
self.pos(bp)
+
+ def setRotation(self,rot):
+ self.trans.rotation.setValue(rot.Q)
def pos(self,p):
self.trans.translation.setValue(DraftVecUtils.tup(p))
diff --git a/src/Mod/Draft/WorkingPlane.py b/src/Mod/Draft/WorkingPlane.py
index c1b2ddea9..10d444ae2 100644
--- a/src/Mod/Draft/WorkingPlane.py
+++ b/src/Mod/Draft/WorkingPlane.py
@@ -212,13 +212,20 @@ class plane:
m = DraftVecUtils.getPlaneRotation(self.u,self.v,self.axis)
return FreeCAD.Placement(m)
- def getPlacement(self):
+ def getPlacement(self,rotated=False):
"returns the placement of the working plane"
- m = FreeCAD.Matrix(
- self.u.x,self.v.x,self.axis.x,self.position.x,
- self.u.y,self.v.y,self.axis.y,self.position.y,
- self.u.z,self.v.z,self.axis.z,self.position.z,
- 0.0,0.0,0.0,1.0)
+ if rotated:
+ m = FreeCAD.Matrix(
+ self.u.x,self.axis.x,-self.v.x,self.position.x,
+ self.u.y,self.axis.y,-self.v.y,self.position.y,
+ self.u.z,self.axis.z,-self.v.z,self.position.z,
+ 0.0,0.0,0.0,1.0)
+ else:
+ m = FreeCAD.Matrix(
+ self.u.x,self.v.x,self.axis.x,self.position.x,
+ self.u.y,self.v.y,self.axis.y,self.position.y,
+ self.u.z,self.v.z,self.axis.z,self.position.z,
+ 0.0,0.0,0.0,1.0)
return FreeCAD.Placement(m)
def setFromPlacement(self,pl):
@@ -331,7 +338,18 @@ def getPlacementFromPoints(points):
else:
pl.axis = ((pl.u).cross(pl.v)).normalize()
except:
- pass
+ return None
p = pl.getPlacement()
del pl
return p
+
+def getPlacementFromFace(face,rotated=False):
+ "returns a placement from a face"
+ pl = plane()
+ try:
+ pl.alignToFace(face)
+ except:
+ return None
+ p = pl.getPlacement(rotated)
+ del pl
+ return p