diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/b01aee0ca08b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/11/b01aee0ca08b001916cad4dafcb34f83 new file mode 100644 index 0000000..f9da3b0 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/11/b01aee0ca08b001916cad4dafcb34f83 @@ -0,0 +1,75 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +import java.util.ArrayList; +import java.util.List; + +public class Exercises { + public static void main(String... args) { + System.out.println(threeAndFive()); + System.out.println(evenFibSum()); + } + + public static int threeAndFive() { + int s3 = (3 + 999) * 333/2; + int s5_1 = (5 + 995) * 67/2; + int s5_2 = (10 + 985) * 66/2; + return s3+s5_1+s5_2; + } + + public static int evenFibSum() { + int sum = 0; + for(int i=0;; i++) { + int curr = fib(i); + if(curr >= 4e6) { + break; + } + if(curr % 2 == 0) { + sum += curr; + } + } + + return sum; + } + + private static int fib(int n) { + return n < 2 ? n : fib(n-1) + fib(n-2); + } + + public static int largestPrimeFactor() { + long n = 600851475143l; + long maxPrime = -1; + + + while (n % 2 == 0) { + maxPrime = 2; + + n /= 2; + } + + for (int i = 3; i <= Math.sqrt(n); i += 2) { + while (n % i == 0) { + maxPrime = i; + n = n / i; + } + } + + if (n > 2) + maxPrime = n; + + return (int) maxPrime; + } + +// private static List factorize(long num) { +// List list = new ArrayList<>(); +// +// for(long i=2; i= 4e6) { + break; + } + if(curr % 2 == 0) { + sum += curr; + } + } + + return sum; + } + + private static int fib(int n) { + return n < 2 ? n : fib(n-1) + fib(n-2); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/20db75309c8b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/15/20db75309c8b001916cad4dafcb34f83 new file mode 100644 index 0000000..f3b344c --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/15/20db75309c8b001916cad4dafcb34f83 @@ -0,0 +1,16 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +public class Exercises { + public static void main(String... args) { + System.out.println(threeAndFive()); + } + + public static int threeAndFive() { + int s3 = (3 + 999) * 333/2; + int s5 = (5 + 995) * 199/2; + return s3+s5; + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/3/10a833dc9d8b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/3/10a833dc9d8b001916cad4dafcb34f83 new file mode 100644 index 0000000..5b32747 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/3/10a833dc9d8b001916cad4dafcb34f83 @@ -0,0 +1,17 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +public class Exercises { + public static void main(String... args) { + System.out.println(threeAndFive()); + } + + public static int threeAndFive() { + int s3 = (3 + 999) * 333/2; + int s5_1 = (5 + 995) * 67/2; + int s5_2 = (10 + 985) * 66/2; + return s3+s5_1+s5_2; + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/56/90a3219d9b8b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/56/90a3219d9b8b001916cad4dafcb34f83 new file mode 100644 index 0000000..073f494 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/56/90a3219d9b8b001916cad4dafcb34f83 @@ -0,0 +1,8 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +public class Exercises { + +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/80/e03cef059a8b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/80/e03cef059a8b001916cad4dafcb34f83 new file mode 100644 index 0000000..e69de29 diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/ac/200cd618a08b001916cad4dafcb34f83 b/.metadata/.plugins/org.eclipse.core.resources/.history/ac/200cd618a08b001916cad4dafcb34f83 new file mode 100644 index 0000000..f9528e0 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/ac/200cd618a08b001916cad4dafcb34f83 @@ -0,0 +1,76 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +import java.util.ArrayList; +import java.util.List; + +public class Exercises { + public static void main(String... args) { + System.out.println(threeAndFive()); + System.out.println(evenFibSum()); + System.out.println(largestPrimeFactor()); + } + + public static int threeAndFive() { + int s3 = (3 + 999) * 333/2; + int s5_1 = (5 + 995) * 67/2; + int s5_2 = (10 + 985) * 66/2; + return s3+s5_1+s5_2; + } + + public static int evenFibSum() { + int sum = 0; + for(int i=0;; i++) { + int curr = fib(i); + if(curr >= 4e6) { + break; + } + if(curr % 2 == 0) { + sum += curr; + } + } + + return sum; + } + + private static int fib(int n) { + return n < 2 ? n : fib(n-1) + fib(n-2); + } + + public static int largestPrimeFactor() { + long n = 600851475143l; + long maxPrime = -1; + + + while (n % 2 == 0) { + maxPrime = 2; + + n /= 2; + } + + for (int i = 3; i <= Math.sqrt(n); i += 2) { + while (n % i == 0) { + maxPrime = i; + n = n / i; + } + } + + if (n > 2) + maxPrime = n; + + return (int) maxPrime; + } + +// private static List factorize(long num) { +// List list = new ArrayList<>(); +// +// for(long i=2; i= 4e6) { + break; + } + if(curr % 2 == 0) { + sum += curr; + } + } + + return sum; + } + + private static int fib(int n) { + return n < 2 ? n : fib(n-1) + fib(n-2); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.indexes/e4/67/history.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.indexes/e4/67/history.index new file mode 100644 index 0000000..5ec44ba Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.indexes/e4/67/history.index differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.markers b/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.markers new file mode 100644 index 0000000..9eed4f3 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/Branching-Assignment/.markers differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree b/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree new file mode 100644 index 0000000..10db4e2 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree differ diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.launchbar.core.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.launchbar.core.prefs new file mode 100644 index 0000000..a7f8855 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.launchbar.core.prefs @@ -0,0 +1,6 @@ +LaunchTargetManager/org.eclipse.launchbar.core.launchTargetType.local,Local/arch=x86_64 +LaunchTargetManager/org.eclipse.launchbar.core.launchTargetType.local,Local/os=win32 +configDescList=org.eclipse.launchbar.core.descriptorType.default\:Exercises +eclipse.preferences.version=1 +org.eclipse.launchbar.core.descriptorType.default\:Exercises/activeLaunchMode=run +org.eclipse.launchbar.core.descriptorType.default\:Exercises/activeLaunchTarget=org.eclipse.launchbar.core.launchTargetType.local\:Local diff --git a/.metadata/.plugins/org.eclipse.debug.core/.launches/Exercises.launch b/.metadata/.plugins/org.eclipse.debug.core/.launches/Exercises.launch new file mode 100644 index 0000000..b2740cc --- /dev/null +++ b/.metadata/.plugins/org.eclipse.debug.core/.launches/Exercises.launch @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml b/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml new file mode 100644 index 0000000..60c6d84 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml @@ -0,0 +1,13 @@ + +
+
+ + + +
+
+ + + +
+
diff --git a/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml b/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml new file mode 100644 index 0000000..e8d3d35 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1484076330.index b/.metadata/.plugins/org.eclipse.jdt.core/1484076330.index new file mode 100644 index 0000000..260c62a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/1484076330.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1507339265.index b/.metadata/.plugins/org.eclipse.jdt.core/1507339265.index new file mode 100644 index 0000000..a7ae67b Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/1507339265.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1651349548.index b/.metadata/.plugins/org.eclipse.jdt.core/1651349548.index new file mode 100644 index 0000000..9be1884 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/1651349548.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1670528678.index b/.metadata/.plugins/org.eclipse.jdt.core/1670528678.index new file mode 100644 index 0000000..7ed0dd9 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/1670528678.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1948745554.index b/.metadata/.plugins/org.eclipse.jdt.core/1948745554.index new file mode 100644 index 0000000..bbe9180 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/1948745554.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/2261558828.index b/.metadata/.plugins/org.eclipse.jdt.core/2261558828.index new file mode 100644 index 0000000..3191fe3 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/2261558828.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/2945162093.index b/.metadata/.plugins/org.eclipse.jdt.core/2945162093.index new file mode 100644 index 0000000..4f04c6e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/2945162093.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/3678980623.index b/.metadata/.plugins/org.eclipse.jdt.core/3678980623.index new file mode 100644 index 0000000..e5d7e51 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/3678980623.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/3764404749.index b/.metadata/.plugins/org.eclipse.jdt.core/3764404749.index new file mode 100644 index 0000000..e963d78 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/3764404749.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/3876561862.index b/.metadata/.plugins/org.eclipse.jdt.core/3876561862.index new file mode 100644 index 0000000..5cac366 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/3876561862.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/3930511455.index b/.metadata/.plugins/org.eclipse.jdt.core/3930511455.index new file mode 100644 index 0000000..8b73a0c Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/3930511455.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/4142306923.index b/.metadata/.plugins/org.eclipse.jdt.core/4142306923.index new file mode 100644 index 0000000..fcdc52e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/4142306923.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/4236009997.index b/.metadata/.plugins/org.eclipse.jdt.core/4236009997.index new file mode 100644 index 0000000..911d26b Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/4236009997.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/430205200.index b/.metadata/.plugins/org.eclipse.jdt.core/430205200.index new file mode 100644 index 0000000..ce9a98d Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/430205200.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/47423239.index b/.metadata/.plugins/org.eclipse.jdt.core/47423239.index new file mode 100644 index 0000000..7e0dd4e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/47423239.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/509712851.index b/.metadata/.plugins/org.eclipse.jdt.core/509712851.index new file mode 100644 index 0000000..1e11aee Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/509712851.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/83085761.index b/.metadata/.plugins/org.eclipse.jdt.core/83085761.index new file mode 100644 index 0000000..23573ff Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/83085761.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/900771366.index b/.metadata/.plugins/org.eclipse.jdt.core/900771366.index new file mode 100644 index 0000000..98c0932 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.core/900771366.index differ diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps b/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps new file mode 100644 index 0000000..a8c01fa Binary files /dev/null and b/.metadata/.plugins/org.eclipse.wst.jsdt.core/externalLibsTimeStamps differ diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/baseBrowserLibrary.js b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/baseBrowserLibrary.js new file mode 100644 index 0000000..2fc99ea --- /dev/null +++ b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/baseBrowserLibrary.js @@ -0,0 +1,5393 @@ +/******************************************************************************* + * Copyright (c) 2008, 2013 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *******************************************************************************/ + +/** + * Object DOMException() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Object + */ +function DOMException(){}; +DOMException.prototype = new Object(); +/** + * Constant DOMException.INDEX_SIZE_ERR=1 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INDEX_SIZE_ERR=1; +/** + * Constant DOMException.DOMSTRING_SIZE_ERR=2 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.DOMSTRING_SIZE_ERR=2; +/** + * Constant DOMException.HIERARCHY_REQUEST_ERR=3 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.HIERARCHY_REQUEST_ERR=3; +/** + * Constant DOMException.WRONG_DOCUMENT_ERR=4 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.WRONG_DOCUMENT_ERR=4; +/** + * Constant DOMException.INVALID_CHARACTER_ERR=5 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INVALID_CHARACTER_ERR=5; +/** + * Constant DOMException.NO_DATA_ALLOWED_ER=6 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.NO_DATA_ALLOWED_ER=6; +/** + * Constant DOMException.NO_MODIFICATION_ALLOWED_ERR=7 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.NO_MODIFICATION_ALLOWED_ERR=7; +/** + * Constant DOMException.NOT_FOUND_ERR=8 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.NOT_FOUND_ERR=8; +/** + * Constant DOMException.NOT_SUPPORTED_ERR=9 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.NOT_SUPPORTED_ERR=9; +/** + * Constant DOMException.INUSE_ATTRIBUTE_ERR=10 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INUSE_ATTRIBUTE_ERR=10; +/** + * Constant DOMException.INVALID_STATE_ERR=11 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INVALID_STATE_ERR=11; +/** + * Constant DOMException.SYNTAX_ERR=12 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.SYNTAX_ERR=12; +/** + * Constant DOMException.INVALID_MODIFICATION_ER=13 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INVALID_MODIFICATION_ER=13; +/** + * Constant DOMException.NAMESPACE_ERR=14 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.NAMESPACE_ERR=14; +/** + * Constant DOMException.NVALID_ACCESS_ERR=15 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.INVALID_ACCESS_ERR=15; +/** + * Property code + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMException.prototype.code=0; + +/** + * Object DOMImplementation() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Object + */ +function DOMImplementation(){}; +DOMImplementation.prototype = new Object(); +/** + * function hasFeature(feature, version) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} feature + * @param {String} version + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DOMImplementation.prototype.hasFeature = function(feature, version){return false;}; +/** + * function createDocumentType(qualifiedName, publicId, systemId) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} qualifiedName + * @param {String} publicId + * @param {String} systemId + * @returns {DocumentType} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see DocumentType + */ +DOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId){return new DocumentType();}; +/** + * function createDocument(namespaceURI, qualifiedName, doctype) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} qualifiedName + * @param {DocumentType} doctype + * @returns {Document} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Document + */ +DOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype){return new HTMLDocument();}; + +/** + * Object DocumentFragment() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function DocumentFragment(){}; +DocumentFragment.prototype=new Node(); + +/** + * Object Document() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function Document(){}; +Document.prototype = new Node(); +/** + * Property defaultView + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Window + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Window + */ +Document.prototype.defaultView = new Window(); +/** + * Property doctype + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type DocumentType + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see DocumentType + */ +Document.prototype.doctype = new DocumentType(); +/** + * Property implementation + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type DOMImplementation + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see DOMImplementation + */ +Document.prototype.implementation = new DOMImplementation(); +/** + * Property documentElement + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Element + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Document.prototype.documentElement= new HTMLElement(); +/** + * Property styleSheets + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Document.prototype.styleSheets= new Array(); +/** + * function createElement(tagName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} tagName + * @returns {Element} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Document.prototype.createElement=function(tagName){return new HTMLElement();}; +/** + * function createDocumentFragment() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @returns {DocumentFragment} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see DocumentFragment + */ +Document.prototype.createDocumentFragment=function(){return new DocumentFragment();}; +/** + * function createTextNode(data) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} data + * @returns {Text} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Text + */ +Document.prototype.createTextNode=function(data){return new Text();}; +/** + * function createComment(data) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} data + * @returns {Comment} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Comment + */ +Document.prototype.createComment=function(data){return new Comment();}; +/** + * function createCDATASection(data) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} data + * @returns {CDATASection} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see CDATASection + */ +Document.prototype.createCDATASection=function(data){}; +/** + * function createProcessingInstruction(target, data) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type ProcessingInstruction + * @param {String} target + * @param {String} data + * @returns {ProcessingInstruction} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see ProcessingInstruction +*/ +Document.prototype.createProcessingInstruction=function(target, data){return new ProcessingInstruction();}; +/** + * function createAttribute(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {Attr} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Attr + */ +Document.prototype.createAttribute=function(name){return new Attr();}; +/** + * function createEntityReference(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {EntityReference} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see EntityReference + */ +Document.prototype.createEntityReference=function(name){return new EntityReference();}; +/** + * function getElementsByTagName(tagname) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} tagname + * @returns {NodeList} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see NodeList + */ +Document.prototype.getElementsByTagName=function(tagname){return new NodeList();}; +/** + * function importNode(importedNode, deep) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} importedNode + * @param {Boolean} deep + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Document.prototype.importNode=function(importedNode, deep){return new Node();}; +/** + * function createElementNS(namespaceURI, qualifiedName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} qualifiedName + * @returns {Element} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Document.prototype.createElementNS=function(namespaceURI, qualifiedName){return new HTMLElement();}; +/** + * function createEvent(String eventType) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} eventType + * @returns {Object} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Document.prototype.createEvent=function(eventType){return new Object();}; +/** + * function createAttributeNS(namespaceURI, qualifiedName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} qualifiedName + * @returns {Attr} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Attr + */ +Document.prototype.createAttributeNS=function(namespaceURI, qualifiedName){return new Attr();}; +/** + * function getElementsByTagNameNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {NodeList} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see NodeList + */ +Document.prototype.getElementsByTagNameNS=function(namespaceURI, localName){return new NodeList();}; +/** + * function getElementById(elementId) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} elementId + * @returns {Element} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Document.prototype.getElementById=function(elementId){return new HTMLElement();}; + +/** + * Object Node() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @memberOf Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see EventTarget + */ +function Node(){}; +Node.prototype=new EventTarget(); +/** + * Constant Node.ELEMENT_NODE=1 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.ELEMENT_NODE=1; +/** + * Constant Node.ATTRIBUTE_NODE=2 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.ATTRIBUTE_NODE=2; +/** + * Constant Node.TEXT_NODE=3 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.TEXT_NODE=3; +/** + * Constant Node.CDATA_SECTION_NODE=4 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.CDATA_SECTION_NODE=4; +/** + * Constant Node.ENTITY_REFERENCE_NODE=5 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.ENTITY_REFERENCE_NODE=5; +/** + * Constant Node.ENTITY_NODE=6 + * @type Number + * @memberOf Node + * @see Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + + * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html +*/ +Node.ENTITY_NODE=6; +/** + * Constant Node.PROCESSING_INSTRUCTION_NODE=7 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.PROCESSING_INSTRUCTION_NODE=7; +/** + * Constant Node.COMMENT_NODE=8 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.COMMENT_NODE=8; +/** + * Constant Node.DOCUMENT_NODE=9 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.DOCUMENT_NODE=9; +/** + * Constant Node.DOCUMENT_TYPE_NODE=10 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.DOCUMENT_TYPE_NODE=10; +/** + * Constant Node.DOCUMENT_FRAGMENT_NODE=11 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.DOCUMENT_FRAGMENT_NODE=11; +/** + * Constant Node.NOTATION_NODE=12 + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @constant + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.NOTATION_NODE=12; +/** + * Property nodeName + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.nodeName = ""; +/** + * Property nodeValue + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.nodeValue = ""; +/** + * Property nodeType + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.nodeType = 0; +/** + * Property parentNode + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.parentNode=new Node(); +/** + * Property childNodes + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type NodeList + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see NodeList +*/ +Node.prototype.childNodes=new NodeList(); +/** + * Property firstChild + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.firstChild=new Node(); +/** + * Property lastChild + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.lastChild=new Node(); +/** + * Property previousSibling + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.previousSibling=new Node(); +/** + * Property nextSibling + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Node + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.nextSibling=new Node(); +/** + * Property attributes + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type NamedNodeMap + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see NamedNodeMap + */ +Node.prototype.attributes=new NamedNodeMap(); +/** + * Property ownerDocument + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Document + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Document + */ +Node.prototype.ownerDocument = new HTMLDocument(); +/** + * Property namespaceURI + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.namespaceURI=""; +/** + * Property prefix + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.prefix = ""; +/** + * Property localName + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.localName= ""; +/** + * function insertBefore(newChild, refChild) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} newChild + * @param {Node} refChild + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.insertBefore = function(newChild, refChild){return new Node();}; +/** + * function replaceChild(newChild, oldChild) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} newChild + * @param {Node} oldChild + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.replaceChild = function(newChild, oldChild){return new Node();}; +/** + * function removeChild(oldChild) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} oldChild + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.removeChild = function(oldChild){return new Node();}; +/** + * function appendChild(newChild) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} newChild + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.appendChild = function(newChild){return new Node();}; +/** + * function hasChildNodes() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.hasChildNodes=function(){return false;}; +/** + * function cloneNode(deep) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Boolean} deep + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +Node.prototype.cloneNode=function(deep){return new Node();}; +/** + * function normalize() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.normalize = function(){}; +/** + * function isSupported(feature, version) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} feature + * @param {String} version + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.isSupported=function(feature, version){return false;}; +/** + * function hasAttributes() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Node.prototype.hasAttributes=function(){return false;}; + +/** + * Object NodeList() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Object + */ +function NodeList(){}; +NodeList.prototype = new Object(); +/** + * Property length + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +NodeList.prototype.length=0; +/** + * function item(index) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * Note: This object can also be dereferenced using square bracket notation (e.g. obj[1]). Dereferencing with an integer index is equivalent to invoking the item method with that index + * + * @param {Number} index + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node +*/ +NodeList.prototype.item = function(index){return new Node();}; + +/** + * Object NamedNodeMap() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Object + */ +function NamedNodeMap(){}; +NamedNodeMap.prototype = new Object(); +/** + * Property length + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +NamedNodeMap.prototype.length=0; +/** + * function getNamedItem(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.getNamedItem=function(name){return new Node();}; +/** + * function setNamedItem(arg) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} arg + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.setNamedItem=function(arg){return new Node();}; +/** + * function removeNamedItem(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.removeNamedItem=function(name){return new Node();}; +/** + * function item(index) + * Note: This object can also be dereferenced using square bracket notation (e.g. obj[1]). Dereferencing with an integer index is equivalent to invoking the item method with that index. + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} index + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.item=function(index){return new Node();}; +/** + * function getNamedItemNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.getNamedItemNS=function(namespaceURI, localName){return new Node();}; +/** + * function setNamedItemNS(arg) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Node} arg + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.setNamedItemNS=function(arg){return new Node();}; +/** + * function removeNamedItemNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {Node} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +NamedNodeMap.prototype.removeNamedItemNS=function(namespaceURI, localName){return new Node();}; + +/** + * Object CharacterData() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function CharacterData(){}; +CharacterData.prototype=new Node(); +/** + * Property data + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.data=""; +/** + * Property length + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.length=0; +/** + * function substringData(offset, count) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} offset + * @param {Number} count + * @returns {String} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.substringData=function(offset, count){return "";}; +/** + * function appendData(arg) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} arg + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.appendData=function(arg){}; +/** + * function insertData(offset, arg) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} offset + * @param {String} arg + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.insertData=function(offset, arg){}; +/** + * function deleteData(offset, count) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} offset + * @param {Number} count + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.deleteData=function(offset, count){}; +/** + * function replaceData(offset, count, arg) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} offset + * @param {Number} count + * @param {String} arg + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +CharacterData.prototype.replaceData=function(offset, count, arg){}; + +/** + * Object Attr() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function Attr(){}; +Attr.prototype = new Node(); +/** + * Property name + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Attr.prototype.name = ""; +/** + * Property specified + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Attr.prototype.specified = false; +/** + * Property value + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Attr.prototype.value = ""; +/** + * Property ownerElement + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type Element + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Element + */ +Attr.prototype.ownerElement = new Element(); + +/** + * Object Element() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function Element(){}; +Element.prototype=new Node(); +/** + * Property tagName + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.tagName=""; +/** + * function addEventListener(Stirng type, Function listener, Boolean useCapture) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} type + * @param {Function} listener + * @param {Boolean} useCapture + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.addEventListener=function(type, listener, useCapture){}; +/** + * function attachEvent(String type, Function listener) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} type + * @param {Function} listener + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.attachEvent=function(type, listener){}; +/** + * function detachEvent(String type, Function listener) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} type + * @param {Function} listener + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.detachEvent=function(type, listener){}; +/** + * function dispatchEvent(Object event) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Object} event + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.dispatchEvent=function(event){return false;}; +/** + * function getAttribute(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getAttribute=function(name){return "";}; +/** + * function setAttribute(name, value) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @param {String} value + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.setAttribute=function(name, value){}; +/** + * function removeAttribute(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.removeAttribute=function(name){}; +/** + * function getAttributeNode(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {Attr} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getAttributeNode=function(name){return new Attr();}; +/** + * function setAttributeNode(newAttr) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Attr} newAttr + * @returns {Attr} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.setAttributeNode=function(newAttr){return new Attr();}; +/** + * function removeAttributeNode(oldAttr) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Attr} oldAttr + * @returns {Attr} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.removeAttributeNode=function(oldAttr){return new Attr();}; +/** + * function getElementsByTagName(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {NodeList} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getElementsByTagName=function(name){return new NodeList();}; +/** + * function getAttributeNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {String} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getAttributeNS=function(namespaceURI, localName){return "";}; +/** + * function setAttributeNS(namespaceURI, qualifiedName, value) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} qualifiedName + * @param {String} value + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.setAttributeNS=function(namespaceURI, qualifiedName, value){}; +/** + * function removeAttributeNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.removeAttributeNS=function(namespaceURI, localName){}; +/** + * function getAttributeNodeNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {Attr} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getAttributeNodeNS=function(namespaceURI, localName){return new Attr();}; +/** + * function setAttributeNodeNS(newAttr) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Attr} newAttr + * @returns {Attr} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.setAttributeNodeNS=function(newAttr){return new Attr();}; +/** + * function getElementsByTagNameNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {NodeList} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.getElementsByTagNameNS=function(namespaceURI, localName){return new NodeList();}; +/** + * function hasAttribute(name) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} name + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.hasAttribute=function(name){return false;}; +/** + * function hasAttributeNS(namespaceURI, localName) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {String} namespaceURI + * @param {String} localName + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Element.prototype.hasAttributeNS=function(namespaceURI, localName){return false;}; + +/** + * Object Text() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments CharacterData + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see CharacterData + */ +function Text(){}; +Text.prototype = new CharacterData(); +/** + * function splitText(offset) + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @param {Number} offset + * @returns {Text} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Text + */ +Text.prototype.splitText = function(offset) {return new Text();}; + +/** + * Object Comment() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments CharacterData + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see CharacterData + */ +function Comment(){}; +Comment.prototype = new CharacterData(); + +/** + * Object CDATASection() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Text + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Text + */ +function CDATASection(){}; +CDATASection.prototype = new Text(); + +/** + * Object DocumentType() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function DocumentType(){}; +DocumentType.prototype = new Node(); +/** + * Property name + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.name=""; +/** + * Property entities + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type NamedNodeMap + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.entities = new NamedNodeMap(); +/** + * Property notations + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type NamedNodeMap + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.notations=new NamedNodeMap(); +/** + * Property publicId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.publicId=""; +/** + * Property systemId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.systemId=""; +/** + * Property internalSubset + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +DocumentType.prototype.internalSubset=""; + +/** + * Object Notation() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function Notation(){}; +Notation.prototype=new Node(); +/** + * Property publicId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Notation.prototype.publicId=""; +/** + * Property systemId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Notation.prototype.systemId=""; + +/** + * Object Entity() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function Entity(){}; +Entity.prototype=new Node(); +/** + * Property publicId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Entity.prototype.publicId=""; +/** + * Property systemId + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Entity.prototype.systemId=""; +/** + * Property notationName + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Entity.prototype.notationName=""; + +/** + * Object EntityReference() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function EntityReference(){}; +EntityReference.prototype=new Node(); + +/** + * Object ProcessingInstruction() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @augments Node + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + * @see Node + */ +function ProcessingInstruction(){}; +ProcessingInstruction.prototype=new Node(); +/** + * Property target + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +ProcessingInstruction.prototype.target=""; +/** + * Property target + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +ProcessingInstruction.prototype.data=""; + + +/*HTML DOM Below this line*/ + +/** + * Object HTMLCollection() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +function HTMLCollection(){}; +HTMLCollection.prototype = new Object(); +/** + * Property length + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLCollection.prototype.length=0; +/** + * function item(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLCollection.prototype.item = function(index){return new Node();}; +/** + * function namedItem(name) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {String} name + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLCollection.prototype.namedItem = function(index){return new Node();}; + +/** + * Object HTMLOptionsCollection() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +function HTMLOptionsCollection(){}; +HTMLOptionsCollection.prototype = new Object(); +/** + * Property length + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionsCollection.prototype.length=0; +/** + * function item(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionsCollection.prototype.item = function(index){return new Node();}; +/** + * function namedItem(name) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {String} name + * @returns {Node} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionsCollection.prototype.namedItem = function(index){return new Node();}; + +/** + * Object HTMLDocument() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments Document + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see Document + */ +function HTMLDocument(){}; +HTMLDocument.prototype = new Document(); +/** + * Property title + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.title=""; +/** + * Property referrer + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.referrer=""; +/** + * Property domain + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.domain=""; +/** + * Property URL + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.URL=""; +/** + * Property body + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.body=new HTMLElement(); +/** + * Property images + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.images=new HTMLCollection(); +/** + * Property applets + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.applets=new HTMLCollection(); +/** + * Property links + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.links=new HTMLCollection(); +/** + * Property forms + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.forms=new HTMLCollection(); +/** + * Property anchors + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.anchors=new HTMLCollection(); +/** + * Property cookie + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.cookie=""; +/** + * Property lastModified + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.lastModified=""; +/** + * function open() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.open = function(){}; +/** + * function close() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.close = function(){}; +/** + * function write(text) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {String} text + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.write = function(text){}; +/** + * function writeln(text) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {String} text + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.writeln = function(text){}; +/** + * function getElementsByName(elementName) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {String} elementName + * @returns {NodeList} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDocument.prototype.getElementsByName = function(elementName){return new NodeList();}; + +/** + * Object HTMLElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments Element + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see Element + */ +function HTMLElement(){}; +HTMLElement.prototype = new Element(); +/** + * Property id + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLElement.prototype.id=""; +/** + * Property title + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLElement.prototype.title=""; +/** + * Property lang + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLElement.prototype.lang=""; +/** + * Property dir + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLElement.prototype.dir=""; +/** + * Property className + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLElement.prototype.className=""; +/** + * Property innerHTML + * + * @type String + */ +HTMLElement.prototype.innerHTML=""; +/** + * Property offsetHeight + * + * @type Number + */ +HTMLElement.prototype.offsetHeight=0; +/** + * Property offsetWidth + * + * @type Number + */ +HTMLElement.prototype.offsetWidth=0; +/** + * Property offsetLeft + * + * @type Number + */ +HTMLElement.prototype.offsetLeft=0; +/** + * Property offsetTop + * + * @type Number + */ +HTMLElement.prototype.offsetTop=0; +/** + * Property offsetParent + * + * @type HTMLElement + */ +HTMLElement.prototype.offsetParent = new HTMLElement(); +/** + * Property scrollHeight + * + * @type Number + */ +HTMLElement.prototype.scrollHeight=0; +/** + * Property scrollWidth + * + * @type Number + */ +HTMLElement.prototype.scrollWidth=0; +/** + * Property scrollLeft + * + * @type Number + */ +HTMLElement.prototype.scrollLeft=0; +/** + * Property scrollTop + * + * @type Number + */ +HTMLElement.prototype.scrollTop=0; +/** + * Property style + * + * @type CSS2Properties + */ +HTMLElement.prototype.style = new CSS2Properties(); + +/** + * Object HTMLHtmlElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLHtmlElement(){}; +HTMLHtmlElement.prototype = new HTMLElement(); +/** + * Property version + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHtmlElement.prototype.version=""; + +/** + * Object HTMLHeadElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLHeadElement(){}; +HTMLHeadElement.prototype = new HTMLElement(); +/** + * Property profile + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHeadElement.prototype.profile=""; + +/** + * Object HTMLLinkElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLLinkElement(){}; +HTMLLinkElement.prototype = new HTMLElement(); +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.disabled=false; +/** + * Property charset + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.charset=""; +/** + * Property href + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.href=""; +/** + * Property hreflang + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.hreflang=""; +/** + * Property media + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.media=""; +/** + * Property rel + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.rel=""; +/** + * Property rev + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.rev=""; +/** + * Property target + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.target=""; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLinkElement.prototype.type=""; + +/** + * Object HTMLTitleElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTitleElement(){}; +HTMLTitleElement.prototype = new HTMLElement(); +/** + * Property text + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTitleElement.prototype.text=""; + +/** + * Object HTMLMetaElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLMetaElement(){}; +HTMLMetaElement.prototype = new HTMLElement(); +/** + * Property content + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMetaElement.prototype.content=""; +/** + * Property httpEquiv + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMetaElement.prototype.httpEquiv=""; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMetaElement.prototype.name=""; +/** + * Property scheme + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMetaElement.prototype.scheme=""; + +/** + * Object HTMLBaseElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLBaseElement(){}; +HTMLBaseElement.prototype = new HTMLElement(); +/** + * Property href + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBaseElement.prototype.href=""; +/** + * Property target + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBaseElement.prototype.target=""; + +/** + * Object HTMLIsIndexElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLIsIndexElement(){}; +HTMLIsIndexElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIsIndexElement.prototype.form=new HTMLFormElement(); +/** + * Property prompt + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIsIndexElement.prototype.prompt=""; + +/** + * Object HTMLStyleElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLStyleElement(){}; +HTMLStyleElement.prototype = new HTMLElement(); +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLStyleElement.prototype.disabled=false; +/** + * Property media + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLStyleElement.prototype.media=""; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLStyleElement.prototype.type=""; + +/** + * Object HTMLBodyElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLBodyElement(){}; +HTMLBodyElement.prototype = new HTMLElement(); +/** + * Property aLink + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.aLink=""; +/** + * Property background + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.background=""; +/** + * Property bgColor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.bgColor=""; +/** + * Property link + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.link=""; +/** + * Property text + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.text=""; +/** + * Property vLink + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBodyElement.prototype.vLink=""; + +/** + * Object HTMLFormElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLFormElement(){}; +HTMLFormElement.prototype = new HTMLElement(); +/** + * Property elements + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.elements=new HTMLCollection(); +/** + * Property length + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.length=0; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.name=""; +/** + * Property acceptCharset + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.acceptCharset=""; +/** + * Property action + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.action=""; +/** + * Property enctype + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.enctype=""; +/** + * Property method + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.method=""; +/** + * Property target + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.target=""; +/** + * function submit() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.submit = function(){}; +/** + * function reset() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFormElement.prototype.reset = function(){}; + +/** + * Object HTMLSelectElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLSelectElement(){}; +HTMLSelectElement.prototype = new HTMLElement(); +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.type=""; +/** + * Property selectedIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.selectedIndex=0; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.value=""; +/** + * Property length + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.length=0; +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.form = new HTMLFormElement(); +/** + * Property options + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLOptionsCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.options= new HTMLOptionsCollection(); +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.disabled=false; +/** + * Property multiple + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.multiple=false; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.name=""; +/** + * Property size + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.size=0; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.tabIndex=0; +/** + * function add(element, before) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {HTMLElement} element + * @param {HTMLElement} before + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.add = function(element, before){}; +/** + * function remove(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.remove = function(index){}; +/** + * function blur() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.blur = function(){}; +/** + * function focus() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLSelectElement.prototype.focus = function(){}; + +/** + * Object HTMLOptGroupElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLOptGroupElement(){}; +HTMLOptGroupElement.prototype = new HTMLElement(); +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptGroupElement.prototype.disabled=false; +/** + * Property label + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptGroupElement.prototype.label=""; + +/** + * Object Option() + * @constructor + * @param {String} text + * @param {String} value + * @param {Boolean} defaultSelected + * @param {Boolean} selected + */ +function Option(text, value, defaultSelected, selected){}; +Option.prototype = new HTMLOptionElement(); +/** + * Object HTMLOptionElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLOptionElement(){}; +HTMLOptionElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.form = new HTMLFormElement(); +/** + * Property defaultSelected + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.defaultSelected=false; +/** + * Property text + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.text=""; +/** + * Property index + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.index=0; +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.disabled=false; +/** + * Property label + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.label=""; +/** + * Property selected + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.selected=false; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOptionElement.prototype.value=""; + +/** + * Object HTMLInputElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLInputElement(){}; +HTMLInputElement.prototype = new HTMLElement(); +/** + * Property defaultValue + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.defaultValue=""; +/** + * Property defaultChecked + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.defaultChecked=false; +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.form = new HTMLFormElement(); +/** + * Property accept + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.accept=""; +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.accessKey=""; +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.align=""; +/** + * Property alt + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.alt=""; +/** + * Property checked + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.checked=false; +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.disabled=false; +/** + * Property masLength + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.maxLenght=0; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.name=""; +/** + * Property readOnly + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.readOnly=false; +/** + * Property size + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.size=0; +/** + * Property src + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.src=""; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.tabIndex=0; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.type=""; +/** + * Property useMap + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.useMap=""; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.value=""; +/** + * function blur() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.blur = function(){}; +/** + * function focus() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.focus = function(){}; +/** + * function select() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.select = function(){}; +/** + * function click() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLInputElement.prototype.click = function(){}; + +/** + * Object HTMLTextAreaElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTextAreaElement(){}; +HTMLTextAreaElement.prototype = new HTMLElement(); +/** + * Property defaultValue + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.defaultValue=""; +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.form= new HTMLFormElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.accessKey=""; +/** + * Property cols + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.cols=0; +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.disabled=false; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.name=""; +/** + * Property readOnly + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.readOnly=false; +/** + * Property rows + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.rows=0; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.tabIndex=0; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.type=""; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.value=""; +/** + * function blur() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.blur = function(){}; +/** + * function focus() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.focus = function(){}; +/** + * function select() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTextAreaElement.prototype.select = function(){}; + +/** + * Object HTMLButtonElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLButtonElement(){}; +HTMLButtonElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.form = new HTMLFormElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.accessKey = ""; +/** + * Property disabled + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.disabled=false; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.name=""; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.tabIndex=0; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.type=""; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLButtonElement.prototype.value=""; + +/** + * Object HTMLLabelElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLLabelElement(){}; +HTMLLabelElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLabelElement.prototype.form = new HTMLFormElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLabelElement.prototype.accessKey=""; +/** + * Property htmlFor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLabelElement.prototype.htmlFor=""; + +/** + * Object HTMLFieldSetElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLFieldSetElement(){}; +HTMLFieldSetElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFieldSetElement.prototype.form = new HTMLFormElement(); + +/** + * Object HTMLLegendElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLLegendElement(){}; +HTMLLegendElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLegendElement.prototype.form = new HTMLFormElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLegendElement.prototype.accessKey=""; +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLegendElement.prototype.align=""; + +/** + * Object HTMLUListElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLUListElement(){}; +HTMLUListElement.prototype = new HTMLElement(); +/** + * Property compact + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLUListElement.prototype.compact=false; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLUListElement.prototype.type=""; + +/** + * Object HTMLOListElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLOListElement(){}; +HTMLOListElement.prototype = new HTMLElement(); +/** + * Property compact + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOListElement.prototype.compact=false; +/** + * Property start + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOListElement.prototype.start=0; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLOListElement.prototype.type=""; + +/** + * Object HTMLDListElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLDListElement(){}; +HTMLDListElement.prototype = new HTMLElement(); +/** + * Property compact + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDListElement.prototype.compact=false; + +/** + * Object HTMLDirectoryElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLDirectoryElement(){}; +HTMLDirectoryElement.prototype = new HTMLElement(); +/** + * Property compact + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDirectoryElement.prototype.compact=false; + +/** + * Object HTMLMenuElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLMenuElement(){}; +HTMLMenuElement.prototype = new HTMLElement(); +/** + * Property compact + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMenuElement.prototype.compact=false; + +/** + * Object HTMLLIElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLLIElement(){}; +HTMLLIElement.prototype = new HTMLElement(); +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLIElement.prototype.type=""; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLLIElement.prototype.value=0; + +/** + * Object HTMLDivElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLDivElement(){}; +HTMLDivElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLDivElement.prototype.align=""; + +/** + * Object HTMLParagraphElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLParagraphElement(){}; +HTMLParagraphElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLParagraphElement.prototype.align=""; + +/** + * Object HTMLHeadingElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLHeadingElement(){}; +HTMLHeadingElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHeadingElement.prototype.align=""; + +/** + * Object HTMLQuoteElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLQuoteElement(){}; +HTMLQuoteElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLQuoteElement.prototype.align=""; + +/** + * Object HTMLPreElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLPreElement(){}; +HTMLPreElement.prototype = new HTMLElement(); +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLPreElement.prototype.width=0; + +/** + * Object HTMLBRElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLBRElement(){}; +HTMLBRElement.prototype = new HTMLElement(); +/** + * Property clear + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBRElement.prototype.clear=""; + +/** + * Object HTMLBaseFontElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLBaseFontElement(){}; +HTMLBaseFontElement.prototype = new HTMLElement(); +/** + * Property color + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBaseFontElement.prototype.color=""; +/** + * Property face + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBaseFontElement.prototype.face=""; +/** + * Property size + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLBaseFontElement.prototype.size=0; + +/** + * Object HTMLBaseFontElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLFontElement(){}; +HTMLFontElement.prototype = new HTMLElement(); +/** + * Property color + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFontElement.prototype.color=""; +/** + * Property face + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFontElement.prototype.face=""; +/** + * Property size + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFontElement.prototype.size=0; + +/** + * Object HTMLHRElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLHRElement(){}; +HTMLHRElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHRElement.prototype.align=""; +/** + * Property noShade + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHRElement.prototype.noShade=false; +/** + * Property size + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHRElement.prototype.size=""; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLHRElement.prototype.width=""; + +/** + * Object HTMLModElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLModElement(){}; +HTMLModElement.prototype = new HTMLElement(); +/** + * Property cite + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLModElement.prototype.cite=""; +/** + * Property dateTime + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLModElement.prototype.dateTime=""; + +/** + * Object HTMLAnchorElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLAnchorElement(){}; +HTMLAnchorElement.prototype = new HTMLElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.accessKey=""; +/** + * Property charset + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.charset=""; +/** + * Property coords + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.coords=""; +/** + * Property href + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.href=""; +/** + * Property hreflang + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.hreflang=""; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.name=""; +/** + * Property rel + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.rel=""; +/** + * Property rev + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.rev=""; +/** + * Property shape + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.shape=""; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.tabIndex=0; +/** + * Property target + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.target=""; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.type=""; +/** + * function blur() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.blur = function(){}; +/** + * function focus() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAnchorElement.prototype.focus = function(){}; + +/** + * Object Image() + * @constructor + * @param {Number} width + * @param {Number} height + */ +function Image(width, height){}; +Image.prototype = new HTMLImageElement(); +/** + * Object HTMLImageElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLImageElement(){}; +HTMLImageElement.prototype = new HTMLElement(); +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.name=""; +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.align=""; +/** + * Property alt + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.alt=""; +/** + * Property border + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.border=""; +/** + * Property height + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.height=0; +/** + * Property hspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.hspace=0; +/** + * Property isMap + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.isMap=false; +/** + * Property longDesc + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.longDesc=""; +/** + * Property src + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.src=""; +/** + * Property useMap + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.useMap=""; +/** + * Property vspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.vspace=0; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLImageElement.prototype.width=0; + +/** + * Object HTMLObjectElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLObjectElement(){}; +HTMLObjectElement.prototype = new HTMLElement(); +/** + * Property form + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLFormElement + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.form = new HTMLFormElement(); +/** + * Property code + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.code=""; +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.align=""; +/** + * Property archive + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.archive=""; +/** + * Property border + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.border=""; +/** + * Property codeBase + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.codeBase=""; +/** + * Property codeType + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.codeType=""; +/** + * Property data + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.data=""; +/** + * Property declare + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.declare=false; +/** + * Property height + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.height=""; +/** + * Property hspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.hspace=0; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.name=""; +/** + * Property standby + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.standby=""; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.tabIndex=0; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.type=""; +/** + * Property useMap + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.useMap=""; +/** + * Property vspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.vspace=0; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.width=""; +/** + * Property contentDocument + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Document + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLObjectElement.prototype.contentDocument= new HTMLDocument(); + +/** + * Object HTMLParamElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLParamElement(){}; +HTMLParamElement.prototype = new HTMLElement(); +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLParamElement.prototype.name=""; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLParamElement.prototype.type=""; +/** + * Property value + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLParamElement.prototype.value=""; +/** + * Property valueType + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLParamElement.prototype.valueType=""; + +/** + * Object HTMLAppletElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLAppletElement(){}; +HTMLAppletElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.align=""; +/** + * Property alt + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.alt=""; +/** + * Property archive + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.archive=""; +/** + * Property code + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.code=""; +/** + * Property codeBase + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.codeBase=""; +/** + * Property height + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.hight=""; +/** + * Property hspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.hspace=0; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.name=""; +/** + * Property object + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.object=""; +/** + * Property vspace + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.vspace=0; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAppletElement.prototype.width=""; + +/** + * Object HTMLMapElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLMapElement(){}; +HTMLMapElement.prototype = new HTMLElement(); +/** + * Property areas + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMapElement.prototype.areas = new HTMLCollection(); +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLMapElement.prototype.name=""; + +/** + * Object HTMLAreaElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLAreaElement(){}; +HTMLAreaElement.prototype = new HTMLElement(); +/** + * Property accessKey + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.accessKey=""; +/** + * Property alt + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.alt=""; +/** + * Property coords + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.coords=""; +/** + * Property href + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.href=""; +/** + * Property noHref + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.noHref=false; +/** + * Property shape + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.shape=""; +/** + * Property tabIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.tabIndex=0; +/** + * Property target + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLAreaElement.prototype.target=""; + +/** + * Object HTMLScriptElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLScriptElement(){}; +HTMLScriptElement.prototype = new HTMLElement(); +/** + * Property text + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.text=""; +/** + * Property htmlFor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.htmlFor=""; +/** + * Property event + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.event=""; +/** + * Property charset + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.charset=""; +/** + * Property defer + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.defer=""; +/** + * Property src + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.src=""; +/** + * Property type + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLScriptElement.prototype.type=""; + +/** + * Object HTMLTableElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableElement(){}; +HTMLTableElement.prototype = new HTMLElement(); +/** + * Property caption + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLTableCaptionElement + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.caption = new HTMLTableCaptionElement(); +/** + * Property tHead + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLTableSectionElement + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.tHead = new HTMLTableSelectionElement(); +/** + * Property tFoot + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLTableSectionElement + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.tFoot = new HTMLTableSelectionElement(); +/** + * Property rows + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.rows = new HTMLCollection(); +/** + * Property tBodies + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.tBodies = new HTMLCollection(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.align=""; +/** + * Property bgColor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.bgColor=""; +/** + * Property border + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.border=""; +/** + * Property cellPadding + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.cellPadding=""; +/** + * Property cellSpacing + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.cellSpacing=""; +/** + * Property frame + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.frame=""; +/** + * Property rules + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.rules=""; +/** + * Property summary + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.summary=""; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.width=""; +/** + * function createTHead(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @returns {HTMLElement} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.createTHead = function(){return new HTMLElement();}; +/** + * function deleteTHead(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.deleteTHead = function(){}; +/** + * function createTFoot(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @returns {HTMLElement} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.createTFoot = function(){return new HTMLElement();}; +/** + * function deleteTFoot(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.deleteTFoot = function(){}; +/** + * function createCaption(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @returns {HTMLElement} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.createCaption = function(){return new HTMLElement();}; +/** + * function deleteCaption(); + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.deleteCaption = function(){}; +/** + * function insertRow(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @returns {HTMLElement} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.insertRow = function(index){return new HTMLElement();}; +/** + * function deleteRow(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableElement.prototype.deleteRow = function(index){}; + +/** + * Object HTMLTableCaptionElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableCaptionElement(){}; +HTMLTableCaptionElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCaptionElement.prototype.align=""; + +/** + * Object HTMLTableColElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableColElement(){}; +HTMLTableColElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.align=""; +/** + * Property ch + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.ch=""; +/** + * Property chOff + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.chOff=""; +/** + * Property span + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.span=0; +/** + * Property vAlign + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.vAlign=""; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableColElement.prototype.width=""; + +/** + * Object HTMLTableSelectionElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableSelectionElement(){}; +HTMLTableSelectionElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.align=""; +/** + * Property ch + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.ch=""; +/** + * Property chOff + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.chOff=""; +/** + * Property vAlign + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.vAlign=""; +/** + * Property rows + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.rows=""; +/** + * function insertRow(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @returns {HTMLElement} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.insertRow = function(index){return new HTMLElement();}; +/** + * function deleteRow(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableSelectionElement.prototype.deleteRow = function(index){}; + +/** + * Object HTMLTableRowElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableRowElement(){}; +HTMLTableRowElement.prototype = new HTMLElement(); +/** + * Property rowIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.rowIndex=0; +/** + * Property sectionRowIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.sectionRowIndex=0; +/** + * Property cells + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type HTMLCollection + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.cells = new HTMLCollection(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.align=""; +/** + * Property bgColor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.bgColor=""; +/** + * Property ch + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.ch=""; +/** + * Property chOff + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.chOff=""; +/** + * Property vAlign + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.vAlign=""; +/** + * function insertCell(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @returns {HTMLElement} + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.insertCell = function(index){return new HTMLElement();}; +/** + * function insertCell(index) + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @param {Number} index + * @throws DOMException + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableRowElement.prototype.deleteCell = function(index){}; + +/** + * Object HTMLTableRowElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLTableCellElement(){}; +HTMLTableCellElement.prototype = new HTMLElement(); +/** + * Property cellIndex + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.cellIndex=0; +/** + * Property abbr + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.abbr=""; +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.align=""; +/** + * Property axis + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.axis=""; +/** + * Property bgColor + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.bgColor=""; +/** + * Property ch + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.ch=""; +/** + * Property chOff + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.chOff=""; +/** + * Property colSpan + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.colSpan=0; +/** + * Property headers + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.headers=""; +/** + * Property height + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.height=""; +/** + * Property noWrap + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.noWrap=false; +/** + * Property rowSpan + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.rowSpan=0; +/** + * Property scope + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.scope=""; +/** + * Property vAlign + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.vAlign=""; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLTableCellElement.prototype.width=""; + +/** + * Object HTMLFrameSetElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLFrameSetElement(){}; +HTMLFrameSetElement.prototype = new HTMLElement(); +/** + * Property cols + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameSetElement.prototype.cols=""; +/** + * Property rows + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameSetElement.prototype.rows=""; + +/** + * Object HTMLFrameElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLFrameElement(){}; +HTMLFrameElement.prototype = new HTMLElement(); +/** + * Property frameBorder + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.frameBorder=""; +/** + * Property longDesc + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.longDesc=""; +/** + * Property marginHeight + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.marginHeight=""; +/** + * Property marginWidth + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.marginWidth=""; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.name=""; +/** + * Property noResize + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Boolean + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.noResize=false; +/** + * Property scrolling + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.scrolling=""; +/** + * Property src + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.src=""; +/** + * Property contentDocument + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Document + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLFrameElement.prototype.contentDocument= new HTMLDocument(); + +/** + * Object HTMLIFrameElement() + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @augments HTMLElement + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + * @see HTMLElement + */ +function HTMLIFrameElement(){}; +HTMLIFrameElement.prototype = new HTMLElement(); +/** + * Property align + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.align=""; +/** + * Property frameBorder + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.frameBorder=""; +/** + * Property height + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.height=""; +/** + * Property longDesc + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.longDesc=""; +/** + * Property marginHeight + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.marginHeight=""; +/** + * Property marginWidth + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.marginWidth=""; +/** + * Property name + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.name=""; +/** + * Property scrolling + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.scrolling=""; +/** + * Property src + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.src=""; +/** + * Property width + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.width=""; +/** + * Property contentDocument + * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html + * + * @type Document + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model HTML Specification. + */ +HTMLIFrameElement.prototype.contentDocument= new HTMLDocument(); + +/* Stylesheets */ +/** + * Object CSS2Properties() + * http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/ecma-script-binding.html + * + * @augments Object + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Style Specification. + */ +function CSS2Properties(){}; +CSS2Properties.prototype = new Object(); \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/browserWindow.js b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/browserWindow.js new file mode 100644 index 0000000..cfbf452 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/browserWindow.js @@ -0,0 +1,618 @@ +/******************************************************************************* + * Copyright (c) 2008, 2013 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *******************************************************************************/ +function BarProp(){}; +BarProp.prototype = new Array(); + +/** + * Object Window() + * @super Global + * @constructor + * @since Common Usage, no standard +*/ +function Window(){}; +Window.prototype = new EventTarget(); +Window.prototype.self = new Window(); +Window.prototype.window = new Window(); +Window.prototype.frames = new Array(); +/** + * Property closed + * @type Boolean + * @memberOf Window + */ +Window.prototype.closed = new Boolean(); +/** + * Property defaultStatus + * @type String + * @memberOf Window + */ +Window.prototype.defaultStatus = ""; +/** + * Property document + * @type Document + * @memberOf Window + */ +Window.prototype.document= new HTMLDocument(); +/** + * Property history + * @type History + * @memberOf Window + */ +Window.prototype.history= new History(); +/** + * Property location + * @type Location + * @memberOf Window + */ +Window.prototype.location=new Location(); +/** + * Property name + * @type String + * @memberOf Window + */ +Window.prototype.name = ""; +/** + * Property navigator + * @type Navigator + * @memberOf Window + */ +Window.prototype.navigator = new Navigator(); +/** + * Property opener + * @type Window + * @memberOf Window + */ +Window.prototype.opener = new Window(); +/** + * Property outerWidth + * @type Number + * @memberOf Window + */ +Window.prototype.outerWidth = 0; +/** + * Property outerHeight + * @type Number + * @memberOf Window + */ +Window.prototype.outerHeight = 0; +/** + * Property pageXOffset + * @type Number + * @memberOf Window + */ +Window.prototype.pageXOffset = 0; +/** + * Property pageYOffset + * @type Number + * @memberOf Window + */ +Window.prototype.pageYOffset = 0; +/** + * Property parent + * @type Window + * @memberOf Window + */ +Window.prototype.parent = new Window(); +/** + * Property screen + * @type Screen + * @memberOf Window + */ +Window.prototype.screen = new Screen(); +/** + * Property status + * @type String + * @memberOf Window + */ +Window.prototype.status = ""; +/** + * Property top + * @type Window + * @memberOf Window + */ +Window.prototype.top = new Window(); + + +/* + * These properties may need to be moved into a browswer specific library. + */ + + /** + * Property innerWidth + * @type Number + * @memberOf Window + */ +Window.prototype.innerWidth = 0; +/** + * Property innerHeight + * @type Number + * @memberOf Window + */ +Window.prototype.innerHeight = 0; +/** + * Property screenX + * @type Number + * @memberOf Window + */ +Window.prototype.screenX = 0; +/** + * Property screenY + * @type Number + * @memberOf Window + */ +Window.prototype.screenY = 0; +/** + * Property screenLeft + * @type Number + * @memberOf Window + */ +Window.prototype.screenLeft = 0; +/** + * Property screenTop + * @type Number + * @memberOf Window + */ +Window.prototype.screenTop = 0; +//Window.prototype.event = new Event(); +Window.prototype.length = 0; +Window.prototype.scrollbars= new BarProp(); +Window.prototype.scrollX=0; +Window.prototype.scrollY=0; +Window.prototype.content= new Window(); +Window.prototype.menubar= new BarProp(); +Window.prototype.toolbar= new BarProp(); +Window.prototype.locationbar= new BarProp(); +Window.prototype.personalbar= new BarProp(); +Window.prototype.statusbar= new BarProp(); +Window.prototype.directories= new BarProp(); +Window.prototype.scrollMaxX=0; +Window.prototype.scrollMaxY=0; +Window.prototype.fullScreen=""; +Window.prototype.frameElement=""; +/* End properites */ + +/** + * function alert() + * @param {String} message + * @memberOf Window + */ +Window.prototype.alert = function(message){}; +/** + * function blur() + * @memberOf Window + */ +Window.prototype.blur = function(){}; +/** + * function clearInterval(intervalID) + * @param intervalID + * @memberOf Window + */ +Window.prototype.clearInterval = function(intervalID){}; +/** + * function clearTimeout(intervalID) + * @param intervalID + * @memberOf Window + */ +Window.prototype.clearTimeout = function(intervalID){}; +/** + * function close() + * @memberOf Window + */ +Window.prototype.close = function(){}; +/** + * function confirm() + * @param {String} arg + * @memberOf Window + * @returns {Boolean} + */ +Window.prototype.confirm = function(arg){return false;}; +/** + * function focus() + * @memberOf Window + */ +Window.prototype.focus = function(){}; +/** + * function getComputedStyle(element, pseudoElt ) + * @param {Element} element + * @param {String} pseudoElt + * @memberOf Window + * @returns {Object} + */ +Window.prototype.getComputedStyle = function(element,pseudoElt ){return new Object();}; +/** + * function moveTo(x, y) + * @param {Number} x + * @param {Number} y + * @memberOf Window + */ +Window.prototype.moveTo = function(x,y){}; +/** + * function moveBy(deltaX, deltaY) + * @param {Number} deltaX + * @param {Number} deltaY + * @memberOf Window + */ +Window.prototype.moveBy = function(deltaX,deltaY){}; +/** + * function open(optionalArg1, optionalArg2, optionalArg3, optionalArg4) + * @param {String} url + * @param {String} windowName + * @param {String} windowFeatures + * @param {Boolean} optionalArg4 + * @memberOf Window + * @returns {Window} + */ +Window.prototype.open = function(url, windowName, windowFeatures, optionalArg4){return new Window();}; +/** + * function print() + * @memberOf Window + */ +Window.prototype.print = function(){}; +/** + * function prompt(text, value) + * @param {String} text + * @param {String} value + * @memberOf Window + * @returns {String} + */ +Window.prototype.prompt = function(text, value){return "";}; +/** + * function resizeTo(newOuterWidth,newOuterHeight) + * @param {Number} newOuterWidth + * @param {Number} newOuterHeighr + * @memberOf Window + */ +Window.prototype.resizeTo=function(newOuterWidth,newOuterHeight){}; +/** + * function resizeBy(deltaX, deltaY) + * @param {Number} deltaX + * @param {Number} deltaY + * @memberOf Window + */ +Window.prototype.resizeBy=function(deltaX,deltaY){}; +/** + * function scrollTo(x,y) + * @param {Number} x + * @param {Number} y + * @memberOf Window + */ +Window.prototype.scrollTo=function(x,y){}; +/** + * function scrollBy(pixelX,pixelY) + * @param {Number} pixelX + * @param {Number} pixelY + * @memberOf Window + */ +Window.prototype.scrollBy=function(pixelX,pixelY){}; +/** + * function setInterval(arg1, arg2) + * @param {Function} callback + * @param {Number} delay + * @memberOf Window + * @returns {Number} + */ +Window.prototype.setInterval=function(callback, delay){return 0;}; +/** + * function setTimeout(callback, delay) + * @param {Function} callback + * @param {Number} delay + * @memberOf Window + * @returns {Number} + */ +Window.prototype.setTimeout=function(callback, delay){ return 0;}; +/** + * function atob(encodedData) + * @param {String} encodedData + * @memberOf Window + * @returns {String} + */ +Window.prototype.atob=function(encodedData){return "";}; +/** + * function btoa(arg) + * @param {String} stringToEncode + * @memberOf Window + * @returns {String} + */ +Window.prototype.btoa=function(stringToEncode){return "";}; +/** + * function setResizable(resizable) + * @param {Boolean} resizable + * @memberOf Window + */ +Window.prototype.setResizable=function(resizable){}; + +Window.prototype.captureEvents=function(eventType){}; +Window.prototype.releaseEvents=function(eventType){}; +Window.prototype.routeEvent=function(eventType){}; +Window.prototype.enableExternalCapture=function(){}; +Window.prototype.disableExternalCapture=function(){}; +Window.prototype.find=function(){}; +Window.prototype.back=function(){}; +Window.prototype.forward=function(){}; +Window.prototype.home=function(){}; +Window.prototype.stop=function(){}; +/** + * @param {Number} pixelX + * @param {Number} pixelY + */ +Window.prototype.scroll=function(pixelX,pixelY){}; +/* End functions */ + +/** + * Object History() + * @super Object + * @constructor + * @since Common Usage, no standard + */ +function History(){}; +History.prototype=new Object(); +History.prototype.history = new History(); +/** + * Property length + * @type Number + * @memberOf History + */ +History.prototype.length = 0; +/** + * function back() + * @memberOf History + */ +History.prototype.back = function(){}; +/** + * function forward() + * @memberOf History + */ +History.prototype.forward = function(){}; +/** + * function back() + * @param arg + * @memberOf History + */ +History.prototype.go = function(arg){}; + +/** + * Object Location() + * @super Object + * @constructor + * @since Common Usage, no standard + */ +function Location(){}; +Location.prototype = new Object(); +Location.prototype.location = new Location(); +/** + * Property hash + * @type String + * @memberOf Location + */ +Location.prototype.hash = ""; +/** + * Property host + * @type String + * @memberOf Location + */ +Location.prototype.host = ""; +/** + * Property hostname + * @type String + * @memberOf Location + */ +Location.prototype.hostname = ""; +/** + * Property href + * @type String + * @memberOf Location + */ +Location.prototype.href = ""; +/** + * Property pathname + * @type String + * @memberOf Location + */ +Location.prototype.pathname = ""; +/** + * Property port + * @type String + * @memberOf Location + */ +Location.prototype.port = ""; +/** + * Property protocol + * @type String + * @memberOf Location + */ +Location.prototype.protocol = ""; +/** + * Property search + * @type String + * @memberOf Location + */ +Location.prototype.search = ""; +/** + * function assign(arg) + * @param {String} arg + * @memberOf Location + */ +Location.prototype.assign = function(arg){}; +/** + * function reload(optionalArg) + * @param {Boolean} optionalArg + * @memberOf Location + */ +Location.prototype.reload = function(optionalArg){}; +/** + * function replace(arg) + * @param {String} arg + * @memberOf Location + */ +Location.prototype.replace = function(arg){}; + +/** + * Object Navigator() + * @super Object + * @constructor + * @since Common Usage, no standard +*/ +function Navigator(){}; +Navigator.prototype = new Object(); +Navigator.prototype.navigator = new Navigator(); +/** + * Property appCodeName + * @type String + * @memberOf Navigator + */ +Navigator.prototype.appCodeName = ""; +/** + * Property appName + * @type String + * @memberOf Navigator + */ +Navigator.prototype.appName = ""; +/** + * Property appVersion + * @type String + * @memberOf Navigator + */ +Navigator.prototype.appVersion = ""; +/** + * Property cookieEnabled + * @type Boolean + * @memberOf Navigator + */ +Navigator.prototype.cookieEnabled = new Boolean(); +/** + * Property mimeTypes + * @type Array + * @memberOf Navigator + */ +Navigator.prototype.mimeTypes = new Array(); +/** + * Property platform + * @type String + * @memberOf Navigator + */ +Navigator.prototype.platform = ""; +/** + * Property plugins + * @type Array + * @memberOf Navigator + */ +Navigator.prototype.plugins = new Array(); +/** + * Property userAgent + * @type String + * @memberOf Navigator + */ +Navigator.prototype.userAgent = ""; +/** + * function javaEnabled() + * @returns {Boolean} + * @memberOf Navigator + */ +Navigator.prototype.javaEnabled = function(){return false;}; + +/** + * Object Screen() + * @super Object + * @constructor + * @since Common Usage, no standard +*/ +function Screen(){}; +Screen.prototype = new Object(); +Screen.prototype.screen = new Screen(); +/** + * Property availHeight + * @type Number + * @memberOf Screen + */ +Navigator.prototype.availHeight = 0; +/** + * Property availWidth + * @type Number + * @memberOf Screen + */ +Navigator.prototype.availWidth = 0; +/** + * Property colorDepth + * @type Number + * @memberOf Screen + */ +Navigator.prototype.colorDepth = 0; +/** + * Property height + * @type Number + * @memberOf Screen + */ +Navigator.prototype.height = 0; +/** + * Property width + * @type Number + * @memberOf Screen + */ +Navigator.prototype.width = 0; + +Event.prototype=new Object(); +// PhaseType +Event.prototype.CAPTURING_PHASE = 1; +Event.prototype.AT_TARGET = 2; +Event.prototype.BUBBLING_PHASE = 3; + +Event.prototype.type=""; +Event.prototype.target=new EventTarget(); +Event.prototype.currentTarget=new EventTarget(); +Event.prototype.eventPhase=0; +Event.prototype.bubbles=false; +Event.prototype.cancelable=false; +Event.prototype.timeStamp=0; +Event.prototype.stopPropagation=function(){}; +Event.prototype.preventDefault=function(){}; +/** + * @param {String} eventTypeArg + * @param {Boolean} canBubbleArg + * @param {Boolean} cancelableArg + */ +Event.prototype.initEvent=function(eventTypeArg, + canBubbleArg, + cancelableArg){}; +function EventListener(){}; +EventListener.prototype=new Object(); +/** + * @param {Event} event + * @memberOf EventListener + */ +EventListener.prototype.handleEvent=function(event){}; + +function EventTarget(){}; +EventTarget.prototype=new Object(); +/* + * These functions may need to be moved into a browser specific library. + */ +/** + * @memberOf Window + * @param event {Event} + * @throws {EventException} + */ +EventTarget.prototype.dispatchEvent=function(event){}; + +// https://developer.mozilla.org/en-US/docs/DOM/element.addEventListener +/** + * @memberOf Window + * @param {String} type + * @param {EventListener} listener + * @param {Boolean} useCapture + */ +EventTarget.prototype.addEventListener=function(type, listener, useCapture){}; +// https://developer.mozilla.org/en-US/docs/DOM/element.removeEventListener +/** + * @memberOf Window + * @param {String} type + * @param {EventListener} listener + * @param {Boolean} useCapture + */ +EventTarget.prototype.removeEventListener=function(type, listener, useCapture){}; diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/dom5.js b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/dom5.js new file mode 100644 index 0000000..d199ab6 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/dom5.js @@ -0,0 +1,922 @@ +/******************************************************************************* + * Copyright (c) 2013 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + ******************************************************************************/ + +/** + * function querySelector(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf Document + * @returns {Element} + */ +Document.prototype.querySelector=function(selectors){return new Element();}; + +/** + * function querySelectorAll(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf Document + * @returns {NodeList} + */ +Document.prototype.querySelectorAll=function(selectors){return new NodeList();}; + +/** + * function querySelector(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf DocumentFragment + * @returns {Element} + */ +DocumentFragment.prototype.querySelector=function(selectors){return new Element();}; + +/** + * function querySelectorAll(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf DocumentFragment + * @returns {NodeList} + */ +DocumentFragment.prototype.querySelectorAll=function(selectors){return new NodeList();}; + +/** + * function querySelector(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf Element + * @returns {Element} + */ +Element.prototype.querySelector=function(selectors){return new Element();}; + +/** + * function querySelectorAll(selectors) + * http://www.w3.org/TR/2012/PR-selectors-api-20121213 + * @param {String} selectors + * @memberOf Element + * @returns {NodeList} + */ +Element.prototype.querySelectorAll=function(selectors){return new NodeList();}; + +/** + * Property state + * @type Object + * @memberOf History + */ +History.prototype.state=new Object(); + +/** + * function pushState(data,title,url) + * http://www.w3.org/TR/2012/CR-html5-20121217/browsers.html#history + * @param {Object} data + * @param {String} title + * @param {String} url - optional + * @memberOf History + */ +History.prototype.pushState=function(data,title,url){}; + +/** + * function replaceState(data,title,url) + * http://www.w3.org/TR/2012/CR-html5-20121217/browsers.html#history + * @param {Object} data + * @param {String} title + * @param {String} url - optional + * @memberOf History + */ +History.prototype.replaceState=function(data,title,url){}; + +/** + * Property sessionStorage + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @type Storage + * @memberOf Window + */ +Window.prototype.sessionStorage=new Storage(); + +/** + * Property localStorage + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @type Storage + * @memberOf Window + */ +Window.prototype.localStorage=new Storage(); + +/** + * Object Storage + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + */ +function Storage(){}; +Storage.prototype=new Object(); + +/** + * Property length + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @type Number + * @memberOf Storage + */ +Storage.prototype.length=new Number(); + +/** + * function key(index) + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @param {Number} index + * @memberOf Storage + * @returns String + */ +Storage.prototype.key=function(index){return new String();}; + +/** + * function getItem(key) + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @param {String} key + * @memberOf Storage + * @returns String + */ +Storage.prototype.getItem=function(key){return new String();}; + +/** + * function setItem(key,value) + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @param {String} key + * @param {String} value + * @memberOf Storage + */ +Storage.prototype.setItem=function(key,value){}; + +/** + * function removeItem(key) + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @param {String} key + * @memberOf Storage + */ +Storage.prototype.removeItem=function(key){}; + +/** + * function clear() + * http://www.w3.org/TR/2011/CR-webstorage-20111208 + * @memberOf Storage + */ +Storage.prototype.clear=function(){}; + +/** + * Object WebSocket + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @constructor + * @param {String} url + */ +function WebSocket(url){}; +WebSocket.prototype=new Object(); + +/** + * Constant WebSocket.CONNECTING=0 + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @constant + * @type Number + */ +WebSocket.prototype.CONNECTING=0; + +/** + * Constant WebSocket.OPEN=1 + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @constant + * @type Number + */ +WebSocket.prototype.OPEN=1; + +/** + * Constant WebSocket.CLOSING=2 + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @constant + * @type Number + */ +WebSocket.prototype.CLOSING=2; + +/** + * Constant WebSocket.CLOSED=3 + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @constant + * @type Number + */ +WebSocket.prototype.CLOSED=3; + +/** + * Property url + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type String + * @memberOf WebSocket + */ +WebSocket.prototype.url=new String(); + +/** + * Property readyState + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type Number + * @memberOf WebSocket + */ +WebSocket.prototype.readyState=new Number(); + +/** + * Property bufferedAmount + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type Number + * @memberOf WebSocket + */ +WebSocket.prototype.bufferedAmount=new Number(); + +/** + * Property extensions + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type String + * @memberOf WebSocket + */ +WebSocket.prototype.extensions=new String(); + +/** + * Property protocol + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type String + * @memberOf WebSocket + */ +WebSocket.prototype.protocol=new String(); + +/** + * Property binaryType + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @type String + * @memberOf WebSocket + */ +WebSocket.prototype.binaryType=new String(); + +/** + * function close(code,reason) + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @param {Number} code - optional + * @param {String} reason - optional + * @memberOf WebSocket + */ +WebSocket.prototype.close=function(code,reason){}; + +/** + * function send(data) + * http://www.w3.org/TR/2012/CR-websockets-20120920 + * @param {Object} data - may be a String, Blob, ArrayBuffer, or ArrayBufferView + * @memberOf WebSocket + */ +WebSocket.prototype.send=function(data){}; + +/** + * Property geolocation + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Geolocation + * @memberOf Navigator + */ +Navigator.prototype.geolocation=new Geolocation(); + +/** + * Object Geolocation + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + */ +function Geolocation(){}; +Geolocation.prototype=new Object(); + +/** + * function getCurrentPosition(successCallback,errorCallback,options) + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510/ + * @param {Function} successCallback (Position pos) + * @param {Function} errorCallback (PositionError error) - optional + * @param {PositionOptions} options - optional + * @memberOf Geolocation + */ +Geolocation.prototype.getCurrentPosition=function(successCallback,errorCallback,options){}; + +/** + * function watchPosition(successCallback,errorCallback,options) + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510/ + * @param {Function} successCallback (Position pos) + * @param {Function} errorCallback (PositionError error) - optional + * @param {PositionOptions} options - optional + * @memberOf Geolocation + * @returns {Number} + */ +Geolocation.prototype.watchPosition=function(successCallback,errorCallback,options){return new Number();}; + +/** + * function clearWatch(watchId) + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @param {Number} watchId + * @memberOf Geolocation + */ +Geolocation.prototype.clearWatch=function(watchId){}; + +/** + * Object Coordinates + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + */ +function Coordinates(){}; +Coordinates.prototype=new Object(); + +/** + * Property latitude + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.latitude=new Number();; + +/** + * Property longitude + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.longitude=new Number();; + +/** + * Property altitude + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.altitude=new Number();; + +/** + * Property accuracy + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.accuracy=new Number();; + +/** + * Property altitudeAccuracy + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.altitudeAccuracy=new Number();; + +/** + * Property heading + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.heading=new Number();; + +/** + * Property speed + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Coordinates + */ +Coordinates.prototype.speed=new Number(); + +/** + * Object Position + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + */ +function Position(){}; +Position.prototype=new Object(); + +/** + * Property coords + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Coordinates + * @memberOf Position + */ +Position.prototype.coords=new Coordinates(); + +/** + * Property timestamp + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf Position + */ +Position.prototype.timestamp=new Number; + +/** + * Object PositionError + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + */ +function PositionError(){}; +PositionError.prototype=new Object(); + +/** + * Constant PositionError.PERMISSION_DENIED=1 + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @constant + * @type Number + */ +PositionError.prototype.PERMISSION_DENIED=1; + +/** + * Constant PositionError.POSITION_UNAVAILABLE=2 + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @constant + * @type Number + */ +PositionError.prototype.POSITION_UNAVAILABLE=2; + +/** + * Constant PositionError.TIMEOUT=3 + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @constant + * @type Number + */ +PositionError.prototype.TIMEOUT=3; + +/** + * Property code + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf PositionError + */ +PositionError.prototype.code=new Number(); + +/** + * Property message + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type String + * @memberOf PositionError + */ +PositionError.prototype.message=new String(); + +/** + * Object PositionOptions + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + */ +function PositionOptions(){}; +PositionOptions.prototype=new Object(); + +/** + * Property enableHighAccuracy + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Boolean + * @memberOf PositionOptions + */ +PositionOptions.prototype.enableHighAccuracy=new Boolean(); + +/** + * Property timeout + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf PositionOptions + */ +PositionOptions.prototype.timeout=new Number(); + +/** + * Property maximumAge + * http://www.w3.org/TR/2012/PR-geolocation-API-20120510 + * @type Number + * @memberOf PositionOptions + */ +PositionOptions.prototype.maximumAge=new Number(); + +/** + * Object TimeRanges + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + */ +function TimeRanges(){}; +TimeRanges.prototype=new Object(); + +/** + * Property length + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf TimeRanges + */ +TimeRanges.prototype.length=new Number(); + +/** + * function start(index) + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @param {Number} index + * @memberOf TimeRanges + * @returns {Number} + */ +function start(index) {return new Number();}; + +/** + * function end(index) + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @param {Number} index + * @memberOf TimeRanges + * @returns {Number} + */ +function end(index) {return new Number();}; + +/** + * Object MediaError + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + */ +function MediaError(){}; +MediaError.prototype=new Object(); + +/** + * Constant MediaError.MEDIA_ERR_ABORTED=1 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +MediaError.prototype.MEDIA_ERR_ABORTED=1; + +/** + * Constant MediaError.MEDIA_ERR_NETWORK=2 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +MediaError.prototype.MEDIA_ERR_NETWORK=2; + +/** + * Constant MediaError.MEDIA_ERR_DECODED=3 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +MediaError.prototype.MEDIA_ERR_DECODE=3; + +/** + * Constant MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED=4 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +MediaError.prototype.MEDIA_ERR_SRC_NOT_SUPPORTED=4; + +/** + * Property code + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf MediaError + */ +MediaError.prototype.code=new Number(); + +/** + * Object HTMLMediaElement + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @augments HTMLElement + * @see HTMLElement + */ +function HTMLMediaElement(){}; +HTMLMediaElement.prototype = new HTMLElement(); + +/** + * Property src + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type String + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.src=new String(); + +/** + * Property currentSrc + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type String + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.currentSrc=new String(); + +/** + * Property crossOrigin + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type String + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.crossOrigin=new String(); + +/** + * Constant HTMLMediaElement.NETWORK_EMPTY=0 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.NETWORK_EMPTY=0; + +/** + * Constant HTMLMediaElement.NETWORK_IDLE=1 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.NETWORK_IDLE=1; + +/** + * Constant HTMLMediaElement.NETWORK_LOADING=2 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.NETWORK_LOADING=2; + +/** + * Constant HTMLMediaElement.NETWORK_NO_SOURCE=3 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.NETWORK_NO_SOURCE=3; + +/** + * Property networkState + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.networkState=new Number(); + +/** + * Property preload + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type String + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.preload=new String(); + +/** + * Property buffered + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type TimeRanges + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.buffered=new TimeRanges(); + +/** + * function load() + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.load=function(){}; + +/** + * function canPlayType(type) + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @param {String} type + * @memberOf HTMLMediaElement + * @returns {String} + */ +HTMLMediaElement.prototype.canPlayType=function(type){new String();}; + +/** + * Constant HTMLMediaElement.HAVE_NOTHING=0 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.HAVE_NOTHING=0; + +/** + * Constant HTMLMediaElement.HAVE_METADATA=1 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.HAVE_METADATA=1; + +/** + * Constant HTMLMediaElement.HAVE_CURRENT_DATA=2 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.HAVE_CURRENT_DATA=2; + +/** + * Constant HTMLMediaElement.HAVE_FUTURE_DATA=3 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.HAVE_FUTURE_DATA=3; + +/** + * Constant HTMLMediaElement.HAVE_ENOUGH_DATA=4 + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @constant + * @type Number + */ +HTMLMediaElement.prototype.HAVE_ENOUGH_DATA=4; + +/** + * Property readyState + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.readyState=new Number(); + +/** + * Property seeking + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.seeking=new Boolean(); + +/** + * Property currentTime + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.currentTime=new Number(); + +/** + * Property initialTime + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.initialTime=new Number(); + +/** + * Property duration + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.duration=new Number(); + +/** + * Property startOffsetTime + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Date + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.startOffsetTime=new Date(); + +/** + * Property paused + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.paused=new Boolean(); + +/** + * Property defaultPlaybackRate + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.defaultPlaybackRate=new Number(); + +/** + * Property playbackRate + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.playbackRate=new Number(); + +/** + * Property played + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type TimeRanges + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.played=new TimeRanges(); + +/** + * Property seekable + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type TimeRanges + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.seekable=new TimeRanges(); + +/** + * Property ended + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.ended=new Boolean(); + +/** + * Property autoplay + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.autoplay=new Boolean(); + +/** + * Property loop + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.loop=new Boolean(); + +/** + * function play() + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.play=function(){}; + +/** + * function pause() + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.pause=function(){}; + +/** + * Property controls + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.controls=new Boolean(); + +/** + * Property volume + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.volume=new Number(); + +/** + * Property muted + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.muted=new Boolean(); + +/** + * Property defaultMuted + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Boolean + * @memberOf HTMLMediaElement + */ +HTMLMediaElement.prototype.defaultMuted=new Boolean(); + +/** + * Object HTMLAudioElement + * http://www.w3.org/TR/2012/WD-html5-20120329/the-audio-element.html + * @augments HTMLMediaElement + * @constructor + * @param {String} src + * @see HTMLMediaElement + */ +function HTMLAudioElement(src){}; +HTMLAudioElement.prototype = new HTMLMediaElement(); + +/** + * Object HTMLVideoElement + * http://www.w3.org/TR/2012/WD-html5-20120329/the-audio-element.html + * @augments HTMLMediaElement + * @see HTMLMediaElement + */ +function HTMLVideoElement(){}; +HTMLVideoElement.prototype = new HTMLMediaElement(); + +/** + * Property width + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLVideoElement + */ +HTMLVideoElement.prototype.width=new Number(); + +/** + * Property height + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLVideoElement + */ +HTMLVideoElement.prototype.height=new Number(); + +/** + * Property videoWidth + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLVideoElement + */ +HTMLVideoElement.prototype.videoWidth=new Number(); + +/** + * Property videoHeight + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type Number + * @memberOf HTMLVideoElement + */ +HTMLVideoElement.prototype.videoHeight=new Number(); + +/** + * Property poster + * http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html + * @type String + * @memberOf HTMLVideoElement + */ +HTMLVideoElement.prototype.poster=new String(); + diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/system.js b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/system.js new file mode 100644 index 0000000..2066ffb --- /dev/null +++ b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/system.js @@ -0,0 +1,1458 @@ +/******************************************************************************* + * Copyright (c) 2008, 2010 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + ****************************************************************************** +* Please see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html +*/ + +/** + * Object Object() + * @constructor + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Object(){}; + /** + * function toString() + * @memberOf Object + * @returns {String} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.toString = function(){return "";}; + /** + * function toLocaleString() + * @memberOf Object + * @returns {String} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.toLocaleString = function(){return "";}; + /** + * function valueOf() + * @memberOf Object + * @returns {Object} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.valueOf = function(){return new Object();}; + /** + * function hasOwnProperty(name) + * @memberOf Object + * @param {String} name + * @returns {Boolean} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.hasOwnProperty = function(name){return true;}; + /** + * function isPrototypeOf(o) + * @memberOf Object + * @param {Object} o + * @returns {Boolean} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.isPrototypeOf = function(o){return true;}; + /** + * function propertyIsEnumerable(name) + * @memberOf Object + * @param {Object} name + * @returns {Boolean} + * @see Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.propertyIsEnumerable = function(name){return true;}; +/** + * Property constructor + * @type Function + * @memberOf Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Object.prototype.constructor = new Function(); + +/** + * Object String() + * @constructor + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function String(){} +String.prototype = new Object(); +/** + * static function fromCharCode(charCode1, ...) + * @memberOf String + * @param {Number} charCode + * @returns {String} + * @static + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.fromCharCode = function(charCode){return "";}; +/** + * Property length + * @type Number + * @memberOf String + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.length = 1; + /** + * function charAt(position) + * @memberOf String + * @param {Number} position + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.charAt = function(position){return "";}; + /** + * function charCodeAt(position) + * @memberOf String + * @param {Number} position + * @returns {Number} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.charCodeAt = function(position){return 0;}; + /** + * function concat(value1, ...) + * @memberOf String + * @param {String} value + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.concat = function(value){return "";}; + /** + * function indexOf(searchString, startPosition) + * @memberOf String + * @param {String} searchString + * @param {Number} startPosition + * @returns {Number} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.indexOf = function(searchString, startPosition){return 1;}; + /** + * function lastIndexOf(searchString, startPosition) + * @memberOf String + * @param {String} searchString + * @param {Number} startPosition + * @returns {Number} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.lastIndexOf = function(searchString, startPosition){return 1;}; + /** + * function localeCompare(otherString) + * @memberOf String + * @param {String} otherString + * @returns {Number} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.localeCompare = function(otherString){return 0;}; + /** + * function match(regexp) + * @memberOf String + * @param {RegExp} regexp + * @returns {Array} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.match = function(regexp){return [];}; + /** + * function replace(regexp, replaceValue) + * @memberOf String + * @param {RegExp} regexp + * @param {String} replaceValue + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.replace = function(regexp, replaceValue){return "";}; + /** + * function search(regexp) + * @memberOf String + * @param {RegExp} regexp + * @returns {Number} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.search = function(regexp){return 1;}; + /** + * function slice(start, end) + * @memberOf String + * @param {Number} start + * @param {Number} end + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.slice = function(start, end){return "";}; + /** + * function split(separator, limit) + * @memberOf String + * @param {String} separator + * @param {Number} limit + * @returns {Array} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.split = function(separator, limit){return [];}; + /** + * function substring(start, end) + * @memberOf String + * @param {Number} start + * @param {Number} end + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.substring = function(start, end){return "";}; + /** + * function toLowerCase() + * @memberOf String + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.toLowerCase = function(){return "";}; + /** + * function toLocaleLowerCase() + * @memberOf String + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.toLocaleLowerCase = function(){return "";}; + /** + * function toUpperCase() + * @memberOf String + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.toUpperCase= function (){return "";}; + /** + * function toLocaleUpperCase() + * @memberOf String + * @returns {String} + * @see String + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +String.prototype.toLocaleUpperCase = function(){return "";}; + +/** + * Object Number() + * @constructor + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Number(){} +Number.prototype = new Object(); +/** + * property MIN_VALUE + * @type Number + * @memberOf Number + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.MIN_VALUE = 0; +/** + * property MAX_VALUE + * @type Number + * @memberOf Number + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.MAX_VALUE = 0 ; +/** + * property NaN + * @type Number + * @memberOf Number + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.NaN = 0; +/** + * property NEGATIVE_INFINITY + * @type Number + * @memberOf Number + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.NEGATIVE_INFINITY = 0; +/** + * property POSITIVE_INFINITY + * @type Number + * @memberOf Number + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.POSITIVE_INFINITY = 0; +/** + * function toFixed(fractionDigits) + * @memberOf Number + * @param {Number} fractionDigits + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Number.prototype.toFixed = function(fractionDigits){return "";}; +/** + * function toExponential(fractionDigits) + * @memberOf Number + * @param {Number} fractionDigits + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +Number.prototype.toExponential = function(fractionDigits){return "";}; +/** + * function toPrecision(precision) + * @memberOf Number + * @param {Number} fractionDigits + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +Number.prototype.toPrecision = function(fractionDigits){return "";}; + +/** + * Object Boolean() + * @constructor + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function Boolean(){}; +Boolean.prototype = new Object(); + +/** + * Object Array() + * @constructor + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Array(){}; +Array.prototype = new Object(); +/** + * Property length + * @type Number + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.length = 1; +/** + * function concat(args) + * @param {Array} args + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.concat = function(args){return [];}; +/** + * function join(seperator) + * @param {String} seperator + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.join = function(seperator){return [];}; +/** + * function pop() + * @returns {Object} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.pop = function(){return new Object();}; +/** + * function push(args) + * @param {Array} args + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.push = function(args){}; +/** + * function reverse() + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.reverse = function(){return [];}; +/** + * function shift() + * @returns {Object} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.shift = function(){return new Object();}; +/** + * function slice(start, end) + * @param {Number} start + * @param {Number} end + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.slice = function(start, end){return [];}; +/** + * function sort(funct) + * @param {Function} funct + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.sort = function(funct){return [];}; +/** + * function splice(start, deletecount, items) + * @param {Number} start + * @param {Number} deletecount + * @param {Array} items + * @returns {Array} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.splice = function(start, deletecount, items){return [];}; +/** + * function unshift(items) + * @param {Object} values + * @returns {Number} + * @memberOf Array + * @see Array + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Array.prototype.unshift = function(values){return 1;}; + +/** + * Object Function() + * @constructor + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Function(){}; +Function.prototype = new Object(); +/** + * function apply (thisObject, argArray) + * @param {Object} thisObject + * @param {Array} argArray + * @returns {Object} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Function.prototype.apply = function(thisArg, argArray){return new Object();}; +/** + * function call (thisObject, args) + * @param {Object} thisObject + * @param {Object} args + * @returns {Object} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Function.prototype.call = function(thisObject, args){return new Object();}; +/** + * property length + * @type Number + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Function.prototype.length = 0; + +/** + * Object Date(s) + * @constructor + * @param {String} s + * @extends Object + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Date(s){}; +Date.prototype = new Object(); +/** + * function UTC(hour, min, sec, ms) + * @memberOf Date + * @param {Number} hour + * @param {Number} min + * @param {Number} sec + * @param {Number} ms + * @returns {Number} + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +Date.UTC = function(hour, min, sec, ms){return 0;}; +/** + * function parse(string) + * @memberOf Date + * @param {String} string + * @returns {Number} + * @static + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.parse = function(string){return 0;}; +/** + * function toDateString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.toDateString = function(){return "";}; +/** + * function toTimeString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.toTimeString = function(){return "";}; +/** + * function toLocaleString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.toLocaleString = function(){return "";}; +/** + * function toLocaleDateString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.toLocaleDateString = function(){return "";}; +/** + * function toLocaleTimeString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.toLocaleTimeString = function(){return "";}; +/** + * function valueOf() + * @memberOf Date + * @returns {Object} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.valueOf = function(){return new Object();}; +/** + * function getFullYear() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getFullYear = function(){return 0;}; +/** + * function getTime() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getTime = function(){return 0;}; +/** + * function getUTCFullYear() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCFullYear = function(){return 0;}; +/** + * function getMonth() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getMonth = function(){return 0;}; +/** + * function getUTCMonth() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCMonth = function(){return 0;}; +/** + * function getDate() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getDate = function(){return 0;}; +/** + * function getUTCDate() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCDate = function(){return 0;}; +/** + * function getDay() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getDay = function(){return 0;}; +/** + * function getUTCDay() + * @memberOf Date + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + + */ +Date.prototype.getUTCDay=function(){return 0;}; +/** + * function getHours() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getHours = function(){return 0;}; +/** + * function getUTCHours() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCHours = function(){return 0;}; +/** + * function getMinutes() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getMinutes = function(){return 0;}; +/** + * function getUTCMinutes() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCMinutes = function(){return 0;}; +/** + * function getSeconds() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getSeconds = function(){return 0;}; +/** + * function getUTCSeconds() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCSeconds = function(){return 0;}; +/** + * function getMilliseconds() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getMilliseconds = function(){return 0;}; +/** + * function getUTCMilliseconds() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getUTCMilliseconds = function(){return 0;}; +/** + * function getTimezoneOffset() + * @memberOf Date + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.getTimezoneOffset = function(){return 0;}; +/** + * function setTime(value) + * @memberOf Date + * @returns {Number} + * @param {Number} value + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setTime = function(value){return 0;}; + +/** + * function setMilliseconds(value) + * @memberOf Date + * @returns {Number} + * @param {Number} value + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setMilliseconds = function(value){return 0;}; +/** + * function setUTCMilliseconds(ms) + * @memberOf Date + * @returns {Number} + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCMilliseconds = function(ms){return 0;}; +/** + * function setSeconds(sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setSeconds = function(sec,ms){return 0;}; +/** + * function setUTCSeconds(sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCSeconds=function(sec,ms){return 0;}; +/** + * function setMinutes(min,sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} min + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setMinutes=function(min,sec,ms){return 0;}; +/** + * function setUTCMinute(min,sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} min + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCMinute = function(min,sec,ms){return 0;}; +/** + * function setHours(hour, min,sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} hour + * @param {Number} min + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setHours = function(hour,min,sec,ms){return 0;}; +/** + * function setUTCHours(hour, min,sec,ms) + * @memberOf Date + * @returns {Number} + * @param {Number} hour + * @param {Number} min + * @param {Number} sec + * @param {Number} ms + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCHours = function(hour,min,sec,ms){return 0;}; + +/** + * function setDate(date) + * @memberOf Date + * @returns {Number} + * @param {Number} date + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setDate = function(date){return 0;}; + +/** + * function setUTCDate(date) + * @memberOf Date + * @returns {Number} + * @param {Number} date + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCDate = function(date){return 0;}; + +/** + * function setMonth(month,date) + * @memberOf Date + * @returns {Number} + * @param {Number} date + * @param {Number} month + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setMonth = function(month,date){return 1;}; +/** + * function setUTCMonth(month,date) + * @memberOf Date + * @returns {Number} + * @param {Number} date + * @param {Number} month + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCMonth = function(month,date){return 1;}; +/** + * function setFullYear(month,date) + * @memberOf Date + * @returns {Number} + * @param {Number} date + * @param {Number} month + * @param {Number} year + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setFullYear = function(year, month,date){return 0;}; +/** + * function setUTCFullYear(month,date) + * @memberOf Date + * @returns {Date} + * @param {Number} date + * @param {Number} month + * @param {Number} year + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Date.prototype.setUTCFullYear = function(year, month,date){}; +/** + * function toUTCString() + * @memberOf Date + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +Date.prototype.toUTCString = function(){return "";}; + +/** + * Property NaN + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +var NaN=0; +/** + * Property Infinity + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +var Infinity=0; +/** + * function eval(s) + * @param {String} s + * @type Object + * @returns {Object} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function eval(s){return new Object();}; + +//@GINO: Bug 197987 (Temp Fix) +/** + * Property debugger + * @description Debugger keyword + */ +var debugger=null; + +/** + * Property undefined + * @description undefined +*/ +var undefined=null; + +/** + * function parseInt(s,radix) + * @param {String} s + * @param {Number} radix + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function parseInt(s,radix){return 0;}; +/** + * function parseFloat(s) + * @param {String} s + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function parseFloat(s){return 0;}; +/** + * function escape(s) + * @param {String} s + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function escape(s){return "";}; +/** + * function unescape(s) + * @param {String} s + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function unescape(s){return "";}; +/** + * function isNaN(number) + * @param {String} number + * @type Boolean + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function isNaN(number){return false;}; +/** + * function isFinite(number) + * @param {String} number + * @type Boolean + * @returns {Boolean} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function isFinite(number){return false;}; +/** + * function decodeURI(encodedURI) + * @param {String} encodedURI + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function decodeURI(encodedURI){return "";}; +/** + * @param {String} uriComponent + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function decodeURIComponent(uriComponent){return "";}; +/** + * function encodeURIComponent(uriComponent) + * @param {String} uriComponent + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function encodeURIComponent(uriComponent){return "";}; + +/** + * function encodeURIComponent(URI) + * @param {String} URI + * @type String + * @returns {String} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. +*/ +function encodeURI(URI){return "";}; + +/** + * Object Math(\s) + * @super Object + * @constructor + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + + */ +function Math(){}; +Math.prototype=new Object(); +/** + * Property E + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.E=0; +/** + * Property LN10 + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.LN10=0; +/** + * Property LN2 + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.LN2=0; +/** + * Property LOG2E + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.LOG2E=0; +/** + * Property LOG10E + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.LOG10E=0; +/** + * Property PI + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.PI=0; +/** + * Property SQRT1_2 + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.SQRT1_2=0; +/** + * Property SQRT2 + * @memberOf Math + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.SQRT2=0; +/** + * function abs(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.abs=function(x){return 0;}; +/** + * function acos(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.acos=function(x){return 0;}; +/** + * function asin(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.asin=function(x){return 0;}; +/** + * function atan(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.atan=function(x){return 0;}; +/** + * function atan2(x,y) + * @memberOf Math + * @param {Number} x + * @param {Number} y + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.atan2=function(x,y){return 0;}; +/** + * function ceil(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.ceil=function(x){return 0;}; +/** + * function cos(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.cos=function(x){return 0;}; +/** + * function exp(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.exp=function(x){return 0;}; +/** + * function floor(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.floor=function(x){return 0;}; +/** + * function log(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.log=function(x){return 0;}; +/** + * function max(arg) + * @memberOf Math + * @param {Number} args + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.max=function(args){return 0;}; +/** + * function min(arg) + * @memberOf Math + * @param {Number} args + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.min=function(args){return 0;}; +/** + * function pow(x,y) + * @memberOf Math + * @param {Number} x + * @param {Number} y + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.pow=function(x,y){return 0;}; +/** + * function pow() + * @memberOf Math + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.random=function(){return 0;}; +/** + * function round(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.round=function(x){return 0;}; +/** + * function sin(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.sin=function(x){return 0;}; +/** + * function sqrt(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.sqrt=function(x){return 0;}; +/** + * function tan(x) + * @memberOf Math + * @param {Number} x + * @type Number + * @returns {Number} + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Math.tan=function(x){return 0;}; +/** + * Object RegExp() + * @super Object + * @constructor + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function RegExp(){}; +RegExp.prototype=new Object(); +/** + * function exec(string) + * @param {String} string + * @returns {Array} + * @type Array + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.exec=function(string){return [];}; +/** + * function test(string) + * @param {String} string + * @returns {Boolean} + * @type Boolean + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.test=function(string){return false;}; +/** + * property source + * @type String + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.source=""; +/** + * property global + * @type Boolean + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.global=false; + +/** + * property ignoreCase + * @type Boolean + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.ignoreCase=false; +/** + * property multiline + * @type Boolean + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.multiline=false; +/** + * property lastIndex + * @type Number + * @memberOf RegExp + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +RegExp.prototype.lastIndex=0; +/** + * Object Error(message) + * @super Object + * @constructor + * @param {String} message + * @memberOf Error + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function Error(message){}; +Error.prototype=new Object(); +/** + * property name + * @type String + * @memberOf Error + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Error.prototype.name=""; +/** + * property message + * @type String + * @memberOf Error + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +Error.prototype.message=""; +/** + * Object EvalError() + * @super Error + * @constructor + * + * @memberOf EvalError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function EvalError(){}; +EvalError.prototype=new Error(""); +/** + * Object RangeError() + * @super Error + * @constructor + * + * @memberOf RangeError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function RangeError(){}; +RangeError.prototype=new Error(""); +/** + * Object ReferenceError() + * @super Error + * @constructor + * + * @memberOf ReferenceError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function ReferenceError(){}; +ReferenceError.prototype=new Error(""); +/** + * Object SyntaxError() + * @super Error + * @constructor + * + * @memberOf SyntaxError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function SyntaxError(){}; +SyntaxError.prototype=new Error(""); +/** + * Object TypeError() + * @super Error + * @constructor + * + * @memberOf TypeError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function TypeError(){}; +TypeError.prototype=new Error(""); +/** + * Object URIError() + * @super Error + * @constructor + * + * @memberOf URIError + * @since Standard ECMA-262 3rd. Edition + * @since Level 2 Document Object Model Core Definition. + */ +function URIError(){}; +URIError.prototype=new Error(""); + +//support for debugger keyword +var debugger = null; \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/xhr.js b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/xhr.js new file mode 100644 index 0000000..4d6c011 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.wst.jsdt.core/libraries/xhr.js @@ -0,0 +1,104 @@ +/******************************************************************************* + * Copyright (c) 2009, 2011 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + ****************************************************************************** + * + * Based on information from https://developer.mozilla.org/En/XMLHttpRequest + * and http://msdn2.microsoft.com/en-us/library/ms533062.aspx + **/ + +/** +* function createRequest +* @type XMLHttpRequest +* @memberOf Window +*/ +Window.prototype.createRequest= function(){return new XMLHttpRequest();}; +/** +* Object XMLHttpRequest +* @type constructor +*/ +XMLHttpRequest.prototype=new Object(); +function XMLHttpRequest(){}; + +/** + * function onreadystatechange + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.onreadystatechange=function(){}; +/** + * property readyState + * @type Number + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.readyState=0; +/** + * property responseText + * @type String + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.responseText=""; +/** + * property responseXML + * @type Document + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.responseXML=new Document(); +/** + * property status + * @type Number + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.status=0; +/** + * property statusText + * @type String + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.statusText=""; +/** + * function abort() + * @memberOf XMLHttpRequest + */ +XMLHttpRequest.prototype.abort=function(){}; +/** +* function getAllResponseHeaders() +* @type String +* @memberOf XMLHttpRequest +*/ +XMLHttpRequest.prototype.getAllResponseHeaders=function(){return "";}; +/** +* function open(method, url, async, username, password) +* @param {String} method +* @param {String} url +* @param {Boolean} optional async +* @param {String} optional username +* @param {String} optional password +* @memberOf XMLHttpRequest +*/ +XMLHttpRequest.prototype.open=function(method, url, async, username, password){}; +/** +* function send(body) +* @param {Object} body +* @memberOf XMLHttpRequest +*/ +XMLHttpRequest.prototype.send=function(body){}; +/** +* function setRequestHeader(header,value) +* @param {String} header +* @param {String} value +* @memberOf XMLHttpRequest +*/ +XMLHttpRequest.prototype.setRequestHeader=function(header,value){}; +/** +* function getAllResponseHeaders() +* @param {String} header +* @type String +* @memberOf XMLHttpRequest +*/ +XMLHttpRequest.prototype.getResponseHeader=function(header){return "";}; diff --git a/.recommenders/caches/identified-project-coordinates.json b/.recommenders/caches/identified-project-coordinates.json new file mode 100644 index 0000000..d803ceb --- /dev/null +++ b/.recommenders/caches/identified-project-coordinates.json @@ -0,0 +1 @@ +[[{"location":"C:\\Program Files\\Java\\jre1.8.0_91","type":"JRE","hints":{"EXECUTION_ENVIRONMENT":"JavaSE-1.8"}},"jre:jre:1.8.0"]] \ No newline at end of file diff --git a/.recommenders/caches/manual-mappings.json b/.recommenders/caches/manual-mappings.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.recommenders/caches/manual-mappings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdt b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdt new file mode 100644 index 0000000..ba10aeb Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdt differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdx b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdx new file mode 100644 index 0000000..1ba41ae Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fdx differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fnm b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fnm new file mode 100644 index 0000000..98f1ed7 --- /dev/null +++ b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.fnm @@ -0,0 +1,3 @@ +ýÿÿÿ +coordinate fingerprintssymbolic-names +classifierselfcovrpovrmcallovrdselfmctor \ No newline at end of file diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.frq b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.frq new file mode 100644 index 0000000..6e7f714 --- /dev/null +++ b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.frq @@ -0,0 +1,1109 @@ +Õdͬ•ãïn1õ5}¿6ÙQyÑ_'¡EÕj3¥AÁ85Ÿ39Ù%+ÁAm»4‹?é?9·[Õ‰å¯8)éE½ã,í3Ó Å½ë!i•9‘b5©7ùW³D3à -ÛSÃ>ÉÍ-±…×õ/‡®½Oá­M1×8Q;ó%™:‹‹8Ýõ"û¥r“¡"Á£7û Á0ë9· +ù8×*é,»A±*‹ +3± åÿ;¯Rí —$—*… ™±#­Ÿ£ ÏPß9›5ß +ó0Óá‘GÍ<Ñ£:Ã4û!Ý ÇQÁ"‡±K­.ÝÅ:‹0Ñ ·4±Ó*Û&©A ÿBõ5Í Ç(«"‰0ýƒ§ ÝJ›"‰4›#™"•Û5¹1ÛŸßa±!Ïã­ÃPå,Û'ѳ:ý …%ñ8»4¯,¿A· Ç9ÝݯDá.‰ßB³Ï£ïBé0Ñ6‹µ ÍA¥/Û0ù!ûŸ*‡ï[‘#Ñ+ë6§<¿ ŸM¿"ù.›%ËD½%ƒã‰B‘ óO¯çB­­!ùÓ0—Dí £©')t)T-É2+»ƒ9Õ`-‡_»9ñ‘7Ý7…(ù×#é<·“$Å +»~…ýyÿ »"‹‘£YÉgË$Ár‰™f²•³«Z÷ƒJÏ+¹²ß ÍqÕ;ÍŸ<Ÿ–ÕQï‡ß2Ëc½ +í‰ÿ4³Ÿ‘Jõ¦ÙpóeÙ4Ý-å@ƒ©Ïfõ,¯AÏ[ÝN©Ç{ÇÉ;¡zë:ï`¹pù(©z•L±»±«ã§Ý±BÍ~§Jµ\ñM‘\ã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ½€ó„™Øýjñ=‘ŠïqçI猓™|‹DA·2‡LÃc·§#ÑJµ-ë!¥6A§©ÙÉe±!·NÃíBG©A‰ GÅïó ¿ÙHç)µCñÍùç(oï·¹»MÙ!³Û©0·Feñé)»;×8uõ+aÅ +§6¹*§÷+‘“ñ8û÷aÝU¡Ógí©aÍ0ÿ$ý"¿!]ïDq‹r•å8ßZ9÷6á í)i‹ç ûF…Y×—5§[Éÿ.§—#«ÿµ?Ñ Ÿ)Ù]‹8‹&Õ™ë5Ñ;§…ë$»GÃé-O!¡%Ï*«%ÿ_ŸK•"«£@¯"—"}×ë0›aË!Á$‹Oç ¹g,Ó@]Í +Í6¯ÿ%‹nÅ +cÝ‹Pç!Cï廃ùLå#Õ&û"£«7• »™ ½ó#ù2¥µ*ï!ó")ëÓN¹ký­( +µ ýO™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`¡ +BYë Ë ç¿$½AKó*%——7;íAÅÁ+Ó5Ý7sk·D­Q剋rwó “¡oë!•ƒ4õ­1Å@Gù +•Uù%‡m§7£-©:—ÇMß6× ·³ åå2ÅP¡'• +á6IóFõ ÿ{¥]ÿ ñ8e“>­/× ±$‰M7¡ßA™Y•7 +¿*ç@Yé ƒ=Á)aà +±6Í*éO©&ŸV¯•W¿í¥ óÏ +•!—§ÿ?­,ÑÛ “áï#©eÉm½y!õ%‘;…2£¯!¡"Ÿ¥ƒõQÉ Ë*‰µ·ûJÿïl«Ë ¯4Õ7Y½Íc‘@™6Ï)³.± ‡3ý»' {ÝNë û_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ù*§*ÿU ß%Ó#éOÕ ßŸëí&›J³ó:³§!:±#uÛ7Ç9·e·Å.Ç6«"Ç¡Á ó`…%ß~›?5›QÇë—± +gU/ý£¦­OY­)=]UýyÑ=óã#'õd±2+§c‘;“?MÇ6‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± §^‹"‹:U/‹ñ0¹?µ;‰=;µ NµsYÁÃ+eÑ ¡7×*¥ ËÿmƒVWÍÝ8ÃEe™Õ!×›GÏ ¡®Á“‘9Í:ë8×X忘¯ûÝP»‹‹rõUµ ÕIùŸ£#ùk›‰:‘¹Ý8ñ;ñ»gÍ +­m©›¿/› ¿„ƒ¹mÏR—l|³™ý‰÷"¯‰TŸŒ¿tÿbÛ^ËvÕ ‰vå%¡‡›!¥)…Eç"›Ùxç3Á DŽӦóGítÑ‚Ÿa¡£")ñ Ãç#õç7ÓP‹.ûy•ß|óyû÷+‘C£5ûlá¿Y·%³e¹—=7£ É ùcÕ•AãOÙ ÅC¹2Ï(ñ¥ É"Ó#ù2» ³6½˜Å¥ª¡Žï!‹Û›Ù••aÝ £‡>PÃ?™ å4×g‡ +Ãï$‡ ‡#ù +û3<§‚£3:ó8U›h¡ ‡<·On é”û;—…Ï ¡=ñ!£ »€Ë>“ VÍ[µLÿ3,»6÷RåÕìã σ Çi‹ã0“AÇ+áã(qéË…ï’Ë&½]Ýaý%Á#DZlj#¯cë“7˳>¹•õ5›ÕN¯ÇU‰i÷ß}ÑžçlÉ:Ã?› +éã¹4ÿUÉžmÇE-Ï »)Û.ñß‘8 +;‘(»I­8ë£U6‘Ù#ñN»Y“½ 3­89ùÿëÇ0ÓIß×7…\ãŽà É9×(Ù0© ¿±TÇËÛ +ÝQ1 +µ‰‰ ©íǦÇo3™ õó4͇©¿ß©?í%ïX½­#ã‹Ó“õu£fÍÓ/Á«"Ýé„1©2φ· +í$å|`/©¯»#U‰%ÝPŸ £‡ˆ·!±é‚«*C‡)‘«+ý )ó í^¿!—Oï’Í?Ù$Ë¡’‡ —7™{‹8ÓÙ «^‹ÃNíZ« Ño· £8×KË— Õ$áy7iÑ9ë ï"© +å.•cŸ7õnÙýT¯ów“¿K³0Ó ûnÁ íl'Ï +ËX)©!›oµ"é*ë{‹Xå!Oé¥ób9'åZÿïÅ!Ù1÷ý ·O³aƒ:ïµÿó#ÛÇ7ífï"ù.Ÿ"ÁC× ÉrŸ6‰Ç ÏF» ç…ÅG¥7™i¡ ÓŸš§ »;¿ ™3õ «}Ï! ù8‡xÛ7§A¹ Ó\¥ ûxÙ8ñ!—z¿‘¯9µZ—&ã“9™s‘"—˜ù ƒ+Ùzç·E×.³7£¥B³[Í7“|í!É¿9ÿ ¹µ ÿE¿5ï5!×=ýݯ8ƒßyÉ¥‘Í›#íO¡!µ™&½í7¹GM•6·V…!£Pù͵}û Ã$­bë1ãXù“÷?×çÅ.‰û‹ŒÃQƒÃé#ÿ‡¿;Å í— ½&à‹0÷3©3²ý#¡ §6Ï­Ù"õã»6Ù]ãÓgÑ"áýX‡S÷;»óPã$£?‡ ·0á7Ç>­(á/Õ9óZÏ+óÕ!íëÑ#ÿ«"É›[É&ù ³<› ëƒÙa»R«íKÅ0Ïçcç‰!g‚±™$_Á"Ç<é åÝ ÷b±HƒÝxûÓO• +ù\•"ÃýŽÇ !»6ù!ùùgõ û§¢Ã*“Éå"ñ˜ÍCß¹‡§‡B…#‡Ó#ó,¯`Ï&‹Ñã«Í+±#¡ É"½Z™Ëgç£ Ÿ\ßï“)íPùR݃!ûVß!ÉY¹(Á:‰)¿&‘ÿ™!ùµ £‰*ùJ—.Õ ·(£ÿ›/÷J±ýi• « ¥YÇí!é6§ûá$Ó(ë%«*ÛKå÷:µ—$¹<ý%ÿ‹¿E­6ËÕ“‘ßGå"™Ãé“«0á ¹Å‘× ×+± Ã*ËHÁág‰#ÝÏ–á·1Ç0©¤½ ¯×­ ÅùK« ÿà ãÙ!ía­©¯{§¥ÍÉg¥%Á±7Í0­ËïN£ßó%ÕTç ¥#Ù +m£U‘mà +«*Ýn½ E…4ß%—Ù:Ñe“ ƒ:»å »$¯N±¡,‡B'ýŸ"»‹9ý"É€Íå» ó••¥ïí)¿Bû¡;¥ !³£'§7Û‰J7<ƒéz¹ëùý{é ËkùÉ@á»s£Z£¿9—œÉ±:©MÍF×M…¹½#•ïY͇Ká.C¿"£ë:“,Ã##·ñ5Á•çû7‰'±!û%Û‘M¿¯'Ã<ÿGÑ<‘3‡4§”ÝVÃ3³—;Ñ™§B­hû2›Ÿz¿’±+·dµ®ûIõ(ñ#ű5É%¯Ím‰Nµ å.÷'÷ +óY¥9…V™ +áNÉ&¯3åvéxÙNùH½f“¿!× ‹?ÕMÑ%“9·BÉÁ@ÁÅu Í‘¡.·ã"©`¥=ó ãßE£.© µ6§ ÏG¹3Ç +Ÿ‘E§ ÏÁ2ép!»¹9ÿAó…pÕžÛí Ù›háë>Ó<Ùï1ç7¡Q¡óñEƒ¿«é‘aÉ0å8ƒ­Põ-ÿ¥á?à +›ï[ÿóš§ŸTáz™Ãù}óç’õÇ%8Û&ë×Ý ¥Ï)·9Û:ótËýÕh»·k£ßÛƒ…=Ï3Ñ™‰•Á««ùŸ"» ­7ï*Á é*ó5—“ƒ™ËOåÅ0õ!ß$‰ÙùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰Á ‡ Õ>é#­.ÝŸ7ϯ Ý8Áß#‰3½#£ã­ã½NÉÁ i»xŸ'•å"ƒÙé«9å×`ç C­5¯‹"¯‡’ññ…8ß ß2õ¿ +á5— +¿1÷© í6ã% § ±M‹‡í"¿ õ/Ÿ û™Oßåë$™Ç6ï)¹ƒ8Ã8»Å1©¯"ý·ƒ4ï'¹ã •…›#ã±&™ Ë)ÝŸ;±…2õý ßÙ#Å!Ï#(¥µ#•(×"­"‘ƒ#Ñé;‰1×õ— ƒ&Õ½!û;Ùé Ý3×"Ëí ÷"ÿ»Hñ ï³7»ë$Ù éÃ#©Ë!£ Í9­2™ ñ ‰(›#ÇD›Ó#Ó“"™«8« »5Ë +×,¡#½½ýÏ$¿Û ý"¥ «#•Ï"Ù-» +ƒ‰‡6£+Õÿ ƒ¿0û ÙÅã +¹6÷÷±"ƒ(±4'— +ã:Û%»ãÅ9ã¹6Ó › ñ:«2«™ ïÝ Ë7Ñ ƒ1Ÿ· ÕMß ý …5Ó#ù"Ç ‘ó.«9Ýí9ûÍ%Ë0ïÓ!Ÿ‘,ï £6å—Û_µ?»K‹™]û1çw·‰7AoÉLëa‡8É—¢YÕ«bÃJ­˜É³ƒTí¡ƒnÁ³—ý +»[·!hk•rï!¯ÁX5ƒgÍIãó}çëŒÿXIñç‘ÿtÃ(¿…‹™!Ý4™*{eï8• É\çÑ.‹Q¡‘ ëå0¥Të£-ó0Ññà ×ûaé&½é3×ß‹¡a÷…-Ë(åV‡…=Ù ãç ÿ4›¡ÿ9ß0Å(§6ƒ(Ý3ý‘)¯a›ÏÿO •í0‘§/­<ñ!Û½ §¡g“U ³17õ*“&Ý•+åxÑ/ç>ã"Ñ÷ˆÉá׃Xû™¹,í£%ë!³-µ!ƒ'õ‹>•)٠ç•1÷P…ù½bÃ(ç Ç8ÝÝ1Çó ÿ\ß5«,¥"¹0×Ëx½ +ñ7Ï··QÍ-Ï ‡4Ý «1å™VÓ.Ÿ¿µ+à ó·!ûm‡« Ý2¹6£‹›E×0ëCÅ ­0‡£)‰Ù¯$á¿ïY¹‹4…Å=×»6•’‘2»6… ›2ÛK™í"×#ÝP­™,“ ßÁ_™á\Å…4éDý/·66Ë +Ù-…½ ©å\¯(õñ3¡Véõ8• Å3õƒ/‰9µ=‡É½`­í»~Ù ¡å“ Éb¹­_Ý1ÁÅ)§Lï}å“£,×÷ íW•&Ó·Pß.ñOå'Ã(ƒíûQ±1 é óEÉ:ë(ë“#áëJÏ¥4õ×\ÿ"Õ4™³á Ý"ù'ÝGõ¹"Ÿ(¹Õaÿ›T¡1¡ÿù/Ï»&³*Ý)á ‡ ÷(¥ +Ÿ £ ½¥+…V×,ÝQ½¿Wé3ß÷Låé™(Ç áEÑ3σr÷…Õ+›%åãUÑ Í×Å “P­‡ª×]űpé9¹…zÓLѯ»‘ÓA— ‡žÿ]©·må!í»!ÿó ÷c•1÷%é ó#É9Ÿ åx§û }å<ƒ\û ¥WÁ —»§ó1ÏK½=ÓÙ1“… ï(·é"ñ*å#‹2Õ8݇ +•í§1ïJÁMñ$¹ß%…OÅãÑÇB›“ëLÁçH˯ù=ƒ«hû’×c“VçÉCùs«kß#ëp¹/­¨׆£Bá—Õ‹ŸXÅR›2ûKåI·­Á4±®ù4ÑŽã1«C½åGÅFÍÇáà ‹o­$ß‹;ÿ?ÅAó»ë9]ÑGÍ%ù3áËÅW÷Ç!ƒƒ…©‡ µ!éRÕ'Á"½:ù;¹ ׫:± (Ãý å#õ3ç"Ý!×­¿‹7Ù.Ç@—½ +åT±"×å™Nçé4±QóÃÇ£<Û­™Ý"Ïaÿß)˹ »8ŸÇƒ›ã'õ Ë6ù,·f¹§Ç ù+Å'ïù(³ Å÷"Çm‹L÷9çï +õ!Ý=±ë©WÓTÇ ÏeVŸXÇDé@2çß!»+ûã"í$ÙKÙ…tññ+#Ñß³Ñ:­$ñ<å=Ý5•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µs3Ázã½ãcý/ƒ ‹ é:£:á'û @«Ù ç• “2¿ +Ÿ™©· “ç ë08»Ý}¹!©­jË&ùåD…³G¡)« ¡]$­p£áeí7ý ÿ ÕM…~÷§ íJÑ#±*íf±÷5ÿ\¿ +é4—D‰/¥PÉáÁ:ß?ßmåÁ{×é ×ñmG» §ù§"Ë%á,§-•FÙý$?¿•Û8Õb½8ƒç-•P• ý`½6‘å5á5½:­¥ñ Í!/ƒo½±Å|‹G§ˆÇ2í6×3CíñDG£6í7©.ç 1…Rý罉 éLá.ÛÇ×h/Ã* …8Åq7Åå8³ ÏÝ4Çéx×Ý8å‹÷bç +ÿ5©ñDµ©b­Ù@·K™±÷CÑA©Wó·’×#/£—>ó"ã£/µ7¹)Ý ÷6)ç@«7É—?‡› +#ÇE¿+±™ ¯­?­1ÑÇKñ ×6Ëù"Õ¡qQ%¡t¹¤õ‰U­:•Å-­†‘>‹ÿñaÓšýˆߢá&+ó­…§ +õÛÑ•‹ÕŸ%ù£oé)ÏAÍAã !Ù1µ@ÕMÇß«&ù¹@ñ>9ó +Ã%••lë ÷%/¥ó$Ï¿n/O@#¿3ƒWí“;É3ç÷-ÑD·<‹A‹%/¹r-á-CÍ[ý)ór›×2ë>©ÿ.ãÍDç(§ÑE£Å(/¡Ó&#ÛEçÉ §“…“±·3Á[‡:Ù,ïÑ«…tÝ’—™ƒñ¥ëP«­é7Ë«7ß•#+±xÛ}÷©Í*•«:±Gñ8û{“"Sï¡:û=ó•%íŸG‘8á ©7… ï¥E»?¹<¡6…+Ý"£4Ù%¯ ãDã#£ ß8‘Ã7ùqå ±!›xÝ%Çy‘‹ßïRç©H­J§Ÿ‰NÁ•Å ‰› ¥ÇxÏ ‹Û¡0¹ +·Hû¯çOc£ß…Lß!ÿ# +›•É4õ8Ç¡"ç…¡PÕ%ÇÕ=Ý +éÑ!áý£F©»)ëË'Ÿ Õ5Í7“šñv¿Ëa<ýY·¡‡¦¯<­ÏCŸA•4Ã'³‰¡X‘‡ÅfÉ'“wçÑ’Ç›£µj_¥V×…«>£%¥¡ïzç=‰ƒ³ÕŽ¿•_‘Mõ.³nÝ©¡©ÿ)iÑ;• K£‰m÷·‘¥ ký›‰£Í(Ý©Õ! _Ûz½»8­GÅ;c‹"³ç‘«Dã,õd£¢…Œ½!õ×l‹3ÕLÿ +õƒmã÷¨ÃSã"&‹KÍAY}Ÿ"§7Ã@¡nÛ›c“1¥­z«(Ñ‹£CS¥>õvmË2…kCµçAo­pïG“7»0DQ½]Ÿ マ]áa¥3ƒ:ƒ¥µ8·UŸqï—@íhË¡n­ Ó"épiÑÁ!Ã)BÕOÿÃ~iÍÿoS¹Aµ|U¡ÙëA§µ×GIû £ncŸÇíAéS‰–±áAÍ)±vïáeQ·Gß‘kÉáA-±#Çï@ËEKûó^Qõ=Ãa•|½xKÙë>o±C‰Y‡8ÿƒ ÝA×™"“u—n¹+£{ÍmQ›PÍ ówÏ­Ùç’!™9™û„eýb©7³?[Ï7ÙN‘•k¥•ù ³L¹DUç}!©ßy‰o·LŸ?Á.­O¹9õpéû’±ëE‰‰WŸ ‰¡[ƒk½"É~g¿+·!¤uõåªé‡c³+{£y_±3ÿ7ÁŸël×F÷_Eá#ûVÅDQÑ*‡e»T«K©|"Ý,±Ë™0ï!…ñA ¹2kSûEW¹X¡ +Á!I×A½Lw›D¯9¡La—>å@SÙ½BgÅ6Õ »6ßl鯧|õkµn×"…!Í… ©“·‘ƒ ÷õž•› ‹$ëoëm×7ËsM‰£^é—#ÇQË”©ƒ›[íQ­Çá +ùó§¡«ƒMÇÛ(DZ[µfÉ…Z‘-¡Vé\«ÿ£§M‘’©ŽÓ‹x½r¹I¿8©()뉙ŸJû7ƒŽÕÁƒeÙƒ‰0¿‹¿±ƒ)ó%±©Å£³FÅ~³z…LËRt׃ë=‰PÇ‚»L»qïÙ\Á=Ëý—&›ý8­7· ‹dÓŠ…8ãI§ÿW•#÷¹ í.ŸP‡­“ Ý ù`ï ‡&¹±O…&ÏÅë?÷™É¿ãKù"Ã8áÇù!Õ>…„¡ï +§+ÝP‘•Í%³± +™<Ï"ÕEÝ`­ ¯ËA¿$¿YÅÏE×-££ÕFÝ …œç6#µé‡=ýÉ7ÇÝ+ñõPé ¯fé û7É Ñ#×­5¯û¿ “ó­¥p‡Fá=ƒÓ*Ý|‰(½tùåÕhÃé¯ µ7—5ý>û ¥, µAó™Qß!§¡a¥4Ñ +éP± ùß&ñ%‰­pù·•»Ÿ/»· +‹á ±§N± ×GÛ Û‰H‡VwÙ#· ßF“Ÿõ°¡Cƒ *­7û4Á)§¥(“& «á?ƒ®©>ó9© Í%ƒ™"ש"ÍBŸ{ó"¡™q½9—]¡"ߣ—Ï›oÙ7—‘¿$ÉX…¬åÏã«vï±» Ã#³_Ù ‹½4ùqÇ0ï ­¯‹!§ÇÝl…?Å7Ù"½Õ^Ñ ­ƒ„ÉB|Á(Íx…Ý&»%‘fíIÝõ4…"¯3Õ3û«Ué Ó%¡Õ„ÅTñ—V•B­[½1«j•'Qã!ùJ­+åb×SµJ¿(ŸP—ûfÕÕ„4ýuñMù5‹~ÁRû4ÛX6=‡”…×PÉÝP‡½\ï­Wí,Q»Q‰>½·\ÁÉxÕYÉQÁJûJÇ•… +Íaß©Q׳¡ •^ƒ<§gõ>íP¿&³Ç)ßV¹;ûLÙ3•a…(ùõѹ$É,éAÃ:Í …@ŸC· ‡#™ +­ñoë±ÿ«¡ª³í;õ6ó:Û?צŒ¯=‹ —u…\¿H-áÑyŸ*¥nå·o¡­µ-ÿ&ÛÙ¥у“žÙŒÉ Ó«õ‰ï²Ùž.ß|ÇŸ•õ›;ù¦­^㘃C« ͤ?¿@7Ý'ÁÓý寿¢ÏhÙ(‰ËátÓ‚Å‘­ +ƒÑQÙA»— …€Õ/ÍkÍj˧ãuÃ%ût¯ í4¡R«i‰Lù½ŸQóa¡†ÛªÙKõPó(¿q¡@Åm¯Qµ;Á‘T‡»Lá•*ÍOÏAãÛ]›û'•$ï ÅJßh½ ƒ\—7é5õÇ/÷aµËŠË…h‘Qù8É­>¡IéE™© ïVçë$ÁKÑË«÷@¥Uñ: +™Ha³vù7ÃM×`éÍa©ùMÅHÏ"µå>rå[õµ É;»?§(‰;³`÷ŽË¥‹Ï6ádß&Á¯…í"·Ï<—ï§¡ ¥ ÑÅ7ÏJ]ƒ?U§%»!Ù;‹M™¡%§\Ë© ãM£WÏ8· ¡É9«5aí¡í!£e‘A‰#¥+[­"áï·#±£ +·ÿ*·I_Ÿ:é½ÿÉ`ùg³¡ýJ‹”›>‚÷.ýx•®Ù›q¡B¿VÏŠQŸ}‰ï Û~¡DÅ4…ÁT­ÇpbÓXÛ•·Gë‡Ë„Á¤ÕtùpÉ> +ãz·÷Vɤ«žÉ’×^£@ÛB£?ñx«D¹6ÃI¿……a³±‚áJÍp‹§£ ÿ­ËmÕRçTµ*¥l“%Ǭé +£ÿJÕ«`­Å çmýšÍ–%Ÿ_¯Í.ñ›Ÿ§·+ÙX‹g/›ÿ4…SÙ Ç!ûZË&ÓïW­ ëTå Ñm­¬©å^áY·>ƒxÙ}¨‹ ùq¯œ›5óžzÍ1ù„S“†ÃÝ™r³“íD•‘Ë?ÿ屩d¡ Ç™Ïiý•õ"éåj©D­—>á@”Éwã%Éù3¯ ë!×Í#ý*ý0ƒ"‘«;µñUÑNÍ=•ß Å/í» ÙA£ ÝZå*éÙ +ß‘ +à +ñlÇý?—2Å?É,û9Ù'¯•@ËgÝŽÑ]‰JM³Qcóß ·Ó§{ûs³Ó:ç!±É‹‹ç!Á®¿c¥.ë3ù7Sï8‡•b·™ ûårá ›6eñË É*ã ¡ñ/ý +µ¥níÇËÅFéÿ*ŸÅ+tõ“#“Ó ¥8í“-ç~¥¡é ±³}——õ­ת‰—“eO—·óÓÙñ£÷"õ;¹³·£™ñɜ٭/Ï5› ËAãáUÛIÛEË +½Xo“ ‹ +»8ñåïSÑj­D§­`¹Q˘¥ÍL»$Ïi‰¯š¿ZË;ã;gÇ Ábµ%Û$­û)óPÛUµ3™HÇa—7Ûpû¯B©M‰DÅ>‡sïS«Mÿ'Á`ó>íQ•ÇýŸƒ™cŸ0—lå\DÕšÅ&ãAù<ÅIû§—&µÁ6‰jã•uû:Ç'ÑÍ»!¿]Å•¹ÕŸ/É çJó¢‰,é#±F«{Ë®™צ©‰ÍD=Ó`Ýy“C—2©Ñ »l·‡«á +½3›dÙ§ýQ‡.ƒ¥±oÇwí¹ …©¡Qà ý|» ¥Bµ ÇLÿ Å· +õ—ÿ,ÁÉ ™wÙ +qãåE“)çn—Tµ¡0½@…z³å+ýŸbËC— ¥?•q½'¯ˆ±xÑ…³Ë~Ñ“BÁm¯a­?ÝI»m¥"«]×Dÿa©,Íû½Õ%•HK‘8©PÉs½6‡/·‚å ó‹4Á8Å@™ ÍŠÑ–™¯›‹q÷ û#Ñ1»7ÓV“6—Oµ–ó +ÏÓ'ïJƒ:é÷ £…|Çcó‹8“.…š™›íKï0£L«ÕOŸ&ƒÝdñ-Ç9ÃÁ çëF›ÝÛ•2n™D¥8½iõ ½p·!±@Ñšûµl›s‘ÏŒÍ&í€Ó ó"ébÉpÇI½žÕ…¥"ý°õ%ápÛj­›—ý¡‰‚«‡óCžé…ñ®½9Ù¬á†Í§­é+Ýu·‘¯«Õ †©4óSƒ!ùT‘%RÇœé—áo÷Œá1ßn‰ +‡¹Ný¡¢§<Åw¥Ãx©íQå#÷ˆ*í[óUŸ)ŸF÷l¥­“ ã‰Û7—Ÿ¿Ž—í¥—…G‹=¯ “jé!·W¡pÝYסû‡ó3ÍgŸ4ñf¯‘6ëÛ9ÙŠíRã³UŦŸKíÑÃañIÁ5ÿÉ_ÇPÅ‹½a¡ãKù÷•» W–‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&ÁI‰“áÛ”‡‚½¤ÓF¹EkÓ$×\çDý˜·q)Í'³yãF“Ý_Ã,ÛÝ\©J…i™¥…ÇMÝ û.¿y±—ý(¥G§Éý@÷”E‡;Ó ‘g“2‰‹nÓPÝ™Z÷ ×{¡“F÷*ÛiÙ+§%½‡×(c‡!ÓŸï ýA­>Ë=ý"ÛJý&ç‰fùÁgá3Ãï?—?•Ão©+Õ@§(áC³;÷:ã6¹TÑß0ݵEó(§'ßDÑ(¯*‘‡f¡xÑ%± Ý1Émùݧ3û/ÿ,·DÓ›n7‰Hãã8ëjû¹…xÛ(ý5ûC&ó©@ñ-ßÁwƒ™P›šÅM©©ÿŒÇ'‡¥[ךÑ›…‡j·d‡3™Û{³W—¯ÓJeÕNçWÑÑ7¡ ‹°á«³Bý7áfç÷™§ õ*ý_™`!ÍQç’õ-/¿³’Û Ó©Ÿ mÏ"© “:å «~ÿuÉ™%ýyûaë=±SÛ!éšå‰2á6ï+‘w—9ó í’“IË8׋#Ýo³ É(÷¬ÅrÍ¿M©~·"£¨‡5…3·¿óBñ× +ù—vË8ûe‹%ç +׳ ‡^©;•{Ývó‘7ƒ™Ém‹ ¡ŸÙ‚¹a…©«³›…Ï»!#ó.“ ›„5§>û÷Õ ¯»s¡E‹c¯@§S­}‰„Ñ3Ù#Õ+ƒ/Ç!ч­a›Dç_k§CÕx‰¤¯ ƒoÿ7Û¡÷ÉQù‡¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†ßKålÛ©û×r‹aëÙÙσ`‡³³yï÷kÃw— ¯#½§Ï ÃN¹{“ +‰¥ÿLÙ—a©@ÃËálÍ©O¯Ÿ‘$™›d‹ ‘¬…qÛ8ñ¿œߪ‹9¹]ã6k£o‘–÷•”ù‰)õ Á@ã +áIí=ÍVÉ=ù »ç¡‘r•#ÛÙoç —ÛhÍ+û +™=ç6›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&¯?³å7Ï ÕƒãR¹ +‰<75«Dç'›$·a§K½ã-Ó+Ù@¿0‰ ­'-ƒ&ÿ7A­7½ +Û0•-Ó6Ÿ ó5ù?q‘½"ÿ‹ Õƒ5#ÓGñå ½(§E7©·!í0Ç@%•Û¡"½%/ÑF«"ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ ã-©8‘@å±MŸ +§W•#‰ï±É@µ,³bá'£KÍ­@«3¥é;›A³ µL·0¯ “*Áã5¿ùgýÃ2Ÿ?ù!»5¥Aù§&™Ñ:×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ë)ûCó ¹ó$émÏ ëCÑ ÛJù/Û×ßDß8 ÿPéAÏ!í9¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0±~­ åm¹—¡¹~%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­L•C —*ƒ&ý©E¡"ß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&í ‘"ƒ0ÁAá“Eý9%‡ã:!Í@ó‰#ë!—@í‹%µ +ÿËq÷­aßù"­ÉÑQŸ^•(Ñ»sß­Ñ%c¹AñœçÕEk©-á"áÅ4×ã¥uù5÷BWÏ9‹M—Û6“;gå¡Ñ×<‹5s·é>iå µb°á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Û Yù@QõO‰g±"ÇWÑj«ÙWû:Ó÷KÝ#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/ëV«A åƒUõ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G3ÃDŸVÉP×›ÿ4ý<íië1Uù5Ç4¥½aé +E“½xûcíŠÏ uŸB¥VËV…-ûPó¥Y™jÅ(µùQç@]颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;ÕÑn ñ8¯±5E?¡;û+‰2ï3ëÏ/íÑd&Å5ƒƒíx¹„‰?ãã ÝcűÓBÏE­!§;½¯­g¡*¯yÏ¥Kƒ3¥8¿ËÏý@§™ß+»Cm£å.ÉL]·‰ +™7÷£DÑ Í ‹8Y£²¿B;Á:©ë"Ï ³ƒP«'¿){‹ßg¥g Ý?õÙ Ó•±RÃe»=ï'Ù Só=­³ñbÛA£×@ÛÝ@ŸPËjý,‰­8YÃ)Ýe¡ÿkƒdÏB‘6•‹¹ +§ ×raÝÓåS A¥D§ÝT áõ>ãR·:Q‡•¡ïAk “gû±ý›FÅ"MÁˆ¥1ÛJÝ!«‘ ­kûAÅ„±Ó6Ó5_§ -ûPW³„·2»K“ £Å|»ž“D…>ËT©I‘7»WÏ¡lí » Ÿ§*µ……‰![§5Ý<“Ý;—«çT‘¢ÿ—Í?É@é0é8W§#‘»5‘9cÿ˜É!‹A[ç5ýMƒ7‰XÓe­D×ÿ›…–‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA‰eÙ9Õs‰ïDÕœ¹8óm™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé ¥3Û‹§›)_ñ-‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õב Ïù©A×ɃßUÙÓ Ù(™µë*ÉGýÕßå½ ¡Ë)Ññ?ᓱý×)ßZ«ÇÇ,©:—ó‹¡3ß6ç]Ý1Çeá™)÷ ›3Ÿ.ÑMË …Ûf½)­éb‹@Õëû%™(é ›·3«³1»÷ÿK¯Û)ËûDËÙ&χÝ/<ÇÙF™'³ ­Ïµã¡XÇ߇«`÷é4“é£_ùl_ùYÍ“sýᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Ó†»«·ÅçÃÏZÇדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯Š¹ûvËN¹½¥ +£Ù½n•5‡/ï ÷±&ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½ñÑ Ÿnß ù÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû…‹ß§I¥Íbý Ç1/Ý'åJ§(ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃB•`ÙÙ »D› Å3¡­W›ù9õI½#Ÿ£‘ÇpËBÙS«ý•m±$çÑ"“&û;ýó§H¯ µ³!£¹©Í\ í!ßïT·F™!í µ'ÝÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•ÿ‰á‘W¿ÕEÏ-±± ë û9¡(Ë,Û%Å%à Bé4ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇCÃ÷¹¥Ë+'á"·6Õ9Ÿ"•0á ù"=¿%¯L¹”—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.Ňaí˜ÍS§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÛYÅ©7ŸÏ>ë™Ã³7ËÃg‘ã/ñ6ÇိÑs—÷‹7»Ýž¿³¿^å Ñ2ã0» ½Ùba›9‘ ÉM¿šÉ$í"“'¹y…§ ïUá‡YÏó +ã ¥+ë’Ýã/ñ·E6£6‡"™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’± õ¦‘B‘ £"ë+÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;ñ±7ÿmë¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõÃ5áL“Eñ8‘Ã!™˜× +û<Á"Ï~‰'¯>‰ÝH¹7—%Õ{í +Ÿ—!ó‘½2ùLµ>ùA³\áUñ~‡#Û˜³ ߇ »r£7õ0å8ù,å Ë8ÙLÓÓ’Õ"­|¹SùóŸ˜ÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}Á0Ý8÷4¡Õï §a¿ï•¯8‡5¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ Ólëí>ÇÓM½k£Ë‹‰'é ã'›4×c¯±@í²é[‘7Å +?õª•µA»nM×ZÑZŸÛOõ?çRí ƒ%Ë¡4û]ï_I¡P·;±‹,©_›¥8Õ S¹hK÷ ç8Õ »"ýpO7ÿí#»!õAÅ…±Y‹Ëdßiã$“[Á¯¹“që--ƒ*¯"³½7› +¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUíW÷#ËÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©pÝ·9kéd÷ ¹$[ùl±]¯AéAù›eû#…JÝCU—Y¯9Á Õa›!å¹ +­Û6ïAñiŸ›mÕ +eç[ñ· ã»{ǯ‰[õ*ŸmŸ å"—;¹q—Ÿ5ÁDûÙ"Å#·"¥qÿ/¥ïý|o³ c¯ñwÉaÁ…»,Õ<‘½*c‘w«tŸDûù9ƒ é7ƒn‹8ýo¯SŸ‰CÏWß6ÛéSÓ±6WÅ¿S©9åb¯T¡ 9û ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2µ#‘ Ïõó!ù%“Q£!ÏIíbñûZÇ8ÛJûËS›‡×9Ñfý1§0›&©·¤¡PÙdSùyÉ7G‹ ¹[¡ ß +ã g÷%¡_ç!›A© ݹ}©–… ‹6¿ ÷(¹bïc«!¿5ç;‡ÿ!Ã"ƒ°§§zg‹Nç9© 9½×a»Á!½¥Ó ¥‰§ ÷9_••§ ½‘«™aµ—µ7ù–£ÇbÁe·e…‹T •#§"Áû?± +ý‡ý íjÅ!‹O·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñ×5­ Ï9cËÓ§©#·{_…moûU™ +M«“n£N³© Ñ9]ÕlË_Sù$á;í+íx/ã2eÙ"›!¿¯µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõ•KUë5û“Õ‡Í|Ã-™@Ë +Ý6kÑ&Ͻ9•/— Çv[‘[ió?ÉÑ,ù§¹n͈‡)O…k¯ ¹Ù¢³†Ù‘sËá ¡“·]“‰ÝÇ~¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ Qù‡-É#S• +É7×™çU±PÕ_ƒýõ”¡šßù—!Ñ(·§±ƒ É—0ÉRaù »Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…•SûŸý ÝFß§‡k5‰%Ý/J• å3—c×NáBñ ã:ƒù6©£nå£ —ß#WŸm‡IÏ7û¿ù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½§2•7Ï6M¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­µI½JÇÍ$³,e­ó5÷¯§ŸªM½Cïkã _7Çe×£WÁÛω©"_­nW•§5¿0‰¯å]Ÿ¢÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥oÅ2¡¿°‹™‡ï7VÁÛ×7 ¹ªí¥"×pQ÷jݳ8µ ×™B›-K«LÇWå ë°¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +¡T·Ë8ó _Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ëóTëeÇ×¥D‡DÓWŸŽÙj‘cåñõ +ÍR¯ž¿[÷7÷‡Ç“µó|åOÑ„ñƒMçvGËY‰‘yŸ +ç.‰!Gßù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½m…Ycé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"k‡*{ë¡’õ®³ƒBOñ:ƒy­;ó!—#KϤ±)£Dù…4¡5Ùï#?×m¹Qá¯"“Xûõ¡9™k¡¥×"³E¯ õ8“ Ÿ;鎗GÓÛ`»5ó ]÷¦Ñg©Õ +M­[‘ù!û%k‘Û'íbó +¿­í™8¥i³÷§z‰!¡žß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ˜“ ÿ —"e»{aƒA“]“©7õ…¯®Å—£Uá-džÍ«¯1“Wk± µ7¡YÃn½”åH«½8¯ +ÁTŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!¯)ÓQ£Dç7·,Ó£ oqŸd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wÛ*ßYë™Ùsã>½<óƒ"ï“Í6Ï;ƒ(‰_ùãEU¡8« ï6ë_‘p3©"½ËÅmÏ•‘½só@¿8_—‹÷š+“\kóWÇAã·Y·AéO÷¤»yý8QÁÅ ùyýA“7ÿ›±$}ÛÃA¹£q«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1gçt·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõ©ó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› ícé ÿ:“«4¯lÃ1ÿŸïn‘«ýeÃm¿7½/Ánõ–•»Oəǧ‰²¥(é|é·“ýV—=ÿ!ƒ óË.á¤ë ËW`·³o­.õÉ*‘ië+á³.¿¯sÏQ“¦bá%õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8-Í#ÝÕ<ùƒó•OÕ"¯pƒ +á\·3±,÷£(•EÕ0¥]—)RÁW‹ÙTË—ç8‹#·.“ís¹1%«%—µSßq¿1å&•Ó¡Á%£ +»Q·Z«šÉU÷“\ýx»*‡›Kÿ¯ŸW¿‡ŸïƒË!—‰Å8«2©’ñB©a¿ŒµCÛ Ñ~Ù*Ïlñ‡Ç5ÉJ¯SÓœ½b»¡í6±шÍšçM±:LÉ:¡Ÿ„¹ ãGý©¹¨Ó¤ãlÅd×­ïm£tçL©o³>Ÿ ÓÇ…·4‡nÏ%›~Ñ9Ý +å-ÿ)±Díïpñ'åš3‹ÏŸ•ª³ÓT]³o×&˳D…Å̓õWÿ¡©¯ÿ‘sûÝ™Œ‡q¹P« Íu£ÑR­σ­rŸs›­Ï„­IÕmÕ<¡Ó[£Ÿn« ß ƒ›Hó[û7ÕÓu“‰·£›±7ý¯Ùzù‹ë£¥hÿ>É©yµ”ï@¤Ï9‹Ϫ/*õ@Ë8Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"HA‹8ùPY…¯ŇYŸjŸ Å™‘ù™"¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7ÿœçÇ“”Á2÷7Ù)z¬K]Ñ—©Ãe ›LUƒÏ Ë¥ƒ™kÓ•§m÷ó™2Qã©!õ…P‘!“KÇ€Ñ ée£BÅË’»¥‘‘^‡ ñhåŸËó0á¿e±¯Ñ ×—“·f +8íY£“ +áŠû°…ù$·{ÿV£L½v9Ùnó ÷)¡ñVÛ ã=ÿ é‰:ãC¡ +û¿ ϳ|É…|ÇNÉië"µñ}«[»"ï(¡ Ÿ6§P½M©7—ǧóx—eáM¿šû áN¯7Í Ï!Æ« ù]¯ ÙO·!ÍY…“5ƒMù Ó!±’É Ùù7×!•7·lÅ ëZ7Åí7Ëe¡!Ÿñ™Cµ9¥ ÿë!±× ÿY¯ß‹¡#Õíý]é:¡¿Œ·$ûyýEï7£Çµw¿7ˆÇ$FÕ¹ ‡7á`åã…‘…·9‡£9‰7‘Në8«3½NÑ#Çl§’á—OÉ!™K—7ëañ û,½÷`å ßaÿ £v…9§•™ +ë9ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!µµ5÷uÑ:0ÿ Åg‹¯J7‘Sá Ç9ÿ ±W… ÇV—_ÿK« ï"ÍÃ7é"•?×ýSÑ”¥ˆïžÑn»™é•Á§›á$•¡µŒÓ0ûD‹/÷&ß«6£&¹Ká ­ï¯5÷Içý•¥¡»Ëù@¿Ó"ÓKƒ+÷gï ¡/Ÿ ³%¹#ën +É‹!÷K‹4±/¿¿ áCç$Q× õ³ +ëÓf½GÙå +·ó£!Á;—ïF“…Ña©¥#³¡í@—ËDÁEÿG·‹±‹ÉgÁ½$“7ÓNã Íjã!Í#ï%ý+¡׈½ÿ¥"Çjß" õ€ë«_Kû5ƒ¯Z¡ ݳ é ¯Ž»ëï’ù@» Í÷•¡+Ñ 7ƒ ¯_…MÓc» ™zé89’ÛÏ!»eïAëï™Å!§§G÷;Ù`Í"Û‹Ÿ›7ÿ¯$— +\©8Ÿ¿“ÏK½7ç)Ñxéaï>…86·)ûzÕÑ­z"2Íçÿ6ËÉPípÑ"+“#ýÑ9Ó§4çVÛ ËÝÑ9ïZ•,Ññ©ÅqÏ"$Ó g¿8×w™7¡é‘…&z¯¡¿ÉtÅj• ÷6ë&ß<£jù ¯+ɹA‡ §®ýÇ6³$»!ñyŸ˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_É6ïí /ƒç|×EñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3—(÷„å"¹@5ëGõ<ßሹ)ó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®§¬^á‚Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#Ís¹ÁN¥‘רÛ>ËOÅXí-ÙdÕ ½5Ïfñ"·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o™§ßkË ¿w…Ží ×Jë ¿¬ñiÁ “q» ¯”¯~Ï<ùcÍž­q§OùN…@ëå#óï[óL¥b…²ÛvËÏ :³§ÇÍ ùÙqõsá¡k¡’¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–ñ²©ë;¥£]ïÅ­Ï”µuïí>ßQÑë ‹ÇF×W‘™·%í°­fÛ­—‡·9íªÑ-çBݪÉnýc¿ù{¯£\‰®¯ ó“ÿy¹ ƒ2Yó*á”Ë›&Yûm¿G¿®™¯q·*Ũ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£…³Ñ1Ûˆói‰½@uã…™–Íëƒ[µ&«_Åc÷ŸóÁh›+¿~k‘KÙ²õ)•y™>½R¯–õ7óuëc½»H‘o¯°ïD©Rg¯µK±ÅIÑIí1ÅlE§#ÕjÇ-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0ùÕ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3멹`»tå—™„Ï5Ñݲ¥f©sáãŸÓ«5±.£HÃËi‹/Ù “ŸwíÏZý@/›Á¹>ïa;9£ÛDÛá§…›Ç·ž»“£(ñdÑ-·-m÷%ƒ· 韹uóÃ/“J5¥9‹Û4™3Áw³'›Gƒ2é3½ +¹R¹#ûí"#×É©tÇß2…ËÝ=µ%Ûñl9Å9½¥_Ý9/<—í2û1§ 7­œ;ÃÕ“pã)Ãc£3Ñ Ù•#­¥ ¯M¹•˵&?à ­¿9§BÇ[ûNéõR­‰w‰+¥7—°•¨é˜·û–ï=É5§L³°«;ï +±Ñh± +µVŸˆ×‹_MŸ,Ýr»™Ý ‰ ¯híŒÏO»­ +õ~Ù"“.ý¬›*£ +ërƒ$³O"óœÕS©Ç#ó¤ùE‡M³"Ý÷oÇ« ƒYá3ý8›ÏP¿>‡ƒ«O‰b •ý-•]»O©•mñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅéfµ6ÑCÝŒñ— +“Y³¢ëg³µŠ­…¯û‰Ÿ¯vÿ¹­E㬠‡@÷‹“3½±P§¥ÍPË"ï%Ÿcç%¯6Ï8•ÝmßC± ½‡Aãb›9µï¦ç\ÝLíM¹«Í]Ë7󆛖›‹:§-ù1¥oå ëS¹œ… û ýHå‡$¹Já ›gà Íxù ÿPÍ «”Ý5ë@¹ ÷ßMÓa™±{Ù&å8Ñ"£žßT£ Ÿ!µƒt¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9ÏSß í(Ûp•“«›±1éŸ:«Iñ ßMÓ€·!¹ížÕoß6­‡ ±k µoõá cÓ û ÝŸHQ…[…ß0ÓSÕ1ÙC¹­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“ýžµšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7…ˆÍ ¥I½:1‘#‘Í›¿Çécû"¹zï8ÙQ‰ …o‰ +ñ5×ãDý!ë¥ÿfû¡µd‡Q›#õ2¯¬™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6C»GÇ*Ù7í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6Ùë±\›ÿAÛÁ›1¯ +é4‰?4Ó!ù ¹?ÕE³³7ñ8· Ó(ï©?á “©)ƒ9åë×#å“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © ï +éOïÝ4¹L©6—q§£Ÿ©$‰FÝ—r£>“rµ"‰E‡.Á ­Ñ&õ!¯Rí¯)ñD"çhÝÝ•"ßnë‘Yý ã:— ŸJÃý!ÑPµ +Ý«›0Ñ·¡‡XÁ›íS½¢¥^‡»ÛëEí‹9—•|›§«1‹Ÿû§vÇnç õ …7Í>ûLé*÷Û/‘"¿]× +ÛnÑhÉ}÷ ý6ÕqÉF«!ëxÙ ‡+ÉÑëDñq¿dý …6©B³Ƀ +å9¡ ­‹I‡’ÍU‡£‘û"Ñ#\ñ0ù&»£¡`™‡ß]9‰d£ +ÙYÁ ó½I‹z«?Ï@¹!‰©IÿûjùÓ’g“(×|á²Á]Á&›ñŸË ›I¯ª½lùvÍ3ã\·J©B£eÉõ ç3ŸÑ å&ÅK±Yóé åV韓ýÑ¿­• ë;à +±6³µ9«2óI¡+ƒ"ñbùáG‘®ù)§d•£å¥í©±ÝOûP±c׋Û +“lÍ"‘*Ã]·ˆ•Áiƒ˜Ùf™m“™¢™[剈ñr•6 ‘'ƒzÉu±¦ÃZ‹€ßEà ‘ˆ‡,™w¥Û³Ù7ýK—yá*ó¬÷%±Sùá&ÅÑu›÷‘%‹Eï~ÓGñS¥ ßV‹,ÃÙJ©K‘tÁy›ÙÉ0ƒ³2µDó‘Ë9‹“—P1û Ù‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9«—õ ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*ñ1Ûœ©mÁ…™^Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3½?…BÁ¥ -×Ç|ë ¹Á'ƒ.ã Û3×™ïl'…ý óé}½íݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»Ñ“Š£Iÿ¦ÿ§ÉÑ7¥å€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¹Š·‹9Ëß@¡¯§õ© ¿6QÕA«"ï"½ˆ»<ÃP‘Õ‚!­6)‰±-÷{á‘5Û¯¨Óµ‰!ÿw#ëv•\¹eÿ¯xÍEí…·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:Ÿ”™å)õ ½_¥;‹kóë •<ÕBŸß8‰ ·RË嫱Q³>ÿ©5éA‹;ã ½DÏÑçAµBõ©Wç«ÕAµÇL¡]Õ3ÑF× 8±!¡IŸ ÑDσ*·:×3÷!ó8³9ñûGýJùO¯•#Íñ ¿P½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë ¥m¡!áŸ9‰kÃ^Í6Åz×3Û©"N¹:³‡ãjû4óÓ§µ½“ÉKï_Û‡¹!ŸSÙ!ñÙ«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&É™͆ÏÕ#©™$¯(ňçk»+“z&ýˆ×QÓ|Åo¹4œ§ãÝK× «g3·iëf&Ô©Ó=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}óó å­*ÇL‰4 Ï™³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"Å_§R8÷UïÁ,õ0‹ ×Ç•á᪹Zõ‡zˆÙ"¡‘÷-›¿©n¡×@É +鬟 Ó1‡y³:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&Ãí ñ ß{£™ÍZý õ‘.£íC×7±»ÏÛ[-¡Léoà +Ó.<—iÕßtÕfó'ÿq÷†¡­b›/± +ÁSù†ù¤é'å +Õ~˪Ù¥6¡^™gßË3±M‹RÛ«‹[­~‡V›8÷Q»AÃGÛAý±`I×]‡­•"é8µ$éyÑ[õŽñLËW÷7RÙD«Ë ©ù‚©„1Ñ+¿!õOE­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€…jÑ<‡v·=¥õ`™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒÅ­ ßS¯•‡˜Å<õeµR‡%Ùœ—FŽñ"½‰›ó?õh…k©&ÛAå$ã)Ùµ5ŸË4ç*»‰oÃ\Õg³¡GÕAÓ>íŽï…“où Ëù‘Ë érËšõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£uzÇ—<ï ±Ï~ᬭÕXß3¹Då¥'çj›#»cñ.‡Náí¯[³eé"ëŒã‡uDÉ‘óFµD³*½y"Õ”Ñ@ÏVÿ·#ý‹Å±«ÇNÁDu‘"×z™Oå@ÿ=ñ™±–±VçÏ¢©©1ß«¥Mµió0åQÉ0ñ¡™íUÑA× ×ÿ/¥ çzç1®Ç«#Ñ™J§eÁ§„… ë +·@¹ŸÑ49Õ•ó]ïýlï Ÿÿ0Ñ+—™ƒz±=Û +ÑvóE— ¹Bß’f‡ý:ï^Õ7™ ­eé§Pzÿ?ÍHs!³»V‘ÓCÕ6õz횇— Ý8 ín­Ñ8é—é™v¡…É]Ï #£Œó'Çm$µ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡±$™$³Û"Í5ƒX‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6ÓK“bÕ÷;µƒ‡9ù‘³NŸ» õëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8—Wà ßß6½+ÍËç‘¥ñ3¥‘0‰&ï« É×4•5‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/Óí)ǃ&Ïõ·³ÿ)ùP³•-µ;ÑÝ&á=Ÿõ…ÍÙ¯!³ ¯Rù• õ1½DÍ0ÿ »ó­&ß=³Ã‡‹)½3¹§(Õ͹ “Ç›>ÿùë'Í ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +Ëדï<ƒÉ +«Ë³ ͨ…tñ¡¯ Ï{Õs»hÙ ‰°ÿBÑ!×8*Vßçá£&‹«F@ƒ ÿÿ|… € € üÞþÿÿ0€€€`€€€€€À€€€ð€€€ €€Ð€€€€€€€°€€€à€€€€€€À€€€ð€€€ ‚€€Ð€€€€€€°€€€à€€€€€€À€€ð€€€ €€€Ð€€€€ €€° €€à €€€ +€€€À +€€ð +€€€  €€€Ð €€€ €€€° €€à €€€ €€À €€€ð €€€ €€€Ð€€€€€€°€€€à€€€€€Àá ñýÉソ +¡ ýᯠ                                                                                                                                                                                                                                                       ¾/ÿÿ|îÿÿ0ˆ€€`ø€€ë€€Àó€€ð뀀 ø€€Ð’€€€‚€€°‰€€àõ€€ó€€À€€ð÷€€ ý€€Ð耀€é€€°â€€à•€€õ€€Àô€€ð退 õ€€Ðô€€€ †€€° û€€à 퀀 +€€À +ˆ€€ð +€€   !%   & " !%                                                                                                                                                                                                                                                       ¾/ÿÿ|îÿÿ0ˆ€€`ø€€ë€€Àó€€ð뀀 ø€€Ð’€€€‚€€°‰€€àõ€€ó€€À€€ð÷€€ ý€€Ð耀€é€€°â€€à•€€õ€€Àô€€ð退 õ€€Ðô€€€ †€€° û€€à 퀀 +€€À +ˆ€€ð +€€   !%   & " !%                                                                                                                                                                                                                                                       ¾/ÿÿ|îÿÿ0ˆ€€`ø€€ë€€Àó€€ð뀀 ø€€Ð’€€€‚€€°‰€€àõ€€ó€€À€€ð÷€€ ý€€Ð耀€é€€°â€€à•€€õ€€Àô€€ð退 õ€€Ðô€€€ †€€° û€€à 퀀 +€€À +ˆ€€ð +€€   !%   & " !%                                                                                                                                                                                                                                                           Ï/ÿÿ|î’ÿÿ0‡€€`ø€€ë€€Àõ€€ðꀀ ø€€Ð“€€€„€€°€€àû€€ð€€À‹€€ðô€€ þ€€Ðð€€€ç€€°à€€à˜€€õ€€Àò€€ð ó€€Ðó€€€ “€€° à ð€€ +€€À +€€ð +Š€€    " "&   !$                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lÿÿ|Ž“ÿÿ0Ê€€`Ò€€×€€À€€€ð®€€ ”€€ÐË€€€â€€°ë€€àœ€€î€€Àó€€ð¦€€ Ä€€Ðº€€€™€€°ú€€à-  +(='($6$'=)5 &) -%0)% )!&!$)4# +""(%#($)$*+()4(* )'"%/>(36 +!$&)),,6-$2/4#,(.!"//!84),*&$-'#&"##&2%&"-*&+%%(#,0))1, ,*$6+**+ &,+*+!&!(+!%  %*)%-+(.1%!%+#) "+.'-#)++$''#,#!+#)&!" $$'!.) $%($) ,+%(?()*#  %$'/*'".'+)%=$(+*-4&%#+(1+&"()&. )11'!7*-á Í;ѧ©™‡Õdýf~ùœƒR•>¿`ýpá­ͬãÑuvñ¬õ«¿6ߦݧ—ˆ‰¥F_…ù°«±³“ñ{¥|åC¥A™›ÙY¯Y×3Ÿ3m»4Ÿ®É‹éR±RÕÝ.Á1—jïiéE¥Z‡‡¥¦ó¥Ó —8ÓO½q¥r•9ª·ª¥›Ù›ùW«œÝœŸ¨˨ÛS’å“ݱ±±±…×õ/‡®½Od»dç±—²×8㟣­Šó‰ý—‰u­s™:£;Ÿ†û±ŽѰÁãQÝ^ï§ë9¡D™}£né,Ý¢Ó˜Ÿ¯3½S¡s±™¯R›u›i—*ãk›3³H»ªË9íY­ß9ɪ×yùnÃi³"Ó¦óOѯ¦µ„Ý ÿ‘£[ã}ã~¿–‡·PÅ:Õ¨ŸtÏjÝR…”±ƒ,ÿO ¿¦ó…ùzõÇ(ñJ“£©8·Xƒ›"Õ›½y£V§ƒ˜•ïQ«.‰¹±Ÿ¦±8ÝUÏ¿TlÁ¦å,ñk3ý « ¯,ím£wé°çf¹"ÝÇ•‰çC™cç‚‘G£É®ùw‹b¿ ‹¯‘ë“ÓRÛ0Íi‡“¢õ_…ƒý²×ví?“ª¿ ÝX›{åi›%£ ¡íŸãûOëC¯•DÁcí„ËMá‘Ͳù›¤£Ñ'©'tµt­TTó2É2󃻃aÕ`‡_×U׬Çu»9Ý7¯˜á_Ùté<͉±eŸNÅ +»~…ýyÿ »"‹‘£YÉgË$Ár‰™f²•³«Z÷ƒJÏ+¹²ß ÍqÕ;ÍŸ<Ÿ–ÕQï‡ß2Ëc½ +í‰ÿ4³Ÿ‘Jõ¦ÙpóeÙ4Ý-å@ƒ©Ïfõ,¯AÏ[ÝN©Ç{ÇÉ;¡zë:ï`¹pù(©z•L±»±«ã§Ý±BÍ~§Jµ\ñM‘\«¹»†é¦ã­‰Ãt×}ÝEÓ_Õ?8…¤ƒ%­Œ½€ó„™Øýjñ=‘ŠïqçI猓™|‹DA¿žÍ ý~÷2rc™¿'ßõlXÏXë!‡ë¦¡6…7µXÙïDõD†¥‘ÿáKGÁÏ^ÙH󇵈¥¨¿r‡`™N«MÍÅ$·Å.ý0·~ µTϛ뚳$ñݳ鲓zÙ>÷—Õ,õ+™7¿m§­\¯±¿xCû¡uÍtñeÁ‡Í‚Ó¹¥!™³ƒ¯•j¹iûGÿ$ûruó­q—[ßZ’íží)Õ*ÅLßB×aÿ`­ûFÝ›½T—U—5ßl™‹çFåK½)§ïIÇa£b­šÑ ‹&÷@ß>áv±²•5§«‘ŒÏ|±Ÿ·.é-ÃOãt«%©5‡6¥¹£«‡‘†ûcÍA×Û\»]…ÁH·®™=Ë<ÿFÁ$,½mál‰xÕ®­-ݦû¥·›¯ýŠxÍwçUÝåŸ5¡7™„ý§Õ&ÏIñK›ƒ¯ù”Ó&»>b¥¹ŽáŽÇkÙIÛŠõtßu½Uë­(ëi¹j»2ïR§.£u·tó«Á…ƒD­C£Ó¨á±µ/Ó.÷PÁ¡ +ùL¡Lãm­Ž¥:á{«|§çß®ól¹l£5%ų¨¥©×p…;¡H뱬͙‰“…‰†¨û‘€¡ù0L¡B«ƒå‚£Žõ•U{ã°ó‡™I»v—©1Ý0‡hÝtÍ/·é õ²±bϯ•hÝhµ1¡'—¨ó¨óˆõ åÓCïBÿ ‘±å”}Å}‡0× ßA÷[Ï\ã“ï¿*ýk¥kåuç²ß•¡*Á)ã4“kß5é·ý‹«¨Õ’ÓY•Wãx¿lùJŸMã+Ï +ég×eýD­,£ª÷;Û<áÏ'Åšµ½Á9µ_…2§4ÕUõwŸÅ1Ã0¹ƒ¤‡?Ó,Ë*·¦½[‰€›³Žý®õ‘ç»Gûu‰5ë5½“¬Ï)·—³œ±dX»'µ4»3‘ƒû£Ùû©™÷_á‰ÕJ­K›(Ùǃ߂ݠë”ׄ©CÃ?½ß°—Y­XÍbå™ù*lñlvŸUß%ça™a»‚±Iç7ßýí¨Ó^ý­¥@ýs×R³±Í>Á?›wá°Ñ5› ·Ûš•dçñ6‘:ÑF«"…%ß~éB¹C›?Ï?ÿI›¢£ƒ¤Õ£ë—ˬ™­ñ­Ÿ«ý™+Å*­)é)•¥ÃDíHÇH¥HÑ=õ›ל¥—Ï—õd‘;áA£A­Bóx¥‹­ãëOõ’µ’é–—ÕpC×CãA­Aådû€§€Ñ§«¡±€§^‹:ß:;—A‡r¹?§CíB‰=Ã=÷]ƒ¬Át™uÙ’§,Ã+÷5—mû3Å7×*Ã¥ÙVƒV©NͧFÃE¿b“„×›œë¨¡®ÁÓ6ãoÍ:ë8¥±Á‘¿˜…v¯©%»‹‹rõUµ ÕIùŸ£#ùk›‰:‘¹Ý8ñ;ñ»gÍ +­m©›¿/› ¿„ƒ¹mÏR—l|³™ý‰÷"¯‰TŸŒ¿tÿbÛ^ËvÕ í›‰v¡‡¡#¥)©n‘©¨Ùxç3Á DŽӦóGítт᡿Ÿa)³±ñ ç#­žõÛM‹.ûyó•“û÷+‘C³xÛsûl™Y銷%¹…AÏ@ë·|£ ãy•AãO»\ËžÅCýu»¯¥ “yÉ"›F» ³6½˜Å靡ް‹Û›Ù••añ“—‡>PÏç¯å4×g‡ +ñ4·T½wù +ÿ\…)›™§‚£3£m•¦Utïh•°·On é”û;—…Ï¥³‘_¡=»€ÝJË>V¨Í[ÿ3,Çg»1÷R¯uÛeìã ÿ*Í,ƒ Çi‹ã0“A‹¹sÙl›œéË…ï’Ë&½]Ýaý%Á#DZÏ&ǯcýFëÇ\ùš¹•õ5›ïTtÇU‰i÷ß}Ñžçl˜¥„É:‹zã¹4ÿUÉžÕ¯³³dßd­pm»)Û.ëIñ¥Jß?ÏËq÷©‘(뛩sÙ…é6‘—†Í_Ûu»YÁ íAûzùÿ¯Eé¹—ßµ;ãŽám‹Eà ¹ž© ç÷d±T›‡Á|ÏuRÝQ›\×’‰ ;±9Ǧ‘y÷°…|ùoÇo͇©Å4ç ©?•e«oÇó°ïXã‹Ó“õu£fÍßDŸ1«A«Å–ÝÙ21φ…‘í$Ñ¡½``勫骯‰zUrûpÝP½©í­‡ˆ“­Õ­é‚‡¯½°«+ÏL§LÁmí^«€—åÓ­Í?¥dë­Ë‡ W™{£³ÕyÓ«ÍT‹—{íZ‡{Ño¿P£¡h×K·sµžëžÕ$¹:iÙ/ë © +9•c³šõnÍvýT«jóóŒ“ÑO…Q³0ûn»|íl“máwËXóX›zÏ‘›oÓ¦é*½zïy‹X>?陜ó›óbåZã^Ñ{Å=Ù1ÏOý ³Y³aµ›£‘ïÿñ@Û¡JífÛ‰ù.—Q—PÁCç¨ÉrÏ!‰ÏF‰gõœé~ÅG™i¹‡ï ŧŸšùG»;T™3«}ùž …9‡xá¯ßL§A÷|Ó\Ó±ûxñ!‡œ¿£¯»UµZË€ãõV©•™s¥—˜ƒ+Û¥çJ‰f×.ÇS£ÿ’³[ÿ“|ÃË/½F¿9í¹ÿE½{ï5‹WÓ]×=Ý‹Rƒáí•ÉÍç5qíOµͳ©:½¹G…H™~·V»w›p£P—Íé’û ½0Ó–ƒ—ãXù“÷?×½‰Dƒc6‹ŒÅnÃQ~ÿ‡…rïeƒH¿;½&àd©—‹0²Dý#ÃzÏ­¯Né„Ù"Í2Ù]…¥µ‚ãå©ýX‹—•[‡ųóP…d‹pã$Á á7ófÕ¥Ç>µvÕ9Á†óZ‡¬³Ší»8ëã`¹>É›£'[§c›C³<› ߇<…»RÛ™«—i©žçcïï3ïšç‚׊—­±É+Ç<é Ÿ ©=ͱHÙ‘ß|ƒ«­Oãš• +g¡‰ýŽeÇ Õ.ù!ß”ùñnå§¢X{Ã*ÕGñ˜«cÍCñŽãs‡§‘jã‡B‹eó,‡Œ׫¯`ý†ã«ýNÍ+å|Z½ZÉŸã™ëªŸ\ÍË‘ß@ßùRÝß'Ù~· ÉYŒ¹(ùb¿²‘—6ÿÃ[;£—£‰*u묷(£»X±£¡)±­’מýi‘u¥Yëuí!ÕX§­Vû—|Û-«*µyµ³ÛK¿]µÉ—$ˆÏ`‹µ˜‰¨¿Eë{“‘ÃjßG˜Ûzé“Ã}Ãd‹Q«0Å‘ÝD× Ÿo­8ËH©œ¡yÁ…¢Ï–Ý9áÝi—3©¤ë/½ íkÁKÅ£lùK㜡|㙩Ù!Ńñ¢¯{Ë0—Kß²§¥%ñ9Á½jéËïsá™ïN‘n»`ÕT߃·Ž££U‘mà +«ݤ™¤ݘ*Ñ£ùh…4ãYŸ¬Ñeãpåªý’Í€Ÿ2å ¡,§nÍný›=ÅN»ý"ɀͱ5» ó••“"¥ÿK½ŽûÛ—¿v›V³‰qÕã9Û™bãa©³§žéz¹›@£+åœý{Ëk¡qùÁY»sƒœÅb£Z—œùYÉ¡§ÍF×MÛNÏ“^•Ïvƒp‡Kó޵ó±çy£MŸyáœÃhÓ2#Á•é_…‡áLç±!û%Û‘M¿¯'Ã<Á„Ñ<—g‘3§”ÝVÃ3³—;Ñ™§B­hû2•PŸz¿’±+çµ®ûIõ(Ù¡©låL÷=ëÉ%‰NµMÑ«u÷ +óYÁ>Å”™ +ùXÉ&¯3åvéxÙNùHµ¯§\Ñ>“ ¯²‹?ߌ“9¿•·Bÿ™ÿTÅuÙš ¡.×6¹Y©`¥=—JããŠÁ\ÝA© ƒOÏG¹3å"õgÇ +±§ µ@õ «&ñ“»óQó÷~Õž¯¤ßzí ÅËSõ¯áÕiï1¡Q³uÁlñEÓIë)ƒÁ‘aÉ0­i¯€¯0ƒ£®ÿ¥á?½P£J«¬ÿóš§ŸTázÛ+™Ó©óÙªõã]Ç%Û&ë³×ƒ¦¥©kó1ótËýÕh»·k£ßÛƒ…=Ï3Ñ™‰•Á«û^§–«ÁQ£/—b‰˜Ÿ§ï*¯7•!“­4÷ƒÛŸ¹RÅ0—w÷®Ÿ‘ó²—ùÇKí0‘œµ`ãƒóJ§£Såÿ «ˆÃ{Ï2¹‘lÁá(¯©ÇÁ ›Wƒ{Ó•÷\ÉSû>ݧsã–…¯ÁŸ@ã­ç`§tŸRã³”i»x³EŸ'ñ‹—h™x÷N“?éͯÙ©χç õN¡„¯µª¡¨Ãuåhá0ñçŽõ³“S©]‹VŸ÷í‡í{árӪ燧 ×XãªË[³9ÑY¿ Ã4­Yß‹“Å\‡©Åp©i§1ï)ÿHÕ§]Ñ“»§lÁ«ߊ·¹D•g™1³T•ÅÝ¡¿fã.ãW™ ±¥§¥‡©fµFå¬ß·?û`É„í`Ã便Ù8Ó¥“$‘ã8Ëtï•××OË7ío‘=Õ˩㈋y߬é‰ýh³VÝ3¹Q©[—zɱÿ§‰åeýM¥-»©ó#áj•1™ ‰ñ¨«d‘Aé‘Ñt¿Rí5›««@ÕKÙ‹÷O³r³mï×,ýË'‰Eãe߈±lãIÏ,¥ ‰šËxÅB» +½(í£“iŠÓÕÕ8­u·eÿ.$Ù©A÷§$õÅi•l³1'©¡ï‘ã§V‰^Á”“¡‹F› ß‘÷±µxå_•VËïçŸÕƒŒ©j‡t £§݆åc“@‘õ©‰p­jƒ1Ç7ûѤÿ‚‘h¯:F¿|£‹Ÿ—Û¹µ?£aá©û1·‰7AýAÉL³®‡8É—õ¢¢ÿeÕÃJ­˜É³ƒTí¡Ãoƒn¯¢³—ñ|»[h÷hƒ”•r¯õXÁXƒgÍI¯Kó}穟«ŒÿXÇYוñÿt-Ã(…‹¬Ý4“+™*Ó9e• ù±%ß¡ÛÑ.û‹±ëÏDÝ«ó˜£-åw•^ƒ‘‰/³&ñ¥/é&ã‚cÿ–é/‰‘ßÓU·¬‰-‡ÅeãL‹@Ÿpç ÿ_åB½›ÿ9ùrÝj®§6…’©^ͦŸEç«ÍeÏ¡(s YÏœ§/ÃÓk½/Ý–—ÛѦ“UŸu£ˆ7ÿ—‘b•+ù£Û–Ñ/™‘·nÏž‘¯¯‡ŽÓz×Ù^ë‘¥5¹,±|ÇZéuÝ”³-çN¹‹>÷rŸg±œ»Kµ«§µgùݰ÷£TʼnÇ8ÿ…ñjó Ï ‡«,ÏNס݋¿Fõ^ñ>·QÑŒƒ†ñˆ‡4ãT‰—™Vǧë„÷8µ+ŸvéV‡!”·ŸÝ2•i­#Çh£™ù`½n鞇±L©;çE¥_Ù‡7±ïYͪ§[ÉQŸZ…Ù•’‘2Ëh‘™Ÿ=ùˆ… ÑV­§ÃFí"µO­×IÅ@Á_Ù{©­á\¥yéD›«åtç@ÃŒ6¿nåÉk½ ÷“…§åPí®õõ8ÍŸõK‰l³ªõÿl÷3‡‹oÏ·Š§ŽíŸŸÿš¹-Á÷'åÁ‚¹åyÁ³™ž…C«Á}å“‹Zµ:ãd÷ ÷Šç„Ó‰V— ñO™±ÕwíçZ—¬—Œ£ŠÛO³é ÝSÇžýBëó8ÏõË`ë]ÿ"yÓWáÁuí*ÉMÝG§£ÑX‰{¹w‹ŠÙ°›TÛž»…Ç@³‘ù/g¹€Ý)½7ÃWÃ¥ +ƒL‡¢£ ß å:ÁŒ×½û\Á©ãÛ¨÷LÛkÀǧpÇ*÷£Ïƒrû*é{÷ÏV£å—fÇX£©Í×YÅ ³­­×]›}±p™ª½•¹ÓLѯÇ®»‘éJÓA‡ž§xÿ]·m›í§)ÿ(ó ‹‚÷c1…WÛ1é £kÁvåx‹’…ž}á=ã™Ý£å‰¥i¥û¤á ¡‹Ó?»½=Uù¥ç†©Y… ‘|óHñ*Õ-ãP»„ÁŽ‹2ßj•§Y•¤(éƒÁMÇ©±rÉfûœ…O«…Ç_ó’ÇBáxëLÁçH˯ù=ƒ«hû’×c“VçÉCùs«kß#ëp¹/­¨׆£Bá—Õ‹ŸXÅR•~›2åI·­Á4±®ù4ÑŽã1«C½åGÅFÍ““­Ù³£ áéMçßÅAÛ¯ñu·_]ùm­HÙSù3›kÏm‹‹£Åƒ­±…“÷§£€»-‡ Á"­¤õ˜ý\×±]=¯n(ËJÏ=•·xÛVõ3­¡ƒÉT¿ÇÕW§zëoë•åT•wãnýOåé4‹¦™†Ã‰1«m‡ÛŸ7Ý"©”«„ß)©<áH›Ÿåç ã'×H¡ùFù¯­¥'Sß¹Å'Ýe³/«X»>Ŭ‹L™h¢Õ%çÑ_õ!›“±©Wû«Ç"Ç •ˆV»®¯…ÇDŸ2õQÓsÉd¡°ûÝ?ÝwÍÙ­‡ñ+ÿNÏk¯bƒ>³±°ñ<Õz•)·K©Oñz›©÷D¿{­>ãS‘X¯¯£Õ­‘Ïù3Áz㇟#™E¥]ý/›Rë®ééL‹‡û ‰Mé?«ƒ'• §;åEŸ·°· ·œ¨¥xëhë0Ý}£­ë‹Õƒ©ŸªùÝMák³GÓpË}« $»”£ƒuï¬ý û-Ï{…~û—¡iµ§ñŒ±*‘¥–¥¤±§9½ƒ§?¿ +Ų¥PéG© LJÉßtßmã¯ûŽ¥åÇqrÓ”×Ç}§ùŸ$éIá,󦛠‡Z»%ý$/çgù+“œ‘›Õbç-û}žý`Í8½6±n‘¤½:­¥ë.½.ñ íí%½±¢‹G§ˆ‰Ë³iÇ2£cÝbÅ™í«rûq•fí7mlçs…R½‰±‰ׇ ÷X|Ë|§Ç›³å² ¡AÅ©!ÅY÷bÏ«S¯—dzS×å‹÷݈÷}—š§Uÿ5µ‰ŒÝ{Ù@§«Œ§I±ù˜ë«ÑAÓ°…$×#¯‰½f§(¹‚…K㙫³j‹j•3¹)óR‰’«7‰c¡Ã‡ÇŽ£pÉ.÷0±Ï¡á+—+Ñ8§oч¦·¥Ã$Ë—4%¡t¹¤õ‰U­:•Å-­†‘>‹ÿñaÓšýˆߢá&+£*Ÿ(É4½HóÛ«É)<¿ ¹©—:Ÿ%—'«ŠßHé‘Û=~ã ƒ £ÕM›cùfù±XÙ—¡—ó +ݵ0É1ë ³ZáFGó$Á:ÿ¨­©O½tÝ@ÿ@ƒWïnˆ»ˆ¥cõ§É3¯5Á}·<Ë¢ù¢Ñ®ñ€Å€¥CñžÿŸ±“—„¥ýç¢×2ésÁq¯^㻉•‡ócÑE·ŒåŒ¡ï|ó6•7ç¯&§“…“±·3Á[‡:Ù,ïÑ«…tÝ’—™ƒñ¥ëP«­é7ËõPß¿#•#ï›×ÛͱÍ*¿B•±G¡€žû{Sï:ƒí]û=í‹^ñX‘8›r©7­W¥Eß„Ùr¹<…+áM£4ûY¯ ‘Rãh…0ã#Ë­‘Ó;å •-¯¥Ý%£Ÿ‘‹ßÍXLç»–Íz¡›§Å,šÑ¥ç+ÍÅ ‹-Ï ³AÓq‹|Ù:ß_±Oů·H§°£…`ã᥷&“x‡± +ËCç0Çë#‹t¥«ß™çáTõž¥}½_Õ=˰Ý ÿS§qášáËñ0¡mÕ5“šñv¿Ëa<ýY³y¡‡¦¯<­ÏCŸA•4Ã'³‰¡X‘‡ÅfÉ'“wçÑ’Ç›£µj_¥V×…«>£%¥¡ïzç=‰ƒµ¬“®ÕŽ¥¬•_õ.§ƒ¢©ɰÿ)›<ƒ=åFÑ;õqKí­°÷‹© ¥ «‰ÑB©-Í(á#¹†ß ÷G½­Gñ‚Óƒ½A‹"¡]ç÷בã,£¢¿¤…ŒÁ­õÙwËu‹3ßõ|ÿ +óÙ®ãÕã"ñH‹K¯׌}«Ÿ§7Ã@㮽²Qý›¥ј«(Ñ‹™‚õC£CõváŒõ‹Ë2Ï‘žµ÷­§²AûAïG»0×t§u½]Û}ãå Á¡…•áaƒ:…<ÙU¥©€·‹ï…Bíh·wÍy¡nÓ"»“£”ƒ³ÑùSÃë¡¥Õ£÷˜Ã~«‰²ÿoÑp©š‰}µ|ÙéUÃRµ‹dÓdû ÿxxÑKŸå ð»éc½!±Í)ýŸë¡ç­±fáeßï˜Ù™ÉÕZ©Zåg±#÷&ZËE•F·ó^Ã_·˜£Ãߎ‡y½x‰ƒë>Ù?ç>‰áÝc"ÿï4×w“‡ Û¦¹+nÍm›Pç[ówíÁ‹¿©Ù!§Z¿\û„ß…¥šýb@³?§†Ï7‘•û•¡¥•³Lë¿‘ç}瞇©‰oñÓN·Lí}Á.¹9­ª•²ûû¢±£_›]‰W§w㡉¡¿ƒkÉ~¯õL¿+¤ƒ¥õÙ­ˈé‡Ϧ³+£{¿z±3¯kÉ‚Áß×FÕ]Õ÷á6áûV¿›œÑ*×»Tån¯o©|ÅžÝ,B×E‡R™0…[õZ¹2Å—žû‡]Ý]¹XõoÙeßc‰"Á!Í‘³M½L¯9¯†Ï…—>Íû~Ù•RûRÅ6™W»6§™£¯ÕŠ“õß×"ÛCù6Ñ!Í“ɘí«ù ƒ ¯!•‹$õ¥ã¦Á¥ëmŸ‰Ës—t£^‹~—#ÇQË”©ƒ›[íQ¹Wßyÿn±2‘0ù뫃MÇÛ(DZ[µfÉ…Z‘-¡Vé\«ÿ£§M‘’©ŽÓ‹x½r¹I¿8©()뉙ŸJû7ƒŽÕÁƒeÙƒ‰0¿‹¿±ƒ)ó%±©Å£³FÅ~³z…LËRt׃ë=‰PÇ‚»L»qïÙ\Á=Ë©x­?ý“,­7· ÁpÓŠõ—“N›¨…Á¢‰–ÿW“{‹í.‡³–ï“ ç{Õˆ‡&¿:ï‰ó¯ÏÅáPÁsùaë?¿¡f™‰á“éq£WÃ8Õ>…„“§¥œ§+“–§§ƒ|Í%¯Gÿ<É«»fç^™<Ý`­ ¥eÛ#¿$¿YÅÏE×-££ÕFÝ á§ç6ƒZ·yéïE‹lÅUç—ýÍlÙuåYñ¯f—r‘ª›yïCÉ ™-¯©3çS…!±'“՗烇FéÓ*¯§Åœ½£‰(¹ˆã©åû‰¯ ã@ùuý>÷HÙ¥,¥Ló¬éŒ‹k¡a• Å•éP‘pï–™Z¥žù-¥ñ%Ë4·£ƒ…TÛH»û'ñ‡w×V±×GÛ ½XîµÏ$‡EÑ$wßF“Ÿõ°£O¡C£yϰ…—û4»^ánËI¡2«‰“&ƒ®›x©>õE÷Y© ãž™"ï9—\Ÿ»Œ­­²¹xõ±¡¯“—]·•“£—épÁ¨Ï—Ï8—‘—®‘…¬¿¥³å•/ï»b¿ù>³_—±ã +Ù Ÿ?Ç0áWpµQ÷F±>‹!Ó³…?Év¡™½á~–‘qË‹ƒ„B|¡Á(á@…›f‘fíIÉh§¤­ŸÙk§kùVõ4囓v«U¡Õ„ÅTñ‡s•BÁ盽1•x•'ã!Ûl‘Ž­+‹ž×S¿(Ýx—‘…Õ©†‹ª4ékñM—³5»‡ÁRÛŽÛX=‡”Ûb…¥`ɇÃk›^ïù}í,ûQ½ó`‰ÁÕY«ÁJ»•Û¤ÇÑk… +߇f‰>ס µk©£ƒ<áõ>¿&ñ.Ç)¥€³ˆ¹;Ù3í”…(ýCÅ"õ@¹$…n,[Ã:“›ÕcŸCÛ†ó­ñoë±ÿ«¡ª³í;õ6ó:Û?צŒ¯=‹ —u…\¿H-áÑyŸ*¥nå·o¡­µ-ÿ&ÛÙ¥у“žÙŒÉ Ó«õ‰ï²Ùžûª.ÇŸ•õ›;ù¦­^㘃C­L‹¥ͤ¿@õ@Ý'ÁÓýá!¯¿¢§‘Ïh‰ËátÓ‚Å‘­ +Óg«©ƒÑŸ»…€Õ/Ík—…Íj‰Ž§Ã%½šë§í4¡R«iQ‰L½‘³ŸQ¡†ÛªÍœÙKó(±šå­¡@㌯QÁÑq‡ÁjõBᛑÍOý–õxï Û]Çxƒ.•$ßh›t™“ƒ\Ý:é5½‘Ç/µÿ¤ËÏo‰Š‘QÉõF¡I‰™ÁÕeïV«pë$Ñ›.¡Z«•¥U™R¥³ +³v«®™®ÃMéµ~¡\©å¤Ï"ƒ4å>å°Ùyå[µ ýH»?ág‰;³`÷ŽË¥‹Ï6ádß&Á¯§GõH…ñ(ƒ……—ËO«/ïoã„¿…•:Ñ×?ƒ?ýd·†ãU¯VÙ;Çsã’­–Õ¡¡%Ç…_Û_©˜ߣãMó~“~éH¡ߘ¯;“<¡'£}­N‡O³nÁ‰#…UÏ1µh×ráë…Ɇ×¢·µ<Ÿ:é½ÿÉ`ùg³¡ýJ‹”›>‚÷.ó§•®Ù›q»³¿VÏŠQŸ}‰ï ÉŒé¨DÅx…ÁTóq­bÓXÛ•·Gë‡Ë„Á¤ÕtùpÉ>ÕHãz·÷Vɤ«žÉ’×^£@ÛB£?ñx«D¹6ÃI¿……a³±‚áJÍp‹§£ ÿ­ËmÕRçTµ*¥l“%Ǭé +£ÿJÕ«`­Å çmýšÍ–%Ÿ_¯Í.ñ›Ÿ§·+ÙX¹g‹gÑÓh…SŸ±٠Þ!­§`ñ†›aïWëTå Ñm­¬©å^áY·>ƒxÙ}¨‹ ùq¯œ›5óžzÍ1ù„ƒ’S冧Œˉ™rÝšíD•‘­oÉOÝË?©dÿ1¡ Í›çý•ÁFõ"ÝBͰ©D£š­ÃY”Éwã%¿†ýƒÏcÁEé§É×Í#ÉNÅÇ¡ïb‘³tßs»PÑNÍ=•ß PÉ\£9שÙAûNƒfå*¥KÍ@ÃÓ‘ +‰›ý?×±“rÃfÉ,›ŽÃV™ŠÿŠÏt¯ÝŽÑ]‰JáRÿQ±uÓiM·Ó§{ûs³Ó:¹\±É‹‹ç!Á®¿c¥.ã5ë37Ó7ï8õ:Ëd•b“™ årá ›6ÿ6ïK…‰“KË •YõTý +µ¥í|³€nËõŒ“’^÷a¹¡ÅŸÅ+›j‡}÷1¥$“#“-ç~¥­®Å¡±³}——õ­ת‰—¡vïv“e—¿=Í4‘VéWñ“‰<·}•vß\­=õ;‰QÓQ™«?—”¿ë ù¡­¦‰§…ÃX›¥å6Õ¡‘<•05É£,»jÉœ¡£ß±­/ûd•pãáUÛIÛE‡p‘zË +˲õc‡c•8Ã7Õ(å¢ñÓH­D­`å±ï™˘ÍÙZ»$Ïi×k¯š¿ZË;É<ã;‡lÇ µ%‡'Û$û)ízÛU³4µ3™Hß©—7ñ§©Xû©M±‘˱Å>ïS™¡¿ˆÿ'ßó>Û3•ý›†›hƒŸ0µœñ å\Õš§hÅ&ù<½†û¡1Ë@—&Á6É ã÷…û:ÁbÑ•™×;Å•¡9Í5¿hÉ çJó¢‰,™jé#«{Ë®™ï­©‰ÍDa=Ýy“C—2©‹vÑ ·‡á¦á +>›dÙ§ýQ‹S•±‡.Õv¥Çwí¹ ­!Ír…à ¿‰» ßNµ ûWÃ6ÿ «¢· +ÿ,¿AÉ á„õ{Ù +ÇTãù—“)—TËlÝp¡0·‰…zå+á:饟b— ¥?¹°½'¯ˆ±xÑ…ƒš›—Ë~Ó¯“B¯aÛ ÝIß»m¢«]ÿa©,Ǣͽ‘@•HƒK©P…ªÉs‡/·‚›£ó‹4Á8…y™ ÍŠé›Ñ–¯›’‹qû#ËUŽ»7©…“6§¡µ–¡-ÏïJñ„ß飧¹vÇc‹8f³…š›‡Pï0‘}«ÿi¡>Ÿ&ÝdŸ÷f±-ƒ#ÃçÑW÷›Û•2¡ ™D½|±Š½i½póuÍa!ˣњµl›sߥ‘Í&¹§Ó Å/ébÉpÇI½žÕ…¥"ý°õ%ápÛj­›—ý¡‰‚«‡óCžé…ñ®½9Ù¬á†Í§­é+Ýu·‘¯«Õ †©4óSƒ!ùT‘%RÇœé—áo÷Œá1çxßn‡¹Ný¡¢§<Åw¥Ãx©íQå#÷ˆ*í[óUŸ)ŸF÷l¥­“ ã‰Û7—Ÿ¿Ž—í¥—…G‹=¯ “jé!·W¡pÝYסû‡ó3ÍgŸ4ñf¯‘6ëÛ9ÙŠíRã³UŦŸKíÑÃañIÁ5ÿÉ_ÇPÅ‹½a¡ãKù÷•» W–‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&ÁI‰“áÛ”‡‚½¤ÓF¹Ek;Ó$×\çDý˜·q)Í'ÿ ãF“Ý_Ã,ÛÝ\©J…i™¥…ÇMÝ û.¿y±—ý(¥G§Éý@÷”E‡;Ó ‘g“2‰‹nÓPÝ™Z÷ ×{¡“F÷*ÛiÙ+§%½‡×(c‡!ÓŸï ëK—ŠÇ`¡«Ë=ý&ã<뢙°ù¹|DZ^Ãÿ¬•×ûhÛ¬Õ@©v³;‹­çš¹T‰jƒ‰Ý‘`…l§'Քũ¿C¯*ñ£¡¡~± Õª=Õ4ùûgû/¯¡ù\íuÓû¬Í—‰Hë^åŠëj½~¹—§÷Ÿý5÷y›Só‹Ÿ€¡”ß™P›šÅM©©ÿŒÇ'‡¥[ךÑ›…‡j·d‡3™Û{³W—¯ÓJeÕNçWÑÑ7¡ ‹°á«³Bý7áfç÷™§ õ*ý_™`!ÍQç’õ-/ñ—¿­³Û Ÿ«9Ým© »Cå ‹ÿuÇŒ•Ÿ™%åŸûa±S‹uéšÍ£‰2éhÿ¢ï+³Qó ßœ“IÝá9×ÝoÉ(÷¬‘‘År¿M©~ß £¨‡5‹h·õóBãZ× +Ï*—vá®ûe‹%ç +׉‡^¯™•{ÝvóƒSƒ™ÉmÓy¡ŸÙ‚¹a…©«³›…Ó3Uxó.“ ›Ä„¡S§>Ë÷¯év¡E‹c¯@§S­}‰„Ñ3ÙûÕ+ƒ/Ç!чÇ¥­aç_‘DkÕx‰¤½¯»!ÿ7Û¡¿X÷ù‡¹=¥“Ýn©¯4±…­Í9ëq©hYƒ5É¥†ßKålÛ©Ñzû‹aêëÙωtƒ`³³yï÷kÃw— ¯#½§Ï ÃN¹{“ +‰¥ÿL×_—a¿¡ÃË«sÍõS¯Ÿ‘$©¥›d‹ ‘¬…qÛ8ñ¿œߪ‹9¹]ã6k£o‘–÷•”ù‰¡Šõ Á@ﯫ°ƒ•£KÍVûHÉ=ÁGáh¡±‡Ū³ƒ™Ûñp½œ—û +“Hù~›¯»µ•Ÿã&±où9£rÇr{Q£GëF×jÇ‹ËíGÍGÁgÓ‡­Q½eßeó‹Û%¯?ç¡“ Å“á[ƒÛ²¥²våkíJÃí–Ór·aÃbÿdá’ÕOýÓ›Œ“€å?Ù'­'åçeŸ{݉@ÅJ£•Á“O±Zé@ù?µù^³•½ ×DùDÕËŒ¯H‘H‹ŽÕñÕËb‘£µ£©ß1ï•#«Eë%½%去l³h«TÑTÿ£™Ÿíù7éXϹbõb…œÁ§ùeµ§£›››¦ã-‹få•T³^É»z§WïŸ.çnç/µ,ó‘ƒsÏŽá'û‹×s­@é;ƒ}µµLë|™“*µnÓ8¿³‡·€Ã2áqÙ“»5ßv×–§&¿µK°‡„Á˜­™áË(©¥‰ÿ‰÷iϘùN¹ Õ•žƒ‡°£¯ÿzÉ?«bÛ ³!¹³õOŸ>‰ïå•ÑjƒjÏ«ý¤«÷Kétó0“0Ý#‰”Õ'Á££¤ûƒ‘~éS¯’±”Ùß/ëV¡˜•˜…¨ƒUõ&ó;Ù<Ù[‰‹ϳ½BõAßP—ª¡e­&Ó%õŸ½G\¿Ÿ²ÉPëñ×ïPíiýœë1¿2·h¥Ɉ‰á}Ï}«•É”“íŠáOÏ Ã …¦ËVÿ}õñ…-•n¥ýÙ–­g﨓¨µé¢ŰÇ“ã7›²±}½ ­¹‹Ç^ÿpÉ/·0“ëUÑÕ÷Õ¥q±z¡³ßI뎩¯¡;û+ñ‘Û“ƒ^Ï/íÑd&Å5ƒƒíx¹„©°‰?ëBÍLűÓBóªÍ©¡ˆ;—p½ë·š¯yÏó7½8¿k¥8Ój‰&×)¿§™ß+…p™o§‡¿­{‰|å.‰ +½™›U¥SÑ Ë\¯B×AÍ £²¿Ë]…^Ř©í‚¹0ë2ë"«'Ã>¿)¹*¡¦¥g íaù_łӕ‡€ë€Å`»=‹s™5Ç4ï'­£iýªŸ°³×@ÓE÷ñ•Ëjý,‰n±m…5Ã)á/Á Ýß›ƒdýózßxÏB¹ +§ ýÝ€¹ÓÕ¤±`ñ_åS§ÝTÉlé]½«ãR·:½¨Ñ­·‹¡ù²ïAÙBçKû±ý§}Û|—ZÁˆ¥1…¡Ûÿ{¡[§½‘ Å„±Õ{³|ƒF§ -¥˜û˜‰~³„·2¥ ƒžñ}Å|»ž“D…>ËTón»o˦»Wï„•œÛ’ÏŸ§*µ…j4ç4…Ý<“ƒªÝ;ó=U‘¢ái•%•*ÿÉ@ͧjÑié0‘½…Û„ËKÿ˜É!­cÓb“™ýMƒ7‰XÓeÿ©×Õ±…–‡u‡1­y¯Ùµ™“ù®‰¯óoù åz¥§?· ýa‰eÙ9­­÷^‰Õœ¹8«¦çˆ™GËAë[ß!Íc±QóN…N½Vù¬Ý=³5ß49›ëz‹m™kµ8ÁŠ•ÑDã*ý4Á^å‡Ñ +…x‘ ¡}ÁdÕÕŸ_á.ƒ§ÿ ¿ í¬¥’ÛWÓ4Ûy×:…]“•‘Iõ Éy¥~— £7Ÿãr¿íÍdá£Ó«q•tÁíyß;¥£í¤å2…®…†¹FÅ©‡µ—åN‘‰õy¹·=äùás‘{»Á3¹ÅеbåDí™Éz±i¹.É¥¥3‰_¯|ÿD_ñ-ñ‰åÓ™‘ç(„É ‘—×®‰)··p³ Áa«8­…Vÿ%Ã/ÙoµAç'­R×Õ“ÿŸ×”ס:÷ZÃGá…«6Ó ÷ÉG™pÅPÛ…Ý*ç®÷n§T½ ÿ;ó"¯W᱆ýÛŒ¡¬Ó+Ç,ïf÷–¯…‚¡3ß6ç]Ý1§|ÇeË«¿‚÷ ¯m‘?ÑM›nŸ‡Ûfí§…E½Ù=ɉßr‹Uï2™(Ý•§bO«³1ÍJË–ù­×BÁ²Ÿƒ¥>Û)鋃¨Ï½ŠÕ±NÙFÏŒñm£zª—,ý“µÛ°·„±a§§r¡©‡Ǥé£×mùlùÑ‘¿”Í“ýã‘á‡íN—N¡²:‡ëX ý3ƒ‡C…:·5Ó†»«á4û £Q·ñ«4“d¯OÇ瘿…1‰ùiÉj•Q×uƒ‰¬hí'÷W¯Š¹ûvñ¦ƒaㇿ}ËNûÚ£ן·…ëŠõp›±‡d5ƒvñˆ¥ —§ +Í}©S¥0±¥×0¯r…3ómïMõ#ñµ²Á%½¡ß“ý³2ãB¹q³ õ†߯›•ñF«G#™¦ÿªßbÙ±³ñ:Ÿhó‚áX×/Ÿ+§—ý^“L±EƒŠÙ‡†‡@­„÷»a»Nµqá“‚…í8 ñc³£íq¥ïr/•›‹(ŸO‡[¡ ç£á—ïtLídÏ•÷I‰.µ'«¯›Xóp‡Géó¡P±•Ûñ¯¯•uÓV·{ï Õ!Óv³ á‹ÏɲÏYû«-ážë˜Ç;Ë{•XÁ—Ûa×£ŸiÏ“íXÙ#½o¯z…±Áwµ=óÃB•`ÙÙ “R­_ñ’Ío¡‡…“;›èÁ —–ŸÑ%ËBÍ®£–‘výÁš§œÝ„ÙˆÑ"ãHóÇ|™\ÁO‰Aµç"©õ`‘ý¢Ífƒ­ß¹U….•s™!Å9÷ã{Ã&¿-¿gÕ©•<ÑHÉ#ëd¥…÷Jûb·çOý2‡ÿ¯ƒáñgÕEÓŒ£sÉ|Å ± ¯©TË,«˜éw¥R…wBÍ7ÅÝŠ…««=—©Ù±ŸBóDzÙ(÷‰±F•k¹5ñRÃß–½Y‘“'‡#Ÿ"‹–Ç–“s³Rûˆí<¿%¹”¥™ûTŸY¹7—ט¿™Û¢Ý(±„Ó…¡dËœ±J›ŠÑŠû©‹©©ŠóбhÉq§ˇ³g¯X¿IÇp™_Á–û¨«Y»V“™ñƒã²ÁxŇaí˜ÍS§!ÉÉŽã€2Çd£±Ñ›÷³k¹O­2ñ,×`ǯÛÃ’›ŸæÝ¥‘Ÿ‡S£R‡ª‘Zå¨éT—õ™å¯Ç—Ÿ`ÛYÑwÏ>¹^“¿u³7ýU¥v‘Óf™nã/ရÑsçwR÷»—¤¿³¿^£Ñ2©¢íƒ³cÙb¹c›9«FӮɕÉ$µG“'Ë …µÏsïU͇YÕ[Çf©rë’¿K¯]Ý·EµŽ¯l6™ëyݯÿ›…{“h1Ûý;£¬«ÃKÁ+ßš“¥•=—`‰žÁ~Õ2Í‘¨Û‹íW—dï Ñå{ó × á™S™Ÿ¡cÙMÛm¿€ÿZ鱕¥°± ¡b‘B£"N…£÷€Õ÷>™¯Ó…h“1i•ŒÇ½ çßUñ¡?éˆÿm¥4É뤻˜á˜—¥éß…u»©û£ÙvÁ¬ïû£‚Ã5“Eƒ~‘Ó)˜û<»_Ï~×¥·N¯>•€ÝH—%ë ‹›í +—!‰³½2µ­€µ>³\“²÷¡ñ~¥Û˜åß»rÝ©õ0Ùiù,Ý6Ë8£…¥”ÓÕ"Ÿ¹S±só‘šÿj™Ž¡lvý¥jÅ(ë–‘°½c¡OÝ!ëk¡8ÑïŒÁ0i—R÷4Õâ§aå~û›µm¯8ݨ¥t•¢‘#ñ]Õ²µ{Ž…}¹}«‚…Ól×[ëïª]³¥½k©߆ÓZ‰'ñ2ïl›4l·M‚±@í²û½ù’é[õªϱƒ±•ÉB×Zï\ÑZɬõ?çR¹Kí ï2Ùû]ï_·`×°·;±‹,©_“aåa¿U›¹hƒiùtß­ÙŸ‹ŸÕ .7µ¡&ÛGµõù:…±‰“%݉ßiÏ]õ\ã?ï§ Á¹‘—.ë-™XÇz‰Iï>³¡±íe§ióŸé$ë‚‚·7‡‹ûχ|§Díù&ƒE³KÑJåo³“>»@ÛL‰…µsÝsµ­·0çA‡z››B»Aµ!ò“=ý=Ýéd‰3¯2÷  ±£œ»Z÷/“/ñSùÁ“í’…‘Oï—AÝL‹¢Ó—Õaï‚õM‡J­ƒå(ý'ƒ@‹ï›mïwÁç±&ç2‘¥ã¢‹ã‡››š‰[ý…ÓM™Mƒ0Ÿ ëtÕr‰ª¹ÁD»F“cŸ…fŸeûEÅ#Ñ­ÿ¿7ý|£|Á{oÑñwu‰sÉa»,Õ<¯CÍB‘‘w«t™FŸD‘€ƒ Ÿé«ª¡rýw«wýo›‰C¥ÏƒQÛ»é0±6WÅ¿‘¹Våb¯T­5å5¡­û ÍûŸGémD™/ó/­|ñ£`û&ï·1ß(«2µ#ß‘ Ó/ÅQù%˃µr“QíbñýZûZÓÛJûË·‡×9Ñfý1ÁV§0éi·¤¡PÙd«e‡²Á±ùy‹ “¹³ß +Éã ¿4‡¡_›AÃL•ŽÝ­¡©–ÉV‹6¯‹÷(™…ïc¿5ç;í=ë_Ã"ƒ°ÍŒ³§‹N«~ç€Eç9×·±Uñ3½¥…©«²áÓÕ:÷9éN¡Ç ƒ²‹š«™Ë!µµ7ù–£Çb÷sÛtÁe߇‹T—X×P±. û?«Jù¨ý‡íj±Œ‹O«PÅOÕ§‰]Ïa›‚JµJåAÁBó_åƒñtÿž¹%Ó×5ûBÝC­ ËÓ§½Ÿßž©#…moß`“`ûU«“n£N‡W«VÛ³ÕlË_`•…á;Ù¤ñ¤í+/ã2Ç3ŸV¹w¿¯µ‹“Œ™¬›—1£0³‚ï!Íhÿg…/ã(@Ç?ód‘©¡w÷wÏnõ•KéKÓû“ÕÛ§˜Ã-©‚¿ãJ™@Ñ&Ÿqµz‹BÏÇv[ù[‘[ë›ÉÑ,ù§¹n͈‡)Õ)Ù”‡ ¹Ù¢³†Ùƒ‘­¯ÍŽ¡“É{Ñ€·]­•Ç~¹f¡gsÍ«ï”ñ/ÍWßY©e‰¢ó9ƒ9·[•}‹wÛwçiÓ‡-É#›$¯.÷e‘­½¬×™±PÕ_×dÓ„õ”¡šß×í±Ñ(·§³ûž±—0×f·g¯tÉR»Bá8É9éYù•çq¹r·R­Ѫñ©ÛxÙm‹ +ùB\Áž‰ ¹…•SûŸý ÝFß§»k‡kÃÝ/J• å3—c×NáBñ ã:û9£=ƒÅ«‡"åË%õ$—Ÿmψ‹Õ€‡Iͽ<±w¯Uï“Í6Ï;éC‹CáIƒ(·FãE×~Š·UÙTï6Çlp—BáEÛ"3ÅùÇÛ«½sz±yó@—‹÷𝇙ˆ+óW©E»EÇA·YŸPíP·A÷¤·²‡³»yÁÅ ùñÿ“í\™ÿÉ7}ÛÃAûC£q«é:‘9“[ËŠŸnßXÇù޳'Ÿ½±±›°‰°©uï°¿í~×lçt• Ã1ó·ÿ»(‡—Û,•¯Ù0ÕPÍ`õƒéÙW¯d뜩¦µ†Ë3“×%©ç‹jÓ¢Ÿ‚ó4‘ Ïšd“b³{ýóDÿs·"›HÅHï;åfícé ÿ:“«54Ë¡óÃñ4~Ÿ«ýeÃm¥½»û‚õ–ÏT•ësÉá•ǧ¯³¥(Ñœé|·“ýV—=ÿ!ƒ óË.á¤ë ËW`·³o­.õÉ*‘ië+á³.¿¯sÏQ“¦bá%õa¥;ã[ë*õ +Ù¯½«aÉIÏ(åq›’ýP‘r£(É8©t-ù#Õ7ùõ݃‰aƒ¯p™šƒ +ãf§3±,É[•EÕ0ù—)eÁWãq‹Ë—¹šñ[ç8§Šís…˜ÅV¹1ï{µSßq¿1·uùŒ£Xƒ“¡_½^á<ƒG·Z«šÉU÷“\ýx»*‡›Kÿ¯ŸW¿‡Ÿ¹¥ïƒ—‰ïjÅ8©’ñB©a¿ŒµCÛ Ñ~Ù*Ïlñ‡Ç5ÉJ¯SÓœ½b»¡í6±шÍšçM±:LÉ:¡Ÿ„¹ ãGý©¹¨Ó¤ãlÅd×­ïm£tçL©o³>Ÿ ÓÇ…·4‡nÏ%›~Ñ9Ý +å-ÿ)±Díïpñ'åš3‹ÏŸ•ª³ÓT]³o×&˳D…Å̓õWÿ¡©¯ÿ‘sûÝ™Œ‡q¹P« Íu£ÑR­σ­rŸs›­Ï„­I©ªÕm¡Ó[£Áƒ« ß ƒ›Hí“ó[ÕÓu“‰·£›±7ý¯Ùzù‹ë£¥hÿ>É©yµ”ï@¤Ï9‹Ϫ/‘kÛ£*¯-PÃiׂå‘­ÇRÏJÓ@›`Å÷BÝzݵõ1µ.•±¡³«ÝíÝ[³’ᣒ×Ç$‹`‹˜û!­1ÅWã{›e—›™Y»»›‘]õ•ó‹5ÃsÇ­ùƒãNÓ ¿Sçp™”‹õšÓxц§¦¿‹ë'ëNóç «Q—/‰r¥p“4ÑU9í9?¿aÏHH‹§:ùPÑQ…³(ˆŇ½uŸjÝ“Åù‘²÷M¿,Ù_ËfÙ-.…J¯Iµ(ËnÑlŸ•‡é݃›JÿœåžÇÙ¦·jÁ2Ù)壬KëÑ—ù™ÏpÃe›LïLÑ0ƒË¥ͧÕ°™ƒŠ§m™2é2‹*テõ•q…PÝ“—¡Ç€‹¨ée¯Å˧»¥‘^—~ñhƒå˽Eá¿e±¯Ñ éœ×—·fÃp8íÅ¿£“áŠÿ²û°¯ ù$ÿV£L½vɯËzÙn÷)—IËwñVá^ã=ñYéƒNãC¹¢ûÏÉÍ’ÇO³ŒÉiµ¥å}«[ï(5Ÿ6ņ½M儗ݧ™•÷²—e¹¦¿š†áN›/Í í‘Æ§~ù]ÙOqÑxÍY•‚“5Ë+ù ±’ùÑ:ÙëX×!ûw·l÷‘ëZ±KÅËeë†(Ÿ™CÍ|±¥é1ÿ±‡‰ÿY­xÿ®ß‹ÕÁŸý]å˜ߨ¡·$±žýEë}飵wó®ˆÓ¬ãcF¹ ¿Wá`Åtã祻J…©Q‡‰—Vû†‘N«3ç—Ñ#§’‡¨ßp—O¯‚™KëaÛ‚û,·IÛ÷`ßaÝ‚§¯£v§•¿ŸëùQù;»uç‰Ù•ZÓ}ñš³b“G¥<‘LÍë\»}m׎é9µ÷uǰ0›QÏxÅg»¯J‘Sñ^Ç9ÅE±WµcÇVãu•«—_™.« ÍR÷:ëM•?ýSÑ”¥ˆïžÑn»™é•Á§›á$•¡µŒÓ0ûDV‹/ßo‰¦£&ç°»’Ûqùª“ïEÑ\‘,µHýk¡¥*Ûã|å§¿‘1÷g刡/¿O³%ëHùxënÉoÓ£Ó#É‘ï?­M±/ç$±ª½–çu³ +ïˆ"Ée…¡‚‹ˆ·ËL©+—ïF“íw•㔥#÷S×>ýg³#½­ÿG¿ƒï‹µeÓwϲ“Ž‹“˜Ç“å…“7ÿ‹jé3ï%íg±<ƒ׈½£<ÿÇjß"ß.õ€ë«_Kû5ƒÏz¯Zݳ ›éŸ¯ŽëÙ±ù@³JÍÜñ7¡+‘W7¯_³¬„Óc™z³Ç’9©@Û»e©§Ù%ëÝ>™§µ©÷‚GÙ`¥ƒå®Û›7™Q¯$— +\·”Ý­ŸÏK‹ƒ·¢ç)éa× “n…8·)±¤Õ¥ª»œ­zéQ2åRç“T˽“íp+½#ÍKýÓù8Á`çVׯ­<ÝïZƒ‡ÑÁ°Åq“”$Ó-¥9g×wﮉ­¡… …&ϯ¿ÉtÅj• ÷6ë&ß<›v£jÇ+¯+É¿N¹A§®£°Ç6³$íEñy{˃Ÿ9aåj¡jï¤Í„í¦Ë1á2顯%‰`í_É6í í ›¡ƒé×›€ñC«:¿QÃ㨱­­w±¯›û_Ï_©ÿ™;ë(‹)ï$•I—€©÷—(Û§÷„¹@í@ëGÓDõ<™²áˆó!¿ªËû Ù¨©Hç™».Ñ©õ¨ÙGû¥+‡¡¹®§¬^aá‚Óž¯"íë<ßWë¦ë,…s¥w—CñW‹1£¦ƒ-ÃSÍ¢ùC߉ÅaÇ]Ÿf›)‰¹õiÿƒgyóV‹'»/Í!Å)é¡Ë5Õ£)ë­‰ã ÿ#Ís……ÁNµ¥רÛ>¥ŽÅXÅ’í-Õ ‹œ½5ñ"·6½‹ï#㱫4I—ÛPã—Ñ`‡o™§©yßk¿w…Ží ÃTë ¿¬±vñi“q» ¯”¯~Ç Ï<Íž­q§OŸž…@ëÏ:óï[ᨥb…²ÛvË™):³§Ç“ ùÙqÕ|õs¡k¡’¹¿"ݱ¨›ž­O×x©*£‘ëY7á|£2ç&™™Á€õ‡éjÛ®™4á–ñ²©“P¥‘d£]Å­Ï”µu£xí>ßQÑ»‹ÇFÿkµ‘çX×Wí°­fÛ­—‡·9íªÑ-çBݪÉnýc¿ù{¯£\‰®¯ …óÿy¹ Û2ƒ2ó*á”Ëó&›&ûm¿G׳¿®¯q·*˳Ũç?ÿõrŸrûM©ŸkókÃ#—o©±ù±­lÁ™&ñ&׉ÏU‹J—ëÙ€ÉAˤ¿p·rçû”áó)¿o‰£…³Ñ1Ûˆói‰½@±Aã…™–·Íƒ[µ&‰«Åc÷Ÿ‘ŸÁh›+¿~©‘KÙ²õ)•y™>½R¯–õ7óçëc½»H‘o¯°ïD©RS¯ÿµ±ÅIÑIí1‰mÅl§#Õj.Ç-í¯›:ÿ2å1±£6‰«ý«ýz¥פõ£µ6­0ùÕ#£$Å¢‘E…›±›ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3멹`»tå—™„Ï5Ñݲ¥f‰‡©sµ¦ãŸÛc«5åX£HÕ˜Ëië²Ù Ÿw‹}“¯Ë›ù›ÏZÁùAçŸïa©bÅ›µU•oÛDÁ™§…‡Ÿñ°·ž“µ)Á’ñd›Y·-£.™TŸ· Ÿ«†í—›˜¹uõ„“JÇJëƒÛ4³p©qógóaÙ³õ“sé›× ¹#ŸLÁL³)ŸÓ‘Ç×¥B©V©Gǧ@ÛRÿRËÛËpƒqǪ½½¯ë¯áu<—Mí2Ã……çd© çœ­œý¥ÕuŸ“÷’“pÃc¤µ å–ã3•·‡TçPój‡m¯Mÿ8½,ÿ+ËëQ­‘”Ç[ÁªÝZé­‰w‰+¥7—°•¨é˜Ÿœû–ï=ïÉ5³°«;Ÿ›ï +Ñh± +µpµVŸˆ×‹¬‹_Ÿ,Ýr—¦»™‰ ¯h팻¬O»­ +õ~Í¡“.ý¬½4›*ërƒ$Ïq³OóœÕSï&©ó¤ùE‡M¹oÝ÷oñ0ǃYÝlá3›ÏP¿>ÅSƒ«O‰b—‚•ý-Ϭ•]©•mñGãgÃŽ—L¿Š‹¤õRŸ‘xùŠÏMÅéfÑCÝŒ‡ñ“Y³¢ëgpµŠ­…¯©.‰Ÿ¯v·•ÿ­E㬠“M÷‹“3½íV§¥ÍP¹HË"Ÿcç%¯6ýn•ÝmMßC½‡Aý›ãbµï¦ç\éíM¹«Í]—•󆛖¥Q›§-ù1‰y¥oëS¹œ… ÿ-ýHë7å¹Já ›g݇Íxù ËZÿP«”Ý5ë@£M÷ßMÓaë~±{Ù&å8µ[£žßT£ Á-µƒt¥2½h‹ Ë^ýtï«‘PÅ ™$ËGŸ³Å3¹»—9ÏS­]í(Ûp•§«›±1‡=é«IÏWñ Ó€·!¥¯¹Õo³¦³­±kÍ‹µoõëlÃ!á •.Oó£ŸHïH…ß0ÓSÕ1ÙC¹ñQëRõ­ µ¢ߤ)‹7»ŽÿŽ—s×h½KßJ¿?ÇÍM•,ç–¿—é`ñU«<Å;ƒé©™^ý[Ñ}áDáb‡(ý)ÙŽ± ýq…'ß$çGñ?ÉE©F§fó—"÷,«§É“ýžµšÏ×nõm÷E‡$'—ƒ••§ý‹—SѨ…ˆ¥IბT1ݑ٫›Óã†éc§³¹zá]ÙQ…oyÇGñ5ãDßfë¥ÿfû¡µd‡Q›#õ2¯¬™¨ƒPÇš‘¦Ÿ-ª©9›Eñ…­"Ë:ëbdzåhŸ/­$µ}ÿCÓ »±Í”TÉÇ ñ$å=ívû¯—’í#ÕCÉbÓ•¬Í\™9×'Ç:ÉZ·©û²ãÙPq©p£‰å%H…©0ÿ|…Ÿ³8³w£«íÓ~ý9¯ª™Aû[Ÿ’ýGC›ªÃríý’Ó'k¯wñ±Ó5﵇õ á÷¨Óˆç”µ™?óMåpá‹ ¹¯½>…*É•Í^Ã;­ó—Ù³²ÿAÙa™Ÿ~—?¯ +»²ƒmײÓ!Ë-³‹Õ†åMÓ(énÉxÁ/»D½\Ë•“‰\å¥TÏ0“uû®ËŽÿ~Ñý µYÙLÁf¥Ÿ÷#“ë`·@ï¿«ãvõY +¹L¿§©6§ɧ©$±jósÝ£>µ°½gµ"ƒ¡Õ­Ÿ­ñZý8›D‹‰—«íŸçhÃqÊ—•±(ù¯­k©w‹²‘YµW÷qó“— ÑPµ +Ý«›0ë4·¡‡XÁ›íS½¢¥^«l»ÛëEí‹¥Œ—•|›§µ2«1Ÿû§vÇn«ŽßOÛç ãwûL÷Û/³¤¥ŠÏ‘"ÛnÑhÉ}÷ ý6ÕqÉF«!ëxÙ ‡+ÉÑëDñq¿d»p…6­UÁPBɃÉå9…Z­‹»¨Ï’IÍU‡©®ËFû"ýŒ\ù&»£¡`™‡ß]—^‰d£ +ÙYÏyó½I‹—™ù«?¹!Á;§X©Ió€ûj¹“Ӓ餓(á²Á]Û5Á&ñŸË ›I¯ª½lùvÍ3ã\·J©B£eÉùUõ ÛTÑ å&ÅKõ¤óÛ!åV釯‰6ÙRý뙇£¿Ý|­Fë;‘„çQ³•—óI“uñbùáG‘®ù)§d•£å¥í©±ÝOûP±c׋Û +“lÍ"‘*Ã]·ˆ•Áiƒ˜Ùfõf™m“™¢™[剈ñr•6 ‘'ƒzÉu±¦ÃZ‹€ßEà ‘ˆ‡,™w¥Û³Ù7ýK—yá*ó¬§y÷%Ÿ‹ÿ±•zÅ«‹¡F‘!›ï~ç¤ç©ÓGÛßV‹,ÃÙJ©K‘tÁy›¡M£dÙÕ–‹¡µDœ·b§K«©gÙg“Ót±“‰•‹³3Åh³@­JùIå'ác`¹™§«—Ÿ¡ÃCƒ³P£hÃyû8­9Án­3íÿMÇ#ñ1Ûœ©mÁ…™^ÝÑGÃHù€›Zõ'«nÛ6ýÉ–ñЧE¹¬±;¯¡NíÁ¥¢™½?-¿¨Œ×‡–Á'ÿ”Õ™¥aÃU™‡ƒ­ƒ­¢±˜óé}½©)ݬ“ç×<õ]ý}Á‰é«Ý… µ ‹+Å?»Ñ“Š£Iÿ¦ÿ§½N™LÉ倅"¡!­ˆéÉDíœÁœÑb‰F½ªÃ9•ƒÛ~¹Š‹YÁU·é™¡¯§ÛQ«Rõí†ÿcÕA½ˆ»<ÃP‘õ‚Õ‚­6Õ6‰±µ±÷{á‘5ë6­¯¨Õ‰µ‰ÿw¡xëv•\¹eÿ¯xÍEí…·Sý‘§Ÿ‘Å!‰Yó<Å{ÿˆí€Á<·‰ç¬]­ £~‡H‘ý‚ÏbÛ:Ÿ”™••å)Ù5½®³Cñ`Ý$óÕBó\Ñ•‰ ‰¿_åÛd£«§HŠÿ©‹íF‹;…cŸ!ÏѳµB©\å`‘盯µûQÕ3¥zûšÑ¢8±YŸ ïd½‚ƒ*˜¹d÷!éZ›”ëJñç•ùO§g»Šûtͽ$½*ûkÛ€—Á7‡ ©ˆ­SÇ”µa©}Íš« +à ‰‰ÃgëW÷x¹›áy—“Û ‡e§±ÅwŸ™ŸxƒŸ©áCŸ ï±ïŽË ¥mÅŽ™ áŸ‰kÃ^•Åz›®ƒBÛNLj¹’³ãjÝŸŬóñ–µÉK·«“©Û‡÷tŸSñÉ£…°«÷ÛZ‡’Ѳ™‹<ÃáSó ½;Åk­¥W§_õJíÕ‡Ù£™U­—«H©"°í¢©“¹­››‰Z'ÿ•&É™͆£8ÏÁ*©¯(ѧňçkÍ¥»+&‹¯×QÓ|ý£Åoœ§ã³lÝK«gÝg·iëf&Ô©Ó=µóvñ)ýIÙ†½ƒ8›„ëˆϨùdÓ›çÉ +Ý+ûJÓ¡· Ï.£g¹y¯}ùZ>»S³sórå<ÅD—D¡¿óó å­*ÇL‰4 Ï™³IÉ^Õ\Ëy™y­vË‚‘‚ïkN³Xɳ¥± ›!½"Å_§R8÷UåWÁ,µ]¿j²×á᪹Zõû‡šçªˆ¡‘÷-›ç,ƒ›¿¡¿L÷A鬟 Ó1‡ÿ³:ËYývçŠÏ-ÍN¿‡•…å¯e—q‰œ«¤ãi–Ûo—@³f½ÑÃñ ~ß{™ÍZý õ‘.£íC×7±»Ï§¨‡\Û[ý¨éo«z£¥<³…ÕÕfÇy³ÿq÷†¡÷›Ç‘­bÁSù†ù¤é'å +Õ~˪Ù¥6¡^™gß©L»Ÿ±Mù«‹[­~‡V›8÷Q»Aȇ«×JÛAI妇­•"é8µ$éyÑ[õŽ»¤ñL…Š÷7ƒIÙDË ©ù‚©„Ù„Ñû³q¿!E¹®×Ë6çÁZ›Gž•N­ ‡b·¯½Qß-Ϯզ…j½³‡v¥™e‹™6‘&ù…ɦ«^Õ +£†§"ÅÕkѬÝW“}6±gµ fõ=¹'¿·'ÿ†½D—ÉŠµƒ‹çzéÅ­ ßS¯•‡˜Å<õeµR‡%Ùœ—Fޱ½‰£1ó?õh…k©&ƒhå$ã)»Iµ5éFŸç*»Ã\Õg³¡GõˆÓ>íŽï…‹{“oËÃù‘érËšõŠ­£»n…M‹ç“±‹³ý*¹kÅŒ««ãV‰¯\ß§=…‡2á5ƒ«ãz—<…I±ÿ„ᬭj—xß3‰8åçjŽ«’»cçb‡Ní¯[³e›ˆëŒãé†DÉ‘§‹óF*á>"”Ÿ—Ñ@®·#³¯õ¬ÅÇN‡“u…#×z™Oýÿ=ÿ[ñ™±–—k±VÏ¢©Ñ6ß«¥Mµi§šåQ­‚ñ¡™íU½—× ×ÿ/¥ ‹†ç1®Ç«#Ñ™J§eçv§„… ¡Kë +¹ŸÑ49Õ•ó]ïë‰ï +ÿ0Ñ+—™›‹±=‹HÑvóE‰O¹Bß’f‡gý:ï^Ö™ ­eé§Pzÿ?ÍHÁA"sÉW»‘·–ã_õzíšó©NóA— é®™vínç:éÿ°ÿ¡…É]Ï #£Œó'‰©Õ‘Çm»—ý„‹#Ù.ír£!µ¡C•†©›¬¿ióy“‹‹IûK¡¤ÉH±$ÕnƒX‘eí/ñí™Ãv͘Ç»Oñ\ß—ûf¯/³ ±C¿qµ¨ëÓKçr“bÝ®µƒÉX‡9r‘³N‹„Ñcõëwý±Û–Ó +¡WÏw¡oÍ-ï"õ¡ý!Ë’×i—¢é(Ùc—W·v•­‰KÓ`½+ɇ¹tÉ‹•Jѱ¥¹[á)™·^Ë“ï¯P‹«v•šó+û­¡<ƒˆ¯„ïuÍ qÑS«ñ™|Í÷÷vï:Éš­Z‹®³~¿DÓÉ-ÁoÇ—H‹]±?©³Ç.ûiËr³½dÓÏ‚ÛhÝ&¥Ó<³˜Í…F™,… ^É¢÷z…eËQÍ0£¡Ón‘Uã¥Ù|ß=›b½3»šï}õ9¹ ‘¡Ë™›Nû¦™l‘›Ï4÷¥Í »ƒlõ[£:åýl›1²Ç£û6Ÿ|[™ëû|¥\…,‹xïùýmщµEÛ;‹ÛgÓ²÷ñ£FýLÉýr“f¡$ɡ퉧8Åvµ9³™t=Ç™×bùMƒ3ù ¹ד¹_ï<ñT«‰R×1ͨ‘˜¡{ŸÏ#¡Õs“t»h›‰°¥ÏdÿB*€á¢û™·ƒ6Gá@á ñýÉソ +¡ ýᯠ³CÛ¯„µwÝ"÷IõcÏ¢Çl»*»,ÿ˜×#Ãé‰õu½•Ÿ`­µ@—qó›§&›^Ùn©8ûãuÓ`åLÿN«"•—·Y³IVÏ,µñ +?ƒ†ã•.÷$Ó>ÿ¥³z“¥w‘Cï é‡Ñ7ƒ6ÞÙÏ9§ŽÝuçVÁaƒ-›;™IëO¥­ý¯™LéŽç]“7ã Ù&½ǃ»œ¯X‹ »%­Ý«ÁƒËzWá*ï,‘™«Q™ Ù"ãHýŒËé…ç&§f‘]áÁ +É<ß\…'¯€ËŒ…”µ®ñš¡E·ƒ‘¥Wƒn¿h…C™³ªß±Ÿq½eÑ=—‚Ù_ƒ‹d‘²é!ó(‰’™#Õlã!á!Ëeùe‘§ëgá=½£“d‹ËXû8õnmù&¿õ#áÍQ©¦‘zÓ¯›gÉH>õ4ÿãg•P“#½ ±Iï"¡ÕÍJ¹a¡ƒÏ4«`P±­Ûz¯®•*¯AƒUÕu©×hõ/Ÿó“×{ƒ +‹Á&•/±ƒÙU›—£²£?“,µ““³ƒªë)™ýwå@Õ4Ík³GÕk·C¯'ë¨åßœ·]ñÿ ©eëåq•˜íN¹c«7µ‘{½*¿c£,‰íXÁsË(Ñ*Ë»bç›÷˜±%Å3û ™±²¡¨±«‹såX§CÝï ‡˜ÿ¥¤ÁýT™ Õ‹—3ÇrÇdÇ«}ÿ³§™¡™Û+·-џ몵£Õ‘q±\û™§I³®½VÅtÍy¹<…Œ£zÍ`“’«Tëý?»ËÓÿŽŸ×SËu¿Š½®Å”»IågË4ë•Û‚µ_Õï–‡éf³Á¯¥ùo©;2ñ_·1éšÃ‡’ù;é,“|‘×'ÏŠÉߊá ‡Ÿ×Q‡nµUûk•Ÿ.› §Š«q±5—·}ñ°áÿš¥bë]¥Mý D«EãnïP»Í4å¤Ùßy™ ÿ«µ”Ÿ½G›9»åDµXͯ°™.¹‘‹……4…‡_íaÉ]¿W°Ë›ƒù8‰J“•ëpÿ‚£»™ýV»yã_Û˜íEÛ?픋x“/¯Ãx¡Aýk•I·qˇ‹•ãLÏ[ÕzÅs§ÏVõ—vŸ¯å`ç¡n¥Žû|Ãß@Qõ¥ß<¿jížµ¦©:‹Ñ–éw¯Cµ,‰±™¯ £_ë¤ó™áJ¥[¡iÛ ÍZ¿€× ŸV¿Õ‘ÝeÇ ó¤§±‰\Ùe¯Éñ"ùB›ówÉJƒQ•­¡,¹¥áû>}Ï*Í5탑-‡û ͇©¥•¢ÃvñÓA­u‰qÉD¥+‡£°¡Ç8ñ’Ý:¯…»#½–—Ué%Ñ¡—£ ¡lŸ”ÏãŠëQߡә³Éi‘ÃL{ß4á¡™¯­•~“;¿ÿoÝÑQ›`Á†Å6Á%ÙTù=¹„õOƒ”·«ëDõvû1Ç7ï!ûé6ß>ùa¥€±©œ÷‰•pÍO÷M³Yï;©µ!ù¡‘ª“z§_å_»—d™ɘß9Í-¯M›-ßY™iÙÓeÃa±FÇ«‡N¿lé Ÿ‡·Ï‚µT·†ñ¿ë¢Í›<‡EûЉ+ßcíoó@¥N‰z±LëeÝ*± Ù“5Á³Ÿà ³MÛ‹IÁ3¥¥“ª«ùmÿã\É¥³ný¥Ñ$…h«]Ë|Áu‡i§ɬßPë8Ïc—O—˜Í'õk½hëŒñ£»éo·vÁ™ý\­©Œ©y‘H÷@™añ/ཨõ$¿Lµ¢«v§Ñ{ý ÏmûP—Mõ”˳Ã8Ûxï•7›l¿µJñ2÷~‰‡?÷Qû¹(Ÿl‰ÇhßÇx±›»‡:ÑFɛюױ•1¥…ûŽ÷=Ý{ñ?çPãBù§.‡~‘;«9§eŸÓRù¡t£’Ÿ&õj£…qSJ•gÑ—ËñiƒÕn|“i±x]§·ïÛj©¢¯Š…Y¯Z…3I)§,¡9«Bå7ç© Õ&¹;—J“…DŸKÛ E½2¡r›_ÍŠûQÑ ï—×C¹ á›» ±±Ó…ßWÏ+Ç0§ULjëA›§•X,™%Û<‘F³P£#Í«Á§ïeßR™ ÏP‡ƒÕ!ÏBÝ9óŒÍé=ãO¿H‹5±1Í¡¹4>÷gÓEÃZ÷[¿³‹gû®ßÏ“å¿XýªÍqÛ¡Lá<ñ5ã²Û^Ÿ>ïr§]¥p¹tݳ×zãœÇ û³`£g…AÁ ù¥ž¿ž©JÑw»ªë›Ù¥çL—‡¹‹ï$ç?³ óÃUÉ4Ë ýv½ÇÅ2¡†“‰­.åe¡kŸ-û‚;½{£óåŒ5‹–󜙃“”±cŸx¥?åÙÃ$‰:ým§cµN¯™©“$÷’­'«–«„‡›°ÙÁ§ï§»iýd“Kó‰ªÅJë—k‰ ó[í“·J…=œM‡§„·Iï©9ùß3ÁPÁUÛ\¬ùlÁÝsÍg÷i£ªË&­J­¬9… ÷‡Ï‡£…SñëÉB©d…EÛ •›&Û&³í=Õp¡­Ñõ\Å9Å ùvÙuÙNÛOÇ3¡‰—f󪉉‰&—XßgÝrà ±˜ÙH÷xç ·°Éý É‹ÓVáá¨ѲÅñ§áuço·Alï•ѪÇ­Y¯h—)ýçA³ƒÛ…K½‰…Dý˜ý>µAÛQÃFù›ý[õ“Ë<ñN×ûo¿Ž™\•yõŒÝ”é•åŸߥóB]‡ÛZÓwÝh‰¨¿zÅ;ßBÙù°Í/‰`±Qñ±ï¡…oí¤çƒœ¡*ápÅSÅŸǬµ&¹†ƒ–ˆùxá“§¥µL÷„­œá¥¹QÇS‡žé>×rµ.ïR¥v‘•Ûÿb‡®™HÁ9õ-»¦Å„»ß’¥LÇHÅx¥÷¬ñAÉrÉ!˯$Á©+Ó é2Õ¨é¥õ'óp»”™4Ç©—C£¢d±>§uÕ‰€Y·ˆ±Šû¥×i…c™¿»—Éx½zÑfÛý±.Õ3…w‹²çz‡Ë}¿T»J³L£¤ý_µ +ƒ«³!í'÷L—w‹£·‚äµ=甑^ß µ:Ÿ_‘%ëvË>í>Ï‘ÇX±*¡“Lé-Ï•×W‡‹ÁŠ•ûµ€Ÿ ³tݬ¥>ÍRçpÛS«%£&áj¿¯¦Ë'£u‘ ߩ͖Ùmÿ™á1­GŸÿ•Ý¡ÁŸÛ«I›aÿÓ;Ù€¡ +õ›ÕoÛd›Í%çZãcÑš‡ÍB‰B›}ß…“C§ž‰•ñ[ÝZ¡b«dËß ·‹Åk——†‰?ךƒ[¹Ýpצýó.ó^Ë6›1癥«žÉ¥ÿ¡‘e£•_åaƒv×<­ ó1冷iŸpÛ¨Éù¢­…Åhí +Z•Qý³=ûÓ©ã +Û åáaÁi­óiÙ$Ë"Ç·²óÓo¯%ív¹nÃy‡ ­PÛWípû{í…¯U»>Ó/뉓“}•‰É„Û›Õ µ4­ µf’ϧZ­}ƒ ïI™W߇ó™…X:Å®ƒ±ÇB¥ŒÉŠ¥£Á¬§`“ÍWÆ£EÍ÷¯÷ù“ÛIÛpïý‹1ýQ¥z—n¯EÁlçcÕ,ñ¬Ÿ…‡Y©Ÿ¯/í¥Çg»s÷ƒ—Á@ó$ñw›/÷U«(½!§ µ§£‘v­%ψݱc…jïªÍ û"»£½L“W¿¢åŠ‘ý¨Ÿ˜ãŽÛ„¥Yõ}ÕˆÕG£•ã=Óhÿ—Í•­£÷ž¹8é†÷GÓ$Õ.¹’ëc‰S¡5—0‰"‰F›0µ{Ó —³ å'‰mÉ0•Ët¯n‰™:…ÍœÿHÅX›T³a4Ň¡¯ˉ%µŸiÓ<«¥k៩…Ý}‰Ã&ïU^ó+ýÛh—г3ërÓ·^Ç¢ýí©~§M­³¢¥}éù Ë)ï³§+ù>›¢‰*ï‰ë¡ë…Õ…b™™¨¿'¯‹Ï/­VÑqÛ£cÏ'É—Ç?ƒŸÿ\™h¿ë_…šÝç=­4á‚÷kÙa¹Jõ)’¿i¿EÅg­=ÝŽ‡Y—å…‰ƒƒ"÷bÅ‘‡¹vÓ›ó ÷›«>ñ0Ã5Ózá™—u½³…‰ÑLLµlÑ!Ë-É€ÏXé©ÿ…÷¤åQè¹—¯N›•N—ˆ­{ñfeŸ,½.‹0iÇT«V¿FÉgÓ ·6…Z«“S¿œåN½N©]ÅG·!§nÓq©¯§lÕMã–ÅÑC©T­©…ý@£U™{‚Ût׳—½—ã™Ùƒ•—Iû˜Ço ÙWP³'݇á°Ó)Ë…lã;•&Ó@÷™ÕJ‹,õx¡Hù<Õ‘‹4ýz$½Ñ~ûˆ‰R¯#dz—•±Jõ–#¥±Z@ÑÓ0ån×…Ó§Ù ÃWËkµ]ýÕ/…^É'ш÷ +ë4ï‚¿~ +‰j½;Ñ\Ù5û?¯“‘©óëFÕ5ã|£e…O•¥© Á\ß_‹2¹•3™SïVÍE¡-ë.ýãtÛYÿ ÁÛšÿ>Ñç­Õ¦¥ ¿.Õ©é÷•í£‰8çŸûUÕ—Õxû•û ÿ‰9¯õ·±ïJ‡‡Ó±¡UŠ®õ«“‰Y¡… …ɱ¯&õ—…]P­b‹n¯Dé{á-Ïû&õs™“Q«G¡«‹Ÿ½=û_Aµž•SaÉYé§ݨƒ ¡ÕŠÛgÅ[£BÃ:ûHÕ‡Ëy°‹mSÛ>—ÿTáC°‡…v…ý›»m» +ý±¡ŒÉ­§£tá9·0½§'ñ–ñ‚û…³í™ë§Ñ}¿:Õ¥£'õJ͈û§Û·E©I‘)í]±b׉¡G¹R‘­‰³,±†Ù'«·WórË^§9¿£á½ é–®Ç'‘£ õK­;Ý‘›*™™‘E¿"Ó­“t£)µx‰V—¦““·o“›•“9±§«,Ÿ‡fñ©¡‹™ƒHÅ&ͦ­F±„¥¦Ûc›z÷Ùá¿ ×µ©M¯ŒÅbÅKí{“8§wŸ{é/Ë2“_ñV¯0ÝŒ‡jÕ +É%ƒ)™Ç4ß—¿aÕ0åãTåH±håñ‘ûMëR³*©NgÍ@û2å?¹{ûvónÏÿv…+—|í%Ç—¿@«åA³€ñ ¿­žßrµ‹³©«ó}ËG˃³Vѥݚ爙õÙ[Û¦‡4õ +É¡0Í!ƒt­³×=Áœ³uå¯óo¡d7鮿 +“Ïf“‘¹y× ãNí±“±:Ï!á©çDW…§ÕAõq—„Õ±õ5‡¨·¦‘©Ù,›¥›tÿI­$çCù¥ßTå°‹P÷`É,×)ùY¹X÷Ÿ£‡ÿ8±7‘?å&¡X‹—Ç<ÑVí÷"ãÍ µ$Ë›™»‚™_Ý|fj«²õ@`…MÕ–Ï:~¡ZŸ<‹ËS˱û€ý¬½põ>ÃéH¡oÑ­³+µ1«o•…¡¦“xã)÷,Á—ÿœ÷:·'ÇF›8Ï +³w&Ë£åj›–¿¤Éá é5Ÿ4÷% ‘¥­sù‡Õ+郉Á»)ï6¡—Õ¢—ŒfñKÏ‹:£3‘D›bý™ÏYßhÏœÉP§G¯<³SË1™;Ó²Ãd©P‡aý+ÿE‘[ûVÅ:éUïçU‹¡ç¡‘.×IëZË%2±|çW«‚É.‡mý…»o»†£†ÏG…p·¨‡”ýÏ^ƒ=ŸÅjÏ$õ ÷•…›— ÏiÙ|Ë‘Í}LÃ/å:Ù«cÏ;¹«ý5é—~á£átë{¥%ƒŠ¡³Õ"Ÿ@…i¯¤¿—#³0§~»°ÁRíý)ûgÕ ƒ&Á«Ý+ס׿8×ó*™*‰H•…{ßa¡8·šÁßL¹\냋!‰ƒpµœå-½žùI•®¹™Ï—µ†Ù½Žã¯µhù©4¡+³\…ˆ‘žÓŸñ­Å‘ë*­Sù‹‘Á^¿OÍ‹~Ùß5¥gã(‘låݦN»+ç7£+N×”‰¦Ão«*‘J¡WÑŸ“‰§ç3ƒ(‰gŸ}Ÿ~™Ÿ“ݪOál³Q}åñyÑ߄󭛅žåIû‹·.ù\ÇšÑ +É’“¿fá"Ű߀—œ‡tÑ3½Œó +£*¿$a›6³)¡7ÉRå÷6åk»Œ±~ɦ¿¡£ŸBùM¿k‘€«Ë…»(T£HßÕqŸ!×\Ýí±½‡ª«l‰0Û¯ãPÓ®£ ç;ùë[›"ч×2ËbÏѯ‰˜ýK©ÿpÏzÍ¥·B玷““«Ó%©`½[÷t…\ëL“·w½@‹U•2¥QÃ>½5“XóT¯và Ç6Õ™ÛK¥FÕ\…8ï-¡2Ç)ïSë—‰ëy÷C“.Ý<Õ›Ù*Í’™XéKÛy‘&o§ç«ÿtƒVýY§ ›©éIïEÝÙ’çiïùE‘#Ç ÷8Û‰—‰±40Û`›5•\Ù¢—tѽZ¯˜÷}é?ïTŸ:ùŒ©çGÓf½k›Ã_祗ùå)R¿•Ë+«¦™?×ñeï[ÿ¤‹…½§§Ÿ\¯×3«¢Ý>ç¹Cã€ñ”Jé7¹5ét­zù…‡³{å ã{ׇczCã Ý›Ãs“–váç/‹Ž‹ ½4 ‡K‰5…e…,ï(«¥ïtÍùÝ\ý4á§ýBÏH«É Ý~ãF±ñžógóA©S—®á«åhçE‘Œé0Õ}£.Û«ïX¡Šá#‡AÍ7ÁdÍ1©u‡¯‹t… ÅHÝd§gÙ³Ómçfßã ÏŸ2¿e™¯›]¦ã*íŒÁ §ÉAý¦ÙžÓ‰Ñ2Åá&ýHíl©<ë¥l󭓯ߕ÷±ÉC·÷1ÁjÅž“aƒ×›IÁňõt •†ïD÷§û­§pÙZ½˜ç[Û"íQ‰ë\™†ÃC·×sÙ]í–‘@«w‹Í‘BÅ©ñ‰¹©‘Ùyó‹‘b÷£­+ÿwõEƒ§ý†›Gý¿,«§¨¡eë‘¿UÁ˜Å#‰#·+±£9“N»xƒ©¡•s“ ©Š¹ý²Õ‰=½jÉ+Ë®• ÿk›O‘m›-ÿ#…7‘`ý„—G+õÙxñ ƒBÑ«íA·¤¿ù:™K¹,õY©&ÅÍYãWÛ“å‚…_©ZɕۙתƒšéEÙÝŸr½ŒrÏ.³7‰lç ËTÉ~ɵ«·„ù²åFÓ¥ÉEƒ õË lå>ç#åY™eõ݃ɋӤËi÷vÙKŸZÙã§qõǦµ £¯“'Õ»5Ño÷r•õGë­›˜“0ÉTÏsÕŸÓŠë&Çù­¡Évù€‹Y‡©“@ãËës¿R/¿‡Ëœç^ëžÑzbÓ}­¡Ë_™°å6•‰dÅ¿ áVá—’ñ‘›Ñ ¹µãhã„•“™ÓSÿ›$Ç®çFွ?ñc×"³ï:ó6ñ…Ù™ÛwçrÿJç©-•HŸœËv™£‰Ù±«­³“±’%ù1Å%‰$ó©ïç(›«ûžß%óUéOÙ%Å`¥\ƒ«§ùuÙAÇaÇ&§T³N‡=«<"…G÷N‡—÷­Ç+㩽U÷™¡cÛ®©•Ù†ÕvÓ2­á€·,£h[ßp¡µK³^‰¯í÷&Íz‘"©‰ë7÷'ék±j‹šç0ƒiç1«§ß ©.‡°Ûsã˜Û‡óÿG§Dép±•›h¹T‘oëšÇ岇÷A§dç› Ùój­D©ˆƒ‹‹8ÕùnÏó{í—Ë­¿(±TÝN·*Éý”û~σÁ~¥Bµ˜…€Ë‚¿5Í6ñ3õM÷iù³¯‘Oá?Ÿ «Ï™ý¥C™Cõ*ó)ÃpË ýyýn¥‡³›¤›’áwÁ:ål£>›ªõ%³2¹³”—!͆"¹¢õÿ)õ‘—:OÛƒÇAùR÷QÏ@ß2‹%™$‰<¯Sñ~ßš§Vù+ÿ9Ýt•}™¢÷s¡ñzƒÝÓÉ¢E•aùžÛG­€Ÿj»Uƒ‡‰t›™váNç‚»©“­‘¡»KÙE½œ¯ƒˆõ ÕL™áÓŽ™dÅIó±Ÿ[± ½IÁŽ™¿Kÿn©žßmÑÛɈ‹(¹–‘VëχÙ0ŸO¡;¹ñ$ƒAï+ÙlÕ8ÝQý¤ákç¢åbé›R©Mç‹•“p±2×pã%í…>Ë‘|‹‰£:ŸŸ±tç +™n¹›4Í£å Ï¡—‹Ï-˜8ÿ*ûuÛ‡‘›‰.áïÓ:¥2ÿ<íYó]õUÏŽ‹Mó…ã¡íw³¡Ã1Ó5É¡ë@™>Õt¥•ÉXýUÇN‘cƒ¢µ¥Z×*ãšµ ߂ԟª¥U¡RÙfí|Ǫ‘Aã+÷p‹ƒ“ˆ÷Œ±D¹£é_˜Ó‹ —$Ù½¯Žå‘»}±‹rí¥ ÝqùC¡/“%Éj,™(탒ãXõ¦Ÿ§÷dÝ,‹`‘‹9ù|õ=£X¡§‹½ñGßkÙpÃ<ó¬¿PÝ·&嘧ñ™é}ñrã±K•,£T·‘‹é\“uåª×,±vÍ#ƒlã0õo;¿Iÿ‘h—W“‘f•(‰£­h‹ªçaï†Ù¦Áwó/•oÉ_—µC¯J™Mí• ™Ž÷‰Ë»Q«\ë®ÉÉ ƒ\וóy‹Œ©¨ÑKå ï{‘û¯çn±SË;åBË…#çJ‡7ɵ×&¿’Ÿ3Ã~ý<ÉyÛMÝ«ˆ—`»TûiÅÝG­ˆõr‘*‹B±P‰;³pñƒÁ›ï#Vù3φ•w¯¹oå0«0‘­Ù¤å®Ùg¥¯÷_ݱ…r÷Yë€ã Ýa£1«[Ùk¥ÃK·X—7Ÿ9½gÝŸ•‰]ʼnå„­Cå©“§†»lÓJ±3ÏeÛ]ÅzÙ^ÁXõ3Ñ)ñsã1¥…±;ýLíD‡\—õªéª]ëˆû¡ñÕ2Ñß$ã£é¦Û-¬‰Ã|±{á>—r&åýgÁ•¨í™&É|»HÛ +Ç%¹¬á˜¯3û ›žÛ²ï\ëŠC‹S#÷R¯ —@ã§ýtÿ§ÑHÅà +Ó—½©/I½W‡BÁf‰¤ùd¿«Åe›ÿz— ·£ùDë¯Õ•ï«­1¥E™xù¤½‰‰óuϭ颥Šíˆ÷“AÏ•£R‹{Á2Í÷Š¡…¥ÿP¹§Ñ ÇZŸLÉ®™f“(û4©‰Ã4Å™­-·2ÝU÷F÷#Ã-›X•+Ù£“?“åšÓœ‘_Çq§Rµ–5“ +ÇUçÁÍ>©1ïZÅD‡Šq‹«‘ý(ÓZ©gÑ5WÙ1£©ƒ;‰TÛ9ŸtÛ°íM™±é ÙªåfÝÕ雹E·¥^7DÏoûd‹|õy¡K£Y©’Ï#ÏI‘/é + +µ'ÕRõ›sÑÍGÁ¿?ó:€½™·¢ó2…[™§jƒ»V·VŸ·3Ñ/ݯµ2™»2¥ ×!ÿD÷ßf§Ÿ‹§ow…¬½“ÕWÏ¥»6¡çMoÓšÿ’•ªû:ËF±BÝK©­ +ïƒásÿQÉ9ù™—4•F©tûœí•|(—Ñ4ÏJ­EýlÅûY‡Ÿé뱡”³lÿ!©—¿ÓHŸSí«˜£Ÿ¡ Í0^¹kƒ°«n¡…Û'ϲåxÕ²ǨõL›•±YóKçªñqÕ~Ålõ<Ó¦™s·»&…J‡ +{½c¡[×$j»EÝ`· ±»dù}•m¦£¬“D×V‘–ÿ³•Ù‚›ŠÓ#³‚c÷Žåù +µZ™¬‡ ›€Ín…fã"Å)Á8ù®Á‡Ç©¹h›‹Ùç$¿ªÙR“ ]‹ ÝvÅ"ÉWñFÕ>é4Ý#¥-¡œã¦Ímûyñ‡ã°áËc“§ý°ÁŸ8ûaåU‰!£-ñuÕ]Á³·$Û†Ù4©é¯³Ñ«£$ó‚ÝVÏ ™‚…°ÇD³–±W‘8Å +é½O…¢ ¯s‹w÷¿;µ‘ˆÛC“3ådá\Ç‚óO笇6Ù®½>ÅýPýeµB‰U™N‹}¥.á[ÅÑB•Ž™9û,ý]É…L÷ÃQÑr­t—Ëù•—DÝ©ƒ9õ?·›¯I±Rµ •°ñUÍa£fÙ/»§®½-éi‹‘™gßOËáiÿaûÇœ©‡Ç`ãm•«W©íW§v…ãCƒ~Ÿžݘ‰ „Ísç±· Ñpa½‡«°Ã(ßD•r‡%™Š§!í»Ž»YÙ6¯R¯*í9­iÛ‡.¯Ót¥J»=—F‡— ¯W¡½|ûj Áª›%ï’ù »[å;—²© ™…ÿ6 ·@›wëXõpµ"ëH¡¥šß}õ‡ƒcÇjó0Ý/‡hë~Á,Á•­–“où¯«LÅ(·U±AãÛ¢Ù¯µ²Õ*ÿ ¥ÅQÉ`— ÇE£a¥‹Å>ÿj½¬«?× ¹"µPã6£Wír…*Õ'¿ ͱ‹§Û[…Ix㨕K×`É»-Õ@¯‰££÷2ÛÑ ùcÁ…í6ÇJ‰{ëo÷†Zµg›NÓ“ï]é]é&ïwÙ8ãÕ ¹™ÿ[Û{“¯áZ»N«#áWë‹s©²»‹€­¯“kÍ{Û¤fû”‡¦éŒ—“÷cUãi›S»„•<µoý¢£ÿK©5—jÛf×fÍ ÿ…ñŒI­¿]÷f·?§X»˜Ë$«C¯ñ4ý'…Fƒ±­Iï@÷sÙoÑ’¥RÝRß³£—ç8Ñ››—ƒ­\£¡·×eÝœ_Õsß…¥‘±"±e¯6‘‹ÁZ‘š¯d§Ý¹Ví-‰£AÁ|ÿ +¿V“¥ŸÉ(§ÿ7ñ±§ ßy½Rí€ÛBÇ„áeµ™›?ñJÿí:§z‡†•i©ƒ©i•]“Fíh6³X©­§˜Ã2Õ„¥§Õc©¿š¥Í—˨‹Œ‡Ùc¥Õjë›@­B™Y›M«Sëå<ŸGB‘Ë€‘#•ƒ5»©çÍ‚ëSñ.¡I³éGϳ³hÇç_§¹#×—çe›7ƒ­¡C—cÙGËOÑiµ’׋vR±“<Ç.Óç-Ÿ¡Õš­÷\‡l†­Ÿõï“Ó†›¦á‡¹3ß+‡«|ÙKñ!ñû.é‹ë–™}õ‹ÙLñó£‰ Ñ-·r›B•D“éQ¡=•ó9Ñ¢ãr™Œ³K™ªá¥SÑ™¯Çމiƒ/ý/Ó¡«¯Tõ§—]ù?ñ(­—«páÑt•«Ïyï„9‹Ýñ\ùËQFÍÝiÙDë{¯FãÇzljñl³„™ˆ§ Ÿ¤Qß*¡¯÷/£éCÏh™ ±Ën‘ §$½šïjÙ=‹DÉp§ +ƒ;û#¯rãª÷h·y垉Ûlÿ^Å^—KëtÃ}Ç¥Xù£éc놳 Á‚ϔǻ ÍN畬ù0á–­k³’«O«gÙ Ée‡í[ñmçb¹ŠÙ°Ÿ¬‰¥‰fÁé ñOṓý8·ë “¡@ï»/û'ïkë‹ï1µVÃ…ÇWç¿¿G÷ Õ^“‹¯Ÿ‰›ƒ‡¢÷ÿ±­=±#«K¿JÛ—Ílý7ß'­5¿pŬ˯«6—©“eÝMß`‹×}¥„×j÷ˆMÓÅBçh£¨Ó+ý¥i³3Ýbé¡eãÃc¿0‹ñ¨ãG™€·(™+Ç–§’£‹¥/çI•‚»¯éN§‰Ã™…@ÍC»åãkå\±”ÑŠ±³Ïp‹ˆ§}ÏdË“‹ùKÅMÝ-É”­[Ñx‹Ýå›õ¡µ«M׬ÍP×%ázǤ³œ‹Lë+ŸAñ=§Qó<¥deÏ͘Óu‡[ÅF¯^Vã«ÿ¬åÁW³ˆµY«¨ƒ«iï`í8íÅoíP¥cç—ÇŒ»ÃD¹ŽÙñ7‹aÕ±õ¥ó ˤÁ5¹LõVÍÓÁ‰…x—^›3ß#µFõ¡£]í‹çŠý6Óxï_Åv‰7ç>«^»1‘£ÛkÃ"ç•…-¡QÁQß~ç~­0ó¦yÃ!É÷¢ã`…•lýCåõ9­e™,Å ©ÕŒ™¦ß!÷]»¯yÙ-×|㇓—•u¥<á,³9±mÉ@ãE½)ùfƒ¥¡“Õw¯’©Žõ‹щŤß›­ÇoïYå™ÅëwŸI«h³ë« …k‡£Ý;‡gˈ«sóá%Ó +ǣ˫áf¿g‹O÷lÇ–Á*ÁÑ#ñ£‘UÅ­·9·œï%ߦËg“ @»Å~­­›j³cÉtÁ{¹HëT™Oe½^ƒ7»v¿…‡x‹‹ã Ëp”ËBód£¡|åÇ1¿ªµ°õšŸ » ÷P‹Š»@÷¦£—LѨƒ,Ócùë©Oó4ù5ùŽ{¹mµ%²³ +ÙJ…œÑeçT‘‡‡3‡D‹Rµ~Ó½Ÿƒ˜Ó9É £“™ó÷¡…x§)uçË‹³ íª±°£›¿‰Ù«×5óÿ¹9õFçó¢±ñZ»§µv­‡™ ƒhç%ñ@¹²×.¥5á²ÕÉù[ùzƒ<ùqó=\Ñ©¢·®—ç:ŸoÝ‘!ÙYÅ*£œû$Ó€Çf½Aé“Ë–ÁHçÁ—b郟¯IÓ‰©ÝO©˜ÑXAµá{‡pïé Í=ÿ'»P÷¡%¡gõ×™‹•6Íõeéžýi¯·põ¢ƒ…¥z“Hí§£ +ïFåƒ÷–«¢Û€ÓC‘\뇽%µ#‹\­ Ç\•`‹ÍŸµbûD¿„á3¿±ãYí‚¿m¨Éw™0•htÃ\¿^û²©QíáAƒ$‘Ù<»:«)Ý&ÝYí²…R›»h¹w™«ãËP·dѳ‰[¯aéÉŒ‡áQÏ…Ï€¥GãvñX­KŸ%á±Ã,£–·Zljb÷—Ûo±®Û’ù‰ž›‰‰3‘gÓÿ]¯|ƒF³5³rá¬á¯ñ½ £Q»Ý5‹=—šÅѯ±uñxó\ûÊç°×•%©U¯·‡³;•#•-¹p•ó3Û.ÿOÇR³Uýå݉·#»³±d¥#Õ¤¡¯;»± +Ý 0ß8¹7Ã@ÕV¹˜£<ÝJï¦ÕK©,³™D“‡áOù‚ŸgߪçuÕDáÙŠ÷Å=§ƒélûEÙœ÷y¿·÷ Q­…"ó"×të-ë ³@…sï±ù'×m³B±^í4ᆗ9‘~§|˟벡ˆã?ƒJµƒ1•‘‰1§±0Û×óŸ•“Åœ­6ÿ~¡•áXûJï.Ù ïxƒY­MÙ—Å›·Œ¥©x£õ‘„ßA«fýƒÑ]ómïûŸëJŸ†Ÿ2Ñ”‡±±_ë ¥"óÃ+·› ±=ÓÁI©ç˜ï›ûë^‡–ñpÓ ñ-ùZ³žóˆ—géùbo“R«zݰë3Ý)µR×9Ó2ͽPÓŒÛÇ¥ûƒÛ5‘˜!ùŸïWÏ«õ1ç½dÅE×: ¥nåt»Ázw›­ÉõSÙ“× ³k•b“>ß6ƒ8ÑYýßSÃ[£ÇkçXÉ/éV‹6Ùϧ¿ éÑRíb넟W…!Ým‰Ÿ­”¡‘½fß?åãw‹ym¹qÅŠѤ‰yÑPó©Yß“Ÿ#‘t׋‡Zá®Ñ£y¹[ó-¿\·4« û±Å1™ý·ƒõ•ãqÑ‹e¹D«†¥¥Ëo½3¡pÉ)õ&é«ñ}¥ª«€û0­7ÛŸ÷má7ÏqùµD›vÑ&·GÑWåOãÿŒ³íL³²ËÃŽ•W¥¢÷)™)ŸQé`Û:¯g¥'½Šù-ŸJ‹CÇ¡‡R­²§šÏ ýWÝfɀ“‰vóQÏK·t­¯tí‰á©ß•c¥ãï5Í‘Ó1Ë3Á ÃA—¡²åƒ£µ^“¬£L±·"£¹s½q«JÛ0‹+Û©•=½Eƒ™— £C©™Áƒƒ¹&™~¹ƒ#íÙ~û‘ƒ ßHñ÷Ñc· ‹±•€ë­l§[ƒ>Ó|»Ù õÃTžÕ‹—§…óH‹oõbÕ©q­¦¹‰£[çj©kýÓ–Õ›Ÿ“Ùi…q‡H¯Pß?ßjß±¨‡›±‘ËEA¹~ëUÁ`³9§²ˬŸCá?íós³­ƒ+¥˜Ž¹•¡áßFÏ7Ÿ‚á/ŸDã'¯_—á—"¯wÉ1€…ý"Ù3ï£å½«DiËã£4½›¥™©!ÇnãÝz‘½¢—éPÕƒ¦­~ÛÁ½Y÷õ£Ïu±}û¨Õ-«xû¹2™1«É5›F‘wëËçŒß1¿{ýœµ›‰­…/“mŸ0‘$ÛJÙrÅ<¿r•)—mUû ù×-ó>ßÉ7½:»fç„ů÷eÏßÃk­#¥xÁ[Ó™ý®Í"ûp£!ߣù±g‰(ó_Ëá~HÓçOßë,¿§ׄÅ‹™!½ ýJ§BïKåiÍe©¬Ù(×ÇŸe倉~µŒã>óD×/¿¨Ó§¿®ÕPí_ÁYÉs…1ïGísÓ‚í­Ñ?¥=ã$‰aK¯…Ñn‘|ÁM•:í«5Ý¡ŸóxùNËW»“ãyÇ“½y·…˜ÍwÑu‹'χM¹€‡I‰-µ5¥×ÍŸyÇm‘káh©nÉ2Óß_+¯‡8—¡…}«‡»7÷ª«ï©ÇÓd£(¹/³v‰±ªóMýXð‡vË©—1•kû%ëd¯Bá`ÃfX…†Ÿ™‘w“wµEýó”×ué‚× —™Ï§£©‰«©©h»ŸÙ¬‡£ù,ÍF߉ɨªý“£Ž?µ8§1džÉlÑ"õD³±kߔ͗µã3㛫U¥éùJ¯Žý…§¿N—A³sˆ½D©\‘SÑ,¿3‹-—2Ý«A‘¦é©„‡ÓM‡;‰,ƒ‹ž¿˜·%»šÓpñãÕbÿ1±@Ûb›.Ï=á­•AÛU‰ˆ%¹®ÏnÛa¯šÕË`ñoç“¥&éýoÁ>ÙBõ¨Ù ß0ÙŒûtûKÿ†ç ±ÅCý‰óJ‘9Ç™wç|· +ÿiÓ‹»åV͇*£›Eãl™7óz±)½¦ÕrŸhݤ“¡ÿ¯õ.­ ¹ Ék™j‘¹«œ¡¢u¹M·£ Ý“…·‡™ï4­ ½ní¯µWÁ åEן¿ÅZͤ©‘Õ$¡»€ÓG÷ Ý‚¹d×Gã±åTό߰5½}õ©°¹³†«R©“—Hᯛ¯©*ÿ0FË9ÏÃm³ŒãJ‘rÑg‰‹E­å•ÿ=­R÷‘‰‘Ï‹jã[“:ŸM™J²Ýœÿ ãAá‹Ñ Ý…¯•0ÇiŸ…ùŸš™Gý É‘½/ÙsÉ‚õ­oÿMï”çxÅšã0åé¨ÕŸˆ“jÃ6ÿq©‚÷€½9ù¬ë·D™»Wµˆ­@Ýlÿ?㥥‚ƒx—(íx³f«mû„éïyÁGŸ­ùƒm¥½ï‹Å’Ñ.ZÏxÛ§=Ó,…®Í9›~ñ)— ïmýr—-­H¡®ÁËwÇ£§¡zÿ.¡ ‡]Ç~•5û*[³¤û+¿Ï µ*ÕñtÕ÷°›®×L±U‡1»'‘n¥åýï ƒ3ñ†û¹0÷Éœ¥1‰6Í—žÑsí`™”Ýëítû]§*ßo± ™2Á(Å,ÿußxï±Ã'ûB·Åu§°Ù©—P…ÿ4ù~Õ_‹¥Õgë')¥y•z¥šéaÛrµ£‚™"¥7½ƒƒÃÅ•‡^›Œëj±?¡¡¡!ûNß»›µHçƒ4é[¿DëƒËm‘ïÑvýÉKÅ_£ Í“¥O“ᑹ +áE<Á“½MÇ5·µŸÙF•YѰéÿ““± › ƒw±‹>ß]õ®áí°õ Ÿ|‹#ƒ¥ ŧñ&õHç ­3ßž×1£rñû’ÉmÕ7õŸ‹&÷ñŽcÁ¦™ùñ £j*‰eµ<•Œû\Á#«Ž—›¯eޱ[ËÍo±N•^ámÉ¥ƒó¡©±l3¡\“A¯‡ý.Å–ïᦩ#…P‹)§¬•9ãS¿bÛˆïל©ÝH¯{4Ÿ›ãI‹k›f‘IÓ6«ÇIé^å^»`ñŸׇ× +Å4Á×óI“®é‘‘õ¹eÛ/‘Z—€÷wéF…a£B¹]µìûT«4ã‰|Íp¿­ñ“õ]ÉI³«§€‡kÓKï>ïLÉo÷+›•’ŹKézÏ<±&õN¹`½¡•d¹gÿ{ýu“ŸÛÇ™·žÍV¡·)ûͲÕª×céÝ .•ZÓ«û¦û!íuá6½„ù7ýhÓÏTµŽÍïvë ‹N×›»8õl‹¯Ù‰ ó€á£õwÕÕ Í+ñ^ùL—ŸÕ Õ‡×nÕ(ç ¡Ž§A‰pç†ë$ùyƒÙ\²‹”­Á-çÉc³jÁŒý}ÁpÑ“é"‘ßÇ/õÓ7“*ÿ,¡E©‹ +ÅU#µI³#±-Ÿ±ÃTÏײãxÁb8“YG—ZÝXõWŸƒ³…ûFçƒ'ùr‹^ëVÙÕ‚—‘¹¿Ÿm¯}í‘×’ÕNÓÙŽ­Šƒ_ÃP“ å9ýˆ¹‹Û£ÅŒ‡‰Á¥ÿ;Ó\׈§0¯Ãhû;éA‘NÏSß(³¨ß|߆Å5•±·:Û1ÝSѯ—¡£ÿ„³‹‹ý­ã/ß–‘XÏRÁAåœñhë/ÍvÁ°gáLÏv«Šù9érƒž‹uå¢çµrç6ƒ Ù}³-¥©•²‹ƒ‚§‘óã<ÛnË”å±Ådñ•…%§”‰Œ¥j³—ª×oÿ…0ß듹Ÿ&ÇŸµjÁ_É8ß§…W•žÝ7û5…?ûAƒ*Ë[Çu™ã†¹ªƒSÑ‘ ïOƒ¨ù6ŽTÑ`h« +ë:ó†Í «›««ÉŸ‡qÿ®ãÉd•TÝ ¹f¡žÑ+™É>ß‹—­yýS¹|õˆ¡YÛª•‡«a“~‘ŽÁTß[ɇÏ=¿¥·Hç£OÓ”«_¯ëx×°«$£@•uµñCß‘=ñ€‡d‘yÑ‚ùåßG㞟Ñ×N×·fË•P…p»¬ã.½(å*ùWÓXÍ)«‰ Ó_…zÁhÿ¥Vå2³"é~Ýoµ‚ÇÝ_ÏU›:Ý¥‹cå¨ωµ ɯÑTÏ"É-Ÿ£¹•·j“{Ó¢»ÍŸŠ×4Ç=Ÿ¿”±$÷jϦí˦»Xµ\ûzËIË\•›rÇ#ù–¯@©- ½x­,í0¹-×·¯‰Aç'³_ƒù^å§µkÝj‡W¥]¥tõŸrý Ý +›ë>6:«Fé ÷¿9“Gù’ÑžÅNùjë9Ûž›YÇ9Í\»<ƒzÓ‘‘Ë™·KÕCéË,ïµ6ñõ®·á2‰ Ç,õ­á›¯½×§…|‹?¡$©i~ ƒ`Í·˜§•Ë]¯~Åa× ŸÅ+Åpë5£íT“ Õh‡y…d»;Á)ó„£` Ã=½¯¡±…ª×Û8ù “+:‡ ûsÁB©>·‡rïa‡³Ÿ•{÷^«=hËAÛ‰™{§(ÍjË.ñ6‡O³q»ˆã¢wõ“!ÛA¿Œ¥$§Y›iå‹™U¹Z™|\K§K·³éj¿‘Çe‘Q©†‘i·”ë1ï3ÓB7¥±³nËÃJXý&Û­õm›[ÛŽñ™›çg[j᪙VûZÃN›‘µ¬ãjõ_¥~Ól‘T»‰r¿yÁ+÷…ËóšÃ`íy©váKéSÕ[ñ«¿éxÃR—³ÙQß¡1“•Å}Ó ç®ã7Ã9ÿ‹«ÏëÿeóÉ?áGÛ³ÓŸ³>&˧›p¯`ј§iÇVý%×DãD¡¡B¥q׆Ý©Ç ã½‹Ážƒë­¢Ó¥aÏa‹]³³ÙjíIëI=ÉMãÃH‰Q™`Ñ“ÇQÕ{å.Ù@ÿÍI§8ñ%ó²Û6­Õ¬Ói‘W‹¢³£ù ¡¬‡ñP±Ù Ámí ƒEƒf—sá8­­Lÿ£^ÑŒ³Š¯1·F¯7£õCç"ñj§åBÑaµ¨ÃSë"©b<Ñ%Ç—–ÁSŸɪ‰¯±ánåc¹¤‹©¿‹ç—¬5¥ù`‰%›ÝC±ˆ© ÿž÷W“ Ñ›ó·`¯ý2©®¤Ï`¯-›Ž‡-Ç€áŸ;óc—[Ñ1½0³±obñŠ·M×wùHÙdóeÿgç\½ ·–ímã,³|…“ÿ$Ñlã¿…‹íZ¿!—\•J(É#­gûLmpŸ+óS§L½,«”ù†ÏD­W£m±™lãÕU‘®ߎÕ­ó#íᜥ +¯l™EévŸ€¹·S›Z£~ó°é;ËR½'Ù{ŸzÇË¢…Váv÷D³RÁvŸÉU¿CÛ¯åC³ó~›kŸ¹YÑ ×£ƒDí,‰X¿DzÙ—‘ƒÏ5­"ɽ‘L¿Y±­Ý?‰aµG×?“©¹‘•ýRÍ]»Oë2ñ‹Çå–Cµ„¹×€ó¥¡q±s½­‘ë˜á:•™Ûe„Ó³Û¡Ó4÷T‹³— +ß +ƒ|­™'É:µ±±©©wé@Í +yÁÏ{Ó¬›‚é—ý~É[RïM÷±y…–ófç…Û Ÿ°éͱ‰ç‰µ¹$ñù˜˘É“Éqó'å}ߤŸå¡å‡ç2‘4ÑO¯ +á¢én‡Q½ Í ³°¯!­ у©FÍ‹™]Áy!‡“ƒÛ¬Ã’½€Y©³Ÿ'­ZÇ‹½‚¿#Á©ëztûŒ×[Û=8š1ßi—¨÷ ׳罪ûe§{Ã7‘v¯GÉ»­ão÷zÕ‹‡û©­Û…±µ–ò‰4Ë÷où‘Áqï*ÍM›m›>÷‹ëMË’“ŽŸ)‹VÏ)ÛuE­UÅ•[Í”Gѧ©–£\×áDí}ÓPùÓy—z¥–ï…¦‰>é°ÁNű‹Z碌$¥4©ÝÃG·©S³ç.ƒŽ·xÏWÅ“Ϫ³Hë`Íiùiõ(ç–ÉŸRû^ƒ¡ç‡Ý!­¤Á²Á]÷§ý½\0½áï0­ëY'§pýë}¥’és·{Ó•÷<© …Ÿù.Lùó‡÷œß{‹›\‘ã ÓO“¢Ù³]Ë™‰KóXñ¢•йí É­—”‡s—<å4Åfÿ”¥(ï ã»M­`¯9¡"Å«­w™QóqŸ5‹XÁ í•õQéhí®—•ŸK‰C‹¤6ëi»õ~¡<ÿÓ=©'»?ç£Ç…é(…&ÏE½~™bÑh§JÑ¥½°Á?‰x‡0¿-Í3“Vç7ÿ`¹lƒPï…N§Sá|Ù2•ѳ˜™§Í:ÏkÓ?ÿ&Ÿ7ÏCý‡Cíš­(ÝåM»ï°‹@£v§m£Z…¨—ßbµ9áyÙ¨¡±ÇvË„ç¯HëWÿf“€ûl™o…«í<Å‚¤»‹KÍ2‡e÷9——¯õZób³eï&^ûÏg÷‰híSßÇ·O^ׂÙ–¹š£±„.û‡§O÷*ídá_ïcÿ(» Ù%™‰8‘s„Yý-Ãj³ óFñ1•íµiÿ†Ý­µ-·5“—›¨ñQµ¡ç,ƒMÿC•E¹?¯† åÇ[“nëm·QÃM•UÍU¡~ÿVÅ¿…¡Õ6ï©7Ç-㑬ÍK±aÿ‡ý0•×;‡CÝ—*ÑS£F•¤±z§y÷0…máxÏr¯›óCѦù¦ÿÉñkŸvÿ:…9Ñmë!™–‘PÏ’ÁJ³mÁ‹á ¡'åËU9å"“hùwÙM©½H×UÕm‘3¿S• ™²»Dµ7…ƒa©Eσ?‹Qõœɲ£³Ö¯"Á”Ë/ƒI×lÏ.»¤£oÅ|»w·¡ÿ¥rýŸ‘'ßuãaÇÉ}S¡h×7…™Ñ看¬ƒ.ó%Í…½a(õ7³‰¹Fñ˜ýsÁ'¿v¯ž‰«õ8ŸŒÑkí›Õžï8½’ó?Ãt…6ƒsŸ ÿd©Hñ<›­OJÙvëfûïAÁ=¡SïfŸ‹å]ÿXÅ.³$Ñ‘…«bÙbµ?ý!‘aÉFùƒ²—… í1…­ãM§s™'çH¹!×y›éË“Œùš»tñÙ+ÇY‘,»ƒÿ‹Û–ûG¿ZÁ„Û÷®×–g­jý‚ý9‘±­rÇC«•ß­‡F—&µŠß®³Jµ¯Át‡ˆçlÁK¹Ùš­ŽãdÅ{ƒ—RëKƒN×vÉï)ŒÑÃë(Ýç¿Ç(¯¬¯ƒá‰¡˜í˜­2³~ÃŒí¬½oûRà <­•–ÇKÚÇy:ûå(¿|ᕘÅi….›PñnárÛE™6•›ñÝ®¡Á•jó‘zý§Á;±Œá'…2Ç!™q_“Å…éWÅ¡‰ZíV㕽]‹ýEí7ïo£—p»|ÿª¥Ór«³»p½8‘0éë°©cÕƒÓƒËx÷5‹Wù"óÍr‹>›+½±‹†Ç2ƒ¯Õ«Û©aùÛL픯Ӟù›‡L¯VÓ"Û4Í ŸFÉš½¯jVõ"‹¨×år¥uù@ë; +ÿ3±÷©¿2£ç’¹@×TíR¡4«‰ƒró• é+‡U‡¹6ñ¤½¤ßE¡D§§÷{2Ý=—VáU›‡£¦­X½XŸ¦å%…)é<ÿ°»{×kÁ­÷S£S§¢ç³4¿=Í•ˆͳ¿6‚¯[ÇwŸEÕ:ߑ٘ç Û‹í± åyÉž9ëb…Ël‡•ݗ튛¬·€õhûí2ÿ Ó*]Ï Ï&£V‡ ËKû£­í~½« ¥)ó÷B×^³›éZ¡aõž•OÝ–»¢õ’«¥@™-§…;¿4óŸ?Û̓/¹ ³Ï“’“b‰D‰†Ù­•e¡O«NÓ§È«‹µ’¿íOkRËfÝ“"ñ]ãbã4ßeÁ<݄՜ƒ®›ˆ³x·<$Á‡}ǘá}­Qå{îÝ(³ÏMÑ9ýÑ^£Åާ³íÛ}Ý ±œù4—.Ù)£7¿+Ù ÛR›±§%£J³WÙc·e…g½ˆÝ]½·\åGQ™u’›Ï%¯5‰ÿFųg×Aǰ¡6¡’Á1ùsÑù¨ÍS—±ïCŸ¨Ï(¥9­q›,¯Ké@ãV‰'·g¯•µué:ãf…`§ùS‡"ë‡<×K¯oý·¹U=ÿ ƒW••›«“s©šY»]á ©±ëß ›…í?çq§HçPó§Ç•Á’±Xë£õ²ùêéL§“áI¯+Ã*é’ŸbÇÍT陋}¡ãùQý +óŽñÅPù„Ù¡Ï®ù§çíß«Ó{§ˆ±_»®ç¯ó‰µy‹°‰k—­¡ŸTËM‰G‘³MÙ9¹ž÷¨ý­)é'½©Vß«¯‹¡.¡(ŇŠ¯Oól¯“™•Õ˜‹;¡3Ÿ¥“‰Ÿ—ù׎‰L›„ÿçtÙ„÷ ѱßC— ­fŸu©©•?å¦ßUÓ„óžËNí.Õ`íi íg½Ã3ߘµÑ€ÏF›³Ó[ßN‰o×±¡fï‘‹3É¿Q}Ë•B¹P©¯¥ã-4«eé3W‰®Çsé1…$³.©Óa©Ë{¯>½7ã—BÏž÷”¹œ“gñœƒ2±‚,åˆÙ›•³‰½KƒŸ(Ç@«@õ‚¹Iý•ñ¦Š¿nµ£M“]£¥åo…¤ýžåk÷ Û¥­:½Ó˜ïl£«¬Å¢ݧ¡P×Zã9ï­ßd묮‰á(¹µ ד‘dɧϯÁ±'¯k÷Û~›{¯\‹b¥²­†£"¥”³¡¿©ÕTó˜ÙPÁ.מ‡oÅwó`¯zËJ©"—i‡šÓëB«’óZß&¡`©6Çû}¹1¡Jù#*ÕBÕi»c‡z•L…¢×X‘ïõ©ÙŸÿ„½"µ…—a±¡õ†ÿ+“1§5¹×F»±‡égçž­ßvÍh±÷?«tA÷Z»\tÛi±pOå|ÙO­¥!Å@3«Œ}…•ù)ïu‘œƒ„Ýž»u‡ ·mõ+çyH¥P…­Ï„¯™^ÕÍLßlÅ'›…\Ýn­>¡:ñ—½¥á”§¯éd™yH©WÑJ»_ѵ;Ï­ŸJ›'›ÝÓjÍÇ:»rÉíœN©[‡H‘ŸG‹"±qém¡ª‰-ͰóLцɇ/-”û‰¿Ÿó|‹‡+™£{õŠ»kÓs«;ë§k‡Ã©lÿ—§µª«Éa‹GÝ%“ɉËhéyåR«ÅV•—£ÿ…É +­/׫Óv±–Ñy½‹Hµ)Ûç!ù$±£2›Aý€ÅŸ Á£“Z§‚ÑNó–‹[åK©BÍé)‰±dÏÕZ³(瀽C±`Ñ>Û2É–‹’µ>³š·nã@é|n—{µÅ0ãe߈ùV©s½§ñ:ûn§‘†­p‹­³áŒûbùµ|ñHµ+·¥ƒÓLéRå Íu©o¡›n£”ý|áš"¹¡ƒƒ“Å8n‘u§û[§«¹…±Á‹hÝD˲Ÿ‹7… µ“cÛV«!פŸw¡õ…›u1…²Uý‘‡¥Ë …„ÿ‘³/ׯӇѱ¬“\…³¹}³©í+q±¢ûÁ—h­cƒ!œ‡J¹ —eñ­_—>'Í™ç‘³Ž·™£ÓYó,í¡ÿy±iéu³EË7Å¥ƒk×BûSç™§?åp÷HÍ(ÿ›¯«ߟy­ßs«Yû +á§ïh鱿é#ÅŸËY›‰Ž¹­Ãg£„—Q“UOéq׌ýOÏ}‹_·•lÙ•‘xùªíf¥6™˜ý,ƒy¿í¿%ƒ»’çk› ÷uÇŠ£ÇbÁ0؃d¯.ïp×P©›ý:É™ɆÓ뻡³±§ª/Á4F­|åJÃb£l¥•'»¯ˆÍHóN»¨ÉSlj)•Ÿ6ͬ‡V›(ëEËså!ë«“§U•f­9¿¥«Åné£³Ý“Š‘2¿°‰C§4×6‡b­dÅ]ë=å$ã~» ÉOÕQÿ­‘—_§/©0Ý'¥|×¢‡9Í_Ã^ãsû°ßƒXÿZ‹›£6µ‰µ3ïƒ£Š·a‰„‹ó’¿²ÿY¹±Ý—Y»j‘ˆ»ZË#ñIõ°õ±ËL­„»A¿ ¥ ÕHƒTéÃl¡ ùFÇ^[¥ ¹'‚¯ ß"‰ +…5Ç|¯uù%¹ˆ‰‹Ý3û7¹‰2·‰f˰¥‰‰Nï ±€¥;Ññ|×™«Ëj·>õ‰³“ó Õ¯‡­“ƒ»¿ ©2› ‡§@mû9¿o« ûñB©K©¡·—%ïbã…穵¥óZ¿›ÁDõAËá’¯£›Kßnû—£P×¥ç­vû×~ãí*Ù>µƒã‚×0û ‹TŦïi»²ó¯·ƒqá+ç@žïHßK™®©óRÇ;ƒ]ã—5Á7Ç”‘‚Ÿ·u‰¢Õާ­Ÿé”4××¥D™‡¬ÿ€éMÝ…áT½«‰œÑAŸ^«—ŽϬ·»aÿŠûh·/ÅM¥{ó8ã…nõ ™[¿}§E‘pÃXå{ã‡"µné¤ר«™£0Ãÿ"Û GÑ6ëk•;óP§Ñj¡¤¡‹ÁVáoÛŠ“[“›߬Ÿfý’½†ÿr‘É ËÍ,‡!ï©R‡TážÝ8Ÿÿ–Ý@½1í#«Í‰÷é¬Ùz…’õ^§ Û_ñ9¿™Ï¿¬ýAŸP³6³y½ÁƒËFÙCÅmû¬¡¯«&•»«·P«jÕ§#¡m“¦§Œ›ß.ýb¹¦³¦+Ó’Ç"åZë݆“TÅ·~ÿ‡“r¦É*Á­§<·s»™ï=Ÿ‘Åž³>ÓT¯?Õ“£¡š×•C¡)¹B¹AÕY·—á]ëhÏ>ÍA÷EÍ©éeéD‹¦­ÕÛ÷>—°å,©}“-ý©¡á…“¡}Õ=å£Ëžý3Õ#ß^éŸá Ó^×ýx›DûÙÓ¹je£5¯ËŠÛœÛX˪ßQŸ‰ã”“Pó… +ÝLÏbïͨ¡w£ ƒ½vÑ¿q›C©(—N« “†Õ°£š›Qï~íõa“²ï®õ¥µ¡j»‡ë¡ Å€‘¿)ûC·RåSù”Ř“Iù«¡™ßj—íC³bÇ +DZ™Bùu±£×Y©ù2‰—Õ®Õ‰ÿ/ñdû÷.íñˆ¯b«®Ë!ù ýŽãZÃ*«ª÷Éz“=•¦o‘«»ý^­NÁá0ÙX³ ƒŒá.íJñ`çYÓF…:×]ë‚‹ õŽ›— ÝI“MŸ/¯¥ñTýqë’õT™F{…TÍ®ñ{©%‹/ó®½û­?›¡›Ít½¿ƒ©=¯ª‡ ¥÷ñYñ ™DËrÝc•$­¥éˆËDµ¹”Ÿ®Ūƒ}Õ”‹»¥‡SÓ(륱6í/Ëd×Oßz‘‘õ™íŽï¯i³ã#á—‰ é½Jµš¹ó§‹Ó!Ñ¥£ˆ‰M«y—'é¯Ý1õŹOƒ©j_½iÏûcõ!í@á$ý`½²û«Í­T­°»SÑ_£½—¤õz™A³&n¹uÿ¢Á€‡$!åw«+c¹£Ë5Ÿ*ýF…—ùPÉ=Ë:Ÿš“˜ý{ñ>©¹ûƒÛ%ß ¿³8§bëƒ%ƒ@¡V£i©^…³í$—F·…ÑåvÙVá4«:‡5Á–Ųõ2õ„±ïsñ · é™ñbÛ#ɰÓ•"‰c¯¢»GÑ‘›²Ý^”ñ.³Ç{‰n«8ÑDO“éÉ{é€í"•”——¥Iëá@û`û¤“„Å—Ù +ËãQ—xñ,µO‘÷Vç*Ï1¹xŸ©×Má;¨Åc ׃µ[ÿý Û3Ù?Ýx·«¡›q«/ÿ}ûw‰•„£xÃBÁ¢·‘R­«PïBSÇ ±­x™Zé£k«.³T¯ £|ó×+×xÿ-¿—·_)ÅOÝ Ã‡ûf¿dÿÓ]é8­Ó£€£©'—«›HÁCá_•Çp¥KùkÍšót¯(Å$Í‹˜+ñ¹_Ï\µ}–‡|Ï|ÓQÝ¢ýcýIû¹*¥hÝ€‹qͧ¡ ³ϰ—,µ`ó5›”Ñ[¹¥™3¿sÃé$›±¤ëN©C³i—1»^÷;‰ß,éJÅAáÙhÿ%õ Ï ÉLé„Ùåu¯)Ù`§ÁrÁe¿Ó£ýÓµ/¹i¡T±Cå+‘Y;³¥¥_“šÓ×dŸNÿm× õ0ƒ0›|v¿šé­×H» ×EÑ;í„×Jí¦L‡XÍ|ë¯2™ró;ïg¡‚ƒgûÍË8¹‡í¢Ã)½S“íe¹:ÁníUùOµ·Ÿ¥`‡#ý–í!Ë¡‘jëdÏ6ÁÇ>lÉ&ßÓN§›Å Û×gÍxÏ‹ï}Ù‘­«±žË0Ï·±ÝT‰²çvï<უ8áYÙ;ãká)¥…•¥mÕ§÷ñgÝgÕ³§–«~«‘ Ï›ÛFɧ7ñ;™ÿ£ËŽÃq§…ã]³%«±ÿsÝw¿xßõ€½¿/Û•Ï£'Ý‹³Á‘ÿÕ)Ý’ßX§-ǯ“±œ¹¯ÿ½`£Iñ¿­!«™zÉ£ûbs¯,·’å=É3óV§‡±+ŸŽÕ ÅráB(×®É"×>»ëµ‹„Õ;÷q‡PñRƒÓIóh~ùG¯i·l“£ÇÑ„óvÿ5ãR¥õ,ƒ¬ÕIï2Ñ:—?ÅRÉG‘5Ý£—;ùX¡„‘±M‘ÃI¯fÿc‰ý+¿Aå©›LÝ2ËC¡^ñ·§ý›ù ÝWÇ*µ³ÃnçdÁ/™£¿‚¬óaÉu/…Q…•ébß™p™­§3t×±ŽÃV¿¯õå1±hµ±Gõdï¬Ë?­« ïz™‘ÛHû/Û·L•–ùžõ¬›U…‘»~¥fã¤ûm‡,ßq© ­‚•ƒÇ$÷²‰IÃ0™TµSóWÏOX±±¯©? 霓)¨÷XŸ„¥,÷ÅqÅW÷!ç+é.—6ÑÃz¨Ï8‰‡GÁ$©)»ž!ën›o¡M©@­ªÃ¥¹³÷¥‡u©fß-Ñ®ë|‹e£=›yŸ$›µ0ŸÙ!£}½t‘¨»ïNÙ›Wï/ñªñ¥¬‰O©r·k“û‘¤§aÓ«³:±š»Š·‰}§F‰‚¡N‹lác±Ÿ÷-¥ß™§:§¤›xýjç}éÝPƒ€•RÛv¥®ÇP«Xád«H«Á¤ËVÏ_‘1ëG§2©_÷J™@ãˆ÷¿“×ûW7…§\ß:É ¿uÍ.ñ¥é•!ý$ÏL±Hߨï¢­aç4Ácó¡Ùw¹ý£™k¿_õƒ›)ëŽà «©ã“µ¤¹N·­¹ókç<í’£™©«ñ*Í&ÃáƒOÍ<›V§x“žÓn…y…޹>ª›‹œ¹ ïq“Oç¨Û­‘¯Ë@õ é©£Å!ÑE§6ù*Ù#‘7ÁLÛ7†)ÿ_Ã?•©­*ï +™š§ó¨‡…»LÝB±¦­’›“©ë +å +Ѭý#ÝϘ݈ɤ§Ÿ[ÁšµsãKŸ‡§^›Û*Ù»Fñ8Í¢Å/é¥ï?Ñ8߯x³A×8Õ€½X‘+½”«¬áPÁg§r¹)ƒ÷7÷O‹$Ý•€“¨›#¥«ÉN•EÓˆ¡õ[õ`Ë=ã&ÉŽ©Dë©¡ëaí«ËÑ@—¥ñ'ï|ÕŸ«›cË*Ã…Ÿ–‰^ßZÛD½sßt¥†¿7ã‰í\ÏNù©· çëá£×RíBå ·Tã­nŸcÛP×_Ù…û¢Ÿ-ÿBõ{é*ïÙ¿>Ƀ¤É«Í~r…uŸã8ßV³‘©ªHÛ/é²½©‡)õíHñ›‘ûOíq»‘»"ç5—=™R÷ÿÉQÍb·;ÏñÿháŠÍXÝ ›!±V÷aµ—£˜בç·ßÕ?¥Hx׊ÝŠLJ½…µƒ û–ÿA…H¯¨ë¥:çNÕ…­¨á„¹‰‘:ïýa㟗}…<‰s‘G»‰ó7ïªÝ™µzëC£ž«2å8Û$ÁÓ‘°Õ9ϱƒ`¯8¹›ñ®áHÑ‹—/‡?ƒ›í;…Ÿ ‹.—pÑdÏ3Ã.ùUÙIÕx×bǧ±/‹pý¡“f•Éùg³ßMû@ť˗‰¡¥—`•q­<™tÙ.¯ ¹zŸk‡œÕó«‹fÏ©©péX»nõ;‰Šå”ë0åm¯§É^ï—±Á"×ß=â½uG©¤ûr«ZùtÓ-³[Íå ÑÓb‰PÓ8Õ£Gµ‡û›™“‘Š›œë¦³oí©ë ƒK¡sóƒIŸ=í†ûÓ°Û(ÝA¿&¹¨Ë Ÿ"¯:Ù‹Ñ£‡¤™›“yƒ{­³­Tñ¯‚ņ¹=©·=­±ñL§>Û§‰u³¬‡'Ÿ=©Aó»••Gáb¥Áxµµ(› +³D±]q$§N‘(ëŸ;ÃãzÓ Å7Á¡³ãp™„“µ·ŠÅ óG6ÏwõBÝ.Ͻ#@› Å©z…~­&ã½Q­‹¯mËZÙq¿¦Í8…‡ŽÅYá^‰”Ñ•‘6£ý¦Å• õ:ß)ƒZÉ…»B¿–ý«Ù‡Í€ý;ƒ³…í ƒb­mÕשÛ…ó …»…‰wÝ6ÁEÉ\Ã¥0Ë…t±(·z÷šÃ©3¿[Ÿ‡¿†Ù‰šÝ4ߣ¡x×@¡Ë¥ï…çšï±fíÛ,³ë#Éh³F“6ŸXß ½ró•Í^ƒ^©mçs·Žçí a£sµÇ­¹»9ñ¡‡`õÓý1åPõg¯Q©X·|ã’ë6·8ÿël•šÁ»C·7ç{Ã{Ÿn*—¢û»!ÇOÿƒŸs§¯ë%í3Ç]Û|‡ë­š•£ÍÃiÏAáínë<ÃrëP“l¡&§hÍžçRß/å“¡F·¤—E¹ýMñS½B¡v“—ã‹hÉ6±¥¹.ßó…¯=í)Ϥ§;å›ÓUÝ0ÙS×»e½&íz§—‚ÿ@Ë +£Ní‡|¯]ñW‰¿»qóû=Ç÷|ý‹÷±!ËÏ]ë™……ÇM‰¤ƒeû-ý¯±á5»RÀï ‘ ‰…“ܧt»0Õeå/™<¯¡·ª•VÁ ɳÿLå¬Çt¡°ýDµ·bí(çQí ± +ËH—+½wó—Ù²íÍfÕ£§ ¿—Ñœù‰ã—ÑZµ­3Í*Ñ…¯”ñM¡]Ÿa¡Ãe“¤±Oÿ‰¹‚‹J¯²± å«ï9ƒCÕO¡­Ã]«1,ƒ:ËÓg¹r¿1÷nó…‚ó «ráqßJr¯‘½$áˆÑ|åÇÿR‡ù!ß²ù]‰–‹<•Û”‘>“^õiÍŒÏ ï^űw«-—8×­£µqç‹û)奷c·h›¡ó!ÃY÷(‹®µ ‹*‡{õIñ‡w¥°Ã‰§¡‡ûXµ•ïñD…©¥¯–í Ï~¹+Ù”õ¯Õ­™£%ÓD‘’û£û†ÿ|­®£®«Ÿµ«Õ“ù(ɃßÓ«3­Œ¹ ‹zùpÛq½½lçSbÏå5÷«|«ƒ«kᯜ粧™ù™=õ¤§‘«'û(ÃOÝ$ƒ£½6¹bý*‘ ¯©§sõ£nÕF•¯›Ÿág¿*ƒ‡Œ½<›dçBÏÕEÑ0礡#Õ<͉¯ çwíŸÍ?Õ¡É©íKÉ• +íjÇ}Ũ¿w“°Í[áRÓW¹GµQ§¦¯µM¹WÓ3å3¯¯ýNÑ%™P±EãŒ$¯4›2—Ëa‡²åƒ—o¯c©”Ó«¤»3ý—߃ÏQÁoŃ«!ã2ûªÏ2±,Å¥8•vÉf“E‡€ÝEéBá ©LÁO»–ùhÏ0ÃE¥›`¹S«šÛN ËquÍ›Ãí&ͪÅ\½‘‰ñv•nÙ7¡yÁ6å—Ù£pŸ“v±káŽÓ.Û;°é9ù_‰_«uûš‘”•¥oáM“¥¯‹“ÉZ‡‚©|ã5³}µaÍùˆƒGÿ2µpÍ­ó·ó õï‰@ïdá +ÝFÙ±B™—“&ߢ•M÷‚¯q·‰W<ƒ•»4Å í¥µc™cÏ–së”×qƒù£b±…‘³õå~‘—ÿx‘M£ƒáS­A\ +çmßIÑbÅ-™5wÑ<©§ï²Õd¿6ÙQyÑ¥AÁ85Ÿ39Ù%+ÁA»4‹?é?9·[Õ‰å¯8)éE½ã,í3Ó Å½ë!i•9‘b5©7ÛSÃ>ÉÍ-õ/‡®½Oá­M1×8Q;ó%™:‹‹8Ýõ"ë9· +ù8×*é,»A±*‹ +¯Rí —$ß9›5ß +ó0Óá‘GÍ<Ñ£:Ã4û!Å:‹0Ñ ·4Ç(«"‰0ýƒ§ ÝJ›"‰4›#™"•Û5¹1ÛŸßa±!Ïã­ÃP¯,¿A· Ç9£ïBé0Ñ6Û0ù!ûŸ*Ñ+ë6§<ã‰B‘ óO¯çB­­!£©')t)T-Õ`-»9ñ‘7é<·“$Å +»~…ÿ ‹‘£YÉgË$Ár²•³«Z÷ƒJß Ÿ<ï‡ß2½ +í‰ÿ4‘JóeÙ4Ý-å@Ïfõ,ÝN©ÇÉ;ë:ï`¹pù(©z±ã§±BÍ~§Jµ\M‘\ã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ½€ó„Øñ=‘ŠïqçI猓‹DA·2‡LÃë!¥6A§©ÃíBG©A‰ GÅïó ¿ÙHç)µCñÍùç(oï·¹»MÙ!³Û©0·Feñé)»;×8uõ+aÅ +§6¹*§÷+‘“ñ8û÷aÝU¡Ógí©aÍ0ÿ$ý"¿!]ïDq‹r•å8ßZ9÷6á ûF…Y×—5§[Éÿ.§—#«ÿµ?é-O!¡%Ï*¯ÿ%‹nÅ +cÝ‹Pç!C掠*ï!ó")ëÓN¹ký­( +µ ýO™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`ç¿$½AKó*%——7;íAÅÁ+Ó5Ý7sk·D­Q剋rwó “¡oë!•ƒ4—ÇMß6× ·³ åå2ÅP¡'• +á6IóF½y!õ%‘;…2£¯!¡"Ÿ¥ƒõQÉ ÿïl«Ë ¯4Õ7YÏ)³.± ‡3ýû_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ß%Ó#éOÕ ßŸëí&›J³ó:³§!:±#uÛ7Ç9·e·Å.Ç6«"Ç¡Á ó`ß~›?5›QÇÑ=óã#'õd±2+§c‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± §^‹"‹:U/‹ñ0¹?µ;‰=;µ NÃ+eÑ ¡7ƒVWÍÝ8ÃEe™Õ!¡®Á“‘9¿˜¯ûÝP»‹‹rõUÕI£#ùk›¹Ý8ñ»gÍ +­m¿/› ¿„ƒÏR—l³™÷"¯‰TŸŒÿbÛ^ËvÕ ‰vå%‡›!¥)…Eç"›Ùxç3Á Ñ‚Ÿa¡£")ñ Ãç#õç7ÓP‹.ûy÷+ûlá¿£ É ùcÕ•AÅC¹2Ï(ñ¥ É"Ó#ù2» Å¥ª¡Žï!‹Û›•aÝ £PÃ?™ å4‡ +Ãï$‡ ‡#ù +û3<§‚£3:ó8U›h¡ ‡“ VÍ[µL,»6÷RåÕìã σ Çi“AÇ+áã(qË…ï’½ý%lj#¯cë“7˳>¹•õ5›ÕN¯ÇU‰i÷ß}ÑžÉ:Ã?› +éãÿUÉžmÇE-Ï »)Û.ñß‘8 +;‘(»I­8ë£U6‘Ù#ñN»Y“½ 3­89ùÿëÇ0ÓIãŽà É9×(Ù0±TÇËÛ +ÝQ1 +µ‰‰ ©íǦÇo3™ õó4©?í%ïX½­#ã‹õu£fÍÓ/Á«"Ýé„φ· +í$å|`/©¯»#U‰%é‚«*C‡)‘«+ý )ó í^¿!—Oï’Í?Ù$Ë¡’‡ —7™{‹8ÓÙ «^×KË— Õ$áy7© +å.•cŸ7ów“¿K³0Ó íl'Ï +ËX)©!é*ë{é¥ób9'åZÿïÅ!ù.Ÿ"ÁC× ‰Ç ÏF» ç…ÅG¥7™i¡ ÓŸš§ »;¿ ™3õ «}Ï! ù8‡xÛ7§A¹ Ó\¥ ûxÙ8ñ!—z¿‘¯9ã“9™s‘"—˜ù ç·E×.³7£¥B³[Í7“|í!ɹµ ÿE¿5ï5!×=ýݯ8ƒßyÉ¥‘Í›#íO¡!µ™&½í7¹GM•6·V…!£Pùû Ã$­bë1ãXù“÷?×çÅ.‰ûÃQƒÃé#½&ý#¡ §6Ï­Ù"õã»6Ù]ãÓgÑ"áýX‡S÷;»óPã$£?‡ ·0á7Ç>­(á/Õ9óZÏ+óÕ!É›[É&ù ³<› ëƒÙa»R«íKÅ0Ïçcç‰!g‚±™$_Á"Ç<é åÝ ÷b±HƒÝxûÓO• +ù\•"ÃýŽÇ !»6ñ˜ÍCß¹½Z™Ëgç£ ßï“)íP‘ÿ™!ùµ ‰*ùJ—.Õ ·(£ÿ›/÷J±ýi• « í!é6§ûá$Ó(ë%«*ÛKå÷:µ—$¹<ý%ÿ«0á ¹Å‘× ×+± Ã*ËHÁág‰#ÝÅùK« ÿà ¯{§¥ÍÉgËïN£ßó%ÕTç ¥#Ù +m£Uà +«*Ýn½ E…4ß%—Ù:Ñe“ ƒ:»å »$¯N±¡,‡B'ýŸ"»‹9ý"Íåó••¥ïí)¿Bû¡;¥ !Û‰J7<ƒ¹ëùý{é ËkùÉ@áÍF×M…¹½#•ïY͇Ká.C¿"£ë:“,Ã##·ñ5Á•çû7‰'û%Û‘M‘3‡4§”ÝV—;Ñ™ûIõ(ñ#ű5‰Nµ å.÷'óY¥9…V™ +áN¯3ÙN‹?ÕMÑ%·BÉÁ@ÁÅu¡.·ã"©`¥=ó ãßE£.Ç +Ÿ‘E§ ÏÁ2épó…pÕžÛí Ù›háë>Ó<Ùï1ç7¡Q¡óƒ¿«é‘aƒ­Põ-ÿ¥á?à +›ï[óš§ŸT™Ãù}Ç%8×Ý ¥Ï)·9Û:ótËýÕh·k£ßÛƒ…=Ï3‰•Á««ùŸ"» ­7ï*Á é*ó5—“ƒ™ËOåùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰Á ‡ Õ>é#­.ÝŸ7ϯ Ý8ã­ã½NÉÁ Ÿ'•å"ƒÙé«9å×`¯‡’õ¿ +á5— +¿1÷© í6ã% § ±M‹‡í"¿ õ/Ÿ û™Oßåë$™Ç6»Å1©¯"ý•…›#ã±&±…2õý ßÙ#Å!Ï#(¥µ#•(×"­"×õ— ƒ&ÿ»Hñ ï³7»ë$Ù éÃ#©Ë!£ Í9­2™ ñ ‰(›#ÇD×,¡#½½¥ «#•Ï"Ù-Õÿ ƒ¿0û ÷±"ƒ(±4‘ó.«9Ýí9ûÍ%Ë0ïÓ!—Û_µ?»K‹™]û1çwÉ—¢YÕ«bÃJ­˜É³ƒTí¡ƒnÁ³—ý +hk•rï!ÁX5ƒgÍIãÿtÃ(¿…‹™!Ý4™*{eï8ëå0¥Të£-ó0Ññà ×ûaé&½é3×ß‹¡a÷…-Ë(åV“U ³17õ*“&ÝÑ/ç>ã"Ñ÷ˆÉá׃Xû™¹,í£%ë!§•1÷P…ù½bÃ(ç Ç8ÝÝ1Ç«,¥"¹0·QÍ-Ï ‡4Ý «1åµ+à ó·ëCÅ ­0…Å=×»6•’‘2»6í"×#ÝPÁ_™éDý/·66Ë +Ù-…í»~Ù ¡å“ Éb¹­_Ý1å÷ íW•&é óEÉ:ë(ë“#áëJá Ý"ù'ù/Ï»&³*Ý)á ‡ ÷(Ç áEÑ3ƒrÍ××]Ź…z»‘·må!í»!ÿ÷c•}å<ƒ\û ¥WÁ —»§ó1ÏK½=ÓÙ1“… ï(·é"•í§1ïJÁMñ$¹ß%…OÅãÑÇB›“Á˯ù=ƒ«hû’“Vçùs«kß#ëp¹/­¨£Bá—Õ‹ŸX›2ûKÁ4ã1«CåGÅFÍÇß‹;ÿ?ÅAó»ë9]ÑGÍ%ù3áÃÁ"½:ù;¹ ׫:± (Ãý å#åT±"×å™NçÃÇ£<Û­™Ý"Ïaÿß)˹ »8ŸÇƒ›ã'õ Ë6¹§Ç ù+Å'ïù(³ Å÷"Çm‹L÷9çï +õ!Ý=±ë©WÓTVŸXÇDé@2çß!»+ûã"í$ÙKÙ…tñ³Ñ:­$ñ<å=Ý5•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µs3Ázã½ãcý/ƒ ‹ é:£:á'• “2¿ +ë08»Ý}¹!©­jË&ùåD…« ¡]…~÷§ íJÑ#±*íf±÷5ÿ\¿ +é4—D‰/¥PÉáÁ:ß?×ñmG» ù§"Ë%á,§-•FÙý$?¿•Û8Õb½8ƒç-•P• ½6‘å5á5½:ñ Í!/ƒo½±Å|§ˆÇ2í6×3CíñDG£6í7©.ç 1…Rýç éLá.Û …8Åq7Åå8³ ÏÝ4×Ý8勵©b­Ù@·K™ÑA©Wó·’×#/£—>ó"ã£/µ7‡› +#ÇE¿+±™ ¯­?­1ÑÇKñ ×6Ëù"Õ¡qQ%¡t¹¤õ‰U­:Å-‘>ÿñaÓšýˆߢá&+ó­…§ +õÛÑ•‹ÕŸ%ù£oé)ÏAÍAã !Ù1µ@ÕMÇß«&ù¹@ñ>9ë ÷%/¥O@#¿3·<‹A‹%/¹r-á-CÍ[ý)ór›×2ë>©ÿ.ãÍDç(§¡Ó&#ÛE·3Á[‡:Ù,«­é7Ë«7•«:±Gñ8û{“"ï¡:û=ó•%íŸG‘8á ©7… ï¥E»?¹<¡6£4Ù%ã#£ ß8å ±!›xÝ%ÇyßïRç©H­J§Ÿ‰NÁ•Ï ‹Û¡0¹ +·Hû¯çOc£ß…Lß!ÿ# +›•É4õ8Õ=Ý +éÑ!áý£F©»)ëÕ5Í7“šñv¿Ëa<ýY·¡‡¦¯<­Ã'³‰¡XÉ'“wçÑ’Ç›¥V×…£%¥¡‰õ.³nÝ©¡©ÿ)iÑ;• ½»8õ×l‹3ÕLÃSã"&Ã@¡nÛ›c“1¥­z«(£CS¥>»0DQ½]Ÿ マ]áa¥3·UŸqï—@íhË¡n­ Ó"épiÑÁ!Ã)BÃ~iÍÿoS¹AÙëA§µ×GIŸÇíAéS‰–±áAÍ)±vïáeQ·G±#Çï@ËEKûó^Qõ=Ãa•|ë>o±C‰Y‡8“u—n¹+£{ÍmQ›PÍ ówÏ­!™9™³?[Ï7ÙNç}!‰o·LŸ?Á.­O±ëE‰‰WŸ £y_±3ÿ7ÁŸël×F÷_Eá#ûVÅDQÑ*‡eÝ,±Ë™0ï!¹2kSûEW¹X¡ +½Lw›D¯9¡La—>å@S»6ßl鯧|õkµn×"…!Í… ©“·‘ƒ ÷õž•› ‹$ëoëm×7—#ÇQË”©ƒ›[íQ­Çá +ùó§¡«ƒMÇÛ(±[µfZ‘-¡Vé\«©ŽÓ‹x©(‰™ŸJû7ƒŽÕÁÙƒ¿±±©³zËRt׃ë=‰P»LïÙ\Á=Ëý—&›ý8­7· ‹dÓŠÿW•#÷¹ í.ŸP‡­“ Ý ù`ï Åë?÷™É¿ãKù"Õ>…„¡ï +™<Ï"ÕE¿$¿YÅÏE££ç6#µýÉ7ÇÝ+ñõPé É Ñ#×­5“ó­¥p‡Fá=ƒÓ*Ý|‰(½tùåÕhÃéý>û ¥, µAó™Qß!§¡a¥4Ñ +éP± ùß&ñ%‰­pù·•»Ÿ/»· +‹á ×GÛ Û‰H‡VwÙ#· ßF“Ÿõ°¡Cƒ *­7©>ó9© Í%ƒ™"ש"ÍB¡™q½9—]¡"ßÏ›oÙ7‘¿$ÉX…¬åÏã«v±» Ã#³_Ù ‹½4ùqÇ0ï ­¯‹!§ÇÝlƒ„ÉB|Á(Íxõ4…"¯3Õ3û¡Õ„ñ—V•B­[•'Qã!ùJ­+åb¿(ŸP—ûfÕÕ„4ýuñMù5‹~ÁRû4ÛX6=‡”ÉÝP‡½\ï­Wí,Q½·\ÁÉxÕYÉQÁJûJÇ•… +Ía¡ •^¿&³Ç)ßV¹;ûLÙ3•a…(ùõѹ$É,éAÃ:Í …@ŸC· ‡#™ +­ë±ÿ«¡ª³õ6ó:צŒ‹ —u…\¿H-áÑyŸ*¥nå·oÿ&Ûу“žÙŒÉ Ó«ï²Ùž.ß|ÇŸõù¦­^㘃C« ͤ?¿@7Ý'ÁÓý寿¢ÏhÙ(‰ËátÓ‚‘­ +ƒÑQÙA»— …€Ã%ût¯ í4«i‰Lù½ŸQóa¡†ÛªÙKõP¡@ÅmÁ‘Tá•*ÍOÏAãÛ]›û'•$ï ÅJßh½ ƒ\—7Ç/÷aµËŠË…h‘Qù8É­>¡IéE™© ïVçë$ÁKÑË«÷@¥Uñ: +™Ha³vù7ÃM×`éÍa©ùMÅHå>rå[õµ É;³`÷ŽË¥‹Ï6ádß&Á¯…í"·Ï<—ï§¡ ¥ ƒ?U§%»!¡É9«5aí¡í!£e‘Aáï·#±£ +·ÿ*·I_Ÿ:ÿÉ`ùg³¡ýJ‹”›>Ù›q¡BÏŠQ‰ï Û~¡DÅ4…ÁTÓXË„ÕtÉ> +ãz·÷Vɤ×^£@ÛBñx«D±‚Íp‹§ÿ­Ëmµ*Ǭé +£ÿJÕ«`­ýšÍ–%Ÿ_¯Í.ñ›Ÿ§ÙX‹g/›ÿ4…SÙ Ç!ûZË&ÓïW­ ëTå Ñm©áY·>ƒx¨›5óžÍ1ù„S“†ÃÝ™r³“•‘Ë?ÿ屩d¡ Ç™Ïiý•©D­—>á@”ÉwÉù3¯ ë!×Í#ý*ý0ƒ"‘«;µñUÑNÍ=•ß Å/í» ÙA£ ÝZå*éÙ +ß‘ +à +ñlÇÉ,û9Ù'¯•@ËgÝŽÑ]‰JM³Qcóß ·Ó§{ûs³Ó:ç!±É¿c¥.ë3ù7Sï8‡•b·™ ûårá ý +µ¥níÇËÅFéÿ*ŸÅ+tõ“#“Ó ¥8í“-ç~¥¡é ±³}õ­ת‰—“eO—·óÓÙñ£÷"õ;¹³·£™ñ‡sÿ'Á`•ǃ™cå\DÕšÅ&ãAù<ÅIû§—&µÁ6‰jã•uû:Ç'ó¢é#±F«{Ë®™צÍD=Ó`Ýy“C—2©Ñ »lá +½3›dÙ§ýQ‡.ƒ¥±oí¹ …©¡Qà ý|» ¥Bµ ÇLÿ Å· +õ—ÿ,ÁÉ ™wÙ +qãåE“)çn—Tµ¡0½@…z³ŸbËC— ¥?•q¯ˆ±xÑ…³Ë~ѯa­?ÝI»m¥"«]×DÿaÍû•HK‘8©P‹4Á8Å@™ ÍŠÑ–™“6—OÇcó‹8“.«ÕOÝdÃçëF›ÝÛ™D¥8½iõ ½p·!±@Ñšû›sÍ&í€Ó ó"žé…ñ®½9á†Í·‘¯«Õ ßn‰ +‡¹Ný¡¢å#÷ˆ*í[óUŸ)ŸF÷l¿Ž—í¥‹=¯ “jé!·W¡pÝYסÍgŸ4ñf¯ñIÁ5ÿÉ_ù÷•» W‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&Û”‡‚½¤ÓFçDý˜ãF“Ã,ÛÝ\™¥§‘g“2Z÷ ×{¡“F÷*§%½‡×(cï ýA­>ý&ç‰fÃï?—?Õ@§(áC¹TÑß0§'ßDÑ(¯*‘‡f¡xÑ%ëjû¹…xÛ(ó©@ñ-ÅM©©Ç'‡ךчj™Û{—¯ÕNÑÑ7¡ ³Bý7ç÷™§ ý_ÍQç’õ-/Ÿ © “:å «~ó í’׋#÷¬ÅrÍ£¨‡5…3ûe‹%׳ ‡^©;•{¡Ÿ…©«³›“ ›„5¯»s¯@§SÕ+ƒ/ч­a›DÕx‰¤¯ ƒo¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†Û©û×r‹aëÙÙσ`‡³³ï÷k¯#½§Ï ÃN“ +ÿLÙÃËálÍ©O¯Ÿ‘$™d‘¬…q‹9¹]ã6£o‘–ù‰)õ Á@ã +áIí=É=ù »çÛÙoç ›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&ƒãR¹ +‰<75«Dç'›$Ó+Ù@¿0‰ ù?q‘½"ÿ‹ ñå ½(§E7©·!í0Ç@%ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ å±MŸ +§W•#‰á'£KÍ­@«3¥é;›A³ µL·0¯ ¿ùgýÃ2Ÿ?ù!»5¥Aù×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ñ ÛJù/Û×ßD¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0¹—¡%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­Lß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&‡ã:!Í@ó‰#ë!—@í‹%µ +ÿù"­ÉÑQŸ^áÅ4×ã¥uå¡Ñ×<‹5s·á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Ý#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/õ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G×›ÿ4ý<íi¥½aé +E“½xûcíŠÏ uŸB¥VËV颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;¯±5E?¡;&íxűÓBÏE­!§;½¯­g¡*¯yß+»Cm£™7÷£DÑ ¿B;Á:©ë"Ï ³ƒP«'•±RÃe»=ÛÝ@ŸPËjÝe¡ÿkƒdÝT áõ>ãR¡±Ó6Ó5_§ …>ËT©I‘7»WÏ¡lí » Ÿ“é0é8W§#M‰XÓe­D‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé _‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õ×ɃßUÙÉGýÕßåý×)ßZ«ÇÇ,©:—ó‹ß6Ý1Çeá™)Ûf½)­éb«³1»÷ÿK¯Û)ËûDËÙ&ÙF™'³ ­Ï‡«`÷é4“ùl_ùYÍ“sᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Çדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯ŠËN¹½¥ +£Ù½n•ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû¥Íbý Ç1ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃBÙ¡­W›ù9õI½#ËBÙS«ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ßïT·FÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•ÕEÏ-±± ë û9¡(ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇC'á"·6Õ9Ÿ"•0á ù"=—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.‡a§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÏ>ë™Ã³7ËÃg‘ã/ñ6ǻݞ¿³¿^å Ùba›9‘ …§ ïUáë’Ýã/ñ™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’‘B‘ ÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõ“Eñ8™˜× +Ï~‰'ÝH¹7í +Ÿ—!ó‘½2ùL³\áUÛ˜³ ߇ »r£7õ0å8Ë8ÙLÓÓ’¹Sùÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}÷4¡Õï §a¿ï•¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ ëí>ÇÓM½k£Ë‹›4×c¯±@í²é[‘7Å +?×ZÑZŸÛOõ?í ƒ%Ë¡4ï_I¡P·;±‹,›¥8Õ S7ÿí#»!ßiã$“[ë--ƒ*¯"¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©p÷ ¹$[ùl±]¯AéAù›eû#—Y¯9Á ­Û6ïAñiŸç[ñ· ¹q—Ÿ5ÁDûÙ"Å#·"¥qý|o³ c¯ñwÉaÁ…»,«tŸDûù9é7ƒn‹8‰CÏWß6ÛéSÓ±6WÅ¿S©9åbû ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2‘ Ïõó!“Q£!ÏIíbñûZÇ8ÛJ×9Ñfý1§0›&©·¤ùyÉ7G‹ ¹[¡ ß +ã g÷%›A© ݹ}÷(¹bïc«!ç;‡ÿ!Ã"ƒ°§§zg‹N×a»Á!½¥Ó ¥‰§ •§ ½‘«™aµ—µ7ù–£ÇbÁe·e… •#§"Áû?± +·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñ­ Ï9cÓ§©#·{_…moûU™ +M«“nÕlË_Sù$á;í+íx/µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõÕ‡Í|Ã-™@Ë +Ý6kϽ9•/— Çv‘[ió?Ñ,¹n͈¹Ù¢Ù‘sËá ·]“‰Ý¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ QùÉ#S• +É7±PÑ(·§±ƒ É»Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…ý ‡k5‰%Ý/J• —cáBñ ã:ƒù6©£nå£ —ß#WŸmù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­Í$³,e­÷¯§5¿0‰¯÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥o¿°‹™‡ï7VÁÛ×7 ÷jݳ8µ ×™B›-K«LÇWå ¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ë¥D‡DÓWŸŽÙj‘cåñõ +Ç“µó|åOÑ„ñƒMçvù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½mé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"kë¡’ƒy­;ó!—#K¡5Ùï#?×m¹Qá¯"¯ õ8“ Ÿ;Û`»5ó ]©Õ +M­[‘ù!û%kß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ‰£˜e»{aƒA“]“©7õ…¯®Å—£Uá-džÍ«¯1¡Y½”TŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!Ÿd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wßYë™Ùsã>½<óƒ"ï“Í6Ï;ãEU¡8« mÏ•‘½só@¿8_—‹÷š+“\k·Y·AéO÷¤»yý8QÁùyýA“7ÿ›±$}ÛÃA¹£q«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1g·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› é ÿ:“«4¯lÃ1ÿŸïn‘Ãm¿7½/Ánõ–•»Oəǧ‰²¥(é|é—=ÿ!Ë.á¤ë ËWo­.ÏQ“¦bá%õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8ƒó•OÕ"¯p±,÷£(•ERÁW‹ÙTË—ç8‹#·.“ís¹1%«%—µS¿1å&•Ó·Z÷“\ýx»*ŸW¿‡ŸïƒË!©’ñB©aÑ~¯SÓœ½b»¡±шÍšçM¡Ÿ„¹ Åd×­ïm£tçLÓÇ…Ñ9Ý +å-ÿñ'åš3ÏŸ×&Å̓ÿ¡‘s™Œ‡qÍu­IÕmÕ<¡Ó[£Ÿnß ƒó[û7ÕÓu›¥hÿ>É©µ”ï@¤/Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"ùPY…¯ŇYŸjŸ ¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7Ç“”KË¥ƒ™kÓ•§m÷óõ…P‘!ée£BÅË’»¥‘‘^‡ ñhåŸËó0¿e±¯Ñ ×—“·f +8íY£“ +£LÙnó ñVÛ ã=ÿ é‰:ãC¡ +ÇNÉië"µñ}ï(¡ Ÿ6§P½M©7§óx¿šû Æ« ÙO·!ÍY…“5ƒMù Ó!±’É ×!•7·lÅ Ÿñ™Cµ9¥ ÿë!±× ýEï7ˆÇ$FÕ‡£9‰7‘Në8«3½NÑ#Çl§’á™K—7ëañ û,½÷`å ßaÿ §•™ +ë9ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!0ÿ Åg‹‘Sá ±W… —_ÿK« ï"ÍÃ7•?×ýS™é••¡µŒÓ0ûD‹/÷&ß«6¿Ó"ÓKƒ+³%¹#ën +ç$Q× õ½GÙå +·ó£!Á;—“—ËDÁEÿG·‹±‹ÉgÁ½$Í#ï%ý+¡½ÿ¥"Çjß" õ€Ý³ é ëï’ù@» ¯_…M™zé89’»eïA§§G÷;Ù`Í"Û‹Ÿ— +Ÿ¿“ÏK½7ç)Ñxéaï>ípÑ"çVÛ ËïZ•,Ññ©ÅqÏ"$Ó ¡é‘…&z¯¡÷6ɹA‡ §®ý˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_ñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3ó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#ÁN¥‘ר·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o…Ží ×Jë ¿¬ñiÁ “qÛvËÏ :¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–©ë;¥£]ïÅ­ÇF×W‘™·%­fÛ­·9çBݪÉnýcù{‰®¯ ƒ2Yó*á”›&Yûm¿GŨ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£ói‰Íëƒ[µ&ŸóÁh›+¿~k‘KÙ²•y½R¯–¯°ïDÑIí1Ç-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0Õ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3¹`»tå—™„Ï5ݲ¥f©sá«5±.Ëi‹/ŸwíÏZý@/›Á¹>ïa;9£· 韓J5¥9‹Û4™3Áwé3½ +¹R×É©tÇß2…ËÝ=µ%­œ;ÃÕ“pã)•#­¥ ˵&?à ­¿9§BÇ[ûNéõR­‰w¥7—°•¨é˜·û–ï=É5§L³°«;ï +±Ñh± +µVŸˆ×‹_MŸ,Ýr»™Ý ‰ ¯híŒÏO»­õ~Ù"“.ý¬³O"óœÕSÇ« ƒY¿>‡ƒ«OñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅÝŒëg³µŠ­…¯û‰Ÿ¯vÿ¹­Eã¬Ë"ï%Ÿcç%¯6Ï8•ÝmßC± ½‡Aç\ÝLíM¹«Í]Ë7󆛖›gà Íxù ÿPÍ «”Ý5Óa™±{Ù&¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9•“«›±1éŸ:«Iñ ßMÓ€·!¹ížÕoß6±k µoõá cÓ û ÝŸHQ…[ß0¹­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“µšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7¥I½:1‘#écû"…o‰ +ãDý!ÿfû¡™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6¯ +é4‰?4“©)ƒ9“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © +éOïÝ4£>“rµ"‰E‡.Á ­Ñ&õ!¯RçhÝÝ•"ßnë— ŸJÃý!ÑPÝ«›0Ñ·¡‡XëEí‹9—•|›§«1‹Ÿû§vÇnç õ …7Í>ûLé*Û/‘"¿]× +÷ ý6ÕqÉFÙ ‡+I‡’û"Ñ#\ñ0ß]9‰dYÁ ó‹z¹!‰Ó’g“(×|á²Á]Á&›ñŸ›IÍ3Éõ ç3ŸÑ å&ÅK±Yóé åV³µ9«2óI¡+ƒ"ù‘®ù)§då¥í©±ÝO±c׋Û +“lÍ"‘*Ã]ƒ˜Ùf™m“å•6‘'ƒzÉuÃZ‹€ßEà ‘ˆÙ7ýK—yó¬÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ‹,©KÁyÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*Ûœ©mÁ…™^Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3×Ç|ë ¹Á'ƒ.ã Û3×óݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»å€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¡¯§õ© ¿6Q½ˆ»<ÃP‘‰±-áëv¯x·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:å)õ ½_¥;‹kóë •<ÕBŸß8åÿ©5éA‹;ã ½DÏÑçAç«ÕAµÇL¡]Õ3ÑF× 8±!¡IŸ ÑDσ*·:×3÷!ó8³9ñûGýJùO¯•#½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë áŸ9Ã^Í6Åz×3N¹:³‡óÓ§ÉKï_ŸSÙ!«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&͆ÏÕ#©™$ňçk»+“z&ýˆÓ|Åo¹4œ§ãÝK× «g3·iëfÔÓ=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}ó­*³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"§R8Á,õ0‹ ×Ç•ááªõ‡z÷-›¿©n¡×@É +鬳:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&ß{£ý ÏÛ[-¡Léoà +Ó.<—iÕßtÿq¡­b›/± +ÁSù†é'Õ~˪Ù¥6¡^™g‹[AÃGÛAý±`é8éyñLËW÷7RË ©ù‚©„1Ñ+E­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒÅ­ ¯•Å<õe‡%Ùœ—F½‰›©&ÛAã)ÙŸË4ç*»‰o¡GÕA“où ù‘Ë érõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£u±Ï~­ÕXß3¹Då¥'í¯[³eé"ã‡uÉ‘óFµD"Õ”Ñ@ÏVÿ·#ý‹Å±«ÿ=ñ™±–±VçÏ¢©©1ß«¥Mµió0åQÉ0ñ¡™íUÑA× ×¥ çzç1Ñ™J§eÁ… ë +·@¹ŸÑ49Õ•ó]ïýlï ŸÑ+—™ƒz±=Û +ÑvóE— ß’f‡ý:™ ­ezÿ?ÍHs!³»V‘ÓCÕ6õz— Ý8 ín­Ñ8é—é™v¡…#£Œ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6µƒ‡9ùõëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8½+ÍËç‘¥ñ3¥‘0‰&‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/ǃ&Ïõ·³ÿ)ùPÝ&á=Ÿõ…ÍÙ¯!³ ¯RÍ0ÿ »ó­&ß=³Ã‡‹)¹ “ÇÍ ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +˫˳ ¡¯ Ï{°ÿBÑ!×8*Vßçá£&‹«F@Õd¿6ÙQyÑ¥AÁ85Ÿ39Ù%+ÁA»4‹?é?9·[Õ‰å¯8)éE½ã,í3Ó Å½ë!i•9‘b5©7ÛSÃ>ÉÍ-õ/‡®½Oá­M1×8Q;ó%™:‹‹8Ýõ"ë9· +ù8×*é,»A±*‹ +¯Rí —$ß9›5ß +ó0Óá‘GÍ<Ñ£:Ã4û!Å:‹0Ñ ·4Ç(«"‰0ýƒ§ ÝJ›"‰4›#™"•Û5¹1ÛŸßa±!Ïã­ÃP¯,¿A· Ç9£ïBé0Ñ6Û0ù!ûŸ*Ñ+ë6§<ã‰B‘ óO¯çB­­!£©')t)T-Õ`-»9ñ‘7é<·“$Å +»~…ÿ ‹‘£YÉgË$Ár²•³«Z÷ƒJß Ÿ<ï‡ß2½ +í‰ÿ4‘JóeÙ4Ý-å@Ïfõ,ÝN©ÇÉ;ë:ï`¹pù(©z±ã§±BÍ~§Jµ\M‘\ã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ½€ó„Øñ=‘ŠïqçI猓‹DA·2‡LÃë!¥6A§©ÃíBG©A‰ GÅïó ¿ÙHç)µCñÍùç(oï·¹»MÙ!³Û©0·Feñé)»;×8uõ+aÅ +§6¹*§÷+‘“ñ8û÷aÝU¡Ógí©aÍ0ÿ$ý"¿!]ïDq‹r•å8ßZ9÷6á ûF…Y×—5§[Éÿ.§—#«ÿµ?é-O!¡%Ï*¯ÿ%‹nÅ +cÝ‹Pç!C掠*ï!ó")ëÓN¹ký­( +µ ýO™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`ç¿$½AKó*%——7;íAÅÁ+Ó5Ý7sk·D­Q剋rwó “¡oë!•ƒ4—ÇMß6× ·³ åå2ÅP¡'• +á6IóF½y!õ%‘;…2£¯!¡"Ÿ¥ƒõQÉ ÿïl«Ë ¯4Õ7YÏ)³.± ‡3ýû_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ß%Ó#éOÕ ßŸëí&›J³ó:³§!:±#uÛ7Ç9·e·Å.Ç6«"Ç¡Á ó`ß~›?5›QÇÑ=óã#'õd±2+§c‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± §^‹"‹:U/‹ñ0¹?µ;‰=;µ NÃ+eÑ ¡7ƒVWÍÝ8ÃEe™Õ!¡®Á“‘9¿˜¯ûÝP»‹‹rõUÕI£#ùk›¹Ý8ñ»gÍ +­m¿/› ¿„ƒÏR—l³™÷"¯‰TŸŒÿbÛ^ËvÕ ‰vå%‡›!¥)…Eç"›Ùxç3Á Ñ‚Ÿa¡£")ñ Ãç#õç7ÓP‹.ûy÷+ûlá¿£ É ùcÕ•AÅC¹2Ï(ñ¥ É"Ó#ù2» Å¥ª¡Žï!‹Û›•aÝ £PÃ?™ å4‡ +Ãï$‡ ‡#ù +û3<§‚£3:ó8U›h¡ ‡“ VÍ[µL,»6÷RåÕìã σ Çi“AÇ+áã(qË…ï’½ý%lj#¯cë“7˳>¹•õ5›ÕN¯ÇU‰i÷ß}ÑžÉ:Ã?› +éãÿUÉžmÇE-Ï »)Û.ñß‘8 +;‘(»I­8ë£U6‘Ù#ñN»Y“½ 3­89ùÿëÇ0ÓIãŽà É9×(Ù0±TÇËÛ +ÝQ1 +µ‰‰ ©íǦÇo3™ õó4©?í%ïX½­#ã‹õu£fÍÓ/Á«"Ýé„φ· +í$å|`/©¯»#U‰%é‚«*C‡)‘«+ý )ó í^¿!—Oï’Í?Ù$Ë¡’‡ —7™{‹8ÓÙ «^×KË— Õ$áy7© +å.•cŸ7ów“¿K³0Ó íl'Ï +ËX)©!é*ë{é¥ób9'åZÿïÅ!ù.Ÿ"ÁC× ‰Ç ÏF» ç…ÅG¥7™i¡ ÓŸš§ »;¿ ™3õ «}Ï! ù8‡xÛ7§A¹ Ó\¥ ûxÙ8ñ!—z¿‘¯9ã“9™s‘"—˜ù ç·E×.³7£¥B³[Í7“|í!ɹµ ÿE¿5ï5!×=ýݯ8ƒßyÉ¥‘Í›#íO¡!µ™&½í7¹GM•6·V…!£Pùû Ã$­bë1ãXù“÷?×çÅ.‰ûÃQƒÃé#½&ý#¡ §6Ï­Ù"õã»6Ù]ãÓgÑ"áýX‡S÷;»óPã$£?‡ ·0á7Ç>­(á/Õ9óZÏ+óÕ!É›[É&ù ³<› ëƒÙa»R«íKÅ0Ïçcç‰!g‚±™$_Á"Ç<é åÝ ÷b±HƒÝxûÓO• +ù\•"ÃýŽÇ !»6ñ˜ÍCß¹½Z™Ëgç£ ßï“)íP‘ÿ™!ùµ ‰*ùJ—.Õ ·(£ÿ›/÷J±ýi• « í!é6§ûá$Ó(ë%«*ÛKå÷:µ—$¹<ý%ÿ«0á ¹Å‘× ×+± Ã*ËHÁág‰#ÝÅùK« ÿà ¯{§¥ÍÉgËïN£ßó%ÕTç ¥#Ù +m£Uà +«*Ýn½ E…4ß%—Ù:Ñe“ ƒ:»å »$¯N±¡,‡B'ýŸ"»‹9ý"Íåó••¥ïí)¿Bû¡;¥ !Û‰J7<ƒ¹ëùý{é ËkùÉ@áÍF×M…¹½#•ïY͇Ká.C¿"£ë:“,Ã##·ñ5Á•çû7‰'û%Û‘M‘3‡4§”ÝV—;Ñ™ûIõ(ñ#ű5‰Nµ å.÷'óY¥9…V™ +áN¯3ÙN‹?ÕMÑ%·BÉÁ@ÁÅu¡.·ã"©`¥=ó ãßE£.Ç +Ÿ‘E§ ÏÁ2épó…pÕžÛí Ù›háë>Ó<Ùï1ç7¡Q¡óƒ¿«é‘aƒ­Põ-ÿ¥á?à +›ï[óš§ŸT™Ãù}Ç%8×Ý ¥Ï)·9Û:ótËýÕh·k£ßÛƒ…=Ï3‰•Á««ùŸ"» ­7ï*Á é*ó5—“ƒ™ËOåùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰Á ‡ Õ>é#­.ÝŸ7ϯ Ý8ã­ã½NÉÁ Ÿ'•å"ƒÙé«9å×`¯‡’õ¿ +á5— +¿1÷© í6ã% § ±M‹‡í"¿ õ/Ÿ û™Oßåë$™Ç6»Å1©¯"ý•…›#ã±&±…2õý ßÙ#Å!Ï#(¥µ#•(×"­"×õ— ƒ&ÿ»Hñ ï³7»ë$Ù éÃ#©Ë!£ Í9­2™ ñ ‰(›#ÇD×,¡#½½¥ «#•Ï"Ù-Õÿ ƒ¿0û ÷±"ƒ(±4‘ó.«9Ýí9ûÍ%Ë0ïÓ!—Û_µ?»K‹™]û1çwÉ—¢YÕ«bÃJ­˜É³ƒTí¡ƒnÁ³—ý +hk•rï!ÁX5ƒgÍIãÿtÃ(¿…‹™!Ý4™*{eï8ëå0¥Të£-ó0Ññà ×ûaé&½é3×ß‹¡a÷…-Ë(åV“U ³17õ*“&ÝÑ/ç>ã"Ñ÷ˆÉá׃Xû™¹,í£%ë!§•1÷P…ù½bÃ(ç Ç8ÝÝ1Ç«,¥"¹0·QÍ-Ï ‡4Ý «1åµ+à ó·ëCÅ ­0…Å=×»6•’‘2»6í"×#ÝPÁ_™éDý/·66Ë +Ù-…í»~Ù ¡å“ Éb¹­_Ý1å÷ íW•&é óEÉ:ë(ë“#áëJá Ý"ù'ù/Ï»&³*Ý)á ‡ ÷(Ç áEÑ3ƒrÍ××]Ź…z»‘·må!í»!ÿ÷c•}å<ƒ\û ¥WÁ —»§ó1ÏK½=ÓÙ1“… ï(·é"•í§1ïJÁMñ$¹ß%…OÅãÑÇB›“Á˯ù=ƒ«hû’“Vçùs«kß#ëp¹/­¨£Bá—Õ‹ŸX›2ûKÁ4ã1«CåGÅFÍÇß‹;ÿ?ÅAó»ë9]ÑGÍ%ù3áÃÁ"½:ù;¹ ׫:± (Ãý å#åT±"×å™NçÃÇ£<Û­™Ý"Ïaÿß)˹ »8ŸÇƒ›ã'õ Ë6¹§Ç ù+Å'ïù(³ Å÷"Çm‹L÷9çï +õ!Ý=±ë©WÓTVŸXÇDé@2çß!»+ûã"í$ÙKÙ…tñ³Ñ:­$ñ<å=Ý5•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µs3Ázã½ãcý/ƒ ‹ é:£:á'• “2¿ +ë08»Ý}¹!©­jË&ùåD…« ¡]…~÷§ íJÑ#±*íf±÷5ÿ\¿ +é4—D‰/¥PÉáÁ:ß?×ñmG» ù§"Ë%á,§-•FÙý$?¿•Û8Õb½8ƒç-•P• ½6‘å5á5½:ñ Í!/ƒo½±Å|§ˆÇ2í6×3CíñDG£6í7©.ç 1…Rýç éLá.Û …8Åq7Åå8³ ÏÝ4×Ý8勵©b­Ù@·K™ÑA©Wó·’×#/£—>ó"ã£/µ7‡› +#ÇE¿+±™ ¯­?­1ÑÇKñ ×6Ëù"Õ¡qQ%¡t¹¤õ‰U­:Å-‘>ÿñaÓšýˆߢá&+ó­…§ +õÛÑ•‹ÕŸ%ù£oé)ÏAÍAã !Ù1µ@ÕMÇß«&ù¹@ñ>9ë ÷%/¥O@#¿3·<‹A‹%/¹r-á-CÍ[ý)ór›×2ë>©ÿ.ãÍDç(§¡Ó&#ÛE·3Á[‡:Ù,«­é7Ë«7•«:±Gñ8û{“"ï¡:û=ó•%íŸG‘8á ©7… ï¥E»?¹<¡6£4Ù%ã#£ ß8å ±!›xÝ%ÇyßïRç©H­J§Ÿ‰NÁ•Ï ‹Û¡0¹ +·Hû¯çOc£ß…Lß!ÿ# +›•É4õ8Õ=Ý +éÑ!áý£F©»)ëÕ5Í7“šñv¿Ëa<ýY·¡‡¦¯<­Ã'³‰¡XÉ'“wçÑ’Ç›¥V×…£%¥¡‰õ.³nÝ©¡©ÿ)iÑ;• ½»8õ×l‹3ÕLÃSã"&Ã@¡nÛ›c“1¥­z«(£CS¥>»0DQ½]Ÿ マ]áa¥3·UŸqï—@íhË¡n­ Ó"épiÑÁ!Ã)BÃ~iÍÿoS¹AÙëA§µ×GIŸÇíAéS‰–±áAÍ)±vïáeQ·G±#Çï@ËEKûó^Qõ=Ãa•|ë>o±C‰Y‡8“u—n¹+£{ÍmQ›PÍ ówÏ­!™9™³?[Ï7ÙNç}!‰o·LŸ?Á.­O±ëE‰‰WŸ £y_±3ÿ7ÁŸël×F÷_Eá#ûVÅDQÑ*‡eÝ,±Ë™0ï!¹2kSûEW¹X¡ +½Lw›D¯9¡La—>å@S»6ßl鯧|õkµn×"…!Í… ©“·‘ƒ ÷õž•› ‹$ëoëm×7—#ÇQË”©ƒ›[íQ­Çá +ùó§¡«ƒMÇÛ(±[µfZ‘-¡Vé\«©ŽÓ‹x©(‰™ŸJû7ƒŽÕÁÙƒ¿±±©³zËRt׃ë=‰P»LïÙ\Á=Ëý—&›ý8­7· ‹dÓŠÿW•#÷¹ í.ŸP‡­“ Ý ù`ï Åë?÷™É¿ãKù"Õ>…„¡ï +™<Ï"ÕE¿$¿YÅÏE££ç6#µýÉ7ÇÝ+ñõPé É Ñ#×­5“ó­¥p‡Fá=ƒÓ*Ý|‰(½tùåÕhÃéý>û ¥, µAó™Qß!§¡a¥4Ñ +éP± ùß&ñ%‰­pù·•»Ÿ/»· +‹á ×GÛ Û‰H‡VwÙ#· ßF“Ÿõ°¡Cƒ *­7©>ó9© Í%ƒ™"ש"ÍB¡™q½9—]¡"ßÏ›oÙ7‘¿$ÉX…¬åÏã«v±» Ã#³_Ù ‹½4ùqÇ0ï ­¯‹!§ÇÝlƒ„ÉB|Á(Íxõ4…"¯3Õ3û¡Õ„ñ—V•B­[•'Qã!ùJ­+åb¿(ŸP—ûfÕÕ„4ýuñMù5‹~ÁRû4ÛX6=‡”ÉÝP‡½\ï­Wí,Q½·\ÁÉxÕYÉQÁJûJÇ•… +Ía¡ •^¿&³Ç)ßV¹;ûLÙ3•a…(ùõѹ$É,éAÃ:Í …@ŸC· ‡#™ +­ë±ÿ«¡ª³õ6ó:צŒ‹ —u…\¿H-áÑyŸ*¥nå·oÿ&Ûу“žÙŒÉ Ó«ï²Ùž.ß|ÇŸõù¦­^㘃C« ͤ?¿@7Ý'ÁÓý寿¢ÏhÙ(‰ËátÓ‚‘­ +ƒÑQÙA»— …€Ã%ût¯ í4«i‰Lù½ŸQóa¡†ÛªÙKõP¡@ÅmÁ‘Tá•*ÍOÏAãÛ]›û'•$ï ÅJßh½ ƒ\—7Ç/÷aµËŠË…h‘Qù8É­>¡IéE™© ïVçë$ÁKÑË«÷@¥Uñ: +™Ha³vù7ÃM×`éÍa©ùMÅHå>rå[õµ É;³`÷ŽË¥‹Ï6ádß&Á¯…í"·Ï<—ï§¡ ¥ ƒ?U§%»!¡É9«5aí¡í!£e‘Aáï·#±£ +·ÿ*·I_Ÿ:ÿÉ`ùg³¡ýJ‹”›>Ù›q¡BÏŠQ‰ï Û~¡DÅ4…ÁTÓXË„ÕtÉ> +ãz·÷Vɤ×^£@ÛBñx«D±‚Íp‹§ÿ­Ëmµ*Ǭé +£ÿJÕ«`­ýšÍ–%Ÿ_¯Í.ñ›Ÿ§ÙX‹g/›ÿ4…SÙ Ç!ûZË&ÓïW­ ëTå Ñm©áY·>ƒx¨›5óžÍ1ù„S“†ÃÝ™r³“•‘Ë?ÿ屩d¡ Ç™Ïiý•©D­—>á@”ÉwÉù3¯ ë!×Í#ý*ý0ƒ"‘«;µñUÑNÍ=•ß Å/í» ÙA£ ÝZå*éÙ +ß‘ +à +ñlÇÉ,û9Ù'¯•@ËgÝŽÑ]‰JM³Qcóß ·Ó§{ûs³Ó:ç!±É¿c¥.ë3ù7Sï8‡•b·™ ûårá ý +µ¥níÇËÅFéÿ*ŸÅ+tõ“#“Ó ¥8í“-ç~¥¡é ±³}õ­ת‰—“eO—·óÓÙñ£÷"õ;¹³·£™ñ‡sÿ'Á`•ǃ™cå\DÕšÅ&ãAù<ÅIû§—&µÁ6‰jã•uû:Ç'ó¢é#±F«{Ë®™צÍD=Ó`Ýy“C—2©Ñ »lá +½3›dÙ§ýQ‡.ƒ¥±oí¹ …©¡Qà ý|» ¥Bµ ÇLÿ Å· +õ—ÿ,ÁÉ ™wÙ +qãåE“)çn—Tµ¡0½@…z³ŸbËC— ¥?•q¯ˆ±xÑ…³Ë~ѯa­?ÝI»m¥"«]×DÿaÍû•HK‘8©P‹4Á8Å@™ ÍŠÑ–™“6—OÇcó‹8“.«ÕOÝdÃçëF›ÝÛ™D¥8½iõ ½p·!±@Ñšû›sÍ&í€Ó ó"žé…ñ®½9á†Í·‘¯«Õ ßn‰ +‡¹Ný¡¢å#÷ˆ*í[óUŸ)ŸF÷l¿Ž—í¥‹=¯ “jé!·W¡pÝYסÍgŸ4ñf¯ñIÁ5ÿÉ_ù÷•» W‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&Û”‡‚½¤ÓFçDý˜ãF“Ã,ÛÝ\™¥§‘g“2Z÷ ×{¡“F÷*§%½‡×(cï ýA­>ý&ç‰fÃï?—?Õ@§(áC¹TÑß0§'ßDÑ(¯*‘‡f¡xÑ%ëjû¹…xÛ(ó©@ñ-ÅM©©Ç'‡ךчj™Û{—¯ÕNÑÑ7¡ ³Bý7ç÷™§ ý_ÍQç’õ-/Ÿ © “:å «~ó í’׋#÷¬ÅrÍ£¨‡5…3ûe‹%׳ ‡^©;•{¡Ÿ…©«³›“ ›„5¯»s¯@§SÕ+ƒ/ч­a›DÕx‰¤¯ ƒo¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†Û©û×r‹aëÙÙσ`‡³³ï÷k¯#½§Ï ÃN“ +ÿLÙÃËálÍ©O¯Ÿ‘$™d‘¬…q‹9¹]ã6£o‘–ù‰)õ Á@ã +áIí=É=ù »çÛÙoç ›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&ƒãR¹ +‰<75«Dç'›$Ó+Ù@¿0‰ ù?q‘½"ÿ‹ ñå ½(§E7©·!í0Ç@%ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ å±MŸ +§W•#‰á'£KÍ­@«3¥é;›A³ µL·0¯ ¿ùgýÃ2Ÿ?ù!»5¥Aù×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ñ ÛJù/Û×ßD¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0¹—¡%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­Lß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&‡ã:!Í@ó‰#ë!—@í‹%µ +ÿù"­ÉÑQŸ^áÅ4×ã¥uå¡Ñ×<‹5s·á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Ý#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/õ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G×›ÿ4ý<íi¥½aé +E“½xûcíŠÏ uŸB¥VËV颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;¯±5E?¡;&íxűÓBÏE­!§;½¯­g¡*¯yß+»Cm£™7÷£DÑ ¿B;Á:©ë"Ï ³ƒP«'•±RÃe»=ÛÝ@ŸPËjÝe¡ÿkƒdÝT áõ>ãR¡±Ó6Ó5_§ …>ËT©I‘7»WÏ¡lí » Ÿ“é0é8W§#M‰XÓe­D‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé _‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õ×ɃßUÙÉGýÕßåý×)ßZ«ÇÇ,©:—ó‹ß6Ý1Çeá™)Ûf½)­éb«³1»÷ÿK¯Û)ËûDËÙ&ÙF™'³ ­Ï‡«`÷é4“ùl_ùYÍ“sᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Çדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯ŠËN¹½¥ +£Ù½n•ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû¥Íbý Ç1ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃBÙ¡­W›ù9õI½#ËBÙS«ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ßïT·FÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•ÕEÏ-±± ë û9¡(ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇC'á"·6Õ9Ÿ"•0á ù"=—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.‡a§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÏ>ë™Ã³7ËÃg‘ã/ñ6ǻݞ¿³¿^å Ùba›9‘ …§ ïUáë’Ýã/ñ™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’‘B‘ ÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõ“Eñ8™˜× +Ï~‰'ÝH¹7í +Ÿ—!ó‘½2ùL³\áUÛ˜³ ߇ »r£7õ0å8Ë8ÙLÓÓ’¹Sùÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}÷4¡Õï §a¿ï•¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ ëí>ÇÓM½k£Ë‹›4×c¯±@í²é[‘7Å +?×ZÑZŸÛOõ?í ƒ%Ë¡4ï_I¡P·;±‹,›¥8Õ S7ÿí#»!ßiã$“[ë--ƒ*¯"¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©p÷ ¹$[ùl±]¯AéAù›eû#—Y¯9Á ­Û6ïAñiŸç[ñ· ¹q—Ÿ5ÁDûÙ"Å#·"¥qý|o³ c¯ñwÉaÁ…»,«tŸDûù9é7ƒn‹8‰CÏWß6ÛéSÓ±6WÅ¿S©9åbû ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2‘ Ïõó!“Q£!ÏIíbñûZÇ8ÛJ×9Ñfý1§0›&©·¤ùyÉ7G‹ ¹[¡ ß +ã g÷%›A© ݹ}÷(¹bïc«!ç;‡ÿ!Ã"ƒ°§§zg‹N×a»Á!½¥Ó ¥‰§ •§ ½‘«™aµ—µ7ù–£ÇbÁe·e… •#§"Áû?± +·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñ­ Ï9cÓ§©#·{_…moûU™ +M«“nÕlË_Sù$á;í+íx/µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõÕ‡Í|Ã-™@Ë +Ý6kϽ9•/— Çv‘[ió?Ñ,¹n͈¹Ù¢Ù‘sËá ·]“‰Ý¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ QùÉ#S• +É7±PÑ(·§±ƒ É»Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…ý ‡k5‰%Ý/J• —cáBñ ã:ƒù6©£nå£ —ß#WŸmù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­Í$³,e­÷¯§5¿0‰¯÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥o¿°‹™‡ï7VÁÛ×7 ÷jݳ8µ ×™B›-K«LÇWå ¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ë¥D‡DÓWŸŽÙj‘cåñõ +Ç“µó|åOÑ„ñƒMçvù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½mé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"kë¡’ƒy­;ó!—#K¡5Ùï#?×m¹Qá¯"¯ õ8“ Ÿ;Û`»5ó ]©Õ +M­[‘ù!û%kß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ‰£˜e»{aƒA“]“©7õ…¯®Å—£Uá-džÍ«¯1¡Y½”TŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!Ÿd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wßYë™Ùsã>½<óƒ"ï“Í6Ï;ãEU¡8« mÏ•‘½só@¿8_—‹÷š+“\k·Y·AéO÷¤»yý8QÁùyýA“7ÿ›±$}ÛÃA¹£q«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1g·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› é ÿ:“«4¯lÃ1ÿŸïn‘Ãm¿7½/Ánõ–•»Oəǧ‰²¥(é|é—=ÿ!Ë.á¤ë ËWo­.ÏQ“¦bá%õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8ƒó•OÕ"¯p±,÷£(•ERÁW‹ÙTË—ç8‹#·.“ís¹1%«%—µS¿1å&•Ó·Z÷“\ýx»*ŸW¿‡ŸïƒË!©’ñB©aÑ~¯SÓœ½b»¡±шÍšçM¡Ÿ„¹ Åd×­ïm£tçLÓÇ…Ñ9Ý +å-ÿñ'åš3ÏŸ×&Å̓ÿ¡‘s™Œ‡qÍu­IÕmÕ<¡Ó[£Ÿnß ƒó[û7ÕÓu›¥hÿ>É©µ”ï@¤/Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"ùPY…¯ŇYŸjŸ ¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7Ç“”KË¥ƒ™kÓ•§m÷óõ…P‘!ée£BÅË’»¥‘‘^‡ ñhåŸËó0¿e±¯Ñ ×—“·f +8íY£“ +£LÙnó ñVÛ ã=ÿ é‰:ãC¡ +ÇNÉië"µñ}ï(¡ Ÿ6§P½M©7§óx¿šû Æ« ÙO·!ÍY…“5ƒMù Ó!±’É ×!•7·lÅ Ÿñ™Cµ9¥ ÿë!±× ýEï7ˆÇ$FÕ‡£9‰7‘Në8«3½NÑ#Çl§’á™K—7ëañ û,½÷`å ßaÿ §•™ +ë9ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!0ÿ Åg‹‘Sá ±W… —_ÿK« ï"ÍÃ7•?×ýS™é••¡µŒÓ0ûD‹/÷&ß«6¿Ó"ÓKƒ+³%¹#ën +ç$Q× õ½GÙå +·ó£!Á;—“—ËDÁEÿG·‹±‹ÉgÁ½$Í#ï%ý+¡½ÿ¥"Çjß" õ€Ý³ é ëï’ù@» ¯_…M™zé89’»eïA§§G÷;Ù`Í"Û‹Ÿ— +Ÿ¿“ÏK½7ç)Ñxéaï>ípÑ"çVÛ ËïZ•,Ññ©ÅqÏ"$Ó ¡é‘…&z¯¡÷6ɹA‡ §®ý˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_ñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3ó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#ÁN¥‘ר·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o…Ží ×Jë ¿¬ñiÁ “qÛvËÏ :¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–©ë;¥£]ïÅ­ÇF×W‘™·%­fÛ­·9çBݪÉnýcù{‰®¯ ƒ2Yó*á”›&Yûm¿GŨ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£ói‰Íëƒ[µ&ŸóÁh›+¿~k‘KÙ²•y½R¯–¯°ïDÑIí1Ç-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0Õ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3¹`»tå—™„Ï5ݲ¥f©sá«5±.Ëi‹/ŸwíÏZý@/›Á¹>ïa;9£· 韓J5¥9‹Û4™3Áwé3½ +¹R×É©tÇß2…ËÝ=µ%­œ;ÃÕ“pã)•#­¥ ˵&?à ­¿9§BÇ[ûNéõR­‰w¥7—°•¨é˜·û–ï=É5§L³°«;ï +±Ñh± +µVŸˆ×‹_MŸ,Ýr»™Ý ‰ ¯híŒÏO»­õ~Ù"“.ý¬³O"óœÕSÇ« ƒY¿>‡ƒ«OñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅÝŒëg³µŠ­…¯û‰Ÿ¯vÿ¹­Eã¬Ë"ï%Ÿcç%¯6Ï8•ÝmßC± ½‡Aç\ÝLíM¹«Í]Ë7󆛖›gà Íxù ÿPÍ «”Ý5Óa™±{Ù&¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9•“«›±1éŸ:«Iñ ßMÓ€·!¹ížÕoß6±k µoõá cÓ û ÝŸHQ…[ß0¹­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“µšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7¥I½:1‘#écû"…o‰ +ãDý!ÿfû¡™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6¯ +é4‰?4“©)ƒ9“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © +éOïÝ4£>“rµ"‰E‡.Á ­Ñ&õ!¯RçhÝÝ•"ßnë— ŸJÃý!ÑPÝ«›0Ñ·¡‡XëEí‹9—•|›§«1‹Ÿû§vÇnç õ …7Í>ûLé*Û/‘"¿]× +÷ ý6ÕqÉFÙ ‡+I‡’û"Ñ#\ñ0ß]9‰dYÁ ó‹z¹!‰Ó’g“(×|á²Á]Á&›ñŸ›IÍ3Éõ ç3ŸÑ å&ÅK±Yóé åV³µ9«2óI¡+ƒ"ù‘®ù)§då¥í©±ÝO±c׋Û +“lÍ"‘*Ã]ƒ˜Ùf™m“å•6‘'ƒzÉuÃZ‹€ßEà ‘ˆÙ7ýK—yó¬÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ‹,©KÁyÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*Ûœ©mÁ…™^Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3×Ç|ë ¹Á'ƒ.ã Û3×óݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»å€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¡¯§õ© ¿6Q½ˆ»<ÃP‘‰±-áëv¯x·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:å)õ ½_¥;‹kóë •<ÕBŸß8åÿ©5éA‹;ã ½DÏÑçAç«ÕAµÇL¡]Õ3ÑF× 8±!¡IŸ ÑDσ*·:×3÷!ó8³9ñûGýJùO¯•#½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë áŸ9Ã^Í6Åz×3N¹:³‡óÓ§ÉKï_ŸSÙ!«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&͆ÏÕ#©™$ňçk»+“z&ýˆÓ|Åo¹4œ§ãÝK× «g3·iëfÔÓ=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}ó­*³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"§R8Á,õ0‹ ×Ç•ááªõ‡z÷-›¿©n¡×@É +鬳:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&ß{£ý ÏÛ[-¡Léoà +Ó.<—iÕßtÿq¡­b›/± +ÁSù†é'Õ~˪Ù¥6¡^™g‹[AÃGÛAý±`é8éyñLËW÷7RË ©ù‚©„1Ñ+E­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒÅ­ ¯•Å<õe‡%Ùœ—F½‰›©&ÛAã)ÙŸË4ç*»‰o¡GÕA“où ù‘Ë érõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£u±Ï~­ÕXß3¹Då¥'í¯[³eé"ã‡uÉ‘óFµD"Õ”Ñ@ÏVÿ·#ý‹Å±«ÿ=ñ™±–±VçÏ¢©©1ß«¥Mµió0åQÉ0ñ¡™íUÑA× ×¥ çzç1Ñ™J§eÁ… ë +·@¹ŸÑ49Õ•ó]ïýlï ŸÑ+—™ƒz±=Û +ÑvóE— ß’f‡ý:™ ­ezÿ?ÍHs!³»V‘ÓCÕ6õz— Ý8 ín­Ñ8é—é™v¡…#£Œ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6µƒ‡9ùõëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8½+ÍËç‘¥ñ3¥‘0‰&‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/ǃ&Ïõ·³ÿ)ùPÝ&á=Ÿõ…ÍÙ¯!³ ¯RÍ0ÿ »ó­&ß=³Ã‡‹)¹ “ÇÍ ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +˫˳ ¡¯ Ï{°ÿBÑ!×8*Vßçá£&‹«F@Õd¿6ÙQyÑ¥AÁ85Ÿ39Ù%+ÁA»4‹?é?9·[Õ‰å¯8)éE½ã,í3Ó Å½ë!i•9‘b5©7ÛSÃ>ÉÍ-õ/‡®½Oá­M1×8Q;ó%™:‹‹8Ýõ"ë9· +ù8×*é,»A±*‹ +¯Rí —$ß9›5ß +ó0Óá‘GÍ<Ñ£:Ã4û!Å:‹0Ñ ·4Ç(«"‰0ýƒ§ ÝJ›"‰4›#™"•Û5¹1ÛŸßa±!Ïã­ÃP¯,¿A· Ç9£ïBé0Ñ6Û0ù!ûŸ*Ñ+ë6§<ã‰B‘ óO¯çB­­!£©')t)T-Õ`-»9ñ‘7é<·“$Å +»~…ÿ ‹‘£YÉgË$Ár²•³«Z÷ƒJß Ÿ<ï‡ß2½ +í‰ÿ4‘JóeÙ4Ý-å@Ïfõ,ÝN©ÇÉ;ë:ï`¹pù(©z±ã§±BÍ~§Jµ\M‘\ã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ½€ó„Øñ=‘ŠïqçI猓‹DA·2‡LÃë!¥6A§©ÃíBG©A‰ GÅïó ¿ÙHç)µCñÍùç(oï·¹»MÙ!³Û©0·Feñé)»;×8uõ+aÅ +§6¹*§÷+‘“ñ8û÷aÝU¡Ógí©aÍ0ÿ$ý"¿!]ïDq‹r•å8ßZ9÷6á ûF…Y×—5§[Éÿ.§—#«ÿµ?é-O!¡%Ï*¯ÿ%‹nÅ +cÝ‹Pç!C掠*ï!ó")ëÓN¹ký­( +µ ýO™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`ç¿$½AKó*%——7;íAÅÁ+Ó5Ý7sk·D­Q剋rwó “¡oë!•ƒ4—ÇMß6× ·³ åå2ÅP¡'• +á6IóF½y!õ%‘;…2£¯!¡"Ÿ¥ƒõQÉ ÿïl«Ë ¯4Õ7YÏ)³.± ‡3ýû_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ß%Ó#éOÕ ßŸëí&›J³ó:³§!:±#uÛ7Ç9·e·Å.Ç6«"Ç¡Á ó`ß~›?5›QÇÑ=óã#'õd±2+§c‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± §^‹"‹:U/‹ñ0¹?µ;‰=;µ NÃ+eÑ ¡7ƒVWÍÝ8ÃEe™Õ!¡®Á“‘9¿˜¯ûÝP»‹‹rõUÕI£#ùk›¹Ý8ñ»gÍ +­m¿/› ¿„ƒÏR—l³™÷"¯‰TŸŒÿbÛ^ËvÕ ‰vå%‡›!¥)…Eç"›Ùxç3Á Ñ‚Ÿa¡£")ñ Ãç#õç7ÓP‹.ûy÷+ûlá¿£ É ùcÕ•AÅC¹2Ï(ñ¥ É"Ó#ù2» Å¥ª¡Žï!‹Û›•aÝ £PÃ?™ å4‡ +Ãï$‡ ‡#ù +û3<§‚£3:ó8U›h¡ ‡“ VÍ[µL,»6÷RåÕìã σ Çi“AÇ+áã(qË…ï’½ý%lj#¯cë“7˳>¹•õ5›ÕN¯ÇU‰i÷ß}ÑžÉ:Ã?› +éãÿUÉžmÇE-Ï »)Û.ñß‘8 +;‘(»I­8ë£U6‘Ù#ñN»Y“½ 3­89ùÿëÇ0ÓIãŽà É9×(Ù0±TÇËÛ +ÝQ1 +µ‰‰ ©íǦÇo3™ õó4©?í%ïX½­#ã‹õu£fÍÓ/Á«"Ýé„φ· +í$å|`/©¯»#U‰%é‚«*C‡)‘«+ý )ó í^¿!—Oï’Í?Ù$Ë¡’‡ —7™{‹8ÓÙ «^×KË— Õ$áy7© +å.•cŸ7ów“¿K³0Ó íl'Ï +ËX)©!é*ë{é¥ób9'åZÿïÅ!ù.Ÿ"ÁC× ‰Ç ÏF» ç…ÅG¥7™i¡ ÓŸš§ »;¿ ™3õ «}Ï! ù8‡xÛ7§A¹ Ó\¥ ûxÙ8ñ!—z¿‘¯9ã“9™s‘"—˜ù ç·E×.³7£¥B³[Í7“|í!ɹµ ÿE¿5ï5!×=ýݯ8ƒßyÉ¥‘Í›#íO¡!µ™&½í7¹GM•6·V…!£Pùû Ã$­bë1ãXù“÷?×çÅ.‰ûÃQƒÃé#½&ý#¡ §6Ï­Ù"õã»6Ù]ãÓgÑ"áýX‡S÷;»óPã$£?‡ ·0á7Ç>­(á/Õ9óZÏ+óÕ!É›[É&ù ³<› ëƒÙa»R«íKÅ0Ïçcç‰!g‚±™$_Á"Ç<é åÝ ÷b±HƒÝxûÓO• +ù\•"ÃýŽÇ !»6ñ˜ÍCß¹½Z™Ëgç£ ßï“)íP‘ÿ™!ùµ ‰*ùJ—.Õ ·(£ÿ›/÷J±ýi• « í!é6§ûá$Ó(ë%«*ÛKå÷:µ—$¹<ý%ÿ«0á ¹Å‘× ×+± Ã*ËHÁág‰#ÝÅùK« ÿà ¯{§¥ÍÉgËïN£ßó%ÕTç ¥#Ù +m£Uà +«*Ýn½ E…4ß%—Ù:Ñe“ ƒ:»å »$¯N±¡,‡B'ýŸ"»‹9ý"Íåó••¥ïí)¿Bû¡;¥ !Û‰J7<ƒ¹ëùý{é ËkùÉ@áÍF×M…¹½#•ïY͇Ká.C¿"£ë:“,Ã##·ñ5Á•çû7‰'û%Û‘M‘3‡4§”ÝV—;Ñ™ûIõ(ñ#ű5‰Nµ å.÷'óY¥9…V™ +áN¯3ÙN‹?ÕMÑ%·BÉÁ@ÁÅu¡.·ã"©`¥=ó ãßE£.Ç +Ÿ‘E§ ÏÁ2épó…pÕžÛí Ù›háë>Ó<Ùï1ç7¡Q¡óƒ¿«é‘aƒ­Põ-ÿ¥á?à +›ï[óš§ŸT™Ãù}Ç%8×Ý ¥Ï)·9Û:ótËýÕh·k£ßÛƒ…=Ï3‰•Á««ùŸ"» ­7ï*Á é*ó5—“ƒ™ËOåùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰Á ‡ Õ>é#­.ÝŸ7ϯ Ý8ã­ã½NÉÁ Ÿ'•å"ƒÙé«9å×`¯‡’õ¿ +á5— +¿1÷© í6ã% § ±M‹‡í"¿ õ/Ÿ û™Oßåë$™Ç6»Å1©¯"ý•…›#ã±&±…2õý ßÙ#Å!Ï#(¥µ#•(×"­"×õ— ƒ&ÿ»Hñ ï³7»ë$Ù éÃ#©Ë!£ Í9­2™ ñ ‰(›#ÇD×,¡#½½¥ «#•Ï"Ù-Õÿ ƒ¿0û ÷±"ƒ(±4‘ó.«9Ýí9ûÍ%Ë0ïÓ!—Û_µ?»K‹™]û1çwÉ—¢YÕ«bÃJ­˜É³ƒTí¡ƒnÁ³—ý +hk•rï!ÁX5ƒgÍIãÿtÃ(¿…‹™!Ý4™*{eï8ëå0¥Të£-ó0Ññà ×ûaé&½é3×ß‹¡a÷…-Ë(åV“U ³17õ*“&ÝÑ/ç>ã"Ñ÷ˆÉá׃Xû™¹,í£%ë!§•1÷P…ù½bÃ(ç Ç8ÝÝ1Ç«,¥"¹0·QÍ-Ï ‡4Ý «1åµ+à ó·ëCÅ ­0…Å=×»6•’‘2»6í"×#ÝPÁ_™éDý/·66Ë +Ù-…í»~Ù ¡å“ Éb¹­_Ý1å÷ íW•&é óEÉ:ë(ë“#áëJá Ý"ù'ù/Ï»&³*Ý)á ‡ ÷(Ç áEÑ3ƒrÍ××]Ź…z»‘·må!í»!ÿ÷c•}å<ƒ\û ¥WÁ —»§ó1ÏK½=ÓÙ1“… ï(·é"•í§1ïJÁMñ$¹ß%…OÅãÑÇB›“Á˯ù=ƒ«hû’“Vçùs«kß#ëp¹/­¨£Bá—Õ‹ŸX›2ûKÁ4ã1«CåGÅFÍÇß‹;ÿ?ÅAó»ë9]ÑGÍ%ù3áÃÁ"½:ù;¹ ׫:± (Ãý å#åT±"×å™NçÃÇ£<Û­™Ý"Ïaÿß)˹ »8ŸÇƒ›ã'õ Ë6¹§Ç ù+Å'ïù(³ Å÷"Çm‹L÷9çï +õ!Ý=±ë©WÓTVŸXÇDé@2çß!»+ûã"í$ÙKÙ…tñ³Ñ:­$ñ<å=Ý5•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µs3Ázã½ãcý/ƒ ‹ é:£:á'• “2¿ +ë08»Ý}¹!©­jË&ùåD…« ¡]…~÷§ íJÑ#±*íf±÷5ÿ\¿ +é4—D‰/¥PÉáÁ:ß?×ñmG» ù§"Ë%á,§-•FÙý$?¿•Û8Õb½8ƒç-•P• ½6‘å5á5½:ñ Í!/ƒo½±Å|§ˆÇ2í6×3CíñDG£6í7©.ç 1…Rýç éLá.Û …8Åq7Åå8³ ÏÝ4×Ý8勵©b­Ù@·K™ÑA©Wó·’×#/£—>ó"ã£/µ7‡› +#ÇE¿+±™ ¯­?­1ÑÇKñ ×6Ëù"Õ¡qQ%¡t¹¤õ‰U­:Å-‘>ÿñaÓšýˆߢá&+ó­…§ +õÛÑ•‹ÕŸ%ù£oé)ÏAÍAã !Ù1µ@ÕMÇß«&ù¹@ñ>9ë ÷%/¥O@#¿3·<‹A‹%/¹r-á-CÍ[ý)ór›×2ë>©ÿ.ãÍDç(§¡Ó&#ÛE·3Á[‡:Ù,«­é7Ë«7•«:±Gñ8û{“"ï¡:û=ó•%íŸG‘8á ©7… ï¥E»?¹<¡6£4Ù%ã#£ ß8å ±!›xÝ%ÇyßïRç©H­J§Ÿ‰NÁ•Ï ‹Û¡0¹ +·Hû¯çOc£ß…Lß!ÿ# +›•É4õ8Õ=Ý +éÑ!áý£F©»)ëÕ5Í7“šñv¿Ëa<ýY·¡‡¦¯<­Ã'³‰¡XÉ'“wçÑ’Ç›¥V×…£%¥¡‰õ.³nÝ©¡©ÿ)iÑ;• ½»8õ×l‹3ÕLÃSã"&Ã@¡nÛ›c“1¥­z«(£CS¥>»0DQ½]Ÿ マ]áa¥3·UŸqï—@íhË¡n­ Ó"épiÑÁ!Ã)BÃ~iÍÿoS¹AÙëA§µ×GIŸÇíAéS‰–±áAÍ)±vïáeQ·G±#Çï@ËEKûó^Qõ=Ãa•|ë>o±C‰Y‡8“u—n¹+£{ÍmQ›PÍ ówÏ­!™9™³?[Ï7ÙNç}!‰o·LŸ?Á.­O±ëE‰‰WŸ £y_±3ÿ7ÁŸël×F÷_Eá#ûVÅDQÑ*‡eÝ,±Ë™0ï!¹2kSûEW¹X¡ +½Lw›D¯9¡La—>å@S»6ßl鯧|õkµn×"…!Í… ©“·‘ƒ ÷õž•› ‹$ëoëm×7—#ÇQË”©ƒ›[íQ­Çá +ùó§¡«ƒMÇÛ(±[µfZ‘-¡Vé\«©ŽÓ‹x©(‰™ŸJû7ƒŽÕÁÙƒ¿±±©³zËRt׃ë=‰P»LïÙ\Á=Ëý—&›ý8­7· ‹dÓŠÿW•#÷¹ í.ŸP‡­“ Ý ù`ï Åë?÷™É¿ãKù"Õ>…„¡ï +™<Ï"ÕE¿$¿YÅÏE££ç6#µýÉ7ÇÝ+ñõPé É Ñ#×­5“ó­¥p‡Fá=ƒÓ*Ý|‰(½tùåÕhÃéý>û ¥, µAó™Qß!§¡a¥4Ñ +éP± ùß&ñ%‰­pù·•»Ÿ/»· +‹á ×GÛ Û‰H‡VwÙ#· ßF“Ÿõ°¡Cƒ *­7©>ó9© Í%ƒ™"ש"ÍB¡™q½9—]¡"ßÏ›oÙ7‘¿$ÉX…¬åÏã«v±» Ã#³_Ù ‹½4ùqÇ0ï ­¯‹!§ÇÝlƒ„ÉB|Á(Íxõ4…"¯3Õ3û¡Õ„ñ—V•B­[•'Qã!ùJ­+åb¿(ŸP—ûfÕÕ„4ýuñMù5‹~ÁRû4ÛX6=‡”ÉÝP‡½\ï­Wí,Q½·\ÁÉxÕYÉQÁJûJÇ•… +Ía¡ •^¿&³Ç)ßV¹;ûLÙ3•a…(ùõѹ$É,éAÃ:Í …@ŸC· ‡#™ +­ë±ÿ«¡ª³õ6ó:צŒ‹ —u…\¿H-áÑyŸ*¥nå·oÿ&Ûу“žÙŒÉ Ó«ï²Ùž.ß|ÇŸõù¦­^㘃C« ͤ?¿@7Ý'ÁÓý寿¢ÏhÙ(‰ËátÓ‚‘­ +ƒÑQÙA»— …€Ã%ût¯ í4«i‰Lù½ŸQóa¡†ÛªÙKõP¡@ÅmÁ‘Tá•*ÍOÏAãÛ]›û'•$ï ÅJßh½ ƒ\—7Ç/÷aµËŠË…h‘Qù8É­>¡IéE™© ïVçë$ÁKÑË«÷@¥Uñ: +™Ha³vù7ÃM×`éÍa©ùMÅHå>rå[õµ É;³`÷ŽË¥‹Ï6ádß&Á¯…í"·Ï<—ï§¡ ¥ ƒ?U§%»!¡É9«5aí¡í!£e‘Aáï·#±£ +·ÿ*·I_Ÿ:ÿÉ`ùg³¡ýJ‹”›>Ù›q¡BÏŠQ‰ï Û~¡DÅ4…ÁTÓXË„ÕtÉ> +ãz·÷Vɤ×^£@ÛBñx«D±‚Íp‹§ÿ­Ëmµ*Ǭé +£ÿJÕ«`­ýšÍ–%Ÿ_¯Í.ñ›Ÿ§ÙX‹g/›ÿ4…SÙ Ç!ûZË&ÓïW­ ëTå Ñm©áY·>ƒx¨›5óžÍ1ù„S“†ÃÝ™r³“•‘Ë?ÿ屩d¡ Ç™Ïiý•©D­—>á@”ÉwÉù3¯ ë!×Í#ý*ý0ƒ"‘«;µñUÑNÍ=•ß Å/í» ÙA£ ÝZå*éÙ +ß‘ +à +ñlÇÉ,û9Ù'¯•@ËgÝŽÑ]‰JM³Qcóß ·Ó§{ûs³Ó:ç!±É¿c¥.ë3ù7Sï8‡•b·™ ûårá ý +µ¥níÇËÅFéÿ*ŸÅ+tõ“#“Ó ¥8í“-ç~¥¡é ±³}õ­ת‰—“eO—·óÓÙñ£÷"õ;¹³·£™ñ‡sÿ'Á`•ǃ™cå\DÕšÅ&ãAù<ÅIû§—&µÁ6‰jã•uû:Ç'ó¢é#±F«{Ë®™צÍD=Ó`Ýy“C—2©Ñ »lá +½3›dÙ§ýQ‡.ƒ¥±oí¹ …©¡Qà ý|» ¥Bµ ÇLÿ Å· +õ—ÿ,ÁÉ ™wÙ +qãåE“)çn—Tµ¡0½@…z³ŸbËC— ¥?•q¯ˆ±xÑ…³Ë~ѯa­?ÝI»m¥"«]×DÿaÍû•HK‘8©P‹4Á8Å@™ ÍŠÑ–™“6—OÇcó‹8“.«ÕOÝdÃçëF›ÝÛ™D¥8½iõ ½p·!±@Ñšû›sÍ&í€Ó ó"žé…ñ®½9á†Í·‘¯«Õ ßn‰ +‡¹Ný¡¢å#÷ˆ*í[óUŸ)ŸF÷l¿Ž—í¥‹=¯ “jé!·W¡pÝYסÍgŸ4ñf¯ñIÁ5ÿÉ_ù÷•» W‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&Û”‡‚½¤ÓFçDý˜ãF“Ã,ÛÝ\™¥§‘g“2Z÷ ×{¡“F÷*§%½‡×(cï ýA­>ý&ç‰fÃï?—?Õ@§(áC¹TÑß0§'ßDÑ(¯*‘‡f¡xÑ%ëjû¹…xÛ(ó©@ñ-ÅM©©Ç'‡ךчj™Û{—¯ÕNÑÑ7¡ ³Bý7ç÷™§ ý_ÍQç’õ-/Ÿ © “:å «~ó í’׋#÷¬ÅrÍ£¨‡5…3ûe‹%׳ ‡^©;•{¡Ÿ…©«³›“ ›„5¯»s¯@§SÕ+ƒ/ч­a›DÕx‰¤¯ ƒo¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†Û©û×r‹aëÙÙσ`‡³³ï÷k¯#½§Ï ÃN“ +ÿLÙÃËálÍ©O¯Ÿ‘$™d‘¬…q‹9¹]ã6£o‘–ù‰)õ Á@ã +áIí=É=ù »çÛÙoç ›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&ƒãR¹ +‰<75«Dç'›$Ó+Ù@¿0‰ ù?q‘½"ÿ‹ ñå ½(§E7©·!í0Ç@%ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ å±MŸ +§W•#‰á'£KÍ­@«3¥é;›A³ µL·0¯ ¿ùgýÃ2Ÿ?ù!»5¥Aù×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ñ ÛJù/Û×ßD¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0¹—¡%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­Lß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&‡ã:!Í@ó‰#ë!—@í‹%µ +ÿù"­ÉÑQŸ^áÅ4×ã¥uå¡Ñ×<‹5s·á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Ý#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/õ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G×›ÿ4ý<íi¥½aé +E“½xûcíŠÏ uŸB¥VËV颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;¯±5E?¡;&íxűÓBÏE­!§;½¯­g¡*¯yß+»Cm£™7÷£DÑ ¿B;Á:©ë"Ï ³ƒP«'•±RÃe»=ÛÝ@ŸPËjÝe¡ÿkƒdÝT áõ>ãR¡±Ó6Ó5_§ …>ËT©I‘7»WÏ¡lí » Ÿ“é0é8W§#M‰XÓe­D‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé _‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õ×ɃßUÙÉGýÕßåý×)ßZ«ÇÇ,©:—ó‹ß6Ý1Çeá™)Ûf½)­éb«³1»÷ÿK¯Û)ËûDËÙ&ÙF™'³ ­Ï‡«`÷é4“ùl_ùYÍ“sᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Çדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯ŠËN¹½¥ +£Ù½n•ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû¥Íbý Ç1ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃBÙ¡­W›ù9õI½#ËBÙS«ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ßïT·FÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•ÕEÏ-±± ë û9¡(ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇC'á"·6Õ9Ÿ"•0á ù"=—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.‡a§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÏ>ë™Ã³7ËÃg‘ã/ñ6ǻݞ¿³¿^å Ùba›9‘ …§ ïUáë’Ýã/ñ™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’‘B‘ ÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõ“Eñ8™˜× +Ï~‰'ÝH¹7í +Ÿ—!ó‘½2ùL³\áUÛ˜³ ߇ »r£7õ0å8Ë8ÙLÓÓ’¹Sùÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}÷4¡Õï §a¿ï•¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ ëí>ÇÓM½k£Ë‹›4×c¯±@í²é[‘7Å +?×ZÑZŸÛOõ?í ƒ%Ë¡4ï_I¡P·;±‹,›¥8Õ S7ÿí#»!ßiã$“[ë--ƒ*¯"¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©p÷ ¹$[ùl±]¯AéAù›eû#—Y¯9Á ­Û6ïAñiŸç[ñ· ¹q—Ÿ5ÁDûÙ"Å#·"¥qý|o³ c¯ñwÉaÁ…»,«tŸDûù9é7ƒn‹8‰CÏWß6ÛéSÓ±6WÅ¿S©9åbû ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2‘ Ïõó!“Q£!ÏIíbñûZÇ8ÛJ×9Ñfý1§0›&©·¤ùyÉ7G‹ ¹[¡ ß +ã g÷%›A© ݹ}÷(¹bïc«!ç;‡ÿ!Ã"ƒ°§§zg‹N×a»Á!½¥Ó ¥‰§ •§ ½‘«™aµ—µ7ù–£ÇbÁe·e… •#§"Áû?± +·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñ­ Ï9cÓ§©#·{_…moûU™ +M«“nÕlË_Sù$á;í+íx/µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõÕ‡Í|Ã-™@Ë +Ý6kϽ9•/— Çv‘[ió?Ñ,¹n͈¹Ù¢Ù‘sËá ·]“‰Ý¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ QùÉ#S• +É7±PÑ(·§±ƒ É»Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…ý ‡k5‰%Ý/J• —cáBñ ã:ƒù6©£nå£ —ß#WŸmù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­Í$³,e­÷¯§5¿0‰¯÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥o¿°‹™‡ï7VÁÛ×7 ÷jݳ8µ ×™B›-K«LÇWå ¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ë¥D‡DÓWŸŽÙj‘cåñõ +Ç“µó|åOÑ„ñƒMçvù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½mé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"kë¡’ƒy­;ó!—#K¡5Ùï#?×m¹Qá¯"¯ õ8“ Ÿ;Û`»5ó ]©Õ +M­[‘ù!û%kß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ‰£˜e»{aƒA“]“©7õ…¯®Å—£Uá-džÍ«¯1¡Y½”TŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!Ÿd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wßYë™Ùsã>½<óƒ"ï“Í6Ï;ãEU¡8« mÏ•‘½só@¿8_—‹÷š+“\k·Y·AéO÷¤»yý8QÁùyýA“7ÿ›±$}ÛÃA¹£q«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1g·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› é ÿ:“«4¯lÃ1ÿŸïn‘Ãm¿7½/Ánõ–•»Oəǧ‰²¥(é|é—=ÿ!Ë.á¤ë ËWo­.ÏQ“¦bá%õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8ƒó•OÕ"¯p±,÷£(•ERÁW‹ÙTË—ç8‹#·.“ís¹1%«%—µS¿1å&•Ó·Z÷“\ýx»*ŸW¿‡ŸïƒË!©’ñB©aÑ~¯SÓœ½b»¡±шÍšçM¡Ÿ„¹ Åd×­ïm£tçLÓÇ…Ñ9Ý +å-ÿñ'åš3ÏŸ×&Å̓ÿ¡‘s™Œ‡qÍu­IÕmÕ<¡Ó[£Ÿnß ƒó[û7ÕÓu›¥hÿ>É©µ”ï@¤/Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"ùPY…¯ŇYŸjŸ ¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7Ç“”KË¥ƒ™kÓ•§m÷óõ…P‘!ée£BÅË’»¥‘‘^‡ ñhåŸËó0¿e±¯Ñ ×—“·f +8íY£“ +£LÙnó ñVÛ ã=ÿ é‰:ãC¡ +ÇNÉië"µñ}ï(¡ Ÿ6§P½M©7§óx¿šû Æ« ÙO·!ÍY…“5ƒMù Ó!±’É ×!•7·lÅ Ÿñ™Cµ9¥ ÿë!±× ýEï7ˆÇ$FÕ‡£9‰7‘Në8«3½NÑ#Çl§’á™K—7ëañ û,½÷`å ßaÿ §•™ +ë9ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!0ÿ Åg‹‘Sá ±W… —_ÿK« ï"ÍÃ7•?×ýS™é••¡µŒÓ0ûD‹/÷&ß«6¿Ó"ÓKƒ+³%¹#ën +ç$Q× õ½GÙå +·ó£!Á;—“—ËDÁEÿG·‹±‹ÉgÁ½$Í#ï%ý+¡½ÿ¥"Çjß" õ€Ý³ é ëï’ù@» ¯_…M™zé89’»eïA§§G÷;Ù`Í"Û‹Ÿ— +Ÿ¿“ÏK½7ç)Ñxéaï>ípÑ"çVÛ ËïZ•,Ññ©ÅqÏ"$Ó ¡é‘…&z¯¡÷6ɹA‡ §®ý˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_ñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3ó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#ÁN¥‘ר·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o…Ží ×Jë ¿¬ñiÁ “qÛvËÏ :¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–©ë;¥£]ïÅ­ÇF×W‘™·%­fÛ­·9çBݪÉnýcù{‰®¯ ƒ2Yó*á”›&Yûm¿GŨ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£ói‰Íëƒ[µ&ŸóÁh›+¿~k‘KÙ²•y½R¯–¯°ïDÑIí1Ç-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0Õ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3¹`»tå—™„Ï5ݲ¥f©sá«5±.Ëi‹/ŸwíÏZý@/›Á¹>ïa;9£· 韓J5¥9‹Û4™3Áwé3½ +¹R×É©tÇß2…ËÝ=µ%­œ;ÃÕ“pã)•#­¥ ˵&?à ­¿9§BÇ[ûNéõR­‰w¥7—°•¨é˜·û–ï=É5§L³°«;ï +±Ñh± +µVŸˆ×‹_MŸ,Ýr»™Ý ‰ ¯híŒÏO»­õ~Ù"“.ý¬³O"óœÕSÇ« ƒY¿>‡ƒ«OñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅÝŒëg³µŠ­…¯û‰Ÿ¯vÿ¹­Eã¬Ë"ï%Ÿcç%¯6Ï8•ÝmßC± ½‡Aç\ÝLíM¹«Í]Ë7󆛖›gà Íxù ÿPÍ «”Ý5Óa™±{Ù&¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9•“«›±1éŸ:«Iñ ßMÓ€·!¹ížÕoß6±k µoõá cÓ û ÝŸHQ…[ß0¹­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“µšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7¥I½:1‘#écû"…o‰ +ãDý!ÿfû¡™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6¯ +é4‰?4“©)ƒ9“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © +éOïÝ4£>“rµ"‰E‡.Á ­Ñ&õ!¯RçhÝÝ•"ßnë— ŸJÃý!ÑPÝ«›0Ñ·¡‡XëEí‹9—•|›§«1‹Ÿû§vÇnç õ …7Í>ûLé*Û/‘"¿]× +÷ ý6ÕqÉFÙ ‡+I‡’û"Ñ#\ñ0ß]9‰dYÁ ó‹z¹!‰Ó’g“(×|á²Á]Á&›ñŸ›IÍ3Éõ ç3ŸÑ å&ÅK±Yóé åV³µ9«2óI¡+ƒ"ù‘®ù)§då¥í©±ÝO±c׋Û +“lÍ"‘*Ã]ƒ˜Ùf™m“å•6‘'ƒzÉuÃZ‹€ßEà ‘ˆÙ7ýK—yó¬÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ‹,©KÁyÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*Ûœ©mÁ…™^Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3×Ç|ë ¹Á'ƒ.ã Û3×óݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»å€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¡¯§õ© ¿6Q½ˆ»<ÃP‘‰±-áëv¯x·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:å)õ ½_¥;‹kóë •<ÕBŸß8åÿ©5éA‹;ã ½DÏÑçAç«ÕAµÇL¡]Õ3ÑF× 8±!¡IŸ ÑDσ*·:×3÷!ó8³9ñûGýJùO¯•#½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë áŸ9Ã^Í6Åz×3N¹:³‡óÓ§ÉKï_ŸSÙ!«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&͆ÏÕ#©™$ňçk»+“z&ýˆÓ|Åo¹4œ§ãÝK× «g3·iëfÔÓ=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}ó­*³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"§R8Á,õ0‹ ×Ç•ááªõ‡z÷-›¿©n¡×@É +鬳:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&ß{£ý ÏÛ[-¡Léoà +Ó.<—iÕßtÿq¡­b›/± +ÁSù†é'Õ~˪Ù¥6¡^™g‹[AÃGÛAý±`é8éyñLËW÷7RË ©ù‚©„1Ñ+E­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒÅ­ ¯•Å<õe‡%Ùœ—F½‰›©&ÛAã)ÙŸË4ç*»‰o¡GÕA“où ù‘Ë érõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£u±Ï~­ÕXß3¹Då¥'í¯[³eé"ã‡uÉ‘óFµD"Õ”Ñ@ÏVÿ·#ý‹Å±«ÿ=ñ™±–±VçÏ¢©©1ß«¥Mµió0åQÉ0ñ¡™íUÑA× ×¥ çzç1Ñ™J§eÁ… ë +·@¹ŸÑ49Õ•ó]ïýlï ŸÑ+—™ƒz±=Û +ÑvóE— ß’f‡ý:™ ­ezÿ?ÍHs!³»V‘ÓCÕ6õz— Ý8 ín­Ñ8é—é™v¡…#£Œ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6µƒ‡9ùõëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8½+ÍËç‘¥ñ3¥‘0‰&‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/ǃ&Ïõ·³ÿ)ùPÝ&á=Ÿõ…ÍÙ¯!³ ¯RÍ0ÿ »ó­&ß=³Ã‡‹)¹ “ÇÍ ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +˫˳ ¡¯ Ï{°ÿBÑ!×8*Vßçá£&‹«F@Õd¿6ÙQyÑ¥AÁ85Ÿ39Ù%+ÁA»4‹?é?9·[Õ‰å¯8)éE½ã,í3Ó Å½ë!i•9‘b5©7ÛSÃ>ÉÍ-õ/‡®½Oá­M1×8Q;ó%™:‹‹8Ýõ"ë9· +ù8×*é,»A±*‹ +¯Rí —$ß9›5ß +ó0Óá‘GÍ<Ñ£:Ã4û!Å:‹0Ñ ·4Ç(«"‰0ýƒ§ ÝJ›"‰4›#™"•Û5¹1ÛŸßa±!Ïã­ÃP¯,¿A· Ç9£ïBé0Ñ6Û0ù!ûŸ*Ñ+ë6§<ã‰B‘ óO¯çB­­!£©')t)T-Õ`-»9ñ‘7é<·“$Å +»~…ÿ ‹‘£YÉgË$Ár²•³«Z÷ƒJß Ÿ<ï‡ß2½ +í‰ÿ4‘JóeÙ4Ý-å@Ïfõ,ÝN©ÇÉ;ë:ï`¹p©z±ã§±BÍ~§Jµ\M‘\ã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ½€ó„Øñ=‘ŠïqçI猓‹DA·2‡LÃë!¥6A§©ÃíBG©A‰ GÅïó ¿ÙHç)µCñÍùç(oï·¹»MÙ!³Û©0·Feñé)»;×8uõ+aÅ +§6¹*§÷+‘“ñ8û÷aÝU¡Ógí©aÍ0ÿ$ý"¿!]ïDq‹r•å8ßZ9÷6á ûF…Y×—5§[Éÿ.§—#«ÿµ?é-O!¡%Ï*¯ÿ%‹nÅ +cÝ‹Pç!C掠*ï!ó")ëÓN¹ký­( +µ ýO™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`ç¿$½AKó*%——7;íAÅÁ+Ó5Ý7sk·D­Q剋rwó “¡oë!•ƒ4—ÇMß6× ·³ åå2ÅP¡'• +á6IóF½y!õ%‘;…2£¯!¡"Ÿ¥ƒõQÉ ÿïl«Ë ¯4Õ7YÏ)³.± ‡3ýû_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ß%Ó#éOÕ ßŸëí&›J³ó:³§!:±#uÛ7Ç9·e·Å.Ç6«"Ç¡Á ó`ß~›?5›QÇÑ=óã#'õd±2+§c‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± §^‹"‹:U/‹ñ0¹?µ;‰=;µ NÃ+eÑ ¡7ƒVWÍÝ8ÃEe™Õ!¡®Á“‘9¿˜¯ûÝP»‹‹rõUÕI£#ùk›¹Ý8ñ»gÍ +­m¿/› ¿„ƒÏR—l³™÷"¯‰TŸŒÿbÛ^ËvÕ ‰vå%‡›!¥)…Eç"›Ùxç3Á Ñ‚Ÿa¡£")ñ Ãç#õç7ÓP‹.ûy÷+ûlá¿£ É ùcÕ•AÅC¹2Ï(ñ¥ É"Ó#ù2» Å¥ª¡Žï!‹Û›•aÝ £PÃ?™ å4‡ +Ãï$‡ ‡#ù +û3<§‚£3:ó8U›h¡ ‡“ VÍ[µL,»6÷RåÕìã σ Çi“AÇ+áã(qË…ï’½ý%lj#¯cë“7˳>¹•õ5›ÕN¯ÇU‰i÷ß}ÑžÉ:Ã?› +éãÿUÉžmÇE-Ï »)Û.ñß‘8 +;‘(»I­8ë£U6‘Ù#ñN»Y“½ 3­89ùÿëÇ0ÓIãŽà É9×(Ù0±TÇËÛ +ÝQ1 +µ‰‰ ©íǦÇo3™ õó4©?í%ïX½­#ã‹õu£fÍÓ/Á«"Ýé„φ· +í$å|`/©¯»#U‰%é‚«*C‡)‘«+ý )ó í^¿!—Oï’Í?Ù$Ë¡’‡ —7™{‹8ÓÙ «^×KË— Õ$áy7© +å.•cŸ7ów“¿K³0Ó íl'Ï +ËX)©!é*ë{é¥ób9'åZÿïÅ!ù.Ÿ"ÁC× ‰Ç ÏF» ç…ÅG¥7™i¡ ÓŸš§ »;¿ ™3õ «}Ï! ù8‡xÛ7§A¹ Ó\¥ ûxÙ8ñ!—z¿‘¯9ã“9™s‘"—˜ù ç·E×.³7£¥B³[Í7“|í!ɹµ ÿE¿5ï5!×=ýݯ8ƒßyÉ¥‘Í›#íO¡!µ™&½í7¹GM•6·V…!£Pùû Ã$­bë1ãXù“÷?×çÅ.‰ûÃQƒÃé#½&ý#¡ §6Ï­Ù"õã»6Ù]ãÓgÑ"áýX‡S÷;»óPã$£?‡ ·0á7Ç>­(á/Õ9óZÏ+óÕ!É›[É&ù ³<› ëƒÙa»R«íKÅ0Ïçcç‰!g‚±™$_Á"Ç<é åÝ ÷b±HƒÝxûÓO• +ù\•"ÃýŽÇ !»6ñ˜ÍCß¹½Z™Ëgç£ ßï“)íP‘ÿ™!ùµ ‰*ùJ—.Õ ·(£ÿ›/÷J±ýi• « í!é6§ûá$Ó(ë%«*ÛKå÷:µ—$¹<ý%ÿ«0á ¹Å‘× ×+± Ã*ËHÁág‰#ÝÅùK« ÿà ¯{§¥ÍÉgËïN£ßó%ÕTç ¥#Ù +m£Uà +«*Ýn½ E…4ß%—Ù:Ñe“ ƒ:»å »$¯N±¡,‡B'ýŸ"»‹9ý"Íåó••¥ïí)¿Bû¡;¥ !Û‰J7<ƒ¹ëùý{é ËkùÉ@áÍF×M…¹½#•ïY͇Ká.C¿"£ë:“,Ã##·ñ5Á•çû7‰'û%Û‘M‘3‡4§”ÝV—;Ñ™ûIõ(ñ#ű5‰Nµ å.÷'óY¥9…V™ +áN¯3ÙN‹?ÕMÑ%·BÉÁ@ÁÅu¡.·ã"©`¥=ó ãßE£.Ç +Ÿ‘E§ ÏÁ2épó…pÕžÛí Ù›háë>Ó<Ùï1ç7¡Q¡óƒ¿«é‘aƒ­Põ-ÿ¥á?à +›ï[óš§ŸT™Ãù}Ç%8×Ý ¥Ï)·9Û:ótËýÕh·k£ßÛƒ…=Ï3‰•Á««ùŸ"» ­7ï*Á é*ó5—“ƒ™ËOåùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰Á ‡ Õ>é#­.ÝŸ7ϯ Ý8ã­ã½NÉÁ Ÿ'•å"ƒÙé«9å×`¯‡’õ¿ +á5— +¿1÷© í6ã% § ±M‹‡í"¿ õ/Ÿ û™Oßåë$™Ç6»Å1©¯"ý•…›#ã±&±…2õý ßÙ#Å!Ï#(¥µ#•(×"­"×õ— ƒ&ÿ»Hñ ï³7»ë$Ù éÃ#©Ë!£ Í9­2™ ñ ‰(›#ÇD×,¡#½½¥ «#•Ï"Ù-Õÿ ƒ¿0û ÷±"ƒ(±4‘ó.«9Ýí9ûÍ%Ë0ïÓ!—Û_µ?»K‹™]û1çwÉ—¢YÕ«bÃJ­˜É³ƒTí¡ƒnÁ³—ý +hk•rï!ÁX5ƒgÍIãÿtÃ(¿…‹™!Ý4™*{eï8ëå0¥Të£-ó0Ññà ×ûaé&½é3×ß‹¡a÷…-Ë(åV“U ³17õ*“&ÝÑ/ç>ã"Ñ÷ˆÉá׃Xû™¹,í£%ë!§•1÷P…ù½bÃ(ç Ç8ÝÝ1Ç«,¥"¹0·QÍ-Ï ‡4Ý «1åµ+à ó·ëCÅ ­0…Å=×»6•’‘2»6í"×#ÝPÁ_™éDý/·66Ë +Ù-…í»~Ù ¡å“ Éb¹­_Ý1å÷ íW•&é óEÉ:ë(ë“#áëJá Ý"ù'ù/Ï»&³*Ý)á ‡ ÷(Ç áEÑ3ƒrÍ××]Ź…z»‘·må!í»!ÿ÷c•}å<ƒ\û ¥WÁ —»§ó1ÏK½=ÓÙ1“… ï(·é"•í§1ïJÁMñ$¹ß%…OÅãÑÇB›“Á˯ù=ƒ«hû’“Vçùs«kß#ëp¹/­¨£Bá—Õ‹ŸX›2ûKÁ4ã1«CåGÅFÍÇß‹;ÿ?ÅAó»ë9]ÑGÍ%ù3áÃÁ"½:ù;¹ ׫:± (Ãý å#åT±"×å™NçÃÇ£<Û­™Ý"Ïaÿß)˹ »8ŸÇƒ›ã'õ Ë6¹§Ç ù+Å'ïù(³ Å÷"Çm‹L÷9çï +õ!Ý=±ë©WÓTVŸXÇDé@2çß!»+ûã"í$ÙKÙ…tñ³Ñ:­$ñ<å=Ý5•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µs3Ázã½ãcý/ƒ ‹ é:£:á'• “2¿ +ë08»Ý}¹!©­jË&ùåD…« ¡]…~÷§ íJÑ#±*íf±÷5ÿ\¿ +é4—D‰/¥PÉáÁ:ß?×ñmG» ù§"Ë%á,§-•FÙý$?¿•Û8Õb½8ƒç-•P• ½6‘å5á5½:ñ Í!/ƒo½±Å|§ˆÇ2í6×3CíñDG£6í7©.ç 1…Rýç éLá.Û …8Åq7Åå8³ ÏÝ4×Ý8勵©b­Ù@·K™ÑA©Wó·’×#/£—>ó"ã£/µ7‡› +#ÇE¿+±™ ¯­?­1ÑÇKñ ×6Ëù"Õ¡qQ%¡t¹¤õ‰U­:Å-‘>ÿñaÓšýˆߢá&+ó­…§ +õÛÑ•‹ÕŸ%ù£oé)ÏAÍAã !Ù1µ@ÕMÇß«&ù¹@ñ>9ë ÷%/¥O@#¿3·<‹A‹%/¹r-á-CÍ[ý)ór›×2ë>©ÿ.ãÍDç(§¡Ó&#ÛE·3Á[‡:Ù,«­é7Ë«7•«:±Gñ8û{“"ï¡:û=ó•%íŸG©7… ï¥E»?¹<¡6£4Ù%ã#£ ß8å ±!›xÝ%ÇyßïRç©H­J§Ÿ‰NÁ•Ï ‹Û¡0¹ +·Hû¯çOc£ß…Lß!ÿ# +›•É4õ8Õ=Ý +éÑ!áý£F©»)ëÕ5Í7“šñv¿Ëa<ýY·¡‡¦¯<­Ã'³‰¡XÉ'“wçÑ’Ç›¥V×…£%¥¡‰õ.³nÝ©¡©ÿ)iÑ;• ½»8õ×l‹3ÕLÃSã"&Ã@¡nÛ›c“1¥­z«(£CS¥>»0DQ½]Ÿ マ]áa¥3·UŸqï—@íhË¡n­ Ó"épiÑÁ!Ã)BÃ~iÍÿoS¹AÙëA§µ×GIŸÇíAéS‰–±áAÍ)±vïáeQ·G±#Çï@ËEKûó^Qõ=Ãa•|ë>o±C‰Y‡8“u—n¹+£{ÍmQ›PÍ ówÏ­!™9™³?[Ï7ÙNç}!‰o·LŸ?Á.­O±ëE‰‰WŸ £y_±3ÿ7ÁŸël×F÷_Eá#ûVÅDQÑ*‡eÝ,±Ë™0ï!¹2kSûEW¹X¡ +½Lw›D¯9¡La—>å@S»6ßl鯧|õkµn×"…!Í… ©“·‘ƒ ÷õž•› ‹$ëoëm×7—#ÇQË”©ƒ›[íQ­Çá +ùó§¡«ƒMÇÛ(±[µfZ‘-¡Vé\«©ŽÓ‹x©(‰™ŸJû7ƒŽÕÁÙƒ¿±±©³zËRt׃ë=‰P»LïÙ\Á=Ëý—&›ý8­7· ‹dÓŠÿW•#÷¹ í.ŸP‡­“ Ý ù`ï Åë?÷™É¿ãKù"Õ>…„¡ï +™<Ï"ÕE¿$¿YÅÏE££ç6#µýÉ7ÇÝ+ñõPé É Ñ#×­5“ó­¥p‡Fá=ƒÓ*Ý|‰(½tùåÕhÃéý>û ¥, µAó™Qß!§¡a¥4Ñ +éP± ùß&ñ%‰­pù·•»Ÿ/»· +‹á ×GÛ Û‰H‡VwÙ#· ßF“Ÿõ°¡Cƒ *­7©>ó9© Í%ƒ™"ש"ÍB¡™q½9—]¡"ßÏ›oÙ7‘¿$ÉX…¬åÏã«v±» Ã#³_Ù ‹½4ùqÇ0ï ­¯‹!§ÇÝlƒ„ÉB|Á(Íxõ4…"¯3Õ3û¡Õ„ñ—V•B­[•'Qã!ùJ­+åb¿(ŸP—ûfÕÕ„4ýuñMù5‹~ÁRû4ÛX6=‡”ÉÝP‡½\ï­Wí,Q½·\ÁÉxÕYÉQÁJûJÇ•… +Ía¡ •^¿&³Ç)ßV¹;ûLÙ3•a…(ùõѹ$É,éAÃ:Í …@ŸC· ‡#™ +­ë±ÿ«¡ª³õ6ó:צŒ‹ —u…\¿H-áÑyŸ*¥nå·oÿ&Ûу“žÙŒÉ Ó«ï²Ùž.ß|ÇŸõù¦­^㘃C« ͤ?¿@7Ý'ÁÓý寿¢ÏhÙ(‰ËátÓ‚‘­ +ƒÑQÙA»— …€Ã%ût¯ í4«i‰Lù½ŸQóa¡†ÛªÙKõP¡@ÅmÁ‘Tá•*ÍOÏAãÛ]›û'•$ï ÅJßh½ ƒ\—7Ç/÷aµËŠË…h‘Qù8É­>¡IéE™© ïVçë$ÁKÑË«÷@¥Uñ: +™Ha³vù7ÃM×`éÍa©ùMÅHå>rå[õµ É;³`÷ŽË¥‹Ï6ádß&Á¯…í"·Ï<—ï§¡ ¥ ƒ?U§%»!¡É9«5aí¡í!£e‘Aáï·#±£ +·ÿ*·I_Ÿ:ÿÉ`ùg³¡ýJ‹”›>Ù›q¡BÏŠQ‰ï Û~¡DÅ4…ÁTÓXË„ÕtÉ> +ãz·÷Vɤ×^£@ÛBñx«D±‚Íp‹§ÿ­Ëmµ*Ǭé +£ÿJÕ«`­ýšÍ–%Ÿ_¯Í.ñ›Ÿ§ÙX‹g/›ÿ4…SÙ Ç!ûZË&ÓïW­ ëTå Ñm©áY·>ƒx¨›5óžÍ1ù„S“†ÃÝ™r³“•‘Ë?ÿ屩d¡ Ç™Ïiý•©D­—>á@”ÉwÉù3¯ ë!×Í#ý*ý0ƒ"‘«;µñUÑNÍ=•ß Å/í» ÙA£ ÝZå*éÙ +ß‘ +à +ñlÇÉ,û9Ù'¯•@ËgÝŽÑ]‰JM³Qcóß ·Ó§{ûs³Ó:ç!±É¿c¥.ë3ù7Sï8‡•b·™ ûårá ý +µ¥níÇËÅFéÿ*ŸÅ+tõ“#“Ó ¥8í“-ç~¥¡é ±³}õ­ת‰—“eO—·óÓÙñ£÷"õ;¹³·£™ñ‡sÿ'Á`•ǃ™cå\DÕšÅ&ãAù<ÅIû§—&µÁ6‰jã•uû:Ç'ó¢é#±F«{Ë®™צÍD=Ó`Ýy“C—2©Ñ »lá +½3›dÙ§ýQ‡.ƒ¥±oí¹ …©¡Qà ý|» ¥Bµ ÇLÿ Å· +õ—ÿ,ÁÉ ™wÙ +qãåE“)çn—Tµ¡0½@…z³ŸbËC— ¥?•q¯ˆ±xÑ…³Ë~ѯa­?ÝI»m¥"«]×DÿaÍû•HK‘8©P‹4Á8Å@™ ÍŠÑ–™“6—OÇcó‹8“.«ÕOÝdÃçëF›ÝÛ™D¥8½iõ ½p·!±@Ñšû›sÍ&í€Ó ó"žé…ñ®½9á†Í·‘¯«Õ ßn‰ +‡¹Ný¡¢å#÷ˆ*í[óUŸ)ŸF÷l¿Ž—í¥‹=¯ “jé!·W¡pÝYסÍgŸ4ñf¯ñIÁ5ÿÉ_ù÷•» W‹’«)¢± ™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&Û”‡‚½¤ÓFçDý˜ãF“Ã,ÛÝ\™¥§‘g“2Z÷ ×{¡“F÷*§%½‡×(cï ýA­>ý&ç‰fÃï?—?Õ@§(áC¹TÑß0§'ßDÑ(¯*‘‡f¡xÑ%ëjû¹…xÛ(ó©@ñ-ÅM©©Ç'‡ךчj™Û{—¯ÕNÑÑ7¡ ³Bý7ç÷™§ ý_ÍQç’õ-/Ÿ © “:å «~ó í’׋#÷¬ÅrÍ£¨‡5…3ûe‹%׳ ‡^©;•{¡Ÿ…©«³›“ ›„5¯»s¯@§SÕ+ƒ/ч­a›DÕx‰¤¯ ƒo¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†Û©û×r‹aëÙÙσ`‡³³ï÷k¯#½§Ï ÃN“ +ÿLÙÃËálÍ©O¯Ÿ‘$™d‘¬…q‹9¹]ã6£o‘–ù‰)õ Á@ã +áIí=É=ù »çÛÙoç ›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&ƒãR¹ +‰<75«Dç'›$Ó+Ù@¿0‰ ù?q‘½"ÿ‹ ñå ½(§E7©·!í0Ç@%ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ å±MŸ +§W•#‰á'£KÍ­@«3¥é;›A³ µL·0¯ ¿ùgýÃ2Ÿ?ù!»5¥Aù×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ñ ÛJù/Û×ßD¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0¹—¡%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­Lß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&‡ã:!Í@ó‰#ë!—@í‹%µ +ÿù"­ÉÑQŸ^áÅ4×ã¥uå¡Ñ×<‹5s·á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Ý#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/õ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G×›ÿ4ý<íi¥½aé +E“½xûcíŠÏ uŸB¥VËV颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;¯±5E?¡;&íxűÓBÏE­!§;½¯­g¡*¯yß+»Cm£™7÷£DÑ ¿B;Á:©ë"Ï ³ƒP«'•±RÃe»=ÛÝ@ŸPËjÝe¡ÿkƒdÝT áõ>ãR¡±Ó6Ó5_§ …>ËT©I‘7»WÏ¡lí » Ÿ“é0é8W§#M‰XÓe­D‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé _‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õ×ɃßUÙÉGýÕßåý×)ßZ«ÇÇ,©:—ó‹ß6Ý1Çeá™)Ûf½)­éb«³1»÷ÿK¯Û)ËûDËÙ&ÙF™'³ ­Ï‡«`÷é4“ùl_ùYÍ“sᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Çדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯ŠËN¹½¥ +£Ù½n•ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû¥Íbý Ç1ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃBÙ¡­W›ù9õI½#ËBÙS«ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ßïT·FÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•ÕEÏ-±± ë û9¡(ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇC'á"·6Õ9Ÿ"•0á ù"=—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.‡a§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÏ>ë™Ã³7ËÃg‘ã/ñ6ǻݞ¿³¿^å Ùba›9‘ …§ ïUáë’Ýã/ñ™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’‘B‘ ÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõ“Eñ8™˜× +Ï~‰'ÝH¹7í +Ÿ—!ó‘½2ùL³\áUÛ˜³ ߇ »r£7õ0å8Ë8ÙLÓÓ’¹Sùÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}÷4¡Õï §a¿ï•¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ ëí>ÇÓM½k£Ë‹›4×c¯±@í²é[‘7Å +?×ZÑZŸÛOõ?í ƒ%Ë¡4ï_I¡P·;±‹,›¥8Õ S7ÿí#»!ßiã$“[ë--ƒ*¯"¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©p÷ ¹$[ùl±]¯AéAù›eû#—Y¯9Á ­Û6ïAñiŸç[ñ· ¹q—Ÿ5ÁDûÙ"Å#·"¥qý|o³ c¯ñwÉaÁ…»,«tŸDûù9‰CÏWß6ÛéSÓ±6WÅ¿S©9åbû ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2‘ Ïõó!“Q£!ÏIíbñûZÇ8ÛJ×9Ñfý1§0›&©·¤ùyÉ7G‹ ¹[¡ ß +ã g÷%›A© ݹ}÷(¹bïc«!ç;‡ÿ!Ã"ƒ°§§zg‹N×a»Á!½¥Ó ¥‰§ •§ ½‘«™aµ—µ7ù–£ÇbÁe·e… •#§"Áû?± +·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñ­ Ï9cÓ§©#·{_…moûU™ +M«“nÕlË_Sù$á;í+íx/µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõÕ‡Í|Ã-™@Ë +Ý6kϽ9•/— Çv‘[ió?Ñ,¹n͈¹Ù¢Ù‘sËá ·]“‰Ý¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ QùÉ#S• +É7±PÑ(·§±ƒ É»Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…ý ‡k5‰%Ý/J• —cáBñ ã:ƒù6©£nå£ —ß#WŸmù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­Í$³,e­÷¯§5¿0‰¯÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥o¿°‹™‡ï7VÁÛ×7 ÷jݳ8µ ×™B›-K«LÇWå ¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ë¥D‡DÓWŸŽÙj‘cåñõ +Ç“µó|åOÑ„ñƒMçvù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½mé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"kë¡’ƒy­;ó!—#K¡5Ùï#?×m¹Qá¯"¯ õ8“ Ÿ;Û`»5ó ]©Õ +M­[‘ù!û%kß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ‰£˜e»{aƒA“]“©7õ…¯®Å—£Uá-¡Y½”TŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!Ÿd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wßYë™Ùsã>½<óƒ"ï“Í6Ï;ãEU¡8« mÏ•‘½só@¿8_—‹÷š+“\k·Y·AéO÷¤»yý8QÁùyýA“7ÿ›±$}ÛÃA¹£q«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1g·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› é ÿ:“«4¯lÃ1ÿŸïn‘Ãm¿7½/Ánõ–•»Oəǧ‰²¥(é|é—=ÿ!Ë.á¤ë ËWo­.ÏQ“¦bá%õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8ƒó•OÕ"¯p±,÷£(•ERÁW‹ÙTË—¹1%«%—µS¿1å&•Ó·Z÷“\ýx»*ŸW¿‡ŸïƒË!©’ñB©aÑ~¯SÓœ½b»¡±шÍšçM¡Ÿ„¹ Åd×­ïm£tçLÓÇ…Ñ9Ý +å-ÿñ'åš3ÏŸ×&Å̓ÿ¡‘s™Œ‡qÍu­IÕmÕ<¡Ó[£Ÿnß ƒó[û7ÕÓu›¥hÿ>É©µ”ï@¤/Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"ùPY…¯ŇYŸjŸ ¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7Ç“”KË¥ƒ™kÓ•§m÷óõ…P‘!ée£BÅË’»¥‘‘^‡ ñhåŸËó0¿e±¯Ñ ×—“·f +8íY£“ +£LÙnó ñVÛ ã=ÿ é‰:ãC¡ +ÇNÉië"µñ}ï(¡ Ÿ6§P½M©7§óx¿šû Æ« ÙO·!ÍY…“5ƒMù Ó!±’É ×!•7·lÅ Ÿñ™Cµ9¥ ÿë!±× ýEï7ˆÇ$FÕ‡£9‰7‘Në8«3½NÑ#Çl§’á™K—7ëañ û,½÷`å ßaÿ §•™ +ë9ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!0ÿ Åg‹‘Sá ±W… —_ÿK« ï"ÍÃ7•?×ýS™é••¡µŒÓ0ûD‹/÷&ß«6¿Ó"ÓKƒ+³%¹#ën +ç$Q× õ½GÙå +·ó£!Á;—“—ËDÁEÿG·‹±‹ÉgÁ½$Í#ï%ý+¡½ÿ¥"Çjß" õ€Ý³ é ëï’ù@» ¯_…M™zé89’»eïA§§G÷;Ù`Í"Û‹Ÿ— +Ÿ¿“ÏK½7ç)Ñxéaï>ípÑ"çVÛ ËïZ•,Ññ©ÅqÏ"$Ó ¡é‘…&z¯¡÷6ɹA‡ §®ý˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_ñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3ó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#ÁN¥‘ר·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o…Ží ×Jë ¿¬ñiÁ “qÛvËÏ :¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–©ë;¥£]ïÅ­ÇF×W‘™·%­fÛ­·9çBݪÉnýcù{‰®¯ ƒ2Yó*á”›&Yûm¿GŨ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£ói‰Íëƒ[µ&ŸóÁh›+¿~k‘KÙ²•y½R¯–¯°ïDÑIí1Ç-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0Õ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3¹`»tå—™„Ï5ݲ¥f©sá«5±.Ëi‹/ŸwíÏZý@/›Á¹>ïa;9£· 韓J5¥9‹Û4™3Áwé3½ +¹R×É©tÇß2…ËÝ=µ%­œ;ÃÕ“pã)•#­¥ ˵&?à ­¿9§BÇ[ûNéõR­‰w¥7—°•¨é˜·û–ï=É5§L³°«;ï +±Ñh± +µVŸˆ×‹_MŸ,Ýr»™Ý ‰ ¯híŒÏO»­õ~Ù"“.ý¬³O"óœÕSÇ« ƒY¿>‡ƒ«OñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅÝŒëg³µŠ­…¯û‰Ÿ¯vÿ¹­Eã¬Ë"ï%Ÿcç%¯6Ï8•ÝmßC± ½‡Aç\ÝLíM¹«Í]Ë7󆛖›gà Íxù ÿPÍ «”Ý5Óa™±{Ù&¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9•“«›±1éŸ:«Iñ ßMÓ€·!¹ížÕoß6±k µoõá cÓ û ÝŸHQ…[ß0¹­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“µšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7¥I½:1‘#écû"…o‰ +ãDý!ÿfû¡™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6¯ +é4‰?4“©)ƒ9“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © +éOïÝ4£>“rµ"‰E‡.Á ­Ñ&õ!¯RçhÝÝ•"ßnë— ŸJÃý!ÑPÝ«›0Ñ·¡‡XëEí‹9—•|›§«1‹Ÿû§vÇnç õ …7Í>ûLé*Û/‘"¿]× +÷ ý6ÕqÉFÙ ‡+I‡’û"Ñ#\ñ0ß]9‰dYÁ ó‹z¹!‰Ó’g“(×|á²Á]Á&›ñŸ›IÍ3Éõ ç3ŸÑ å&ÅK±Yóé åV³µ9«2óI¡+ƒ"ù‘®ù)§då¥í©±ÝO±c׋Û +“lÍ"‘*Ã]ƒ˜Ùf™m“å•6‘'ƒzÉuÃZ‹€ßEà ‘ˆÙ7ýK—yó¬÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ©KÁyÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*Ûœ©mÁ…™^Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3×Ç|ë ¹Á'ƒ.ã Û3×óݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»å€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¡¯§õ© ¿6Q½ˆ»<ÃP‘‰±-áëv¯x·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:å)õ ½_¥;‹kóë •<ÕBŸß8åÿ©5éA‹;ã ½DÏÑçAç«ÕAµÇL¡]Õ3ÑF× 8±!¡IŸ ÑDσ*·:×3÷!ó8³9ñûGýJùO¯•#½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë áŸ9Ã^Í6Åz×3N¹:³‡óÓ§ÉKï_ŸSÙ!«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&͆ÏÕ#©™$ňçk»+“z&ýˆÓ|Åo¹4œ§ãÝK× «g3·iëfÔÓ=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}ó­*³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"§R8Á,õ0‹ ×Ç•ááªõ‡z÷-›¿©n¡×@É +鬳:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&ß{£ý ÏÛ[-¡Léoà +Ó.<—iÕßtÿq¡­b›/± +ÁSù†é'Õ~˪Ù¥6¡^™g‹[AÃGÛAý±`é8éyñLËW÷7RË ©ù‚©„1Ñ+E­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒÅ­ ¯•Å<õe‡%Ùœ—F½‰›©&ÛAã)ÙŸË4ç*»‰o¡GÕA“où ù‘Ë érËšõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£u±Ï~­ÕXß3¹Då¥'í¯[³eé"ã‡uÉ‘óFµD"Õ”Ñ@ÏVÿ·#ý‹Å±«ÿ=ñ™±–±VçÏ¢©©1ß«¥Mµió0åQÉ0ñ¡™íUÑA× ×¥ çzç1Ñ™J§eÁ… ë +·@¹ŸÑ49Õ•ó]ïýlï ŸÑ+—™ƒz±=Û +ÑvóE— ß’f‡ý:™ ­ezÿ?ÍHs!³»V‘ÓCÕ6õz— Ý8 ín­Ñ8é—é™v¡…#£Œ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6µƒ‡9ùõëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8½+ÍËç‘¥ñ3¥‘0‰&‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/ǃ&Ïõ·³ÿ)ùPÝ&á=Ÿõ…ÍÙ¯!³ ¯RÍ0ÿ »ó­&ß=³Ã‡‹)¹ “ÇÍ ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +˫˳ ¡¯ Ï{°ÿBÑ!×8*Vßçá£&‹«F@±xÑ…³Ë~Ñ“BÁm¯a­?»m¥"«]×DÿaÍû½Õ%•HK‘8©PÁ8Å@Ñ–™‹q÷ “6—OÏÓ'Çcó‹8“.«ÕOÝdÃçëF›ÝÛ™D¥8½iõ ½p·!±@ÑšûÍ&í€Ó ó"žé…ñ®½9á†Í·‘¯«Õ ùT‘%RÇœé—áoßn‰ +‡¹Ný¡¢©íQå#÷ˆ*í[óUŸ)ŸF÷l¿Ž—í¥‹=¯ “jé!·W¡pÝYסÍgŸ4ñf¯ñIÁ5ÿÉ_ù÷•» W‹’«)¢™—¥{Å…áV±qã•£Dû$Ña‘ ×$•‰“ˆƒ&áÛ”‡‚½¤ÓF;çDý˜ãF“Ã,ÛÝ\™¥§‘g“2Z÷ ×{¡“F÷*§%½‡×(cï ýA­>ý&ç‰fÃï?—?Õ@§(áC¹TÑß0§'ßDÑ(¯*‘‡f¡xÑ%ëjû¹…xÛ(ó©@ñ-™P›šÅM©©Ç'‡ךÑ™Û{—¯ÕNçWÑÑ7¡ ‹°á«³Bý7ç÷™§ ÍQç’õ-/Ÿ mÏ"© “:å «~™%ýy±SÛ!‰2á6—9ó í’“IË8׋#÷¬ÅrÍ£¨‡5…3ûe‹%׳ ‡^©;•{¡Ÿ…©«³›“ ›„5§>û÷Õ ¯»s¡E‹c¯@§S‰„Õ+ƒ/Ç!ч­a›DÕx‰¤¯ ƒoÛ¡÷ÉQù‡¹=¥“Ýn©¯4±Õ¨Í9©hà Yƒ5É¥†Û©û×r‹aëÙÙσ`‡³³ï÷k¯#½§Ï ÃN“ +ÿLÙÃËálÍ©O¯Ÿ‘$™›d‘¬…q‹9¹]ã6£o‘–÷•”ù‰)Á@ã +áIí=É=ù »çÛÙoç ›¡qÓ!ŸÅ!Ón±où9«8%Q+ñE9µ#ñ ˃C!Õ“ Û%Ó+‘#•&ƒãR¹ +‰<75«Dç'›$Ó+Ù@¿0‰ ù?q‘½"ÿ‹ ñå ½(§E7©·!í0Ç@%•Û¡"ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ùe›“ å±MŸ +§W•#‰á'£KÍé;›A³ µL·0¯ ¿ùgýÃ2Ÿ?ù!»5¥Aù×+‘Që» ÇWù×T©"Õ‘)Õ—8Í ë"÷D‘4•?Ù!Ë)ûCó Ñ ÛJù/Û×ßD¿Ÿ‘…íTˇ!‰(Å%Ï`ýÝ ¯»h¹(ó‰ à +™ßR³ ßùí)Ñ­9— —»§.…"é=Ù-“#¯Ë í,—M»é ‰C%¥Õ ½*­!Û÷<½ »+ù"ï§8É0¹—¡%…ù<›ÕL¿§9›í&/í$Å6ë<¥ +­Lß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&‡ã:!Í@ó‰#ë!—@í‹%µ +ÿù"­ÉÑQŸ^áÅ4×ã¥u—Û6“;gå¡Ñ×<‹5s·á§g»mË(©ÏR¯[ϘÕeÁEOƒý`¥4eÉ?Ý#· a÷C‰”Õ'§\Çc‘~Ù‘RÇ>ƒß/õ&ÿg‰‹õAI£ñb—ªÓ%[õ>Õ:½G×›ÿ4ý<íi¥½aé +E“½xûcíŠÏ uŸB¥VËVµùQç@]颓5#ãx›²½ ñ…m‰Ç^“· oÉ@Ñ…—@;¯±5E?¡;&íx¹„‰?ãã ÝcűÓBÏE­!§;½¯­g¡*¯yß+»Cm£™7÷£DÑ ë"Ï ³ƒP«'•±RÃe»=ÛÝ@ŸPËjÝe¡ÿkƒdÝT áõ>ãR¡Å„±Ó6Ó5_§ …>ËT©I‘7»WÏ¡lí » Ÿ“Ý;—«çT‘¢é0é8W§#M‰XÓe­D‡1D¯ÿvÙÝ“ç›óo—?ù ín§ÿn?· ÇA™GÏAËA¡ß!ïA±Q…No½V½VÝ=ß4U9åaëz™kóµ8R•Ï'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹õ £û=¹0Ý£7Ÿ¡S—‹Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&µ—¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(í¹.ù:™Ñé _ñ-‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õ×ɃßUÙÉGýÕßåý×)ßZ«ÇÇ,©:—ó‹ß6Ý1Çeá™)Ûf½)­éb1»÷ÿK¯Û)ËûDËÙ&ÙF™'³ ­Ï‡«`÷é4“ùl_ùYÍ“sᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Çדåû瘿˅ù•QåQ ƒí'‹0‹‰D¯ŠËN¹½¥ +£Ù½n•ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„÷áÛIû¥Íbý Ç1ŸOáÁç:áH—‡JуíïÙKµ'«¯‡G•Ù÷ó¡Û§?±EÁ¯ï åIãÕ!³ …\ɲû±¥,“Eë˜Ç;Ï·#÷ÛaíX³±*‰Ù#åKó +ÁwÅ9µ=óÃBÙ¡­W›ù9õI½#ËBÙS«ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ßïT·FÃË +¹³TÃ&ý:åÉÍ6½ …a#ë'õ» ·Çë•á‘W¿ÕEÏ-±± ë û9¡(Bé4ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇCÃ÷¹¥Ë+'á"·6Õ9Ÿ"•0á ù"=¿%¯L¹”—£#Ã¥‡@Ý(ûoi ¡d‘ £ù‹§1ë?7«©‰K™ áK§‰=…™ ¿I™_¯û%“©8ñÑO™Áx± ó.‡a§!£m2×NÇdÝLÑ›³kÅ­2ñ,×`ñNÛÃ’٠ݥg‘{£Re‘Z÷O—ÓNEñÏ>ë™Ã³7ËÃg‘ã/ñ6ǻݞ¿³¿^å Ùba›9‘ …§ ïUáë’Ýã/ñ™ëy£Ñ…{û 1‡7Û£:«ù¨Á+ƒ ßšµ +•=ƒ#Á~É͉ۋ·íW« ÑŸ ó e‹ ¹9Í(¡cù;ÙMƒ ÿZÁ%•Õ’‘B‘ ÷€"Õ£7ÓÇ’“1ó6i•#½ ‹ çù;¥4¥M»˜± ᘷ é÷…u·4û©Ùvé5ûõ“Eñ8™˜× +Ï~‰'ÝH¹7í +Ÿ—!ó‘½2ùL³\áUÛ˜³ ߇ õ0å8Ë8ÙLÓÓ’¹Sùÿj›#¡lï ¥jÙ3Å(§n½cÕLÝ!Å-¡8Ë3ÑŸ}Á0Ý8÷4¡Õï §a¿ï•¥t¹4‘#…ñ]Õ²µ{Û…}5óÛ ëí>ÇÓM½k£Ë‹›4×c¯±@í²é[‘7Å +?×ZÑZŸÛOõ?í ƒ%Ë¡4ï_I¡P·;±‹,›¥8Õ SÕ »"ýpO7ÿí#»!õAÅ…ßiã$“[Á¯¹“që--ƒ*¯"³½7› +¡±é$…A»Í6·7ÙJ]‡‹§Dá7õUÑJc³$Ï“>©¡ ¯8·ÿm)Ù90ç¡8›µ!‡ a©pÝ·9kéd÷ ¹$[ùl±]¯AéAù›eû#—Y¯9Á Õa›!å¹ +­Û6ïAñiŸ›mÕ +eç[ñ· ã»{ǯŸ å"—;¹q—Ÿ5ÁDûÙ"Å#·"¥qý|o³ c¯ñwÉaÁ…»,«tŸDûù9ýo¯SŸ‰CÏWß6ÛéSÓ±6WÅ¿S©9åbû ûSÓ?émD™/[»LÅ!£`û&ï·1ß(«2µ#‘ Ïõó!“Q£!ÏIíbñûZÇ8ÛJû‡×9Ñfý1§0›&©·¤ùyÉ7G‹ ¹[¡ ß +ã g÷%›A© ݹ}÷(¹bïc«!ç;‡ÿ!Ã"ƒ°§§zg‹N×a»Á!½¥Ó ¥‰§ •§ ½‘«™aµ—µ7ù–£ÇbÁe·e…‹T •#§"Áû?± +·5gÕ§J‰ÇÍ µJåA]³ó#ñtÓç!×wñÓ§©#·{_…moûU™ +M«“nÕlË_Sù$á;í+íx/µ‹_‡ ›£0uQï!…/û8Oã(Ç?W×$‘©ÏnÓWõÕ‡Í|Ã-™@Ë +Ý6kϽ9•/— Çv[‘[ió?ÉÑ,¹n͈¹Ù¢Ù‘sËá ·]“‰ÝÇ~¹fiá Í8ï”ñ/ÍW“Ë ‰¢ƒ9qÅ!ß!çi¥ QùÉ#S• +É7×™çU±PÕ_ƒýõ”Ñ(·§±ƒ É—0ÉRaù »Bá8i¡ ù•·R±S­Ùmƒ —1a‹ +ï8\Áž‰ ¹…ý ß§‡k5‰%Ý/J• —cáBñ ã:ƒù6©£nå£ —ß#WŸmù'ÕÃç‘Ïÿ« ß’ßw£a×#á ýq¡½¹Œ­%Ý!ÑQk©²«f#Y«Kɨ·’ͱ‹i…gû£#‘ƒ É.•å•xï-é.‡­Í$³,e­ó5÷¯§5¿0‰¯÷¢ÇÓ‡Ÿ8ã Ï ‘Å·9¥o¿°‹™‡ï7VÁÛ×7 ÷jݳ8µ ×™B›-K«LÇWå ¡Uã!™’ï +”+ï{Så;õj‡UÏ ]×§ƒ]…[ÍÓ6Í +¡T·Ë8ó _Å]Ÿ[mÃ9å›l›,• m÷‡ï,õ— oaïg÷m‹×ë¥D‡DÓWŸŽÙj‘cåñõ +Ç“µó|åOÑ„ñƒMçvù2Ãé%_‘£6Ç=ß—9ß3ƒÇt¯j£Ã¥ùc¿JÛW÷žƒ‚ÿrAµ#½-٠é Ç8¡"Ï w½m…Ycé^±!Å¡™'ç£6û½„÷œû…Å oÙË¡"õS‘F©2ãÑ"kë¡’ƒy­;ó!—#K¡5Ùï#?×m¹Qá¯"¯ õ8“ Ÿ;Û`»5ó ]©Õ +M­[‘ù!û%k¿­ß7‰N©/Sÿ•«£Û‘ÉcßFK‡ ‰£˜e»{aƒA“]“©7õ…¯®Å—£Uá-¡Y½”TŸ;¹‹÷!µŸ…b³7… W…f¡ Õtcƒ ¯gÃ|¿ñï +Û ÷½&Åm_»¢Ÿ ‘lÍ!¯)Ÿd“Z™¹?™ Ñ­ ÿq_™aÃ"çz½Û@³»6‰¡µ­“FÃ!‹ ý»°óhÝ û:]‹…« á3é:_·ƒíLד$U› ¯iû"ŸmûÓ©zUÝqÛFÕD­‰ñ +•©ûë »‡QËg™#¯"Ç)Go›#›’Ë#·"¯Œ(ƒ a½wßYë™Ùsã>½<óƒ"ï“Í6ƒ(‰_ùãEU¡8« mÏ•‘½só@¿8_—‹÷š+“\k·Y·AéO÷¤»yý8QÁùyýA“7ÿ›±$}ÛÃA¹«ç Ù« ¹/Ç™<ÁÛ ³'±ïrý£¿™MÓÅ 1gçt·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõ©ó45‘É í“ÿýCÃ6M—ËóD·"¹­ +¡› ícé ÿ:“«4¯lÃ1ÿŸïn‘«Ãm¿7½/Ánõ–•»Oəǧ‰²¥(é|éÿ!Ë.á¤ë ËWo­.ÏQ“¦õa¥;õ +÷ù0÷S½Ï(û 㻣(Û(•!‹ É8ùƒó•OÕ"¯pƒ +á\·3±,÷£(•ERÁW‹ÙTË—ç8‹#·.“ís¹1%«%—µS¿1å&•Ó·ZÉU÷“\ýx»*ŸW¿‡ŸïƒË!—‰Å8«2©’ñB©aÑ~¯SÓœ½b»¡±шÍšçM¹ Ådïm£tçL©oÓÇ…Ñ9Ý +å-ÿñ'åš3ÏŸ×&Ë…Å̓õWÿ¡‘s™Œ‡q¹P« Íu­rÏ„­IÕmÕ<¡Ó[£Ÿnß ƒHó[û7ÕÓu›¥hÿ>É©µ”ï@¤‹/Ãíï"iÉ­›NŸ?Ó@ý Íų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵ»ß9£BóŸ>å8‹5¹>…:Ó ‘C—5¿S©³#‹Éq£"¿“s×ë''¡@óu—/•"¥på“4¿!9_?£"ùPY…¯ŇYŸjŸ ù™"¿,¹!Ù_Ù-5¿8µ(û WÑlû韙yƒ[¿7Ç“”Ù)zK]Ñ—©Ãe Ë¥ƒ™kÓ•§m÷óõ…P‘!ée£BÅË’»¥‘‘^‡ ñhåŸËó0¿e±¯Ñ ×—“·f +8íY£“ +ÿV£LÙnó ñVÛ ã=ÿ é‰:ãC¡ +ϳ|É…|ÇNÉië"µñ}«[»"ï(¡ Ÿ6§P½M©7§óx—eáM¿šû Í Ï!Æ« ÙO·!ÍY…“5ƒMù Ó!±’É ×!•7·lÅ Ÿñ™Cµ9¥ ÿë!±× ß‹¡#ýEï7µw¿7ˆÇ$FÕ‡£9‰7«3½NÑ#Çl§’á™K—7ëañ û,½÷`å ßaÿ £v…9§•™ +ë9ù;Ã9•Z¿#³b¿8¥<ï +‘L½5ë\Ñ m»!µµ5÷uÑ:0ÿ Åg‹‘Sá ±W… —_ÿK« ï"ÍÃ7•?×ýSÑ”™é••¡µŒûD‹/÷&ß«6ý•¥¿Ó"ÓKƒ+³%¹#ën +±/¿¿ áCç$Q× õ½GÙå +·ó£!Á;—ïF“¥#³¡í@—ËDÁEÿG·‹±‹ÉgÁ½$jã!Í#ï%ý+¡ÿ¥"Çjß" õ€«_¯Z¡ ݳ é ëï’ù@» ¯_…M™zé89’»eïAëï™Å!G÷;Ù`Í"Û‹Ÿ›7ÿ— +Ÿ¿“ÏK½7ç)Ñxéaï>­z"ípÑ"+“#ýÑ9çVÛ ËÝÑ9ïZ•,Ññ©ÅqÏ"$Ó ¡é‘…&z¯¡Ét÷6ë&ɹA‡ §®ý˃a¿8¡jEï¤Í„¡"Ë1—é¯%Ó{í_ñC«:Ãý=ã¨Ï­w›—¡Ï_-©ÿ›ë(!ï$•Iƒ7÷3ëGó!¿ªËû ©H±`ç™».Ñ©ÙGaû¥+¹Ï®Óžíà +ë<ßWë³—ë,…s¡—CñW‹1™uƒ-ÃS‹OùC߉Ç]ÿŸf‰“!¹õiÿƒgåóV‹'±Í!Å)Ë5ŸlÕë¹­‰Û‘ÿ#Ís¹ÁN¥‘ר·6‡Uï#«4¹}—‡4ÛPã—Ñ`Í ‡o…Ží ×Jë ¿¬ñiÁ “q§OùN…@ëå#óï[óL¥b…²ÛvËÏ :¡’¹‡Ý±¨­OïN×x©*£ïëY7ÕE£2ç&Á€Ùõ‡éj™4Ãzá–ñ²©ë;¥£]ïÅ­Ï”µuïí>ßQÑë ‹×W‘™·%­fÛ­—‡·9çBݪÉnýcù{‰®¯ ƒ2Yó*á”Ë›&Yûm¿GŨ‡ ç?ÿŸrWûM©ŸkUÃ#—o©±Q­lÁ™&Y׉ÏU€c‹J—ëoÉAˤ¿pùçû”á“'¿o‰£ói‰Íëƒ[µ&ŸóÁh›+¿~k‘KÙ²•y½R¯–ëc¯°ïDÑIí1ÅlE§#ÕjÇ-;í¯›:å1›±£6‰«uýz¥õ£cµ6­0Õ#OÅ¢‘E…›-ËDƒÑ)·C÷$‘ Ï‹ï—ñó”¿3¹`»tå—™„Ï5ݲ¥f©sá«5±.Ëi‹/ŸwíÏZý@/›Á¹>ïa;9£ñdÑ-·-m÷%ƒ· 韓J5¥9‹Û4™3Áwé3½ +¹R¹#ûí"#×É©tÇß2…ËÝ=µ%­œ;ÃÕ“pã)•#­¥ ˵&?à ­¿9§BéõRû–ï=«;µVŸˆ×»™Ý ‰ ¯híŒÏO»­ +õ~Ù"“.ý¬³O"óœÕSÇ« ƒY¿>‡ƒ«O•]»O©•mñGóÃŽ—L¿ŠÍõRŸ‘xéÏMÅÝŒëg³µŠ­…¯û‰Ÿ¯vÿ¹­Eã¬ç%ßC± ½‡A… û ýH›gà Íxù ÿPÍ «”Ý5ë@¹ ÷ßMÓa™±{Ù&¥2™6‹ Ë^ýtó6‘PÅ ™$³#Ÿ³Å3¹»—9ÏSß í(Ûpñ ßM¹ížÕoß6±k µoõá cÓ û ÝŸHQ…[­ É +ý9{)ý «k«×hÁ +¥EÇù9¡ _•,¹!ñUù +ÿ5YƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzɓϹñ!ÿ'cý…•Zƒÿ#‹7¥I½:1‘#écû"…o‰ +ãDý!ÿfû¡™¨Ÿ-å"ÅJË ©9ó ×@Ÿ$­"Ÿ¡(ÝP­$ó +ÿ8É%Ó ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3¯Ï ×D»+ý$ã¥6C»GÇ*Ù7í×lûÇ +Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6ÿAÛÁ›1¯ +é4‰?4Ó!ù ¹?ÕE³³7ñ8· “©)ƒ9“‹r¯± Ñ­¹8Ë%÷#ã(éå8·@µ © +éOïÝ4£>“rµ"‰E‡.Á ­Ñ&õ!¯Rí¯)ñD"çhÝÝ•"ßnë— ŸJÃý!ÑP«›0Ñ·¡‡XëEí‹9—•|›§«1‹Ÿûç õ …7Í>ûLé*‘"¿]× +÷ ý6Ù ‡+B³Ƀ +å9¡ ­‹I‡’ÍUû"Ñ#\ñ0ù&ß]9‰dÙYÁ ó‹z«?Ï@¹!‰©IÿûjùÓ’g“(×|á²Á]Á&›ñŸ›IÍ3Éõ ç3ŸÑ å&ÅK±Yóé åV韓ýÑ¿­• ë;à +±6³µ9«2óI¡+ƒ"ù‘®ù)§då¥í©±ÝO±c׋Û +“lÍ"‘*Ã]ƒ˜Ùf™m“å•6 ‘'ƒzÉuÃZ‹€ßEà ‘ˆ¥Û³Ù7ýK—y÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ßVÁyÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãWÅhå'ÏÇ 5µ§ÛA¹9«—õ ƒÁ%ñ ñ­3Ï3•5ƒ íÛ ¹*Ýõ1sÙß&ýùçÑ7§EËEÙ ñíÅñ3×Ç|ë ¹Á'ƒ.ã Û3×óݬ“Uñ#Ÿ!ý}Á‰©"Ý… 5×!Å?»Ñ“Šå€é¹ e©fÉD‰FÉñ9-½ªÃ9Û~»¡¯§õ© ¿6QÕA«"ï"½ˆ»<ÃP‘Õ‚!‰±-÷{á‘5Ûëv•\ÿ¯xí…·SÇ>« Å!Å7‰7ó<Ó>» ·‹#­D‰‡LÙO­ Û;6‘¿Q¯ Û:Ÿ”å)õ ½_¥;‹kóë •<ÕBŸß8‰ ·RËÿ©5éA‹;ã ½DÏÑçAç«ÕAµÇL¡]8±!¡IŸ ÑDÏ÷!ó8³9ñûGýJùO¯•#½*¿Aá—‡ »,éP­S‰“3« +ÿr¥à ÃgÇ!ëW÷xÃ"áyÛ½ ‡eÅã˜wŸx!ƒŸ©Ÿ Ã:ïŽ#Ë ¥m¡!áŸ9‰kÃ^Í6Åz×3N¹:³‡óÓ§ÉKï_ŸSÙ!«ù÷ÛZ­7™¹“ÃÉ7ó ïG­‘"‰0¥WƒõJù6Õ‡Ù£™U­—«H©"°í¢©“¹­‰Z“A'ÿ•&É™͆ÏÕ#©™$ňçk»+“z&ýˆÓ|Åo¹4œ§ãÝK× «g3·iëfÔÓ=µóvñ) Ù†½Ç&™Lëˆåç“NÛ6É +•!Ÿ· ™#…s£g—>ù·"»S¹Aå<³/¿ã}ó­*³IÉ^Õ\™y3­vå ;N— +½¥ ™¦›!½"§R8÷UïÁ,õ0‹ ×Ç•á᪹Zõ‡z÷-›¿©n¡×@É +é¬Ó1‡y³:™³çŠ¿‘ÿ 塃}¯eé ‰œ£ãiïœÛoÇ&‹8&Ãí ß{£ý ÏÛ[-¡Léoà +Ó.<—iÕßtÕfóÿq÷†¡­b›/± +ÁSù†é'Õ~˪Ù¥6¡^™gßË3‹[‡VAÃGÛAý±`é8éyñLËW÷7RË ©ù‚©„1Ñ+E­i×õ4çÛS›GƒW•N™R½Q˱Mß-ñ€…jÑ<‡v·=™6éT‘&é_Ñ Õ +×S§"ýcÅ‘]ÝWõT6…Gµ ýFõ=™(¹'¿ù#ÿ†½D—³{µƒ‹çzƒ­ ¯•‡%—FŽñ"‰›©&ÛAã)ÙŸË4»‰o¡GÕA“où ù‘Ë érõй…M·!‹Ý{±Ûœý*½@ÅŒç‰ÛOßÑD§8‡2ÿNá5£uzDZÏ~­ÕXß3¹Då¥'»cñ.‡Ná¯[³eé"ã‡uóFµD³*½y"Õ”Ñ@ÏVÿ·#ý‹Å±«ÇNÁDu‘"ÿ=±Vç©©1ß«µió0åQÉ0ñ¡íUÑA¥ çzÇÑ™J§eÁ§„ë +·@9ó]ïýlï ŸÑ+—™ƒz±=Û +ÑvóE— ß’f‡ý:™ ­ezÿ?ÍHs!³»V‘ÓCÕ6õz— Ý8 ín­Ñ8é—é™v¡…#£Œ‹#Ï •D‘¿£!“€©ç*±&ׇ&‹Ié0¡‘eí/ñÓo«#͘Çõ3· ß—³ ýÍ7±CëÕl÷6µƒ‡9ùõëwñ£!–Ó +ÏL¯ ¡oï"ß +©tý!Ïpé(ï@Á8—Wà ßß6½+ÍËç‘¥ñ3¥‘0‰&‹é½$ý%ë#•'HÕù%«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/ǃ&Ïõ·³ÿ)ùPÝ&á=Ÿõ…ÍÙ¯!³ ¯RÍ0ÿ »ó­&ß=³Ã‡‹)¹ “ÇÍ ï •µ7õ9›1‰ Ó!‰é#™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õ‹í å*,ùJñ³&ÉÙÝ(—ë ‰Ÿ Ÿ>© Ý!³ƒ+=ëßï%ù Á +˫˳ ¡¯ Ï{Õs»hÙ ‰°ÿBÑ!×8*Vßçá£&‹«F@™PÉ[ý7· +éMõ ù9¹5ó%ñ]íc‹D¿6ÙQyÑͬ•ãïn1õ5}¥AÁ85_'¡EÕj3Ÿ39Ù%+ÁAm»4‹?é?9·[éE½ã,í3Õ‰å¯8)Ó Å½ë!iÛSÃ>ÉÍ-•9‘b5©7ùW³D3à -õ/“~±…“×8Q;ó%½Oá­M1™:‹‹8Ýõ"û¥r“¡"Á£7û Á0ë9· +ù8×*é,»A±*‹ +3± åÿ;¯Rí —$—*… ™±#ß9›5ß +ó0­Ÿ£ ÏPÓá‘GÍ<Ñ£:Ã4û!‡±K­.ÝÝ ÇQÁ"Ç(«"‰0ýÅ:‹0Ñ ·4 ÿBõ5Í ±Ó*Û&©Aƒ§ ÝJ›"‰4›#™"•Û5¹1ÛÏã­ÃPŸßa±!ùÓ0—Dí ¯,¿A· Ç9å,Û'ѳ:ý …%ñ8»4‰ßB³ÏÝݯDá.£ïBé0Ñ6‹µ ÍA¥/Û0ù!ûŸ*‡ï[‘#Ñ+ë6§<¿ ŸM¿"ù.›%ËD½%ƒã‰B‘ óO¯çB­­!£©')t)T-É2+»ƒ9Õ`-‡_»9ñ‘7Ý7…(ù×#é<·“$Å +…»~ÿ ýy»"‹‘£YÉgË$Ár‰•³™f²ƒJ«Z÷ß Ï+¹²Ÿ–ÍqÕ;ÍŸ<ï‡ÕQí‰ß2Ëc½ +‘Jÿ4³ŸÙ4õ¦ÙpóeÝ-å@ƒ©Ïfõ,ÝN¯AÏ[©Ç{Ç‘\ÝÉ;¡zë:ï`¹pù(©z±•L»±«ã§±BÍ~§Jµ\ñMã×|ƒñ¿ÝEç.• × Ó_Õ?ƒ%›‘TÙ‘Š½€ó„Ø™ñ=ýjïq“çI猙|A·2‡LÃc·§#ÑJµ-ë!¥6A§©ÙÉe±!·NGÅïó ¿ÃíBG©A‰ Íùç(oïÙHç)µCñ³Û©0·Fe·¹»MÙ!õ+aÅ +§6¹*ñé)»;×8uÓgí©aÍ0§÷+‘“ñ8û÷aÝU¡—5§[Éÿ.ÿ$ý"¿!]ïDßZ9÷6á q‹r•å8ûF…Y×í)i‹ç §—#«ÿµ?‹&Õ™ë5Ñ;Ñ Ÿ)Ù]‹8é-O!¡%Ï*§…ë$»Gë£@¯"—"}«%ÿ_ŸK•"Ý‹Pç!Cï,Ó@]Í +Í6×ë0›aË!Á$‹Oç ¹g¯ÿ%‹nÅ +cÕ&û"£«7• 廃ùLå#»™ ½ó#ù2¥µ*ï!ó")ëÓN¹ký­( +µ ýO·³ åå2ÅP™+‘FmÑ6£‹,W¿A“#Á“cÃ!ë`¡ +BYë Ë %——7;íAç¿$½AKó*ÅÁ+Ó5Ý7s‰‹rwó “k·D­Qå¡oë!•ƒ4õ­1Å@Gù +•Uù%‡m§7£-©:—ÇMß6× ß%Ó#éOÕ ¡'• +á6IóF½y!õ%‘;õ ÿ{¥]ÿ ñ8e“>­/× ±$‰M7¡ßA™Y•7 +¿*ç@Yé ƒ=Á)aà +±6Í*éO©&ŸV¯•W¿í¥ óÏ +•!—§ÿ?­,ÑÛ “áï#©eÉm…2£¯!¡"Ÿ¥ƒõQÉ Ë*‰µ·ûJÿïl«Ë ¯4Õ7Y½Íc‘@™6Ï)³.± ‡3ý»' {ÝNë û_ŸA³9›(»"Yµ>Ù‡qi¥ó ½‡#ç¯A‰,­Xk· ™7ù*§*ÿU ߟëí&›J³ó:³§!:·e·Å.Ç6±#uÛ7Ç9«"Ç¡Á ó`›?5›QÇë—± +gU/ý£¦­OY­)=]UýyÑ=óã#'õd±2+§c‘;“?MÇ6‹#7ÃÇ6Õpá!Aõ%­A7ŸW!§+WU± ‹:U/‹ñ0¹?µ;‹"¯ûÝP»"Á“‘9¿>ë8ãõVåÃ+eÑ ¡7‰=;µ NµsYÁ×*¥ ËÿmÍÝ8ƒVWÃEe™Õ!×›GÏ »‹‹rõUµ ÕIùŸ£#›ùk‰:‘¹Ý8ñ;ñÍ +»g¿/­m©›› ¿„÷"ƒ¹m—lÏR³™|ý‰¯‰TŸŒ¿tÛ^ÿbÕ Ëv‰vå%¡‡›!¥)…E± +·›Á §&Ç„Óí\óG›^ñ ÷§§ˆŸa¡“‘‹.ñKõç7ÓP£ É «+Ï8Õ•ß|óy÷+û‘C£5ûlá¿Y·%³e¹—=7ãOÙ ¥ ¡#¹2Ï(ñÉ"Ó#ù2©'³6‹bÅ¥ª¡Žï!å4©Ã?™ ‹Û›Ù••aÝ £‡>×gU›h¡ ‡<ù +û3©%õ‡ +Ãï$‡ ‡#£3:ó8·Oé” n—û;¡=ñ!£ ‰…Ï Ë>“ VÍ[µLÿ3,»6÷RåÕìã Ï·sÇi‹ã0“AÇ+áã(qéË…¥ Ë&óf]lj#á<Ýaý%Á#DZë“7Ëó8Áõ5›ÕN¯ÇU‰i÷ß}ÑžçlmÇE-Ï É:Ã?› +é¹4ãÿUÉž»)Û.ñß‘8 +;‘(»I­8 3­89ë£U6‘Ù#ñN»Y“½ÿëÇ0ÓIùß×7…\à É9×(Ù0㎱TÇËÛ +© ¿ÝQ1 +µ‰‰ ©íÇo3™ õó4ǦïX½­#©?í%͇©¿ßã‹Ó“õu£fÍÓ/ÁÓÙ «^Ýé„«"1©2í$å|φ· +«+ý )ó `/©U‰%¯»#‡ˆ·!±ÝPŸ £é‚«*C‡)‘—Oï’í^¿!Í?Ù$™{‹8Ë¡’‡ —7íZ« ‹ÃNów© +å.£8Ño· Õ$áy7×KË— ë ï"iÑ9õnÙ•cŸ7ýT¯³0Ó “¿KûnÁ ËX)©!íl'Ï +é*ë{›oµ"饋Xå!OåZÿïób9'Ù1÷Å!³aƒ:ý ·Oÿó#ïµífï"ÛÇ7Ÿš§ ‰Ç ù.Ÿ"ÁC× ÉrŸ6ÅG¥7ÏF» ç…™i¡ Ó»;¿ ™3õ «}Ï!ûxÙ8 ù8§A¹ ‡xÛ7Ó\¥ ñ!—z¿‘¯9ã“9µZ—&—˜ù ™s‘"ƒ+Ùz×.³7ç·E³[Í7£¥B¹µ “|í!É¿9ÿ ÿE¿5×=ýï5!ƒßyݯ8íO¡!Í›#É¥‘½í7µ™&¹GM•6·V…!£Pù͵}û Ã$­bë1ãXù“÷?×çÅ.‰û¿;Å í— ûÃQƒÃ…åã÷BÝ$Ñ"á½&ý#¡ §6¿7‹0÷3©3› Ù"õã»6ç(ã$‘,“‡ ·0‡÷P™÷;»á7ç­(á/ƒ¯D¯4ûÓ• +‰Eñ•"ÃÕ9Ÿ!Ï+óÕ![É&ù £8ëƒÏÿ«"Ç !»6ï)ùùLõ ûÃ*“Éå"§'‡B…#‡Ó#¥ó,½3Ï&‹ÑÍ+±#¡ É"ÿ.™¥B§%ç£ Ýƒ!›+á+ß!ßï“)Á­5¹(‘1± ‰)¿&ÿ™!ùµ ÏA£ç$ùJ—.Õ £•k›/÷J±ÍY• « ¥YÇí!é6ÍCß¹ +ûá$Ó(ë%‘«*±!å÷:‹µB­6ËÕµã¹<ý%ÿßGå"™¹‹«0á ¹§× ×+± Ã*§"Á‹7×0‰#ݽ ¯×­ ½8á·1Ç0ó,ùK« ÿ¥Ÿ ã÷ía­©› ëƒ-­a«‘5ÝÅ0Ïç‰!ù/‰7±™$¹V×Á"é åûc÷b§¥Í™0±7Áå"ÍÍ0­Ë¥>£ßó%ÕTç ¥#Ù +m«£U‘mà +\ñ0ù&*Ýn½ E…4ß%—Ù:å »$¯N±Ñe“ ƒ:»ý¥û1'»‹9•ý"É€Íå» ó•¥ïí)¿Bû¡;¥ !Û‰J7<ƒ³£'§7¹ëùÏ:ý{é ùÉ@‹×£Z£÷É(ɱ:ŸB‹ çû7‰'½ÍF‹…¹½#‡Ká.C¿"•ïYÍ£ë:“,Ã##·ñ5¥Ï)·9Û:±!û%‘3Á Ç*Ã<ÿGÛ‘M¿¯'ÝVË=Ã3—;³Ñ™Ÿz¡§B­hû2›±+·dûIµ®õ(ñ#ű5É%¯Ímµ å.U£'™ +áN÷ +óY¥9…VÉ&¯3áë>Ó<ÙéxåvùH½fÙN ‹¿!׋?ÕMÑ%¡.·ã"“9Åu·BÉÁ@Á Í‘¥=ó ©`ãßE£.© µ6§ ¹3ÏGÇ +Ÿ‘E§ ÏÁ2ép!ÕžÛ»¹9ÿAó…pí Ù›há?à +›ÃU­ï1ç7¡Q¡óƒ¿«éñE‘aÉ0å8ƒ­Põ-ÿáz§ù?ÕF™Ãù}óç’õÇ%8ëÛ&×Ý …=ËótýÕh£·k»ÛƒßÏ3Ñ™Á‰•««ùŸ"» ­7“ƒ™ËOåï*Á é*ó5—Å0õ!ß$‰ÙÁ ‡ Õ>é#­.ùõÛÑAÝ%§ÍGï#¯ÿ ç ¿9¡(é á(ï Ã9©‰ÝŸ7ϯ Ý8Áß#‰3½#£ã­ã½NÉÁ i»x¯‡’Ÿ'•å"ƒÙé«9å×`ç C­5¯‹"õ¿ +á5— +¿1ññ…8ß ß2ßÙ#Å!Ï#(÷© í6ã% § ±M‹‡í"ßåë$™Ç6¿ õ/Ÿ û™O»Å1©¯"ýï)¹ƒ8Ã8•…›#ã±&·ƒ4ï'¹ã ±…2õý ™ Ë)ÝŸ;»ë$Ù éÃ#¥µ#•(×"­"‘ƒ#Ñé;‰1×õ— ƒ&ÿ»Hñ ï³7Õ½!û;Ùé Ý3×"Ëí ÷"™ ñ ‰(›#ÇD©Ë!£ Í9­2›Ó#Ó“"™«8« »5Ë +Õÿ ƒ¿0û ×,¡#½½ýÏ$¿Û ý"» +ƒ‰‡6£+¥ «#•Ï"Ù-÷±"ƒ(±4ÙÅã +¹6÷ãÅ9ã¹6Ó '— +ã:Û%»› ñ:«2«™ ‘ó.«9Ýí9ïÝ Ë7Ñ ƒ1Ÿ· ÕMß ý …5Ó#ù"Ç Ÿ‘,ï £6åûÍ%Ë0ïÓ!Û_ߟ&»Kû1çw‹™]…No¿½V·‰7‡ +oÍ +ëaÕ«bË1Õ +Y‡8ÍÇ¿ +é4—D‰/áà ‹o­$ÅAó»ë9ß‹;ÿ?]ÑGÍ%¹§Ç ù+(Ãý å#׫:± ù3áËÅW÷Ç!Á"½:ù;¹ ƒƒ…©‡ µ!éRÕ'õ3ç"Ý!×­¿‹7Ù.Ý"ÏaÿåT±"×Ç@—½ +å™NçÃÇ£<é4±QóÛ­™ß)˹ »8ŸÇƒ›ã'õ Ë6ù,·fÅ'ïù(³ Å÷"Çm‹L÷9çï +±ëõ!Ý=VŸX©WÓTÇ ÏeÇDé@2çß!»+ûã"í$ÙKñ<å=Ý5Ù…tññ+#Ñß³Ñ:­$é:£:á'•)£"óÉ+©óÝAÉ6­>·¯ãEŸKχ ¥µsÁz3ã½ãcý/ƒ ‹ û @ë08»«Ù ç• “2¿ +· “ç Ÿ™©§ íJÑ#Ý}¹!©­jË&ùåD…³G¡)« ¡]$­p£áeí7ý ÿ ÕM…~÷±÷5ÿ\±*íf¥Pù§"Ë%×ñmG» ÉáÁ:ß?åÁ{×é ßm§ý$?¿•Û8á,§-•FÙÅå8³ ÷>ñ Í!/ƒoÕb½8ƒ½6‘å5á5ç-•P• ý`½:­¥­˜ÃJ½±Å|§ˆ‹GÉíñDG£6Ç2í6×3C³…Rýçí7©.ç 1ƒT …8Åq7 éLá.Û½‰Ç×h/Ã*ÏÝ4×Ý8ÇéxÙ@·K™å‹÷bç +µ©b­ÿ5©ñDËù"Õ¡qQÑA©Wó±÷C·’×#/£—>ó"±™ ¯­?­1ã£/µ7¹)Ý ÷6)ç@«7É—?‡› +#ÇE¿+ÑÇKñ ×6eµ){Ë ÷hkŸ ï!ƒnÁñ'ý +»[·!ÍIãÕÁX5»Dó}Ë€ÃñUIå2­ ¡t%Ã(¿ÿG‡™!• É\çÑ.‹Q¡‘ ëå0¥Tëñà ×&û;¹¤£-ó0Ñõé&½é3×…-Ë(åVß‹¡a÷­:‡…=Ù ãç ÿ4›¡§6ƒ(Ý3ýÿ9ß0Å(‘)¯a› •í0‘ÏÿO§/­<ñ!Û½ §¡g“U ³1•¹,í£%ë!7õ*“&Ý•+åx׃Xû™Ñ/ç>ã"Ñ÷ˆÉá‹>•)٠ó-µ!ƒ'õù½bÃ(ç §•1÷P…Ç8ÝÝ1Ç«,¥"¹0ó ÿ\ß5×Ëx½ +ñ7Ï··QÍ-Ï ‡4Ý «1åµ+à ó·™VÓ.Ÿ¿!ûm‡« Ý2¹6ëCÅ ­0£‹›E×0‡£)‰Ù¯$á¿…Å=×»6ïY¹‹4•’‘2»6í"×#ÝP… ›2ÛK™­™,“ ßÁ_™á\Å…4í»~Ù ¡éDý/·66Ë +Ù-…½ ©å\¯(õñ3¡Véõ8• Å3õƒ/‰9µ=‡É½`­ÁÅ)§Lï¹­_Ý1å“ Ã‰bå}÷ íW•&“£,×Ó·Pß.ñOå'Ã(ƒé óEÉ:ë(íûQ±1 ë“#áëJÏ¥4õ×\á Ý"ù'ÿ"Õ4™³ÝGõ¹"Ÿ(¹Õaÿù/Ï»&³*›T¡1¡ÿÝ)á ‡ ÷(¥ +Ÿ £ ½¥+…V×,ÝQ½¿Wé3ßÇ áEÑ3÷Låé™(ƒrÏ÷…Õ+›%åãUÑ ­†Å-ÿ‘>‹ýˆñaÓš+ߢá&ÛÑ•‹Õó­…§ +õÕMÇß«&Ÿ%ù£oé)ÏAÍAã !Ù1µ@ë ÷%/¥ù¹@ñ>9ó +Ã%••ló$Ï¿n/O@#¿3·<‹A‹%/ƒWí“;É3ç÷-ÑDCÍ[¹r-á-×2ë>©ÿ.ý)ór›¡Ó&#ÛEãÍDç(§ÑE£Å(/çÉ ¥Iå Á —§“…åó#É9Ÿ “±}»2« +ƒ\û åx§û ï—ï(·é"Ù,åÓÙ1“»§§,ÍÏKñ*å#ïZ…tÝ’•í§1ó)ý ‹2Õ8݇ +Ýñ¥é7ß +›“ëP…OÅåÿÑ«—Kñ$¹ß%ßË«7•#+±xÛ}÷©Í*û{“"•«:±Gñ8ï¡Sÿ)ÓKiã ©Í'³nÝÇK£‹ÿR¹>‰káŒÕ!íÝ© _ß»8Ã>‹"³ñÅ;cõ—*ÁB‡ç‘í¿0·4…ŒŸƒ ãõƒmå1ÃSÏ&‹Kƒ2ËYý§7Ã)BÃ@¡nÛ¥wc“1ÃG£CS¥>«(Ñ‹õvmµ—,…kCç»0ƒ-›QµAoõ“7§3ïÉ Uû2¥>ãÿ^¥3á ]¥ßƒÕíhµ— —Ó"ñnùiáéS‰–µ×GIÕOÿÃ~iÍÿoS¹Aµ|U¡ÙëA§ŸÇíAû £nc±áAÍ)±vïËEKûáeQ·Gß‘kÉáA-±#Çï@‰Y‡8ó^Qõ=Ãa•|½xKÙë>o±C!™9™×©ƒ ïï.“u³"åK¿/›PÍ çQÙ›aÏ­Óýbÿ!eÇÏ7å[›F‘•W£ ³Lµ1…U© ©ßyÁ.÷›/…‰oû¿(Ãi³é±Ù?“‰…ƒk½"Ë[¿+·!Õ1gõ›¡u׳+·\c…£2ÿ7‘_£^©Mõ • Ý,½õ˱ á—_õ&ÁŸù0ó;Ñ*«,Ý8é Q»T«Kû "—>å@S…ñA ûEW¹2kS½Lw›D¹X¡ +Á!I×A¯9¡LaÙí&ÑgŸõkù…!¹I¯(›TÅé‹$áI×75o“»… ©Ñaƒ ÷› ¿Š:ûó•%¥E»?íŸG‘8á ©7… ï£4Ù%¹<¡6…+Ý"ç©H­Jã#£ ß8¯ ãDå ±!›x‘Ã7ùqÝ%ÇyßïR‘‹§Ÿ‰NÁ•Ï ‹Û¡0¹ +Å ‰› ¥Çx·Hû¯çOc +›•É4õ8£ß…Lß!ÿ#ç…¡PÕ%ÇÇ¡"Õ=Ý +éÑ!áý£F©»)ëÕ5Í7Ë'Ÿ ëLÁƒçH˯ù=«hû’×c“VçÉC¹/× ¿¡ùs›&«kÇ Ëa¡­¨׆Õ‹á—£BýY·¡‡“w¦­¯<Ã'ŸAÏC•4¡X³‰Åf‘‡É'›2ûK³ç¹DÅR@ÅFáZã1Ã$££ ù4½5_Ã/«C­B£%Ã"½ï Á4ÉXåI‹1ç=ÑoÍ×¹…zƒ³ÕŽ¿•_‘MÅ “P­‡ª×]űpé9»‘ÓLѯÓA— ‡ží»!·må!ÿ]©ÿ÷c•ó 1÷%—#±.©ƒ£Q­ãåá +ùõÿ§¡ƒM«ÇÛ(ǵf±[É…Z‘-¡Vé\«ÿ£x‘’§M©ŽÓ‹¹I½r©(¿8)뉙ŸJû7ƒŽÕÁÙƒƒe‰0¿‹¿±ƒ)ó%±©Å£³FÅ~³z…LËRë=t׃‰P»LÇ‚»qïÙ\Á=Ëý—&›ý8· ‹d“­7…8ãI§ÿW•#÷¹ í.ŸP“ Ý ù`ï ‡­‡&¹±O…&Ïë?÷™ÉÅ¿ãKù"…„¡ï +Ã8áÇù!Õ>Ý`§+ÝP‘•Í%³± +™<Ï"ÕE­ ¯ËA¿$Å¿YÏE££×-ÕFÝ …œç6#µé‡=ýÉ7ÇÝ+ñõPé ¯fé û7É Ñ#×­5“ó­¥p¯û¿ ‡Fá=ƒ‰(½tùÓ*Ý|åÕhÃé¯ µ7—5ý>û ¥, µAó™Qß!§éP± ùß&¡a¥4Ñ +ñ%‰­pù»· +‹á ·•»Ÿ/±§N± ×GwÙ#· Û Û‰H‡Võ°ßF“Ÿ¡Cƒ *­7û4Á)§¥(“& «á?—]¡"ß©>ó9ƒ®© Í%ƒ™"ש"ÍB¡™q½9Ÿ{ó"£—Ï›oÙ7‘¿$ÉX—åÏã«v…¬±» Ã#ïÇ0ï ­¯³_Ù ‹½4ùq‹!§ÇÝl½Õ^Ñ ­…?Å7Ù"ƒ„ÉB|Á(Íx…Ý&»%íIÝ‘fõ4…"¯3Õ3û«Ué Ó%Õ„¡ÅT•B­[ñ—V•'Q½1«jã!ùJ­+åb4ýu—ûf×SµJ¿(ŸPÕÕ„5‹~ñMùÛX6ÁRû4‡”=…×PÉÝPï­W‡½\í,Q½·\»Q‰>Ç•ÕYÉQÁÉxÁJûJ¡ •^… +Íaß©Q׳õ>íPƒ<§g¿&³Ç)ßV¹;ûLÙ3•aŸC· ‡#™ +…(ùõѹ$É,éAÃ:Í …@­Ÿ*ñˆí;¹2ó:Å4å‘.ÿ&Ù¡­µ-Û?Û³w¯=«hу»-·~ÿ«ë±ño…\Õ0—uý(É ÷'¡ªÑy‰%õ‰á1.ß|ÇŸ•õͤ?­^ƒC« ã˜ýå¿@7Ý'ÓÁ¯›;ù¦ÍkÍj˧ãuÃ%ût¯ ‰Lù«ií4¡R½ŸQóaËÏhÙ(¿¢‰Ó‚átÙKõP•$ï ÅJ¡@“ ³Mó(—©_¯Qµ;Û]›û'Á‘Tá•*‡»LÍOÏAãßh½ Ñ˃\—7é5õÇ/÷aË …]µÃt‰‘Qù8¡IéEÉ­>™© ë$ÁKïVç +™H9(¥Uñ:«÷@³vù7Ï6õ×`éÍa©ùMÅHÏ"µå[õå>rµ É;åÅÛªçß&Ã_»?§(­ +‘ƒÑQÙA…€»— Õ/Ñçñ9‹5sáÅ4×ãÉËq÷¯Qÿù"­É³#Ÿ.ß· Ñ»s­Ñ%c¹AÛ.çûÛ*k©-—Û6“;gý ù5“å+WÏ9é>iå µb¥áë ½[»m©ÏR¯[ÑÕeÁEOÝ#· a÷C¡ƒÇ%·;¥4eÛ YÃ.·Q‰g±"³,•+«Í9û:ÓÓ%[‘!åÕ:Õ'½VëÇcÙ‡.‹$Ç>ƒƒUé«A åõ&ÿg±/õAI£¹Y¹ Ï uŸBë»O3‹9¹ ŸV×›ÿ4ÿÿ#¥½aé +Eë1Uù5Ç4“½xŸ Ý c…-ûPó¥Y™jÅ(µùQç@]“5#ãx×颽 ñ›Në‰Ñ…—@;“· oÉ@¯ó&¿E?ÕÑn ñ8·ÿ*·I_…í"·Ï<—ï§¡ ¥ ÑÅ7ÏJ]Ù;‹M™ƒ?U§%»!¡%§\Ë© ãM£WÏ8· ¡É9«5aí¡í!£e‘A‰#¥+[­"áï·#±£ +Ÿ:鱂Ÿ¹6ãÿk¿×÷.ͱ^…Õ…a—¡B³?‰ÅláJ¿2ï Û~Ãߣ ß8Å4ÁT‹…û¦ÿ½­©QŸË„ý'çT§ É`µ*Ÿ.¥l·)·GçK%Ýbé +íiÁ¤ùp£§* +ÿJå/Õã÷Vµ Í.¥J­çmã$Å ç’×^§<£@«V%ùBÛBů…£?«DÇWQ§åŒŸß2ïW­ ·+ÙX³/›ÿ4Ù ­2›^!ûZË&ÓëTå Ñm­¬©áYå^·>ƒxÙ}¨‹ ùq¯œ›5óžzÍ1ù„S“†ÃÝ™r³“íD•‘Ë?ÿ屡 Ç™Ïi©dõ"éåjý•Éù3¯ ë!©D­—>á@”Éwã%‘«;µñU×Í#ý*ý0ƒ"•ÑNÍ=‘ +à +ñlÇß Å/í» ÙA£ ÝZå*éÙ +߯•@Ëgý?—2Å?É,û9Ù'ÝŽM³Qcóß ‰JÑ]É7§{“2Ó×z·‰Zó¡'³à ‘1ç!'Šårá Ë Ñe•]‡ ¡ñ/ý +¹šËÅFé‹ íÇà Ÿ“#“¡³¥8í¿"õ“-ç~¿¡é ±³}——õ­¥.›5ç!Á®‹‹ת‰——·óÓÙ« Oñ£ã"¥³·£¿­¯ +÷*ûKÅB• ù¡ÕÍÅß!ÃD—“]%á/ý Éë3ù7Sï8‡•b·™ û£,™>2ÙñåïSÑj­/Ï5› ËAãÛIáUË +½Xo“ ‹ +»8ÛEµ3çà …T­D§Û¹QÍLó=¥»$Ïi‰¿Z¯šÇ …2g¿/Û$[ÓõóP—7¯C­-«ûá ©"§©Mg¹:볓<õS“ïSõû4½ó#Á`‡$•Çïï_µ¿;íQ“ƒNýÝ ýŸÁ¹!ñ¯—l•å\D +ù÷߇Å&—4Í á)™áÅI•,ù§ë +ó ¥µ—­•ý‰0…5ãÃFƒÑ&û:ûÍ­ÑÍ»!¿]Å•¹ÕŸ/çŠÉ ÍçJãN͆§Ï»› é#ÛC×ñëWÁ#÷xÃ"“™½€›&…©™N‰±1=í™$Ï6ÍDÑ ÙãSÝyý)“C‡—2—e©ƒ@á +½3©J¯(‰_«›dÍýQ»+ÍÇwÉ ¥ëÇP·8Ó|ñ0×Qñ%¹ å¤ã Åà ý|¯» ¥B¯Mµ ÇL­5· +ý>ùXÙ +Án3«ÿ,Á‹É O(ãåEç!å ;“)‹%— +½‹,¥ çFµÿF½"ÉW³›!‡½@å+ýå$§RùËC¿‘שía— ½'å¡Ím·ý±x¯ˆÁ,õ0û‘ 68¿FÑ“BåïïW×åP¥"¿"ÝI«]·"¡"ÿa©,Íû›½Õ%©õ‡“+‘8ë•H©PÉsÇ÷!c·‚ëû‡/ó‹4Á8× Ó ÍŠ×ý +ó"‡™g¹/™ßË3ã$÷ ¯›û#·)›ñI7ÓVí“6ù$Ÿ*­~‰ó +ÏÓ'ç(›8Õƒ:é÷ ™4»é…|‹8Ñ ýÇëDAÇ"ó‹I÷Pá ¹ ›íK]•"Û£L«¿—1µ$ëƒÝd·±-¡.§ ÃÁ ókç‹<á +ëL›Ý$R•2Å«ŸWÛË Ï6¥8©•Mõ ½p·‡ !±@Ý"1Ñ+טû›sµl‘¯õO­4Í&Á­bóC—>£ÓÇI£á õ-Õ…¥"ÑíJ@Ûj½—½9­L™ñÍ•wù%Õ ã‡ùé+õIË7†áo‰(߃!§Ë‘%-Ýßn‰ +á1—[‡÷½6éS¥ƒ-Ÿ;å#©á1‹-íQ½/Ÿ)Õ…“ É.‰RÃ#—Ÿ—ù±p¯—ï4·W§Å·1¯ »£‰-ó3‰T¯ñ+Ó2]¡§N÷‰*ã‹:Ç“Që§.ËÿPÑÏG¥«/ÿÃ3±ÙãKùÃÇI÷>‹¡åh–± õZõõ +áVÑ•Ÿ‘ 멯×$¿dƒ&‘bÁIÉIᡇlÕÓFë]¹EÉ%;TÓ$…8Í'³yçD—T)·HãF«LÃ,›3ÛƒU©JÝ™¥…Ã.Ý Ÿ"¿yóý(§¥GE³”ɵ?‡;Íe“2ÿ4‰‹jÓP‹IZ÷F¡·i“F÷*Ûi§%±¹:¯$Ù+‡!Í~ï ýA­>Ë=ý"ÛJý&ç‰fùÁgá3Ãï?—?•Ão©+Õ@§(áC³;÷:ã6ó©@ñ-¹TÑß0§'ßDÑ(ݵEó(¯*‘‡f¡xÑ%± Ý1Émùݧ3û/ÿ,·DÓ›n7‰Hãã8ëjû¹…xÛ(ý5ûC&ßÁwƒÕN­ÅMå[Ç'¹e‡¥[³?Ñ›…‡j·d‡3™Û{³WåWÓJÑ—P¡ ë£Ñ7/áfç÷™§ õ*ý_™`!ÍQç’õ-Û Ó©¿³’Ÿ mÏ"© “:å «~™%ýyÿuɱSÛ!ûaë=‰2á6éšå—9ï+‘wó í’“IË8׋#¯@óëßK‡!Y«4ÉÝlÉ(Ýo³ ÷¬©]Í¿Më0·"Õ+¯§S­}ÝÙ#×ã6×&k£oï&‡5…3™@·¿óBñ× +ù‹%ñ@—vË8ç +…©«³›×³ ‡^©;•{ó‘7Û#Ém‹ ±¡ŸÙ‚¹a…Ï»!#ó.“ ‰„5÷Õ Ý%û¯»s­a¥&÷Ç!k§C×÷ÉQ»/ã¹=¥“±Õ¨©‡¯:Í9Õx©hà ۩û‘YÇÙ“xÙϵP‡³³yï‰SÃw— ¯#½§Ï õ@¹{“ +‰¥ÿLÙ—a©@Ëù é^Í©O‘$Ÿ{û¯ ƒoÍÿ7÷Ÿvù‰)›d‹ …q;Û8ñ‹9Õq¿œÁ@ã +áIí=õ É=ù »çÍVQ+ñE9µ#ñ Û%Ó+‘#•&˃C!Õ“ ¯?³å7Ï Õ5«Dç'›$ƒãR¹ +‰<7·aÓ+Ù@¿0‰ §K½ã-­'-ƒ&ÿ7A­7½ +Û0•-Ó6Ÿ ó5ù?q‘½"ÿ‹ ñå ½(§E7Õƒ5#ÓG©·!í0Ç@%•Û¡"½%/ÑF«"ÿ­M'ãñ0í3Û#ñ ¥(ÏëJ=‘9½ ŸÅ!Ón¡‘r•#ÛÙoç —ÛhÍ+›¡qÓ!û +™=ç6ï±É@ã-©8‘@å±MŸ +§W•#‰µ,³bá'£KÍ¿ùgý­@«3¥é;›A³ “*Áã5µL·0¯ Ã2Ÿ?ù!»5¥Aù§&™Ñ:×+‘QëÍ ë"÷D×T©"Õ» ÇWù‘)Õ—8‘4•?Ù!Ë)ûCó ¹ó$émÑ ÛJù/Ï ëCÛ×ßDß8 ÿPéAÏ!í9í&/í$Å6íTˇ!‰(¿Ÿ‘…Å%Ï`ýÝ ¯Å ÷[¹(‰ à +•<…Q³ ßùí)Ñ­9— —é=Ù-“#¯»§.…"Ë í,—M»é ‰C%¥÷<½ »+ù"Õ ½*­!Ûï§8É0¹~±~­ åm¹—¡%…ù<›ÕL¿§9›ë<¥ +­L&ý©E¡"•C —*ƒß*Ý­5¡!÷ï8Ÿ Á)ÃÑ+³ ›&í ‘"ƒ0ÁAá“Eý9%‡ã:!Í@ó‰#ë!—@í‹%µ +ÿû+Õµ.ï3ë&ÑdíÅ5¿MíxÍ ½¯­g™ ‰!‰?ãã Ýc;™BÏE­!§™7÷£D•Ï¥3ƒ3Í+»Cm£¿ËÏý@Õ.‰ +Ý$ÉL]·ë"Á ³ƒPÍ ‹8YÙU©— B;Á:¡—6Q‡••§/‹#ÃeÓËÝ?õÙ ¿){‹ã(ý>­à ٠Só=Ýe¡£4Ý7ÛÝ@ù$§+³¥:Í(ÛA£Ã)»‰­8Y¹ +—8‘6•‹ãRû áõ>§¿D A¥D§ ­«daÝý›FÅ"M› ïAk •f±Ó6Ó5_õ#‘ ­kûA¥)¥1ÛJÝ!«·2J­“ £-ûP«óW…>“D»žËTñ¹I‘7Ÿ±¡lí » µ…§*…‰![÷±-“Ý-é8W§#Ý;—«õLóÿ—µ™)ýÍ‹A[ç5‘»5‘9cÕÏ'› +Õñå‡Ñ +ñYÅñ"Õ*½0¹@¯¿ AÝIË:ÉÓ4…¯"×¹£7õ £û=¹0ÝŸ¡S—‹µ—Á“ÙhëÍ/å2û>¹)ÉÅõ+Í?¥Ý&í¹ÿ¯‘+»¿éb±³)¹‰ ¥Ñ‘(¹.ù:™Ñé ¥3Û‹§›)_ñ-‘Õƒ‹aãÉ ÁùZ‘Ç«8—)÷ý­ÓÅ Ã&Õב Ïù©A×ɃßUÙÓ Ù(™µë*ÉGýÕßå½ ¡Ë)Ññ?ᓱý×)ßZ«ÇÇ,©:—ó‹¡3ß6ç]‰XMƒ7Óe­D×ÿ›…–‡1DÙݯÿvù ín“ç›óo—?§ÿn· ÇA?‰ïD‰eÙ9ÕsÕœ™GÏA¹8ómËA¡ß!ïAÝ1ë3á™)÷ ›3Ÿ.ÑMË …½)­×!“A‹@Õëû%™(é ›·3ß4UëÁ¥]µ8å2óá ׫³1»÷ÿK¯Û)ËûDËÙ&χÝ/<ÇÙF™'³ ­Ïµã¡XÇ߇«`÷é4“é£_ùl_ùYÍ“sýᇃ +—NW‡å ³ ñ•Zƒû+‰ƒ —]·5Ó†»«·ÅçÃÏZÇדåû¿Ë…ùãg•QåQ í'‹0‹û(¯Š¹ûvËN¹½¥ +£Ù½n•5‡/ï ÷±&ÃãóíY¯§ +ÿ%…#¥*å'×0õ#‘ë… ½ñÑ Ÿnß ù÷·±×.³ ¿9;Ë?§Åóß?»CçÙñ:ñ¿Õ¿0Ÿ+¹½ë«8Ù¯$«×@ý­„á—ÅEû…‹ß§IáÁÿ.é áH¥Íbý Ç1/Ý'åJ§(—‡JуíïÙK‡G•Ù÷Ã!µ'Û§?±Eà ÿ ï Á¥Gã³ ‡ÿTû±¥,“EéÇ;Ï·#÷«íXïű*‰óÙ#åKó +ÁwÅ9µ=ÃB•`·Çë•›ù9õI½#ÙÙ »D› Å3¡­WŸ£‘ÇpËBÙS«ó§H¯ ý•m±$çÑ"“&û;ýµ³!£¹©Í\ í!ÃË +¹³TßïT·F™!í µ'Ý#ë'õ» Ã&ý:åÉÍ6½ …aÿ‰Ÿ"•0á ù"=á‘W¿ÕEÏ-±Bé4± ë û9¡(Ë,Û%Å%à ʼn‘S© ÙÓ)íkó­"“?—1Ù(ÙÇC'á"·6Õ9Ã÷¹¥Ë+—£#Ã¥‡@¿%¯L¹”Ý(ûoi ¡d‘ £ù‹§1ë?7«ó e‹ ¹9Í(§‰=…™ ©‰K™ áK“©8ñÑO¿IÛ¯û%™©w± ó.§!ç×Nç ÅÃKÍS¡EÇdÝLÛé‰Ù ³kÅÛñ,ç3ñN­2£Re‹÷O‘{¿g—ÓNEñ³7ËÃgÛYÅ©7ŸÏ>ë™Ãã/ñ6Çù »Ýžá€­Ñs—÷‹7¿^å 4Ñ2ã0» ½›9‘ ¯aÉMµí"ŸgïUá“'¹y…§ ‡YÏó +ã ¥+ëy£ƒ ÏÝã/ñ½56«ù&‡"1‡7…{û «ù¨Û£:ßšµ +Á+ƒ Á~É•=ƒ#Û‹·Í‰ÑŸ íW« ÙMƒ ¡cù;ÿZÁ%± õ¦•Õ’Õ£7‘B‘ £"ë+÷€"“1ó6ÓÇ’çù;i•#½ ‹ ¥4¥Mñ±7ÿmëᘷ »˜± ¡lï é÷…u·4û©ûõÙvé5“Eñ8Ã5áL™˜× +‘Ã!Ï~‰'û<Á"ÝH¹7¯>‰í +Ÿ—%Õ{½2ùL—!ó‘³\áUµ>ùAÛ˜³ ñ~‡#߇ õ0å8»r£7ÓÓ’ù,å Ë8ÙL¹SùÕ"­|ÿj›#󟘡8Ë3¥jÙ3Å(§n½cÕLÝ!Å-ÑŸ}÷4¡Á0Ý8ï•Õï §a¿‘#…¯8‡5¥t¹4µ{Û›4×c¯…}5óÛ Ól½k£Ë‹ëí>ÇÓM‰'é ã'±@é[‘7Å +?ó•µA­hM·;Å"õI¡Põ?Ý™ÛOí ƒ%˯ó,,¥_›¥8ë ëS¹hK÷ ç8Õ »"ýpO7ÿí#»!õAÅUã$“[±Y‹ËdßiÁ¯¹“që--ƒ*¯"³½7› +™hµ!‡ a©pé$…A»Í6·7ÙJ]§Dá7õUíW÷#Ë“>©¡ ¯8ÑJc³$Ï·ÿm)Ù9›çç¡8ù›eû#Ý·9kí&÷ ¹$[ùl±]¯AéA…JÝCU—Y¯9Á Õa›!å¹ +­Û6ïAñiŸ›mÕ +eç[ñ· ã»{ǯ‰[õ*ŸmŸ å"—;¹q—Ÿ5ÿ/¥ïÅ#·"¥qÁDûÙ"o³ c[Õ‘=û“.ç »,5Á…å‘Å$ùcã3ÅûS©9­ é7åŸi‹8ýo¯SŸéSÕÿ¥ÏWå(û ÙgÑ"ç9© 9½Áe·e…×a»Á!Ó Ý…É§ ÷9_••§ ½‘µ—«™a£¥_µ7Å_ •#§"µû?± +ý‡ý íjÅ!‹O·5g«WJ‰ÇÍ åA]õ¿ó#Óç!¹OŸ(ñ­ «,¥ cï;©#ÝIÛ1_—ûU™ +M¿$n³© É1‰]á;ë#S¹ ÁÕ‡éåjí+•Ùuã2eÙ"›!¿¯ã(£û8O››v_‡ ï!µuQÇ?W×$ŸDõÛfÓW•KUë5©Ï½9•/— ™@Ë +Ý6kÑ&ÉÉ@ ]ó?Çv͈Ñ,ù§¹n‡)O…k¯ ³†Ù¢¹·]“‰Ñ‘s×õxá ¹fiá Ç ‡-ñ/Ý'“Ë á<9qÅ!ß!çi¥ QùÉ#Sí©É7±P§IçUÕ_ƒý£—0›`ƒ ɽßùË ÍÑ(ÉRaù á8ió¯‘<­‹P±SÙmƒ —1a‹ +ï8\Áž‰ ¹…ý •SûŸÝFÝ/«;5‰%áBJ• å3—c×Nå£ ñ ƒù6iÁ£nù'ÕÃÙF—ß#WÕG‡IÏ7û¿ßw£a×#Ïÿ« ß’á ýq¡½§2•7Ï6M«K#Y‹(­%Ý!±E¡ kÇÓß©·’ͱ— +…gû —#ó +É.•å•xï-{‡­µI‰ÇÍ$çe­ó5§ŸªMg­nW•ã _7½CïkÇe×£ω©"_WÁÛ¿0‰áÏå]Ÿ¢ÁÛ×7ŸÿIÅ·9¥oŸ8ã Ï ‘Å2Ý]ï7a‡£í¥"×pQƒÝ³8µ ×ß›-ÿŸK«L™’ï +ÇWå Ѱ¡Uã!+×XýS‡UÏ ]Å ã<å»Bm»‰8…[ÿÏÓ6Í +·Ë8ó _Ñ›,• mÝõ— o÷ Ÿ4ë…L‰‹×ëeÇ×óT‡DµWñG‘cÉñõ +ÍR¿[÷7û +ý‡Ç“µç9åOñƒM“VÕ G…Y‰‘yŸ +É$‰!Gßù2ßé.¯ +ß3ƒÃ§ _‘£6¥‹d£÷Í¿JÛW‹ÿ:½-ÃEAÅñ٠é Ç8¡"Ï w½m…Ycé^±!Å¡ç³$ñû»I٣ŠoËË¡"õS©2éû Ñ"kë¡’‡*{³ƒBOñ:ƒ­;ó!å³KÙɧ?×m±)£Dù…4¹Qá¯"©Õ +Må=û™S¥×"³Eõ¡9™k¡¯ õ8“ Ÿ;éŽÓÅ'Û`»5ó ]Ñg§?‘ù!û%kÛ'íbË© +¿­í­1¥i³‡ ÃV“.ÍK‰!™}÷§zß7‰NS©/«£ÿ•£˜ï‰ƒA‹$¯a“ ÿ —"“]“©7á-åi£Uõõ…¯1™UÍ«“Wk± µ7¡YÃn½”«½8¯ +Ññ …b³7ÿ‡WŸ;¹¹Ó÷!¯g•¿ñï +¡ åZñcƒ Ÿ ‘l…!IÛ +½&Åm_ÓQ—5ç7Ó£ oÕ Éd­ ÿqG“Z™õÅ7™ Û@³»6‰o‹aÃ"çzFÃ!‹ ý¡µ­“« á3é:_»óhÝ û:]—› •]û"ŸmíL×õŸ Uñ +å9‡§‰Ó‹_Ÿ U™#¯"…"ÃGûë ±‡ QË#·"o›#›’½<§Íƒ"¿¯Œƒ a»ƒpßY¥(ÿHÉ(Í6Ï;ƒ(‰_ùãEU¡8« ó@Ë2õ_‰ï6ë_‘3©"½Ë­*ÅÉmÏ•‘Áûh½+Á Q·AéOË+“\kßÇAã¹Å ùyýA“7ÿ›±$¹EÛé#¹Ç™<ÁÛ «ç Ù« ¹/±ïrý£³'¿™MÓÅ 1gçt·ß¯$±NÿŸ$¡­jÙ0ýùÃ,‡"éñ9× Ç÷“Åõ ëRõ©ó45‘É í“ÿýCÃ6·"¹­ +¡› M—ËóDé ÿ:•p4¯lŸïn‘Ã1ÿ/Ánýe«Ãm¿7½õ–•»OÉ™§‰²Ç¥(é|éÿ!™ýV»<­.Õ@ƒ ñtë áKË.—v`«SõÕë+§=³.‘s¿ñlá%¯<ÏQÅT³'û 㻽¹÷ù0÷S£(§µ•!‹ -ÍÝÕ<ƒó•O§¯ƒ +ÕX·3±,÷ïµ—)¿¥]³DÝ ‹ÙTé%ç8‹#ý»“¹1ý!‘«%—¿1å&•Ëßq¡Á%£ +»QÉUïõ?“\åA»*ÃN‡•4ÿ¯ŸW¡0ŸÑmË!Å8«2©½bÿ>ñB¹©’¿ŒµCÛ ÉJÑ~Ù*Ïlñ‡Ç5¯S¥Ií6±¡oÍçMš±:LŸ„É:¡¹ ãGý©¹¨Ó¤ãlÅdïmé?çL½'©o³>Ÿ Óõ·4Ï%¹H›~Ñ9Ý +£ç)±Díñ'ïp3×g‹ÏŸ•ª³ÓT]×&ÝH³D™K…ʼndõW‹Jÿ«›‘s݇q“« DÍu£ÑR­σ­rŸs›­Ï„­IÕmÕ<¡³=£Ÿn« ß ƒ›Hó[û7ÕÓu“‰·£›±7ý¯Ùzù‹ë£¥hÿ>Ëjy§ï@¯cÏ9‹Ϫ/*õ@Ë8Ãíï"iÉÓ@ý Í­›NŸ?ų:ç7µ© +™•¡ýríñ ×Ý[×6¯ Ç$Ýmµ û!‘>8­ÅW›eɵóŸ>å8»ß9£BÓ ‘C—5‹5¹>…:‹Éq£"¿S©³#ë''¡@¿“s×9_±£"óu±%•"“4¿!Õå‹8é AŸjŸ ‰Y…¯Ç(Yù™"Å™‘¿,¹!ƒ[Ÿ•.·"ûÕ&µ(¥5£WÕóÿœçÇ“”Ù)zÁ2÷7K¬™k¥R÷󽃉 ]Ùc ƒ'©ƒÏ ËUã©!QÇ€ÍK»…P‘!áÅ¥I£B…ù$éeÏÍ…‘^‡ ¥'‘Ë› Ÿ»&µ#᱿e¯Ñ çZ +•'“íYË1•[ +ÿV£L“5ƒM—eáM¿šû áN¯7Í Ï!Æ« ù]¯ ÙO·!ÍY…±’É ù Ó!Ùù7·lÅ ×!•7Åí7ëZ7ŸñËe¡!¥ ™Cµ9±× ÿë!ß‹¡#ÿY¯ý]é:Õí·$ûy¡¿Œ÷)¡ñVÛ ã=ÿ é‰:ãC¡ +û¿ ϳ|É…|ÇNÉië"µñ}«[»"ï(¡ ½M©7Ÿ6§P—ÇýEï7‡£9£ÇˆÇ$µw¿7FÕá`å¹ ‡7½v9…·9ã…‘‰7‘Në8Ñ#Çl«3½NÙnó §’á™K—7—OÉ!ëañ ÷`å û,½ßaÿ §óx£v…9ë9§•™ +ù;Ã9Ù{•Z¿#³b¿8¥<ï +‘L½5m»!ë\Ñ ÷uÑ:µµ5« ï"Åg‹0ÿ ‘Sá ¯J7±W… Ç9ÿ —_ÿKÇVÍÃ7é"•?×ýS£&¹Ká ­‹/÷&ß«6ý•¥ï¯5÷Iç¡»Ëù@™§ Ó"ÓKƒ+Ñ”¥ˆïžÑn»¡/Ÿ ÷gï ën +³%¹#Áé•É‹!÷Kß+­ç$Q× Ù + ±/¿¿ áCá$³ +ëÓf·ó£!Á;½GÙå +—ïF“¥#³¡í@…Ña©—ËD¹$‰!‹ÉgÁ½$ÿG·‹±“7ÓNã Íjã!ï%ÃËó"¡· —׈½ÿ¥"ß" é;õ€ë«_Kû5ƒÝÓJ¡ õa¥;³ é ¯Ž»ëï’ù@» ¡+Ñ Í÷•7ƒ ¯_…MÓc» ™zé8»eïA9’ÛÏ!ëï™Å!§§G÷;Ù`Í"Û‹Ÿ›7ÿç)ÑxÏK½7Ÿ¿“¯$— +\©8éaï>ÕÑ…86·)ûz­z"2Íçÿ6ËÉPípÑ"+“#ýÑ9Ó§4çVÛ ËÝÑ9ïZ•,Ññ©$Ó ÅqÏ"…&zg¿8×w™7¡é‘¯¡»£¿ã^™‡ß]9‰dÙ£ +ÉtÅjYÁ ó½IÓ’g‹z«?Ï@¹!‰©Iÿûjù“(×|á²Á]Á&›ñŸ• Ë ›I¯ª½lùvÍ3«ã\·J©B£eÉë&õ ç3Ÿå&Ñ ÅK±Yóé ¯+™Å-ù a¿8ƒ1Eç³$•§…4ŸÉñ+‡ é_ý¯%¿:á™!Ë1—íQ£ ÿƒÿ +×`EÏïÝ¥j/Ãé&•¥WÏñC÷3ǧ$ƒ7›µQ-³…8©×í!õ<ß™÷@¹)—(£5‹Då"©H¿Q•ß».ÙG£Fû]¹í ãu‰ ëõ*¿N^Å!Ç)íà +½éaƒ-‰ç&³N—Cï/¡ùCË‹OÇ]ÿÛÁ#óV«åÿ +‰±ãõiÍ!¿±Å)‡ ‹h•­¿¹‰÷å|ÁN%¹¥‘£•Û>ëá5Õ ™ Ùdñ"ÍÏf—‡4¿ï#ɇU«4¹}Ñ`·—Çí ÿÙFÃ9ßká ëñ-ñi£Ÿ6ç&ÛYµ¥ËÏ õÏ<» ¯”Ï<áAŸ û…@£‡"ó,ë‰Ýï[·½F…²Ç³›¡œ¹¥ãão¡k¹áËó!¿ª­O«)Å%— +£ï™ Ã/£#ëÕE™4Ñ6ù+û©ýï7ßb£]ïµIí>É6ï­‹Çë ¥C×W‘™·%ÇFí°­f·9Û­—‡íªÑ-çBݪÉnýcù{¿ƒÉ3»V-ÿé'ßh‡ ¯ Û¢¯õJó*‘Y‡b¹ » “û]Ë›&YÍ ½&·*ùF‘=™ÉA£>oó#ûM¥$W©6™&Yß.‰4Ã#ÝGU¥ÁígýDQ‹Jƒ6c©çÙPùÅ"ÍëÿÏ4á“'ÍEË3…³Ñ1‹W‰ëg½@u³D·÷µ _½S›+§=ß4ó‘K¯3k±3õ)¡OóuׯS™>½Rõ7»^»H×&ïDÁk¯û3gµKÇ+íSí1ÑI§#¯GñEå1›¥ßzÇ-;› Óu­0‰Ámc¥Ùc0uÕ#Oï µ]ùÑ)÷$·C‘ Ï‹ñï—¿3ó”¹`ë©»t™å—Ï5„ݲÑËÝ=µ%Ëi‹/«5±.©sáãŸÓ£HßwíÙ “Á¹>ÏZý@/›ïa;9£§…›ÇÛDÛá·-m÷%ƒñdÑ-·ž»“£(· é“J5¥9‹¹uóÃ/ŸÛ4™3Áw¹#ûí"#³'›Gƒ2é3½ +¹RÇß2…×É©tÛñl9Å9½¥_Ý9/<—í2û1§ 7“pã)­œ;ÃÕ•#­¥ Ãc£3Ñ Ù˵&?à ¯M¹••“‹ûi陇$¥ ñ Ç™6…)Ÿˆ¹Ÿ,í2Ó¯9Oí=ω §_1Ý ­¿9§BÇ[ûNéõR‰w­‰+¥7—°•¨é˜·û–ï=É5ãÅFÅ.± +?ã]Ï2µV +“.ãPÙ"± ³O£û¥+ƒ$™£ +¯>©Ç#‹û^Ý«0³"?Ç« “(õ½O…™¹ížÕoß6­‡ ƒ½)í›á3ïÁ.ý-4 ‡ñ— +@¡I©íF»?ñG§Íá&ÑC™#õ%ÁŸ×JË7ÍÅ‹7Ã*éëg³‘‰¯û‡HÛ(ÿ¯@‹P­ ‡&å>½‘J¡»NË"Ó"ç•›2¯7¡½Ë%Ù± µ¯L›9ó +íMûÝL÷Í]§)¥…ëS»å ±#›Ó­… ùƒá …‡$Ï›g³‘Ý5£Í á9÷õ:¹ =Ù&û:ß»å8û×ïB‹ ›&§,ó £ “ÃF™$­‡Õk‘Pí$É+« í(ã*ß ¯¹ß&¥W¥fŸHQ…[á cÓ û ݹ…ß0ÓSÕ1ÙC)ý «k«­ É +ý9{×hÁ +¥EñUù +ÿ5YÇù9¡ _•,¹!ƒÃ9g¿máD¹‡(÷å8ù+Ùß$§í÷—*ÉEaÿó—"á +µzÉ“ýžµšÏ¹ñ!ÿ'cý…•Zƒÿ#‹7…ˆçç¥IÛã1‘#ëMµd‡Q‘Í¿ ÿ¿Ç£…o‰ +écû"¹zï8ÙQ‰ ñ5×édãDý!»Aí¯)ñD"Ÿ-å"ÅJË ©9ó ×@Ÿ$­$ó +ÿ8É%­"Ÿ¡(ÝPÓ ­:·9‡4Ç ƒ Õ<±@ñ$õ‰99í#éõÏ/¯Ï ×D»+ÓÇ)µ#ÉO×'ñƒ ïNã÷<© ûAå%¹"(û…¥×L‡"íÇ4?ñ3í×lûÇ +ý$ã¥6C»GÇ*Ù7Ó'½C¡ Ã:õ ß)JÇáól¥ µå7ÛõFá« +ÛPÕ>…*¹‘ ý6Ùë±\›ÿAÛÁ›1¯ +é4‰?4Ó!ù ¹?ÕE³³7ñ8· Ó(ï©?á “‹r¯± “©)ƒ9åë×#å­Ñ&õ!¯RÑ­¹8Ë%÷#ã(éå8·@µ © ï +éOïÝ4£>“r¹L©6—q§£Ÿ©$‰FÝ—rµ"‰E‡.Á çhÝÝ•"ßnë‘Yý ã:— ŸJÃý!ÑPµ +Ý›0Ñ#¥) íSÕG»ëG‡±#ã—Õ/«6Ù9û±+‹Ûl§vÇnç õ …7Í>÷ûLé*‘"¿]× +Û/Ûn÷h»÷ ‡-ÉF+«!ÁWÙ ¯Ñù‡ëD‡-åVóI¡+ƒ"¿dý …6©B³Ƀ +å9¡ ­‹I‡’韓ýÑ¿­• ë;à +±6³µ9«2ÍUû"Ñ#‡£‘ñbùáGù)‘®§d•£å¥í©±­<ûP·׋Û +Í"ÇI‘*³3·ˆ•Áiƒ˜Ùf“‡S™¢åµ?ñr™•6 ‘'óRµuÃZïKßE­:à Ïg‡,™w¥·£Ù7ýK›-ó¬á*™ïl'…ý ÷%±Sùá&ÅÑu›÷‘%‹EÓGñS¥ ï~ßV‹,ÃÙJ©K‘tÁy›ÙÉ0ƒ³2µDó‘Ë9‹‰©c¡ãW“—P1û Ù§ÛA¹9Åhå'ÏÇ 5µ«—õ ­3Ï3•5ƒ ƒÁ%ñ ñíÛ ¹*^ñ1Ûœ©mÁ…™Ýõ1sÙß&íÅñ3ýùçÑ7§EËEÙ ñ½?…BÁ¥ Á'ƒ.ã Û3××Ç|ë ¹-ó“Uñ#Ÿ!éN½íÁT 5×!ÓZý}Å ©"Å?÷OÑÃsõ³÷¿6Q£IÝ]ÉÑ7¥ÃYé¹ eá^ÉÉDÁÉñ9-½ªÃ9Û~»·‹9˯1±¡¯ÕA«"ï"½ˆÃP»<‘Õ‚!­6)‰±-á÷{‘5Û¯¨Óµ‰!ÿw#ëv•\¹eÿÍE¯xí…‘¿Q¯ Å!Å7‰7·SÇ>« ó<Ó>» ·‹#­D‰‡LÙO­ Û;6Û:Ÿ”™å)õ ½_‰ ·RË¥;‹kóë •<ÕBŸß8µÇL¡]嫱Q³>ÏÑçAÿ©5éA‹;ã ½DµBõ©Wç«ÕAÕ3ÑF× ½*¿A០ÑDÏ8±!¡I÷!ó8³9ƒ*·:×3ñûGýJùO¯•#Íñ ¿P­S‰“3—‡ »,éP« +ÿr¥õ=¡ù¡:ç©/³$Ó"µ ç&— í6¹'©RÛeù#ák õ†½DË µÍe—¯ …rß&çzƒ›Ÿxåÿ¨ÅŸ µ8ïŽÁÁßSÙœ‡˜Å<õe‡%µRË Í9¥mù )É"‰›4é ½ó?©&ÛA‡4£…kõhã)Ù© å$ŸË4‡Vµ5»¡\éßç*Ã\‹8‹“Ã"³ÕgíŽõ9Ó>÷-Aù ï…›ߊË Ëóvëf&Ô©Ó=µñ) Ý<¹ér½Ç&ƒ·!á‹ápý +é· ™#÷]Ù ±7“NÛ6¹É +µ aŸ¿ ‰ÛOÁ—ߣ&ù·!å­*ÇL‰4Ï™ §8•¹Aó ‡2ß +³/Á<óÍ£&ÁWãÃí á[Çñ §0ï ±¯u£ÿ™ÍZý õ‘.£íC×7±»Ï­“©›=ƒ1ᬡ¿2™É +Ù+å¥'átŸ É_›#‡y‰3áÓ1é1ñ.í³:™é ËŸ¯[ãùI-ã*¿!ëŒóF÷(à +ý×É‘D"ÕãÍ6³*×@ç8Ñ@ç(é-ÿ«g3³,™6çƒ/·#‡.Ë­MÅ›,—Ûu‘"ƒS·=ÇN¿ƒ)Ï×z¥õJå*§"ýc½%™ñ‘&¡0çãÑ ±–©­ý+Û'Ï¢åQùÑ*¥*¥MÅñZ¡Ó.ñ¡<áÑAç ™× ¥ ±ßtYÿ/×ç1Õfóý ®'ù™JÙ éѧ„Ñë +·,… ¹Ÿ9­)›/± +Ñ4Õ•ïÓ6«6ó]ï Ÿí[ÿ0ûsé'陽mÇ å +³±=Û +ÁbóE— Ñ@Ñv¹B¥6Ý/‡ß’ý:¥#ï^Õ7é™ ­e§Pz»×¹;›Õ6ÿ?s!³é—é™võz횇— Ý8 ín­Ñ8ý!íï@õ(Í£Œ¡…É]Ï #ó'ÕE$µ‹#Ï •D‘¿©ç*±&ׇ&£!“€±$™$³Û"Í5‹Ié0¡ƒX‘eñý(×F«#Çõ3· Ý;ëÇ>.÷6³ ýÍ7å0‡9ùµÓKÁÕ÷;õ÷hñ£!‘£3Ÿ» Ó +ÏL¯ Ïï"ß +ÕAÕ2=ëßï%½+ÍËç‘—Wà ßß6•'HÕù%¥ñ3¥‘0‰&ï« É×4•5‹é½$ý%ë#«£…3ÍÓ÷׫[™ãï:­Z@³~Ù/Óí)³ÿ)ùPǃ&Ïõ·³•-µ;ÑÍÙ¯!³ ¯RÝ&á=Ÿõ…ù• õ1½DÍ ï •µ7õ9ß=³Ã‡‹)Í0ÿ »ó­&½3¹§(Õ͹ “Ç›>ÿùë'›1‰ Ó!‰é#‹í å*,ùJ™™ã“$“!©'é%¡0çññ ù÷Ç&É(Õñ³&‰Ÿ Ÿ>© Ý!ÉÙÝ(—ë ³ƒ+ÿBÑ!×8Ýù Á +Ëï<ƒÉ +Ÿ4«ã˳ …tñ½¡¯ Ï{»h› ?‰*Vßç@á£&‹«FÕ²ùe—5“ …%ß~ \ No newline at end of file diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.nrm b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.nrm new file mode 100644 index 0000000..dc21226 --- /dev/null +++ b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.nrm @@ -0,0 +1 @@ +NRMÿ|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||vvwv|vwvwvvw||v|wvwv|y||||wvvvwvwy||v|wwvww|vww|v|w|||wvwvyw|vw|vv|v|y|y|||vvvvvvwvvw||w||v|vvv|vwv||wwwvvwvvv|v|wwwvy|w||vwwvvvvv|wv||vwvyvvv|w|wvwwwvvwvvvvvw||||||vw||w|w|vy|vw|vwvwvvv|||v||wvw|v|vwvvvvvw||vv|w|v|vww||||wvvyww|||||vwww|y||w|wxwv||v|wvw|v|w||ww|w|ww|||vxvw||v|vvv|y|vvwyvvv|wvv|y|vvyv|wvwwwvv|wwv|vw||vvw|||vv|wvv|vywvw|v|v|ww|wvvwv||vvwvvvvy||wwwwwwv|w|w|v|wvwyvvw|||wvw|vvvwvv|wvwv|vwv||vv||yvw||wvvwwv|vvw|wv||ww|vvww|wvv|y|v|v|ww|vv|vwwwvwv||w|wwww|wwyvvwww|w|vvwwvwv|v|vvw|||w|v|wv||vvvv|v|v|wv|vv|ww|w||v||w|w|vv|wwvvwvwwvvvwwvv|vv|vv||w|w||v||wvwvwwvwv|wwv||w||wvvwwvwwwwv|w||vv|v||wwv|ww|||wvvww||w||wvwwvvvvvvv|||wyww|vvywvwvwvw||||vwvwvw||w||ww|wwwvww|vvv|wvvvww||wvvwv|v|w|w||w|vv|||v|vvw|v|v|vw|vvv|vwvwvv||w||vvv|vvy|v||||ww|vvwv|vv|vwvw|w||vvwwvv||wvv|v||v|yvvvv|wvwvwwwvv|vvvvvwwvv|wvwvvw||vwv|ww||w||yvyv||vwvvwwwyw|v|wvv|vvwv|v|vwv|wwvyvv|vv|wwvwvw||vvwv|wvvv|vv|w|vywyv|vywvw|wv||wv|wwvvwwy|vwvv|v||||v||w||vvw|v|v|w|wvyw|vwvv|wvwvwvvwvvv|vw|||w|vvv|||v|wvwwwvw|vvvv|v|vvvvywwvww|||vw|vyvw|vv|v|||vv|w|vvwvyvv|vvwww|vv|vvv|vww|vvwvvwvvwywvv|vwwwv|vv|wv|v||vwv|vw|wvvv||wwwvwv|||vww|vvww|vw|vwvwwww|wvyv|v|wv|||v|wwywwv|||wvwvv||||wvvwwvv|vwvwvwv||vvwwvwwwvyv||||vw|ww|wyvwvvwvvvvvvv|wwvwvwvwwvww|v|wv||v|v|vvvvwvwv|||wwyvvvwvvvvwv|w|wvyv|wvw|||w|w|w|vvwv|vwwwvwwvwvw|vww|vwvvw|vvv|vvvvwwv|ww|w|vww|||wvvv|vvw|v|v||vvwvwvvvvv|vwvvvvvwvyw|wwvy||wv|w|w|v|vwvwvvvwvwvv|wwwy|y|vw|vv|w||wwv|v|vv|vwyw|wvy|wv|||wwvvyvw|y|wv|w|w|wvvvywvw||vvvv|vwv|vw|wv|ww|||v|wvwvwwvw|vwwww|w|w|vwwvw|w|vw|vww||vwv|||vwwwvv|wvvvvv||v|vwvywv|v|vvvwvvwvv||v|vvw|ywv|www|vvyw|vv|v|vww||w|wvwv||wvvv|w|wwv|vwww|wwvvvvwv|v|v|ywvvw|vv|vv|vw|vwwvwv|vwww|v|yv|v|y|vvv|vvwvv|vw|vwwvwv||wvwwyw|vvvy|vv||ww|w|wvwww||ywvyy||wwyvvww||vv|vww||vvvwvvvwwww|ywwvvwwwwvvwvv||||vvvwvwv|yvv|v|v|vww|w||vvvv|vvwvvvvw|wvvv||ww|w|w|wv|vvvvywwvv|vv||vv||vwvvvwv|v|wv|vwv||vvwv|vvyv|vw||wvw|wvw||||||wwwvvvvvvwvv|vv||wvwvwwy||wywww|vvw|vvvvvvww|vwvvvwv|ww|vwwvv|ywwvv|w|www||ww|vwwwv|wvvvvv||vywv|v|wvvvwvvv|vwvwv|ww|w|wvwvwvvwvwwvw|v||w|v|v|vwv|wvvwwwvv|||vwvvvwwwvy|v||w|w|vv|wyww|vwvvv||||vv|vw|vw|w|vw|v|vvw|ww|vw|vvv|vw||w||w|wv|wv|vvvvvwvw|ww||vwvvw||vvy|vvwwyvv|vvvwwv|vwwvwvwv|vvv|vvv||vvvw|vww|vv||vvwvvvwvv||vvwvw|wwv|vw|ww|wv|wwvvvwv|||wvvw|v|yv|vvyvw|wv|wwwwyyv||vwvyvyvy||vvvvvwvv|vwv|vw|wvww|vv|wvv||wvv|wvvww|v|wwvv|wvvww||v|||||w||w|wwv|wvww|wvv|vv|w|vvwwvv|vv|vwwww|vvvw|y|||y|vw|w|vw|vv|v||vw|y|wvw|v|||vwvyvwww|vvv|wvw||v|wwv|vv|||vvv|vwvv||v|v|v|v|vwvw|vwwvvwv||vw|||vv|vwwvvvwyv|vvvwyvvwv|v||vwvv|wwvv|wwwwvwv||wvvvv|||vwwvw|||wvvv||w|vwv|vvv|v|vwvwvwwywvw|wvwv|||wvw|vvwwww|vvvw|v|wwwvw|v|vv|wvvwvvwvvvvvyvw|wvxv|w||w|vvwvvww|vv|vwvww|v|y|y|||ww|||vwwywwv|||yvww|vvv|w||vv||v|vwwwv|w|vvv|||w||w|w||vwvvwyw||vv|v||w||||ww|||||v|vwwwvww|v|v||vww||v|vvvvw|w|vvv|wv|vww|||w|wvv|vww|wv||vvvv|wvvw|||||v||vwww||vw|v||xv|ywv||vwww|ww|w|wvv||wvvvvvwvw|wwv|wwwvw|w||vwvwvv|wv|v|wwv||w|||wwwvwvwvyww||vwv|||yw|vv|vwvvyvv|v||vwwvv|vwwv|vyvvvw||yvw|wvwvy|vvvvww|wywwvwvvv|vwvvwvwvw|wvwv|wwwvwwvv|||vwwvw|w|w|||vvv|wvwv|vwvvyvv|ww|vwwvywwvwv|w|vvwvww|wv|v|wvvvvv|w|vvvvwvw|w|vyw|||v|wvwywvv|wvvvvwvw|w|vvwwvyw|w|wv||w|vvwww||||vww|vvvww|w|vwvvwvv|vvwvwvvwwv||wvvxw|wvvw|vwvwv|vww|y|v||vv|wvwv|vw|wvw|wvw|vwvy|vwwv|w|w|w|vv|vvvvwvv|wwv||v|w||ww|wvw|v|wv|vv|v|v|||wv|vv|vv|vw|vw|||w|ww|w|v|vvwwvww|||vv|v||vvw||wwww|v|v|wvwvwv|||w|v|v|ww|w|wvv|wvvvvvwvw|vwvww|||w|vww||wwwvwv|vwvwv||w||vw|vvwv||vw|v|v|vwvyv|w|wv|vwwv|v||wv|vyv||v|||wv|vwvw|vvv|vw|w|||w|yww||||wv||y||v|vvwv|wv|vv||||wv|vv|wwwww|||vvwvw|wvv|vwvwwwy||wwwvwvv|w||||vv|||wwwyww|vw|w|ww|vvvv|w|vw|wvwvwvw||v||vwvvww|wv|||vvwv|vv||vvvvxvww||wvvv|vwvw|wvvv||||v|ywvvwww|www|w|v||wv||wv||w|vvvvvwvvvwvv|wvvvvv|w|wvvvwwwvv|wv|wvv|v|v|vwwv|||wv|y|ywvw|v||vvv|w|vw|wv|wv|wwvvwvvw|wvw||v|||vw||wwvwv|y|w|vwv|w|v|vvwvvvww|ywvv|vw||vww|vvwv|wvvwvw|vvwv||vwwv|v|vvww|ww||||vyvvwvvvy|v|vw|v|v||||wwvvwwwv|wwwwvvv|wvywvwwwwvv|v|www|v||v|vv||||vv|wvy|wv|vw|||wwwwwv|v|yvw|ww|wvwvwvw|vvvvvvwwwwwvv|wwwvwwvwvvwvv|vwvvwyv|wwyvvwv|||w|wv|w|ww||vvyw|w|w||w|wvvw|wwwwwv||wyw|y|vvww|wyy|||vwwwvyw||ywww|wvvvwvw||wwwyw|vwwww||vwwvvvwww|wwww|wwwv|v|wwyv|vwvv|vwvyv||wvy||vvwv|wwwv||wvvvwv|v|wvw|w|ww|vvv|wvww||wwvy|v|vw|vv|wvv|vvv||wwwwvvv|w|wwwww||w|vvv|wvvw|vv||w|y|wv|||wvv|vw|vvvvv||yw|w|vvwyvyw|vvyv|wv|||||wv|w|vvwvv|w|v|||vvv|w||vv|vwyw|v|wvvwwvww|vvyvv|w|vvwwwwwwwwww|vv|vwv|vwvwv|ww|||vw|wwvvvw|yw|wv|wvvvwvwwvvww|v||wvvywvwvvvww|w||vv|vv|vwvwvvwwv|v|||wwvvvvw||vyvww|v||v|vw|wv|vvvvwv||yvwv|yvwvwv|||v|ww|vvw|w|vvwvwwv|vw|wv|||vwv|vvwvvvwv|vvvvwvvw|vvv|wvvyvv|wvvv|||wwwwvwwwv|wvv|wwvwwvvvyvvww|ww|v||vv|vwwv||vvwvvv|wvv||w|||wwvvv|w|vvv|vv|wvv||||wvwyv|v|vwwwyvy|wv|vy|v|vvwvvvw|wvvvwvw|yww|ww|vvw|wv|v|wwwwvwwv||wvwvwwww|vwwv|||yvv|vyv||vvvw|v|ywvvwv|v|v|v||||v|w|vww|wwwvyw|www||vvvvvwvwvwvvwvvvwvvwvvww|www|vv|vvv||||vww|v|wvvv|wv|vwv|vv||vv|wwvv|vww|vwwv|vvv||wv|v|vvwvwvww|v|wvwvv|vvwv|yvw||wwwv|w|w||vv||y||w|vw|||vwwwwvv|v||vy|vwwy|wv||vw|wwvyv|||vywy|vvvvvww|wvw|v|v||||vvvwwv|||wvw|||yvv|vyw|wwy||wwv||v|wwv|w|vv|ywwvwwy||yvwvwvwvvvvvwvvvvywv|vw|vvw|vwv||vwv|w||v|vv|vvvwywvvwwwv|wwww|vv||vvwvv|wvw||v|w|v||v|||||vwvvwvywvvvwv||vvw|vwvvwww|wwvwvwvvv|vvvww||w|wvww|vvv|wvwwvv|wywvv|ww|vv|vvv||yww|yvv||v||v|vvvv|vw|||w|vv|wwwv|vvwvw|wwwwwvvwyvwww|||vvv|vywww|vvwwvwwvvvvw|||vwyv|vv|vywv|w|vvww||wwvwwv|||vwwyw|v|v|v|wwv|v|wv|ww|vyw|w|w|wyv|vwv||wv|wy|vw||vvv|wvvw||vw|vvvwvywvvvwvvywvvvv|vvvvwww|yv|v|www|vw||v|||v|vywvvwwwwvwywvv|vwy|vwyw||vvw|wwwwv|w|wv|w|v|vv|wv|vv|www|vwvw|||vyv|ww|wvw||wvw|wvvy|vww|v||vv||||wwv|vwwy|yvvwww|wwvw|vwwvvvvvwyvvvwvwvy|wwvww|v|ww|www|v|w|v|vwvvv|vwv||v||wv||w|wyvvvvw||wvvwwww|yv|||wwvv|||y|wwvv|vvwvw|v|vvwv||vwvvvvvvv||vvvvvw|yywvvwv|yv|w|ww|vvv|vww|vvvv|wwv|y|wwvwv|wwwwyww||vwww|wwwww|vvw|vvvvwxwwww|w|vvy|v||v|||wvy|vvw|wwvwwv|vvwwvwwww||vvvw|w|w|vvwwwyvv||vwvw|ww|vwywv|wwvvv|wv|ww|ww|wvy|w|vyvwwvvvwvv|vv||v|vvwv|w|v||vvw||vvvv|vvv|vvwvvww|wyv||||wyvvww|vv|||ww|wvww||v|vvvvv|vwwvvvywvv|vvvv|wwv|vv|wvyw|wv|w|v||vwvvvwvw|vww|www|v|ywv|w|vw||wwwvvvvvvw||ww|vvwvv|vvvywvwvv|vwwwvyvwvvvv|wwvvvv|wwvwwwwwwwv|w||v|wvvvvw||||||wv|w|wvwwvvwwvv||w|vwwvv||v||vvv|vvvvwvwvwww|vvw|wv|w|vw||vwv|v||||w||wv|vvvvw|w|v|y|vvwww||wyww|wvvwvwwyvv||w|v||wvvv|v|w|vw|vvwwvv|w|v|v|vv||vwwwww||wwvvww|vvv|w|vwvvwvvv|v||vwvvwwvwvvww|wwv|vvvvwwvw|ww|wwwvvvvvvv|v||v|vv|v|vwvvvvywyv|vwwvwvv|vw|vww|vv|vvv|||ww|www|vwv|y|v|vwwvvvvwvww||vvvwvv|wvv|wvv|vy|vvw|wvw|v|wvwvwwywvvvwv|wwwvw|wvw|wv|v|vyvww||vv|vw||w|yv||vv|wvyyvv|wwv|vy|vw|vwvvvvwvvwwvvvwvww|vww||wwv|vwvvwwvv|wwy||vwwww|yvvvyvwwvww|||vv||vwvwwy|vvvv||vv|vvwvv||vvvvy|vv||vwvw|wwwvw|w|v|v|wwwvvv|wvwv|w|vv|vw|||vvwwvvwvv|wvwvvww|vw||wvvwvvyyvvvv|yv||v|vvwv|wv|vwwvvwwwvv|wwvvv|vv|v|vyvvvwywwvvvvvwwvvv|w|||vvv|vww|vvvyvw|w|vvvvvwvvw|wvwwwwvvwvvwvw|vvvw||yv|vwv||wvwwwwv|vwwvw|vywwwvv|wwv|vv||vwv|v|w|wwwyvw|wv|w|vvwvvw|vv|wwwvvw|vwwvv||v|v|vvwvwvvvvv|wvv|ywv||v|vwwwwyvv|vv||wv||||w||v|||vvv|w||yvv|||w|v|vv|y||vvvy|v|||vyw|v||yvvw|v|||www|wvvwwvvv|vwvw|w||w|v|w|v|w|vvwv|v|vvvwv|vwvvw|wv|wv|w|v||vw||w|v|wv|vw|||wvy|vww|v|vvww|w||||vvwv|wwvvwv|wyv|yv|y|wywvyvvwwyvwww||w|w|v|wwvy||ww|w|vvvvw|w|||vwwvvvvvwvv|www|||vww|||v|wvwwwwwv|ww||wvvwwv|wwvvwv|v|vv|vv|w|||vv||v||w|wwv|vvw|vv|v|vv|vwvv|wyww|v|vw|vvvvwvw||vw|vv|vv|vywvvv|ww|vw|wvywvwvwww|wwvwvvwv|vwvwvwwv|vvvw|vvwv|v||wyw|ww|yw||wvvwwv||v|v|||vv|vv|ywv|vvvvwvvww|wvv||v|v|v|wvwvvwvw|vwwwv||v|vvvv|vvw|||v|wvvvw|wvww|v|w|ww|vxvwv|wyvwwvvvw|wwyvv||wvvvvwwvw|wvw|v|v||vv||wvvvvvwv|wvvv|vww|||vv|vvw|vvvww|vvwvv|||yv|wywvwvwvwvwwvwwv||vwwwvw|||v|ww|yv|vwwwwvvw|vvy|wwwvvw||w|vy|ww||ww|vw|wwwyvv|vvwwv||vww|vvwyvwwvvw|wvwwwvwvw|wwwyv|vvvw|wwvwvw|vvvww|w|||v|||vwvwy||w||vwyww|vv|w|v|vwwyvw|vvvvwwyv||w|vvv|w|wvvwwvv|v|v|vvvvwwv|v||vvvvy|wv|||ww||wwvvwvw|yvvvvyw|ww|v|||wvwvvv||wvwvwvw||v|yvwwvwvy|wwvw|v|wvwwvww|v|yw|wv|vv|||w||wv|ww||vvvvvvwvw|w||v||v|w|wvvwv|vvv|||v|wwvvvw|www|v||vvvwwwvvw|vv|yvvwvw|wwwvwwvwwwvvv||vv|vw|||vwvwwvvwwvwvwy||vw|wvyv|wvy|v|wwwvvvvwyvww|||vw|wvv|v||w|vvwwvv|wv||v||vwv|w|w||vvwvw|wvvvv|vwwvwv|vv||wvvvwvwvwvvw||wvwvwyvww|||wv|wwvwwvw|v|vwvwv|wv|wv|w||v|wv||v|v|vv|vv|ywvv|vvvww|v|wvvvvvvvw|v|||vv|ww||vww|vw|vvwvwvvvvww|w|wvvvvvw|wwwv|yw|vw|||v|wwv|vvww||vwvwwvw||vvvv||||||vww|wvvvw|y|vwvvvvv|vvw||vwwvv||wvw|wwv|w|wywvw|v|||vvvwvvwvww|vwvwww|wwvwvv|wvwvw|v||wvwwwvvvvvvvvyv|wvywvwvvwvvvvv|v|w|wwww|wwwvvwwwvv|w|||wvvw|vvv|v|vv|yvvvwyvvvwvvwwv|wvv|vvvvywvv|||vyvwvv|vvw|vv|w||vvvw||v|vvy|ww|v||vww|vv|||ywvvv|w|vv|v|wvvvv||wvvvvwvw|wwvvwv||wvwvwwyv|vvw|w||wvvy|vyvvvvww|||wvvv|vvvw|vv|wvww||yvvvvw|wvvw|wyvv|w|wwwwvwvwvwwv|vv|vwvvwvvwwvy||vvwvw|vvw|vwyvwvvv|w|y|vw|vy|wwvyvywwv|vww|v|w|wv|wv|w|vv|wyvvv|vwwv|v|yvvvv|vwvw|v|vv|||w|vv|wvwvv|wwvv||||vvwy|v|vwvv|w|vvvwvw||vvw||w|wvvww||wv|vw|wwwwvvxwwvwv|y|vw|vvvwwv|y|wwvyvw|vwvwwvw|y||wy|ww|wvwvv||v|vv|wwvvwyvwvv||vvvwv|vvvvvw||ww|wvvy||||v|||vv|vv|wvvvvvw|wvwvwvww|w|vw|vvvv|v|vvw|v||||||v|vv|w|vv|ywvw||vvyvwv|vywyw|wvvw||wwww|wvw|wvvwv|ww|vv|vv||vw|ww|vw|vw|vvw|vvvv|w|wvwy|vwvvvvwvwvwwvvwv||v|vvvv|vvwwvwww|wv||wvv||vwvvvwvvwwvvwvv||v|vvvwvyvw|wvvvyvvvv|vwv|wv|vvwvv|wwv|v|yvwwvvwvvwv|||w|y||||w|ww|vv|vvvwvvvwv|wv|vv|v|v||wv|w|vvwvv|wvvw|||ww|vvwww|vvv|vwv|wywv|w|wwy|vvw|vvww|wvwvvvw|w|wwywvvvvvvwvw|v|vwvvwyw|wv|v|w|wvw|v|vwvvvvwyvw||wwv|||w|wwvwv|vywvvvv|v|vvww|ww|w|v|vww|wv|wvwvv|wv|vv|||vw|v|ww|v||w|vwv|vv|w||vvywwvv|wv|yv|y||vvv||v|wyv|vyvywwyv|v|wvvywv||vwv|||v|vvvvv||vww|vvvvvv|wv||w|v||||www|vv|v|wwwvwwywv|wwwww|||wwvvw|wwvvyww||wwvwww|vv||wv|||vvv|wv|||w|vwv|yw|v||wv|wwvvvwvyvvvvywvvvwvv|v|yv|v|vyvwv|w|v|v||vvwv|w|wwvvwwwvv|y|wv|vwwvww|v|vv|vv|www||vwvv|v||v|vvw|||v|||||wv|wvv|v||w||vvw|wvw|vvvywvvwy|wvwwvv|vwv|y|vv|vwvvwvyywvv|v||vy|v|wwvvvy||vvvwvwvwv|v|vvwvv|vvv|vwvvvvvvvwwwwwvw|vvvvvww|||||vv|vvwwwvwvvv|wv|v|vwv|vv|v||wv|vvww|||vww|vvwv|v|wvvvw|vwvv|w|yv||vwvvw|vvvvvww|w|v|wwvvwv|vv|vw|wv|yv||wvw|vvvv|v|wv|wyywvwwvvwvvwy||v|||wwwwwwvv|wvww|||wv||v|v|v||w||v|w|v|wvww|w|vvwwvvvvwwvw|vwv||wwwww|v|||wvwvvv|||vvw|v|vv|wvvvwwvvvvvv|vwvyvw|wvvy|w||wwwv|yv|v|vvyvvwvv|vwvwy|wv|y||w|w|v|||x|wwvw|wvvvwvvyvvvwwv|wwvwwvv|w|wvwvvwwwwvvv|wv|vww|vwv|wwvw||w||vv|wvv|w|vvwwvwwvvw|wwwv|v||vvw|wwwvvv|vv|vwv|vwwwv|ww|wvvwvw|v|ww|||y||v|wywvw|vv|www|vwwwvvvvv|vwv|w||vvwvwwwvww|vv||vv|vwyww||vvw||vvwvwvww||wvvvv||wvw||wvw|vvwvvvvwv|||v|ww|wvw|vvy||www|w||vw|w||wvw|www|wwvwww||vvw|wwww|wwwvwv|v|vv|vywvvwy|vvvwvwvv||wvw|v|w|vv||wwwv|vw|vvyw|vv||v|vwvvvv|||wwvwv||wvwv|w|vwvw|||vv|v|vv||vwv|w|v|w|w|v||v|vw|wvwwv||ww|wvvvv|vv|v|vw|v|v||||yvvw||w||vwvvwv||w|wwvvvwwv|vwy||w|v|vwwwvvv|wv|vvww|vyvwy|vv||w|v||||w|ww|vv|v|wwvvv|wvwvv|wvvwwvywwvvvv|wwvw|v||vvyv|||vw|ww|wwwwv||vvwwvv|||wwvw|v|v||w||vv|w|vvyv|||yvvvw||v|w|wvvv||wxwvwwv||vww|vww|v|vwvv||v||wvw|w||vvwwvvvwvvvvvv|vv|w|wv|w||wvwyv|vvwwv|vv|v||wvvwwvvvww|vv|vv|||wv||v|wvv|w|vw|wwvwwvwwwvwv||wvvwvv|vw|vwvv|ww|v||vvx||v|wvv||wwywvwww|w|vw|v|vw||w|v|wv||ww|vvwvv|vww||w|vvww||vvvvv|vww||vvvvvvvw|wy|wv|wwvww||||v||w||v|vwwvyw|v||||vwvw|w|vwv||y|vwvvvv||v|wwvv|v|yvv|w|wyw|vv|vv|||v|||vwv|vv|wvvvww|vw|wwvwvwv|||wvwv|vvvwvw|vwwwwwvv|vvv|ww|v|vwy|vvwvv|||v|yvww||vvx||v|ww||vvwv||wv||vw|w|wv|vww|ww|vvv|v|w|vvvvvvwvyvvvy|ww||v|wvv|v|vwvw|vv||vvwvv||wv||vwvy|v|vwwv|w|||wvwwwwwvw|wv|v|vvwwvv||vw||wv|wvvyvvwvwv||yvv|w|vv||vwvvwv||wvvv|v||vv|v|||ywyw||vv|w|||w||v|v|vvvy|wvvv||w|www|vv||www|w|w|ww|vvww||vwvv|vv||wwvvwwwvv|wwv||||vwv||w|wwwvvw||v|v|w|wv|vw||vy||vvwyvw|yvvvv|vvvvvw|vvvy|vvwvv|vvw||w|wv|www|ywvvwvvw||ww|vvv|wvvv||vvvvvy|wv|ww|vv|wv|wyv|vwwv|wvwvvwvyww|w|wvv||www|w|w||v|www|||vv|vwv|yw||ww||wwvv|vv||wwwvvwvvwvvv|ww||vw||vvwwwvwwvw|vvww|v|vv|vyvw|wvyv|w|vv|v|v|vv|w|y|v|vw|vvwvvw|vvvvyvvvwvvw|w|vwywwy|vw|vw|vvvwww|wwww|v|ww|ww|vvvw||wyvwvwvvvwv|wv||yw||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| \ No newline at end of file diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.prx b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.prx new file mode 100644 index 0000000..d258335 Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.prx differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tii b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tii new file mode 100644 index 0000000..ddc96f2 Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tii differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tis b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tis new file mode 100644 index 0000000..dbedb62 Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/_0.tis differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments.gen b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments.gen new file mode 100644 index 0000000..63a7ec9 Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments.gen differ diff --git a/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments_1 b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments_1 new file mode 100644 index 0000000..2a8541e Binary files /dev/null and b/.recommenders/index/http___download_eclipse_org_recommenders_models_neon_/segments_1 differ diff --git a/Branching-Assignment/src/patel_rajat/Exercises.java b/Branching-Assignment/src/patel_rajat/Exercises.java new file mode 100644 index 0000000..ef25b42 --- /dev/null +++ b/Branching-Assignment/src/patel_rajat/Exercises.java @@ -0,0 +1,73 @@ +/** + * @author Rajat Patel + */ +package patel_rajat; + +import java.util.ArrayList; +import java.util.List; + +public class Exercises { + public static void main(String... args) { + System.out.println(threeAndFive()); + System.out.println(evenFibSum()); + System.out.println(largestPrimeFactor()); + } + + public static int threeAndFive() { + int s3 = (3 + 999) * 333/2; + int s5_1 = (5 + 995) * 67/2; + int s5_2 = (10 + 985) * 66/2; + return s3+s5_1+s5_2; + } + + public static int evenFibSum() { + int sum = 0; + for(int i=0;; i++) { + int curr = fib(i); + if(curr >= 4e6) { + break; + } + if(curr % 2 == 0) { + sum += curr; + } + } + + return sum; + } + + private static int fib(int n) { + return n < 2 ? n : fib(n-1) + fib(n-2); + } + + public static int largestPrimeFactor() { + long n = 600851475143l; + long maxPrime = -1; + + while (n % 2 == 0) { + maxPrime = 2; + n /= 2; + } + + for (int i = 3; i <= Math.sqrt(n); i += 2) { + while (n % i == 0) { + maxPrime = i; + n = n / i; + } + } + + if (n > 2) + maxPrime = n; + return (int) maxPrime; + } + +// private static List factorize(long num) { +// List list = new ArrayList<>(); +// +// for(long i=2; i